:root {
  --ink: #f8fafc;
  --muted: #d7dee8;
  --navy: #0b1628;
  --navy-deep: #07101e;
  --accent: #df2378;
  --accent-hover: #f04491;
  --focus: #8bc6ff;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--navy-deep);
  color: var(--ink);
  font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  display: flex;
  width: min(calc(100% - 48px), var(--content-width));
  min-height: clamp(84px, 12vw, 126px);
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
}

.brand {
  display: block;
  width: clamp(96px, 25vw, 184px);
  text-decoration: none;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.28));
}

.sign-in {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  padding: 0 18px;
  background: rgba(7, 16, 30, 0.45);
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.sign-in:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  overflow: hidden;
  isolation: isolate;
  align-items: center;
  background-color: var(--navy);
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.93) 0%, rgba(0, 0, 0, 0.76) 30%, rgba(0, 0, 0, 0.22) 50%, rgba(0, 0, 0, 0) 62%),
    url("../assets/splash01.jpg");
  background-position: center, center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-inner {
  width: min(calc(100% - 48px), var(--content-width));
  margin: 0 auto;
  padding: 140px 0 72px;
}

.hero-copy {
  width: min(100%, 660px);
}

h1 {
  max-width: 590px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.65rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.hero-summary {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.24rem);
  line-height: 1.65;
}

.benefit-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding-left: 28px;
  color: #f2f5f8;
  font-size: 0.98rem;
  line-height: 1.5;
}

.benefit-list li::before {
  position: absolute;
  top: 0.08em;
  left: 0;
  color: var(--accent);
  content: "✓";
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 9px;
  padding: 0 24px;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #17120b;
}

.button-primary:hover {
  background: var(--accent-hover);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  backdrop-filter: blur(8px);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.1);
}

.button:focus-visible,
.sign-in:focus-visible,
.brand:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.trust-signal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin-top: 30px;
  color: #dce3ec;
  font-size: 0.85rem;
}

.stars {
  color: #ffc857;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.trust-signal strong {
  color: #fff;
}

.section-anchor {
  height: 1px;
  background: var(--navy-deep);
}

.packages-section {
  scroll-margin-top: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(223, 35, 120, 0.12), transparent 36%),
    #08111f;
}

.packages-shell {
  width: min(calc(100% - 48px), 1120px);
  margin: 0 auto;
  padding: 56px 0 96px;
}

.packages-heading {
  max-width: 680px;
  margin: 0 auto 54px;
  text-align: center;
}

.packages-heading h2 {
  margin: 8px 0 14px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.packages-heading > p:last-child {
  margin: 0;
  color: #bfc9d6;
  font-size: 1.05rem;
  line-height: 1.65;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.package-card[hidden] {
  display: none;
}

.package-card {
  --package-tint: 86, 111, 164;
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 570px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: linear-gradient(145deg, #294166 0%, #1c2a46 54%, #0d1728 100%);
  box-shadow:
    inset 0 3px 0 rgba(var(--package-tint), 0.78),
    0 22px 60px rgba(0, 0, 0, 0.24);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.package-card::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(var(--package-tint), 0.52), transparent 54%);
  content: "";
  opacity: 0.32;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.package-card > * {
  position: relative;
  z-index: 1;
}

.package-card:hover {
  border-color: rgba(var(--package-tint), 0.72);
  transform: translateY(-8px) scale(1.008);
  box-shadow:
    inset 0 3px 0 rgba(var(--package-tint), 0.98),
    0 30px 74px rgba(0, 0, 0, 0.34),
    0 0 42px rgba(var(--package-tint), 0.24);
}

.package-card:hover::before {
  opacity: 0.66;
}

.package-card--expert {
  --package-tint: 91, 113, 211;
  background: linear-gradient(145deg, #234f83 0%, #26355f 54%, #10182a 100%);
}

.package-card--featured {
  --package-tint: 223, 35, 120;
  border-color: rgba(240, 68, 145, 0.8);
  background: linear-gradient(145deg, #762553 0%, #4b234e 54%, #171729 100%);
  box-shadow:
    inset 0 3px 0 rgba(240, 68, 145, 0.92),
    0 24px 70px rgba(223, 35, 120, 0.22);
}

.package-card--trial {
  --package-tint: 39, 161, 145;
  background: linear-gradient(145deg, #175f58 0%, #1a3f4c 54%, #0d1929 100%);
}

.package-card--mentor {
  --package-tint: 143, 88, 205;
  background: linear-gradient(145deg, #592c7d 0%, #38284f 54%, #13182a 100%);
}

.package-badge {
  position: absolute;
  z-index: 1;
  top: 18px;
  right: 18px;
  margin: 0;
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.package-badge--value {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
}

.package-card-top {
  min-height: 224px;
  padding: 25px 22px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.package-eyebrow {
  margin: 0 0 10px;
  color: var(--accent-hover);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1.7rem;
  line-height: 1.1;
}

.package-description {
  min-height: 58px;
  margin: 11px 0 14px;
  color: #bec8d5;
  font-size: 0.88rem;
  line-height: 1.42;
}

.package-regular-price {
  min-height: 20px;
  margin: 0 0 2px;
  color: #8995a6;
  font-size: 0.82rem;
  text-decoration: line-through;
}

.package-price {
  margin: 0;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.package-price span {
  position: relative;
  top: -0.8em;
  margin-right: 2px;
  color: var(--accent-hover);
  font-size: 1rem;
}

.package-price-note {
  min-height: 20px;
  margin: 8px 0 0;
  color: #8995a6;
  font-size: 0.82rem;
}

.package-card-body {
  flex: 1;
  padding: 19px 22px 10px;
}

.package-card-body--trial {
  padding-top: 23px;
}

.feature-group-label {
  margin: 0 0 9px;
  color: #fff;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-group-label:not(:first-child) {
  margin-top: 16px;
}

.package-features {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-features li {
  position: relative;
  padding-left: 25px;
  color: #d8dfe8;
  font-size: 0.86rem;
  line-height: 1.36;
}

.package-features li::before {
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 900;
}

.package-features .is-included::before {
  color: #48d597;
  content: "✓";
}

.package-features .is-not-included {
  color: #778497;
}

.package-features .is-not-included::before {
  color: #687589;
  content: "–";
}

.package-cta {
  min-height: 48px;
  margin: 12px 18px 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0 18px;
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.package-cta:hover {
  transform: translateY(-2px);
}

.package-cta--primary {
  background: var(--accent);
  color: #fff;
}

.package-cta--primary:hover {
  background: var(--accent-hover);
}

.package-cta--secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.package-cta--secondary:hover {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
}

.package-guarantee {
  display: grid;
  justify-items: center;
  margin: 30px 0 0;
  text-align: center;
}

.package-guarantee p {
  margin: 0;
  color: #aeb9c8;
  font-size: 0.9rem;
}

.package-guarantee p span {
  margin-right: 7px;
  color: #48d597;
  font-weight: 900;
}

.guarantee-seal-image {
  display: block;
  width: min(100%, 340px);
  height: auto;
  margin-top: 24px;
  filter: drop-shadow(0 20px 22px rgba(0, 0, 0, 0.4));
}

.faq-section {
  scroll-margin-top: 24px;
  background: #fff;
  color: #172033;
}

.faq-shell {
  width: min(calc(100% - 48px), 960px);
  margin: 0 auto;
  padding: 96px 0 104px;
}

.faq-heading {
  max-width: 680px;
  margin: 0 auto 46px;
  text-align: center;
}

.faq-heading h2 {
  margin: 8px 0 14px;
  color: #172033;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.faq-heading > p:last-child {
  margin: 0;
  color: #667085;
  font-size: 1.04rem;
  line-height: 1.6;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid #d8e3ed;
  border-radius: 12px;
  background: #f7fbff;
  box-shadow: 0 8px 22px rgba(23, 32, 51, 0.05);
}

.faq-list summary {
  position: relative;
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 16px 58px 16px 62px;
  background: #4b90cc;
  color: #fff;
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
  transition: background-color 170ms ease;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before {
  position: absolute;
  left: 20px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  content: "?";
  font-size: 0.92rem;
  font-weight: 800;
}

.faq-list summary::after {
  position: absolute;
  right: 22px;
  content: "+";
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 170ms ease;
}

.faq-list summary:hover {
  background: #5eb4ff;
}

.faq-list details[open] summary {
  background: #5eb4ff;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details[open] .faq-answer {
  animation: faq-answer-reveal 300ms ease both;
}

.faq-answer {
  padding: 20px 24px 23px;
  border-top: 1px solid #d3e9fb;
  background: #f7fbff;
}

.faq-answer p {
  margin: 0;
  color: #3e4b5e;
  font-size: 0.98rem;
  line-height: 1.65;
}

.faq-answer p + p {
  margin-top: 14px;
}

.faq-answer a {
  color: #2675b9;
  font-weight: 700;
  text-underline-offset: 3px;
}

.faq-list summary:focus-visible {
  outline: 3px solid #172033;
  outline-offset: -5px;
}

.site-footer {
  border-top: 1px solid #e4e7ec;
  padding: 42px 24px 34px;
  background: #fff;
  color: #333;
  text-align: center;
}

.footer-brand {
  display: inline-block;
  width: min(240px, 68vw);
}

.footer-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer p {
  margin: 22px 0 0;
  font-size: 0.86rem;
}

.footer-brand:focus-visible {
  outline: 3px solid #4b90cc;
  outline-offset: 5px;
}

@keyframes faq-answer-reveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo-strip {
  background: #3e434b;
  color: #fff;
}

.logo-strip-inner {
  width: min(calc(100% - 48px), 1420px);
  margin: 0 auto;
  padding: 36px 0 42px;
}

.logo-strip p {
  margin: 0 0 23px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(7, minmax(70px, 1fr));
  gap: clamp(20px, 2.6vw, 40px);
  align-items: center;
}

.partner-logos img {
  width: auto;
  max-width: 68px;
  max-height: 26px;
  margin: 0 auto;
  object-fit: contain;
  opacity: 1;
}

.partner-wordmark {
  display: block;
  margin: 0 auto;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.partner-wordmark-lenovo {
  font-size: 0.84rem;
  letter-spacing: -0.055em;
}

.partner-logos.logos-ready > * {
  opacity: 0;
  transform: translate3d(-22px, 10px, 0);
  transition:
    opacity 650ms ease,
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.partner-logos.logos-ready.is-visible > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.partner-logos > :nth-child(2) { transition-delay: 70ms; }
.partner-logos > :nth-child(3) { transition-delay: 140ms; }
.partner-logos > :nth-child(4) { transition-delay: 210ms; }
.partner-logos > :nth-child(5) { transition-delay: 280ms; }
.partner-logos > :nth-child(6) { transition-delay: 350ms; }
.partner-logos > :nth-child(7) { transition-delay: 420ms; }

.how-it-works {
  scroll-margin-top: 20px;
  background: #f7f7f8;
  color: #18202d;
}

.section-shell {
  width: min(calc(100% - 48px), var(--content-width));
  margin: 0 auto;
  padding: 104px 0 96px;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.section-kicker {
  margin: 0 0 13px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin: 22px auto 0;
  color: #5c6574;
  font-size: 1.08rem;
  line-height: 1.65;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 58px 0 68px;
  padding: 0;
  list-style: none;
}

.process-grid li {
  border: 1px solid #e1e4e9;
  border-radius: 16px;
  padding: 30px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(17, 24, 39, 0.05);
}

.process-grid li > span {
  display: block;
  margin-bottom: 28px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.process-grid h3 {
  margin: 0;
  color: #151c28;
  font-size: 1.22rem;
  line-height: 1.25;
}

.process-grid p {
  margin: 13px 0 0;
  color: #626b79;
  font-size: 0.96rem;
  line-height: 1.6;
}

.coverage-proof {
  position: relative;
  margin: 0 0 82px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  padding: 42px clamp(28px, 4.5vw, 58px) 48px;
  background:
    radial-gradient(circle at 13% 18%, rgba(150, 78, 210, 0.28), transparent 31%),
    radial-gradient(circle at 88% 74%, rgba(223, 35, 120, 0.2), transparent 34%),
    linear-gradient(145deg, #24153b 0%, #111b31 54%, #091424 100%);
  color: #fff;
  box-shadow: 0 24px 64px rgba(17, 24, 39, 0.2);
}

.coverage-proof-heading {
  width: min(100%, 760px);
  margin: 0 auto 38px;
  text-align: center;
}

.coverage-proof-heading h3 {
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.coverage-flow {
  display: grid;
  grid-template-columns: minmax(150px, 0.62fr) minmax(100px, 0.45fr) minmax(420px, 1.8fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
}

.coverage-book,
.coverage-laptop {
  margin: 0;
}

.coverage-book {
  justify-self: center;
  transform: rotate(-2deg);
}

.coverage-book img {
  display: block;
  width: min(100%, 220px);
  height: auto;
  border: 7px solid rgba(255, 255, 255, 0.92);
  border-radius: 5px;
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.38);
}

.coverage-arrow {
  width: 100%;
  max-width: 200px;
  justify-self: center;
  overflow: visible;
  filter: drop-shadow(0 4px 8px rgba(223, 35, 120, 0.22));
}

.coverage-arrow path {
  fill: none;
  stroke: #ff5ca8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.coverage-arrow path:nth-child(2) {
  stroke-width: 2;
  opacity: 0.48;
}

.coverage-laptop {
  width: 100%;
  justify-self: end;
  filter: drop-shadow(0 25px 28px rgba(0, 0, 0, 0.38));
}

.laptop-screen {
  position: relative;
  overflow: hidden;
  border: 10px solid #171b24;
  border-bottom-width: 14px;
  border-radius: 15px 15px 7px 7px;
  background: #fff;
}

.laptop-screen::before {
  position: absolute;
  z-index: 1;
  top: 4px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #444c5a;
  content: "";
  transform: translateX(-50%);
}

.laptop-screen img {
  display: block;
  width: 100%;
  height: auto;
}

.laptop-base {
  position: relative;
  width: 112%;
  height: 16px;
  margin-left: -6%;
  border-radius: 2px 2px 16px 16px;
  background: linear-gradient(180deg, #d8dce3 0%, #8d94a0 100%);
}

.laptop-base span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 17%;
  height: 5px;
  border-radius: 0 0 6px 6px;
  background: #aeb4bf;
  transform: translateX(-50%);
}

.creator-card {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(300px, 1fr);
  gap: 54px 64px;
  align-items: center;
  border-radius: 22px;
  padding: 28px;
  overflow: hidden;
  background: #11151c;
  color: #fff;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.18);
}

.creator-visuals {
  position: relative;
  align-self: stretch;
  min-height: 390px;
}

.creator-photo {
  width: 100%;
  height: 100%;
  min-height: 390px;
  border-radius: 15px;
  object-fit: cover;
  object-position: center;
}

.creator-portrait {
  position: absolute;
  top: auto;
  right: -24px;
  bottom: -24px;
  width: 220px;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.28));
  object-fit: contain;
}

.creator-copy {
  padding-right: 24px;
}

.creator-copy h3 {
  max-width: 470px;
  margin: 0 0 22px;
  font-size: clamp(1.85rem, 3.1vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.creator-copy > p:not(.section-kicker) {
  margin: 0 0 15px;
  color: #ccd1da;
  line-height: 1.65;
}

.giving-proof {
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 26px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  padding: 18px 0;
}

.giving-proof strong {
  min-width: 128px;
  flex: 0 0 auto;
  color: #fff;
  font-size: 1.8rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
  text-align: right;
}

.giving-proof span {
  max-width: 260px;
  color: #cdd3dc;
  font-size: 0.9rem;
  line-height: 1.35;
}

.profile-link,
.book-card a,
.channel-card a {
  color: #fff;
  font-weight: 700;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 5px;
}

.profile-link:hover,
.book-card a:hover,
.channel-card a:hover {
  text-decoration-color: #fff;
}

.creator-story {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(74%, 900px);
  border: 11px solid transparent;
  border-radius: 3px;
  padding: clamp(24px, 3.3vw, 38px);
  background:
    linear-gradient(#fffdf8, #fffdf8) padding-box,
    repeating-linear-gradient(135deg, #171717 0 2px, #e7dfd0 2px 7px) border-box;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.3);
  color: #1b1b1b;
}

.creator-story h4 {
  margin: 0 0 28px;
  border-top: 4px double #1b1b1b;
  border-bottom: 1px solid #1b1b1b;
  padding: 11px 0 13px;
  color: #151515;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1.1;
  text-align: center;
}

.creator-story-body {
  min-width: 0;
}

.creator-story-body::after {
  display: block;
  clear: both;
  content: "";
}

.creator-story-body p {
  margin: 0 0 18px;
  color: #232323;
  font-family: "Merriweather", Georgia, serif;
  font-size: 0.94rem;
  font-weight: 400;
  font-variant-ligatures: common-ligatures;
  letter-spacing: -0.004em;
  line-height: 1.85;
}

.creator-story-body > p:first-of-type::first-letter {
  float: left;
  margin: 7px 8px 0 0;
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.9rem;
  font-weight: 700;
  line-height: 0.76;
}

.creator-story-body p:last-child {
  margin-bottom: 0;
}

.creator-story-body strong {
  color: #111;
  font-size: 1.08rem;
}

.creator-story-image {
  position: relative;
  float: right;
  width: min(60%, 520px);
  margin: 0 0 26px 34px;
  padding: 0;
  border: 1px solid #a8a8a8;
  border-radius: 1px;
  overflow: hidden;
  background: #fff;
  appearance: none;
  cursor: zoom-in;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.creator-story-image:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.creator-story-image img {
  display: block;
  width: 100%;
  height: auto;
}

.book-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 28px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding: 34px 20px 8px;
}

.book-cover-link {
  display: block;
  border-radius: 6px;
  transition: transform 180ms ease, filter 180ms ease;
}

.book-cover-link:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
}

.book-card img {
  display: block;
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.34);
}

.book-label {
  margin: 0 0 7px;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.book-card h4 {
  margin: 0;
  font-size: 1.45rem;
}

.book-card div > p:not(.book-label) {
  max-width: 520px;
  margin: 10px 0 16px;
  color: #cdd3dc;
  line-height: 1.55;
}

.channel-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 28px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding: 34px 20px 8px;
}

.youtube-mark {
  position: relative;
  display: grid;
  width: 92px;
  height: 64px;
  place-items: center;
  margin: 0 auto;
  border-radius: 18px;
  background: #ff0033;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.youtube-mark:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.36);
}

.youtube-mark span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid #fff;
}

.channel-label {
  margin: 0 0 7px;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.channel-card h4 {
  margin: 0;
  font-size: 1.45rem;
}

.channel-card div > p:not(.channel-label) {
  max-width: 600px;
  margin: 10px 0 16px;
  color: #cdd3dc;
  line-height: 1.55;
}

.video-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: clamp(180px, 16vw, 210px);
  gap: 14px;
  align-items: stretch;
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding-top: 28px;
}

.video-swipe-hint {
  display: none;
}

.video-card {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 13px;
  overflow: hidden;
  background: #090b0f;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  color: #fff;
  text-decoration: none;
  isolation: isolate;
}

.video-card::after {
  position: absolute;
  z-index: 1;
  inset: 24% 0 0;
  background: linear-gradient(180deg, transparent 0%, rgba(3, 5, 8, 0.56) 45%, rgba(3, 5, 8, 0.97) 100%);
  content: "";
}

.video-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.video-card:hover img {
  transform: scale(1.025);
}

/* The third YouTube source image is heavily letterboxed, so crop it more tightly. */
.video-card:nth-child(3) img {
  transform: scale(1.55);
}

.video-card:nth-child(3):hover img {
  transform: scale(1.6);
}

.video-play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  transform: translate(-50%, -62%);
  background: rgba(216, 27, 114, 0.92);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.video-play i {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #fff;
}

.video-title {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 78px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.25;
}

.video-title small {
  margin-bottom: 5px;
  color: #ff8abd;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.video-card:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.story-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.story-card {
  position: relative;
  min-height: 330px;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #11151c;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.14);
}

.story-card::after {
  position: absolute;
  inset: 38% 0 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 7, 10, 0.42) 38%, rgba(5, 7, 10, 0.94) 100%);
  content: "";
  pointer-events: none;
}

.story-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card:first-child img {
  object-position: center 28%;
}

.story-card figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 92px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  color: #fff;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.35;
}

.testimonials {
  background:
    radial-gradient(circle at 12% 8%, rgba(223, 35, 120, 0.12), transparent 28%),
    var(--navy-deep);
  color: #fff;
}

.testimonials .section-shell {
  padding-bottom: 38px;
}

.testimonials .section-heading h2 {
  color: #fff;
}

.testimonials .section-heading > p:last-child {
  color: #aeb8c7;
}

.testimonial-heading {
  margin-bottom: 52px;
}

.testimonial-carousel {
  position: relative;
  width: min(100%, 960px);
  margin: 0 auto;
}

.testimonial-stage {
  position: relative;
  min-height: 390px;
}

.testimonial-slide {
  --slide-accent: #ff5ca8;
  position: relative;
  min-height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  padding: clamp(108px, 11vw, 124px) clamp(38px, 6vw, 70px) clamp(38px, 6vw, 70px);
  overflow: hidden;
  background: linear-gradient(135deg, #681642 0%, #35143a 54%, #131b2a 100%);
  box-shadow:
    inset 0 3px 0 var(--slide-accent),
    0 26px 70px rgba(0, 0, 0, 0.26);
}

.testimonial-slide:nth-child(2) {
  --slide-accent: #b887ff;
  background: linear-gradient(135deg, #4c2370 0%, #30204d 52%, #171c2e 100%);
}

.testimonial-slide:nth-child(3) {
  --slide-accent: #62c8ff;
  background: linear-gradient(135deg, #174f6f 0%, #1c3454 52%, #151b2d 100%);
}

.testimonial-slide:nth-child(4) {
  --slide-accent: #ff8a68;
  background: linear-gradient(135deg, #733023 0%, #4a2138 52%, #171a2b 100%);
}

.testimonial-slide:nth-child(5) {
  --slide-accent: #5de0d2;
  background: linear-gradient(135deg, #175c5b 0%, #1d3b50 52%, #151b2c 100%);
}

.testimonial-slide:nth-child(6) {
  --slide-accent: #ff72c0;
  background: linear-gradient(135deg, #67225c 0%, #392052 52%, #171a2d 100%);
}

.testimonial-slide--featured {
  --slide-accent: #ffcf66;
  background: linear-gradient(135deg, #654316 0%, #4a263c 52%, #171a2d 100%);
}

.testimonial-slide.is-active {
  animation: testimonial-reveal 420ms ease both;
}

.testimonial-slide blockquote {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0;
}

.testimonial-slide blockquote > p {
  margin: 22px 0 0;
  color: #e0e5ed;
  font-size: 1rem;
  line-height: 1.7;
}

.testimonial-slide blockquote .testimonial-lead {
  margin: 0;
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.testimonial-quote-mark {
  position: absolute;
  top: -34px;
  right: 32px;
  color: var(--slide-accent);
  font-family: Georgia, serif;
  font-size: 13rem;
  line-height: 1;
  opacity: 0.17;
  pointer-events: none;
}

.testimonial-slide footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.testimonial-avatar {
  flex: 0 0 auto;
  width: 88px;
  height: 88px;
  border: 3px solid var(--slide-accent);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.testimonial-avatar-fallback {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--slide-accent), #273552);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.testimonial-slide footer div {
  display: grid;
  gap: 3px;
}

.testimonial-slide footer strong {
  color: #fff;
  font-size: 1rem;
}

.testimonial-slide footer span {
  color: var(--slide-accent);
  font-size: 0.88rem;
}

.testimonial-slide footer .testimonial-avatar-fallback {
  color: #fff;
  font-size: 0.9rem;
}

.carousel-controls {
  position: absolute;
  z-index: 5;
  top: 22px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: max-content;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(6, 12, 23, 0.58);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
}

.carousel-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 1.15rem;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.carousel-arrow:hover {
  border-color: var(--accent);
  background: rgba(223, 35, 120, 0.14);
  transform: translateY(-2px);
}

.carousel-toggle {
  font-size: 0.72rem;
  letter-spacing: -0.12em;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.carousel-dots button.is-active {
  width: 24px;
  background: var(--accent);
}

.carousel-status {
  min-width: 44px;
  color: #8f9bad;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.carousel-arrow:focus-visible,
.carousel-dots button:focus-visible,
.proof-tile:focus-visible,
.creator-story-image:focus-visible,
.book-cover-link:focus-visible,
.youtube-mark:focus-visible,
.proof-lightbox-close:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.social-proof-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin: 64px 0 30px;
}

.social-proof-heading .section-kicker {
  margin-bottom: 8px;
}

.social-proof-heading h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  letter-spacing: -0.025em;
}

.social-proof-heading > p {
  margin: 0 0 5px;
  color: #8f9bad;
  font-size: 0.88rem;
}

.proof-collage {
  columns: 4;
  column-gap: 16px;
}

.proof-tile {
  display: inline-block;
  width: 100%;
  margin: 0 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.2);
  cursor: zoom-in;
  break-inside: avoid;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.proof-tile:hover {
  border-color: rgba(223, 35, 120, 0.7);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.proof-tile img {
  display: block;
  width: 100%;
  height: auto;
}

.proof-lightbox {
  width: min(calc(100% - 32px), 760px);
  max-height: calc(100vh - 40px);
  border: 0;
  border-radius: 18px;
  padding: 54px 16px 16px;
  overflow: auto;
  background: #11151c;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
  color: #fff;
}

.proof-lightbox::backdrop {
  background: rgba(2, 7, 16, 0.88);
  backdrop-filter: blur(5px);
}

.proof-lightbox img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.proof-lightbox p {
  margin: 13px 4px 0;
  color: #c3cad5;
  font-size: 0.9rem;
}

.proof-lightbox-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 1.5rem;
  line-height: 1;
}

@keyframes testimonial-reveal {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.login-modal {
  width: min(calc(100% - 32px), 880px);
  border: 0;
  border-radius: 16px;
  padding: 0;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  color: #172033;
}

.checkout-modal {
  width: min(calc(100% - 32px), 720px);
  max-height: min(90vh, 820px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 0;
  background: #fff;
  color: #172033;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}

.checkout-modal::backdrop {
  background: rgba(2, 7, 16, 0.78);
  backdrop-filter: blur(5px);
}

.checkout-modal-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 25px 28px 20px;
  border-bottom: 1px solid #e5e8ed;
  background: linear-gradient(135deg, #fff 58%, #fff1f7);
}

.checkout-modal-heading h2 {
  margin: 0;
  color: #131d2d;
  font-size: 1.55rem;
  line-height: 1.2;
}

.checkout-summary {
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin: 7px 0 0;
}

.checkout-summary > span:first-child {
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 800;
}

.checkout-summary > span:last-child {
  color: #6d7685;
  font-size: 0.82rem;
}

.checkout-form {
  padding: 24px 28px 28px;
}

.checkout-form > p:first-child {
  margin: 0 0 20px;
  color: #566174;
  line-height: 1.5;
}

.checkout-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.checkout-fields label {
  display: grid;
  gap: 7px;
  color: #263347;
  font-size: 0.86rem;
  font-weight: 700;
}

.checkout-fields label > span {
  display: block;
}

.checkout-fields strong {
  margin-left: 3px;
  color: var(--accent);
}

.checkout-fields small {
  margin-left: 8px;
  color: #8a94a3;
  font-size: 0.74rem;
  font-weight: 500;
}

.checkout-fields input,
.checkout-fields textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cdd4de;
  border-radius: 9px;
  padding: 0 13px;
  background: #fff;
  color: #172033;
  font: inherit;
  font-size: 0.94rem;
}

.checkout-fields textarea {
  min-height: 88px;
  max-height: 88px;
  padding-top: 12px;
  padding-bottom: 12px;
  line-height: 1.4;
  resize: none;
}

.checkout-fields input:focus,
.checkout-fields textarea:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(223, 35, 120, 0.14);
}

.checkout-field-wide {
  grid-column: 1 / -1;
}

.newsletter-choice {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 18px;
  color: #3f4a5b;
  cursor: pointer;
  font-size: 0.88rem;
  line-height: 1.4;
}

.newsletter-choice input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--accent);
}

.checkout-required-note {
  margin: 22px 0 11px;
  color: #7b8594;
  font-size: 0.78rem;
}

.payment-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.payment-button {
  min-height: 52px;
  border: 0;
  border-radius: 10px;
  padding: 0 18px;
  cursor: pointer;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 800;
  transition: transform 160ms ease, filter 160ms ease, opacity 160ms ease;
}

.payment-button:not(:disabled):hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.payment-button--paypal {
  background: #ffc439;
  color: #102a5e;
}

.payment-button--paypal span {
  font-size: 0.78rem;
  font-weight: 600;
}

.payment-button--stripe {
  background: #635bff;
  color: #fff;
}

.payment-button--free {
  width: 100%;
  background: var(--accent);
  color: #fff;
}

.payment-button--free:not(:disabled):hover {
  background: var(--accent-hover);
}

.payment-button[hidden],
.payment-actions[hidden] {
  display: none;
}

.payment-button:disabled {
  cursor: not-allowed;
  filter: grayscale(0.5);
  opacity: 0.38;
}

.package-cta:focus-visible,
.payment-button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.login-modal::backdrop {
  background: rgba(2, 7, 16, 0.72);
  backdrop-filter: blur(4px);
}

.modal-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 22px 24px 16px;
}

.modal-kicker {
  margin: 0 0 3px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.modal-heading h2 {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.2;
}

.modal-close {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: #f2f4f7;
  color: #344054;
  cursor: pointer;
  font: inherit;
  font-size: 1.5rem;
  line-height: 1;
}

.modal-close:hover {
  background: #e8ebef;
}

.login-form {
  display: flex;
  gap: 10px;
  padding: 0 24px 24px;
}

.login-form input {
  min-width: 0;
  min-height: 46px;
  flex: 1 1 190px;
  border: 1px solid #cfd5df;
  border-radius: 8px;
  padding: 0 13px;
  color: #172033;
  font: inherit;
  font-size: 0.95rem;
}

.login-form input::placeholder {
  color: #727b8b;
}

.login-form input:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(223, 35, 120, 0.16);
}

.modal-button {
  min-height: 46px;
  flex: 0 0 auto;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.modal-button-primary {
  background: var(--accent);
  color: #fff;
}

.modal-button-primary:hover:not(:disabled) {
  background: var(--accent-hover);
}

.modal-button-secondary {
  border-color: #d4d9e1;
  background: #fff;
  color: #414a5a;
}

.modal-button-secondary:hover:not(:disabled) {
  background: #f5f6f8;
}

.modal-close:focus-visible,
.modal-button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

@media (max-width: 820px) {
  .hero {
    min-height: 780px;
    background-image:
      linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.72) 32%, rgba(0, 0, 0, 0.16) 62%, rgba(0, 0, 0, 0) 78%),
      url("../assets/splash01.jpg");
    background-position: center, 44% top;
  }

  .hero-copy {
    width: min(100%, 590px);
  }

  .login-form {
    flex-wrap: wrap;
  }

  .login-form input {
    flex-basis: calc(50% - 5px);
  }

  .partner-logos {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 28px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    margin-bottom: 72px;
  }

  .coverage-proof {
    padding-right: 30px;
    padding-left: 30px;
  }

  .coverage-flow {
    grid-template-columns: minmax(120px, 0.55fr) minmax(75px, 0.32fr) minmax(330px, 1.55fr);
    gap: 18px;
  }

  .process-grid li {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 6px;
  }

  .process-grid li > span {
    grid-row: 1 / 3;
    margin: 4px 0 0;
  }

  .process-grid p {
    grid-column: 2;
  }

  .creator-card {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .creator-copy {
    padding: 0 14px;
  }

  .creator-portrait {
    right: 22px;
  }

  .creator-story {
    width: 100%;
  }

  .proof-collage {
    columns: 3;
  }

  .testimonial-avatar {
    width: 66px;
    height: 66px;
  }

  .packages-shell {
    width: min(calc(100% - 32px), 680px);
    padding: 52px 0 72px;
  }

  .faq-shell {
    width: min(calc(100% - 32px), 680px);
    padding: 78px 0 82px;
  }

  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .package-card {
    min-height: 570px;
  }

  .checkout-modal {
    border-radius: 15px;
  }

}

@media (max-width: 560px) {
  .packages-shell {
    padding-top: 44px;
  }

  .package-guarantee {
    margin-top: 26px;
  }

  .guarantee-seal-image {
    width: min(100%, 300px);
    margin-top: 20px;
  }

  .faq-shell {
    padding: 68px 0 72px;
  }

  .faq-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .faq-list summary {
    min-height: 58px;
    padding: 14px 48px 14px 52px;
    font-size: 0.95rem;
  }

  .faq-list summary::before {
    left: 15px;
    width: 25px;
    height: 25px;
  }

  .faq-list summary::after {
    right: 17px;
  }

  .faq-answer {
    padding: 17px 18px 20px;
  }

  .site-footer {
    padding: 34px 20px 30px;
  }

  .footer-brand {
    width: min(210px, 68vw);
  }

  .packages-heading {
    margin-bottom: 36px;
    text-align: left;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .package-card {
    min-height: auto;
  }

  .package-card-top {
    min-height: auto;
  }

  .package-description {
    min-height: auto;
  }

  .checkout-modal-heading {
    padding: 22px 20px 17px;
  }

  .checkout-form {
    padding: 21px 20px 24px;
  }

  .checkout-fields,
  .payment-actions {
    grid-template-columns: 1fr;
  }

  .checkout-field-wide {
    grid-column: auto;
  }

  .site-header,
  .hero-inner {
    width: min(calc(100% - 32px), var(--content-width));
  }

  .site-header {
    min-height: clamp(82px, 22vw, 108px);
  }

  .hero {
    min-height: 820px;
    align-items: end;
    background-image:
      linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.26) 36%, rgba(0, 0, 0, 0.58) 68%, rgba(0, 0, 0, 0.84) 100%),
      url("../assets/splash01.jpg");
    background-position: center, 65% top;
  }

  .hero-inner {
    padding: 170px 0 48px;
  }

  h1 {
    font-size: clamp(2.4rem, 11vw, 3.15rem);
  }

  .hero-summary {
    margin-top: 22px;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .login-modal {
    border-radius: 14px;
  }

  .modal-heading {
    padding: 20px 18px 14px;
  }

  .login-form {
    display: grid;
    padding: 0 18px 20px;
  }

  .login-form input,
  .modal-button {
    width: 100%;
  }

  .logo-strip-inner,
  .section-shell {
    width: min(calc(100% - 32px), var(--content-width));
  }

  .partner-logos {
    display: flex;
    gap: 38px;
    overflow-x: auto;
    padding: 4px 2px 10px;
    scrollbar-width: thin;
  }

  .partner-logos img {
    width: 68px;
    min-width: 68px;
  }

  .partner-wordmark {
    min-width: 68px;
  }

  .section-shell {
    padding: 76px 0 70px;
  }

  .process-grid {
    margin: 42px 0 60px;
  }

  .coverage-proof {
    margin-bottom: 60px;
    border-radius: 18px;
    padding: 34px 20px 38px;
  }

  .coverage-proof-heading {
    margin-bottom: 32px;
    text-align: left;
  }

  .coverage-proof-heading h3 {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
  }

  .coverage-flow {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .coverage-book img {
    width: min(62vw, 220px);
  }

  .coverage-arrow {
    width: 102px;
    height: 120px;
    transform: rotate(90deg);
  }

  .coverage-laptop {
    width: 100%;
  }

  .laptop-screen {
    border-width: 7px 7px 10px;
    border-radius: 10px 10px 5px 5px;
  }

  .testimonials .section-shell {
    padding-bottom: 26px;
  }

  .process-grid li {
    padding: 24px 21px;
  }

  .creator-card {
    gap: 34px;
    border-radius: 17px;
    padding: 12px 12px 24px;
  }

  .creator-visuals,
  .creator-photo {
    min-height: 270px;
  }

  .creator-portrait {
    top: auto;
    right: 18px;
    bottom: -25px;
    width: 158px;
    height: auto;
  }

  .creator-copy {
    padding: 8px 9px 0;
  }

  .giving-proof {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .giving-proof strong {
    min-width: 0;
    text-align: left;
  }

  .creator-story {
    border-width: 8px;
    padding: 25px 18px;
  }

  .creator-story h4 {
    margin-bottom: 22px;
  }

  .creator-story-image {
    float: none;
    width: 100%;
    margin: 0 0 28px;
  }

  .book-card {
    grid-template-columns: 92px 1fr;
    gap: 18px;
    padding: 28px 9px 0;
  }

  .channel-card {
    grid-template-columns: 92px 1fr;
    gap: 18px;
    padding: 28px 9px 0;
  }

  .book-card h4 {
    font-size: 1.18rem;
  }

  .channel-card h4 {
    font-size: 1.18rem;
  }

  .book-card div > p:not(.book-label) {
    font-size: 0.88rem;
  }

  .channel-card div > p:not(.channel-label) {
    font-size: 0.88rem;
  }

  .youtube-mark {
    width: 78px;
    height: 54px;
    border-radius: 15px;
  }

  .video-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    margin-top: 0;
    border-top: 0;
    padding: 24px 2px 14px;
    scroll-padding-left: 2px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .video-swipe-hint {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 22px 2px -4px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    padding-top: 20px;
    color: #d7dce4;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .video-swipe-hint span {
    color: #ff8abd;
    font-size: 1.3rem;
    line-height: 1;
  }

  .video-card {
    min-width: min(76vw, 320px);
    height: 180px;
    scroll-snap-align: start;
  }

  .story-gallery {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 2px 2px 14px;
    scroll-padding-left: 2px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .story-card {
    min-width: min(82vw, 360px);
    min-height: 320px;
    scroll-snap-align: start;
  }

  .story-card figcaption {
    min-height: 96px;
    padding: 20px;
  }

  .testimonial-heading {
    margin-bottom: 34px;
  }

  .testimonial-stage,
  .testimonial-slide {
    min-height: 500px;
  }

  .testimonial-slide {
    padding: 92px 25px 34px;
  }

  .testimonial-slide footer {
    align-items: center;
    flex-direction: row;
    gap: 13px;
  }

  .testimonial-avatar {
    width: 58px;
    height: 58px;
  }

  .carousel-controls {
    top: 16px;
    width: calc(100% - 24px);
    gap: 7px;
    padding: 5px 8px;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
  }

  .carousel-dots {
    gap: 6px;
  }

  .carousel-dots button {
    width: 7px;
    height: 7px;
  }

  .carousel-dots button.is-active {
    width: 19px;
  }

  .carousel-status {
    display: none;
  }

  .social-proof-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 52px;
  }

  .proof-collage {
    columns: 2;
    column-gap: 10px;
  }

  .proof-tile {
    margin-bottom: 10px;
    border-radius: 9px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .partner-logos.logos-ready > * {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .testimonial-slide.is-active {
    animation: none;
  }

  .proof-tile {
    transition: none;
  }

  .package-card,
  .package-card::before {
    transition: none;
  }

  .package-card:hover {
    transform: none;
  }

  .faq-list details[open] .faq-answer {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
