@font-face {
  font-family: "Bebas Neue";
  src: url("./fonts/bebas-neue-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Familjen Grotesk";
  src: url("./fonts/familjen-grotesk-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Familjen Grotesk";
  src: url("./fonts/familjen-grotesk-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Familjen Grotesk";
  src: url("./fonts/familjen-grotesk-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Familjen Grotesk";
  src: url("./fonts/familjen-grotesk-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Familjen Grotesk";
  src: url("./fonts/familjen-grotesk-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Prata";
  src: url("./fonts/prata-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --sky-top: #d7f5ff;
  --sky-mid: #9ee4fb;
  --sky-bottom: #ffe88a;
  --pool: #36a8d4;
  --pool-deep: #0a7fa8;
  --sun-warm: #f6d24d;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: rgba(255, 255, 255, 0.97);
  --surface-soft: rgba(212, 245, 255, 0.84);
  --line: rgba(0, 126, 166, 0.2);
  --line-strong: rgba(0, 126, 166, 0.34);
  --text: #0b3243;
  --text-soft: #2e6076;
  --text-muted: #4b7b92;
  --aqua: #36a8d4;
  --aqua-deep: #0a7fa8;
  --sea: #008eb6;
  --foam: #d9f8ff;
  --sun: #f6d24d;
  --sand: #fff0a8;
  --coral: #ffc75f;
  --mint: #d7ffe8;
  --shadow-soft: 0 18px 42px rgba(19, 88, 116, 0.1);
  --shadow-strong: 0 28px 70px rgba(18, 78, 102, 0.16);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-pill: 999px;
  --content: min(1200px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Familjen Grotesk", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  background:
    radial-gradient(circle at 8% 10%, rgba(0, 184, 230, 0.4), transparent 26%),
    radial-gradient(circle at 92% 12%, rgba(255, 213, 61, 0.42), transparent 25%),
    radial-gradient(circle at 74% 72%, rgba(0, 184, 230, 0.2), transparent 30%),
    linear-gradient(180deg, var(--sky-top) 0%, var(--sky-mid) 34%, #caf2ff 58%, var(--sky-bottom) 100%);
}

img,
video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

video {
  width: 100%;
}

svg {
  display: block;
}

button,
a {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

.page-noise,
.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.page-noise {
  opacity: 0.07;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.8) 0 0.8px, transparent 1px),
    radial-gradient(circle at 80% 40%, rgba(17, 135, 173, 0.22) 0 0.8px, transparent 1px);
  background-size: 22px 22px, 28px 28px;
}

.page-glow {
  z-index: -1;
}

.page-glow--one {
  background: radial-gradient(circle at 10% 22%, rgba(0, 184, 230, 0.3), transparent 32%);
}

.page-glow--two {
  background: radial-gradient(circle at 86% 72%, rgba(255, 213, 61, 0.34), transparent 28%);
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  z-index: 40;
  background: rgba(255, 255, 255, 0.35);
}

.scroll-progress__bar {
  display: block;
  width: 0;
  height: 100%;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(90deg, var(--aqua), var(--sun));
  box-shadow: 0 0 22px rgba(20, 184, 214, 0.25);
}

.topbar,
.section__inner,
.footer,
.hero,
.intro-banner {
  width: var(--content);
  margin: 0 auto;
}

.intro-banner {
  position: relative;
  z-index: 2;
  margin-top: 14px;
  pointer-events: none;
  user-select: none;
}

.intro-banner__frame {
  margin: 0;
  padding: clamp(6px, 1.2vw, 12px);
  border-radius: clamp(18px, 2.6vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(140deg, rgba(53, 167, 211, 0.26), rgba(246, 210, 77, 0.3)),
    rgba(255, 255, 255, 0.62);
  box-shadow:
    0 18px 36px rgba(10, 127, 168, 0.16),
    0 8px 20px rgba(246, 210, 77, 0.14);
  overflow: hidden;
}

.intro-banner__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: clamp(12px, 2vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-pill);
  background:
    linear-gradient(135deg, rgba(217, 248, 255, 0.86), rgba(255, 239, 168, 0.74)),
    rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(14px);
  box-shadow:
    0 14px 30px rgba(16, 90, 121, 0.1),
    0 6px 16px rgba(246, 210, 77, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand__logo {
  width: auto;
  height: 72px;
  object-fit: contain;
}

.brand__copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand__copy strong {
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1.25rem;
  line-height: 0.95;
  letter-spacing: 0.06em;
  color: var(--aqua-deep);
}

.brand__copy small {
  color: var(--text-muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand__handle {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
}

.brand__handle:hover,
.brand__handle:focus-visible {
  color: var(--aqua-deep);
}

.topbar__nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: var(--radius-pill);
  background: rgba(232, 250, 255, 0.9);
  border: 1px solid rgba(32, 111, 143, 0.08);
}

.topbar__nav a {
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 700;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.topbar__nav a:hover,
.topbar__nav a:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  color: var(--aqua-deep);
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:focus-visible {
  outline: 2px solid rgba(0, 119, 182, 0.25);
  outline-offset: 4px;
}

.button--primary {
  color: #0b3243;
  border-color: rgba(255, 199, 78, 0.9);
  background: linear-gradient(135deg, #ffe06d, #ffc84a);
  box-shadow:
    0 16px 28px rgba(255, 191, 0, 0.3),
    0 8px 20px rgba(255, 210, 95, 0.3);
}

.button--secondary {
  color: #f5fbff;
  border-color: rgba(38, 172, 217, 0.64);
  background:
    linear-gradient(135deg, #0e8fc0, #2db8e0);
}

.button--ghost {
  color: var(--pool-deep);
  border-color: rgba(10, 127, 168, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(246, 210, 77, 0.2));
}

.topbar__cta {
  color: #0b3243;
  border-color: rgba(255, 199, 78, 0.92);
  background: linear-gradient(135deg, #ffe16f, #ffca49);
  box-shadow:
    0 14px 24px rgba(255, 191, 0, 0.28),
    0 6px 16px rgba(255, 210, 95, 0.26);
}

.topbar__cta:hover,
.topbar__cta:focus-visible {
  box-shadow:
    0 18px 30px rgba(255, 191, 0, 0.36),
    0 8px 18px rgba(255, 210, 95, 0.32);
}

.button--large {
  min-height: 58px;
  width: 100%;
}

.button--cta {
  min-height: 48px;
  padding: 0 22px;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.eyebrow,
.waveband-card small,
.program-highlight small,
.answer-card small,
.price-badge small {
  margin: 0;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--aqua-deep);
  font-size: 0.95rem;
}

.hero {
  position: relative;
  padding: 34px 0 30px;
  display: grid;
  grid-template-columns: minmax(420px, 1.28fr) minmax(300px, 0.72fr);
  gap: 20px;
  align-items: start;
}

.hero__visual {
  max-width: 760px;
  justify-self: start;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 18px -24px -14px;
  z-index: -1;
  border-radius: 44px;
  background:
    linear-gradient(135deg, rgba(214, 246, 255, 0.74), rgba(246, 210, 77, 0.3)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-soft);
}

.hero__copy,
.hero__visual,
.method-copy,
.method-visual,
.program-copy,
.answers-visual,
.answers-grid,
.authority-copy,
.authority-visual,
.cta-panel__copy,
.cta-panel__purchase {
  min-width: 0;
}

.hero h1,
.section-heading h2,
.method-copy h2,
.authority-copy h2,
.cta-panel h2 {
  margin: 0;
  font-family: "Prata", Georgia, serif;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero h1 {
  margin-top: 14px;
  font-size: clamp(2.05rem, 4.2vw, 3.55rem);
  max-width: 8ch;
}

.hero__handle {
  display: inline-flex;
  align-items: center;
  margin-top: 2px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(10, 127, 168, 0.32);
  background:
    linear-gradient(135deg, rgba(53, 167, 211, 0.24), rgba(246, 210, 77, 0.28)),
    rgba(255, 255, 255, 0.88);
  color: var(--aqua-deep);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(16, 181, 222, 0.15);
}

.hero__subhead {
  margin: 16px 0 0;
  max-width: 28ch;
  color: var(--aqua-deep);
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  line-height: 1.34;
  letter-spacing: -0.02em;
}

.hero__lede,
.section-heading p,
.method-copy > p,
.stack-item p,
.program-highlight p,
.program-point p,
.answer-card p,
.authority-copy p,
.testimonial-card blockquote,
.cta-panel p,
.hero-note p,
.hero__offer span {
  margin: 0;
  color: var(--text-soft);
}

.hero__lede {
  margin-top: 16px;
  max-width: 60ch;
  font-size: 1.03rem;
  line-height: 1.58;
}

.hero__pills,
.hero__actions,
.authority-chips,
.hero-notes,
.hero__waveband,
.topbar__nav,
.program-points,
.testimonials-grid {
  display: flex;
}

.hero__pills {
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 24px;
}

.hero__pills--inline {
  margin-top: 16px;
}

.hero__pills--desktop {
  display: flex;
}

.hero__pills--mobile {
  display: none;
}

@media (min-width: 821px) {
  .hero__pills--desktop {
    display: flex;
  }

  .hero__pills--mobile {
    display: none;
  }
}

.hero__pills--visual {
  margin-top: 6px;
  justify-content: flex-start;
  display: flex;
  gap: 10px;
  overflow-x: visible;
  padding-bottom: 0;
  align-self: flex-start;
  width: auto;
}

.hero__pills--mobile {
  display: none;
}

.hero__pills span,
.authority-chips span,
.authority-chips a {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(10, 127, 168, 0.2);
  background:
    linear-gradient(135deg, rgba(213, 246, 255, 0.92), rgba(246, 210, 77, 0.36)),
    rgba(255, 255, 255, 0.8);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(17, 135, 173, 0.05);
  text-decoration: none;
  white-space: nowrap;
  flex: 0 0 auto;
}

.hero__pills--visual span {
  white-space: nowrap;
  justify-content: center;
  text-align: center;
}

.hero__actions {
  margin-top: 24px;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero__actions .button--primary {
  box-shadow: 0 18px 30px rgba(255, 191, 0, 0.34);
}

.hero__actions .button--secondary {
  min-height: 54px;
  padding: 0 24px;
}

.hero__microcopy {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.hero__offer {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(212, 247, 255, 0.8)),
    linear-gradient(180deg, rgba(246, 210, 77, 0.42), rgba(54, 168, 212, 0.28));
  border: 1px solid rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow-soft);
}

.hero__offer strong {
  display: block;
  font-size: 1.18rem;
  color: var(--text);
}

.hero__offer span {
  font-size: 0.95rem;
  line-height: 1.5;
}

.hero__visual {
  display: grid;
  gap: 20px;
}

.hero__copy {
  max-width: 430px;
  padding-top: 10px;
  justify-self: end;
}

.program-panel,
.answers-panel {
  padding: 20px 22px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(219, 249, 255, 0.78)),
    linear-gradient(180deg, rgba(54, 168, 212, 0.2), rgba(246, 210, 77, 0.28));
  box-shadow: var(--shadow-soft);
}

.program-panel strong,
.answers-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.04rem;
  line-height: 1.28;
}

.program-panel p,
.answers-panel p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.56;
}

.hero-brief {
  display: grid;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(17, 135, 173, 0.1);
  background:
    linear-gradient(135deg, rgba(219, 249, 255, 0.72), rgba(255, 241, 178, 0.5)),
    rgba(255, 255, 255, 0.62);
}

.hero-brief strong {
  display: block;
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.3;
  color: var(--text);
}

.hero-brief__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.hero-brief__list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.62;
}

.hero-brief__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aqua), var(--sun));
}

.hero-video-shell,
.hero-note,
.waveband-card,
.stack-item,
.method-summary,
.spotlight-card,
.program-highlight,
.program-point,
.answer-card,
.support-collage__item,
.authority-photo,
.authority-bio-card,
.authority-story-card,
.authority-quote,
.testimonial-card,
.cta-panel,
.price-badge {
  border: 1px solid rgba(255, 255, 255, 0.64);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(220, 250, 255, 0.86)),
    linear-gradient(180deg, rgba(54, 168, 212, 0.24), rgba(246, 210, 77, 0.3));
  box-shadow: var(--shadow-soft);
}

.hero-video-shell {
  position: relative;
  padding: 16px;
  border-radius: 32px;
}

.hero-video-shell--featured {
  padding: 18px;
  border-radius: 36px;
  box-shadow: var(--shadow-strong);
}

.hero-video-shell__title {
  margin: 0 0 12px;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aqua-deep);
}

.hero-video-shell__badge {
  position: static;
  z-index: auto;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(15, 49, 65, 0.82);
  color: white;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 0.94rem;
  letter-spacing: 0.1em;
}

.sound-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(10, 127, 168, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(217, 248, 255, 0.8)),
    rgba(255, 255, 255, 0.82);
  color: var(--aqua-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(17, 135, 173, 0.08);
  cursor: pointer;
}

.sound-toggle--below {
  margin-top: 12px;
  min-height: 34px;
  padding: 0 14px;
  font-size: 0.7rem;
}

.sound-toggle:hover,
.sound-toggle:focus-visible {
  transform: translateY(-1px);
}

.hero-video {
  aspect-ratio: 16 / 9;
  min-height: 430px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(5, 25, 34, 0.92), rgba(7, 34, 46, 0.88));
  object-fit: contain;
}

.hero-video-shell__note {
  margin: 14px 4px 2px;
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.5;
}

.hero-notes {
  gap: 14px;
}

.hero-note {
  flex: 1;
  padding: 18px 18px 16px;
  border-radius: var(--radius-lg);
}

.hero-note strong,
.stack-item strong,
.program-highlight strong,
.program-point strong,
.answer-card h3,
.testimonial-card__name,
.cta-panel h2,
.waveband-card strong {
  display: block;
}

.hero-note strong,
.stack-item strong,
.program-point strong {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.2;
}

.stack-item strong {
  font-size: 1.08rem;
}

.stack-item p {
  font-size: 1.02rem;
  line-height: 1.55;
}

.hero-note--accent {
  background:
    linear-gradient(135deg, rgba(16, 181, 222, 0.2), rgba(255, 208, 71, 0.26)),
    rgba(255, 255, 255, 0.88);
}

.hero__waveband {
  grid-column: 1 / -1;
  gap: 16px;
  margin-top: 8px;
}

.waveband-card {
  flex: 1;
  padding: 18px 18px 16px;
  border-radius: var(--radius-lg);
}

.waveband-card small {
  display: block;
  margin-bottom: 6px;
  font-size: 0.8rem;
  color: var(--aqua-deep);
}

.waveband-card strong {
  font-size: 1rem;
  line-height: 1.2;
}

.section {
  padding: 52px 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 22px;
}

.section-heading p,
.method-copy > p,
.authority-copy p,
.cta-panel p,
.hero__lede {
  max-width: 58ch;
}

.section-heading p,
.method-copy > p,
.authority-copy p {
  font-size: 1.05rem;
  line-height: 1.62;
}

.section-heading--compact {
  margin-bottom: 22px;
}

.section-heading h2,
.method-copy h2,
.authority-copy h2,
.cta-panel h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.9rem);
}

.method-layout,
.program-layout,
.answers-layout,
.authority-layout,
.cta-panel {
  display: grid;
  gap: 18px;
}

.method-layout {
  grid-template-columns: 1fr;
  align-items: start;
}

.method-copy {
  display: grid;
  gap: 16px;
}

.stack-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 10px 0 18px;
}

.stack-item {
  padding: 16px 18px;
  border-radius: var(--radius-lg);
}

.method-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.method-photo-card {
  margin: 0;
  padding: 10px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(220, 250, 255, 0.84)),
    linear-gradient(180deg, rgba(0, 184, 230, 0.14), rgba(255, 213, 61, 0.18));
  box-shadow: var(--shadow-soft);
}

.method-photo-card img {
  display: block;
  width: 100%;
  min-height: 320px;
  border-radius: 22px;
  object-fit: cover;
  object-position: center;
}

.method-panel {
  padding: 18px 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(219, 249, 255, 0.74)),
    linear-gradient(180deg, rgba(0, 184, 230, 0.14), rgba(255, 213, 61, 0.24));
  box-shadow: var(--shadow-soft);
}

.day-badge {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  background: rgba(20, 184, 214, 0.1);
  color: var(--aqua-deep);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.method-panel strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(1.22rem, 1.5vw, 1.6rem);
  line-height: 1.22;
}

.method-panel p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.01rem;
  line-height: 1.56;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.method-step {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(17, 135, 173, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.method-step strong {
  display: block;
  margin: 0;
  font-family: "Familjen Grotesk", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.spotlight-card {
  margin: 0;
  padding: 14px;
  border-radius: 30px;
}

.spotlight-card img,
.authority-photo img,
.authority-bio-card img,
.authority-story-card img,
.support-collage__item img {
  width: 100%;
  border-radius: calc(var(--radius-xl) - 12px);
}

.spotlight-card img,
.support-collage__item img,
.authority-bio-card img,
.authority-story-card img {
  object-fit: contain;
  background: rgba(242, 252, 255, 0.7);
}

.spotlight-card--wide {
  min-height: 100%;
}

.section--method,
.section--program,
.section--answers,
.section--authority,
.section--proof,
.section--cta {
  position: relative;
}

.section--method::before,
.section--program::before,
.section--answers::before,
.section--authority::before,
.section--proof::before,
.section--cta::before {
  content: "";
  position: absolute;
  inset: 10px 0 10px;
  width: min(1240px, calc(100vw - 12px));
  margin: 0 auto;
  z-index: -1;
  border-radius: 30px;
  border: 1px solid rgba(10, 127, 168, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.12)),
    linear-gradient(180deg, rgba(54, 168, 212, 0.16), rgba(246, 210, 77, 0.22));
}

.section--method::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.1)),
    linear-gradient(160deg, rgba(54, 168, 212, 0.24), rgba(246, 210, 77, 0.24));
}

.section--program::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.1)),
    linear-gradient(160deg, rgba(54, 168, 212, 0.24), rgba(217, 248, 255, 0.16));
}

.section--answers::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.1)),
    linear-gradient(160deg, rgba(246, 210, 77, 0.28), rgba(255, 243, 178, 0.18));
}

.section--authority::before,
.section--proof::before,
.section--cta::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.1)),
    linear-gradient(160deg, rgba(54, 168, 212, 0.2), rgba(246, 210, 77, 0.24));
}

.program-layout {
  grid-template-columns: 1fr;
  align-items: start;
}

.program-overview {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 14px;
  margin-bottom: 6px;
}

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

.exercise-grid--checklist {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: stretch;
  height: 100%;
  margin-top: 18px;
}

.exercise-grid--checklist .exercise-card {
  min-height: 0;
  height: 100%;
  padding: 6px;
  border-radius: 14px;
}

.exercise-grid--checklist .exercise-card__media {
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  border-radius: 10px;
  padding: 2px;
}

.exercise-grid--checklist .exercise-card__media img {
  border-radius: 8px;
}

.exercise-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(218, 249, 255, 0.84)),
    linear-gradient(180deg, rgba(0, 184, 230, 0.16), rgba(255, 213, 61, 0.2));
  box-shadow: 0 14px 32px rgba(17, 135, 173, 0.07);
}

.exercise-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  padding: 4px;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(243, 249, 251, 0.92);
}

.exercise-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
  object-fit: contain;
}

.exercise-card__copy {
  margin-top: 12px;
  padding: 0 4px 2px;
  text-align: center;
}

.exercise-card__copy strong {
  display: block;
  min-height: 0;
  font-size: 1.1rem;
  line-height: 1.25;
}

.exercise-card__copy span {
  display: none;
}

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

.movement-board--curated .movement-tile:first-child {
  grid-column: span 2;
}

.movement-tile {
  margin: 0;
  padding: 10px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(220, 250, 255, 0.84)),
    linear-gradient(180deg, rgba(255, 213, 61, 0.18), rgba(255, 255, 255, 0));
  box-shadow: var(--shadow-soft);
}

.movement-tile span {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 6px 11px;
  border-radius: var(--radius-pill);
  background: rgba(20, 184, 214, 0.1);
  color: var(--aqua-deep);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.movement-tile img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  background: rgba(248, 253, 255, 0.8);
}

.movement-tile--half {
  grid-column: span 3;
}

.movement-tile--third {
  grid-column: span 2;
}

.movement-tile--mini {
  padding: 8px;
}

.program-copy {
  display: grid;
  gap: 18px;
}

.program-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
  height: 100%;
  padding: 14px 16px;
}

.program-panel__lead {
  display: grid;
  gap: 6px;
}

.program-panel__lead strong {
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--aqua-deep);
}

.program-panel__lead small {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  background: rgba(20, 184, 214, 0.1);
  color: var(--aqua-deep);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.program-panel__body {
  display: grid;
  gap: 10px;
}

.program-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: block;
  column-count: 2;
  column-gap: 18px;
}

.program-panel .button {
  width: min(100%, 280px);
  justify-self: center;
  margin-top: 12px;
}

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

.program-list li {
  break-inside: avoid;
  margin: 0 0 6px;
}

.program-list li,
.answers-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
  font-size: 1.12rem;
  line-height: 1.35;
}

.program-list li::before,
.answers-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.3em;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--aqua-deep);
}

.program-highlight {
  padding: 22px;
  border-radius: 28px;
}

.program-highlight small,
.price-badge small {
  display: block;
  margin-bottom: 10px;
  font-size: 0.82rem;
  color: var(--aqua-deep);
}

.program-highlight strong {
  font-family: "Prata", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 2.2rem);
  line-height: 1.14;
}

.program-highlight p {
  margin-top: 12px;
}

.program-points {
  flex-direction: column;
  gap: 14px;
}

.program-point {
  padding: 18px 20px;
  border-radius: var(--radius-lg);
}

.answers-layout {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 32px;
}

.answers-visual {
  display: grid;
  max-width: 760px;
}

.answers-points {
  display: grid;
  gap: 14px;
}

.answers-panel {
  align-self: start;
}

.authority-photo,
.authority-bio-card,
.authority-story-card {
  margin: 0;
  padding: 12px;
  border-radius: 28px;
}

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

.answer-card {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(9, 120, 158, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(218, 249, 255, 0.82)),
    linear-gradient(180deg, rgba(0, 184, 230, 0.14), rgba(255, 213, 61, 0.2));
  box-shadow: 0 10px 22px rgba(17, 135, 173, 0.05);
}

.answer-card small {
  display: block;
  margin-bottom: 8px;
  font-size: 0.84rem;
  color: var(--aqua-deep);
}

.answer-card h3 {
  margin: 0 0 8px;
  font-size: 1.04rem;
  line-height: 1.24;
}

.answer-card p {
  font-size: 0.96rem;
  line-height: 1.5;
}

.authority-layout {
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.authority-visual {
  display: grid;
  gap: 16px;
}

.authority-photo img {
  object-fit: cover;
}

.authority-copy {
  display: grid;
  gap: 14px;
}

.authority-chips {
  flex-wrap: wrap;
  gap: 10px;
}

.authority-quote {
  margin: 0;
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  font-family: "Prata", Georgia, serif;
  font-size: clamp(0.94rem, 1.06vw, 1.08rem);
  line-height: 1.35;
  color: var(--text);
  white-space: nowrap;
}

.authority-copy .authority-invite {
  display: block;
  margin: 8px 0 0;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  line-height: 1.18;
  color: var(--aqua-deep) !important;
  letter-spacing: -0.01em;
  text-shadow: 0 10px 22px rgba(10, 127, 168, 0.12);
}

.section--proof .section-heading,
.section--cta .section__inner {
  position: relative;
}

.testimonials-grid {
  flex-wrap: wrap;
  gap: 14px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 8px);
  min-width: min(100%, 280px);
  padding: 18px;
  border-radius: 20px;
}

.testimonial-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.testimonial-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(20, 184, 214, 0.14);
  box-shadow: 0 10px 20px rgba(17, 135, 173, 0.08);
}

.testimonial-card__name {
  margin-bottom: 2px;
  font-size: 1.14rem;
  line-height: 1.1;
}

.testimonial-card blockquote {
  font-size: 0.98rem;
  line-height: 1.55;
}

.testimonial-card__role {
  display: block;
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section--cta {
  padding-top: 54px;
}

.cta-panel {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  align-items: center;
  padding: clamp(20px, 3vw, 30px);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(217, 248, 255, 0.88)),
    linear-gradient(180deg, rgba(0, 184, 230, 0.16), rgba(255, 213, 61, 0.2));
  box-shadow: var(--shadow-strong);
}

.cta-panel__copy {
  display: grid;
  gap: 12px;
}

.section--cta .cta-panel h2 {
  font-size: clamp(1.28rem, 1.9vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  max-width: 30ch;
}

.cta-panel p {
  font-size: 1.02rem;
  line-height: 1.58;
}

.cta-panel__bonus {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
}

.cta-panel__purchase {
  display: grid;
  gap: 14px;
}

.cta-panel__purchase .button--cta {
  width: min(100%, 280px);
  justify-self: center;
}

.cta-panel__security {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.cta-panel__secure-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.card-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.card-icon-img {
  height: 28px;
  width: auto;
  display: block;
}

.price-badge {
  padding: 16px 18px;
  border-radius: 20px;
  text-align: center;
}

.price-badge strong {
  display: block;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(1.6rem, 3.3vw, 2.2rem);
  line-height: 1;
}

.price-badge span,
.cta-panel__note {
  color: var(--text-soft);
}

.price-badge span {
  display: block;
  margin-top: 8px;
  font-size: 1.08rem;
  font-weight: 700;
}

.cta-panel__note {
  margin: 0;
  font-size: 0.96rem;
  text-align: center;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0 52px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer p {
  margin: 0;
}

.footer__link {
  color: inherit;
  text-decoration: none;
}

.footer__link:hover,
.footer__link:focus-visible {
  text-decoration: underline;
}

.button--cross {
  color: #0b3243;
  border-color: rgba(38, 172, 217, 0.4);
  background: linear-gradient(135deg, #77d8ff, #ffe16f);
  box-shadow:
    0 16px 28px rgba(20, 184, 214, 0.2),
    0 10px 22px rgba(255, 210, 95, 0.18);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal--delay {
  transition-delay: 120ms;
}

.reveal--delay-2 {
  transition-delay: 220ms;
}

.reveal--delay-3 {
  transition-delay: 320ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .button,
  .scroll-progress__bar,
  .topbar__nav a {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .intro-banner {
    width: var(--content);
  }

  .program-overview {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
  }

  .exercise-grid--checklist {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
    height: auto;
  }

  .program-panel {
    grid-template-columns: 1fr;
    height: auto;
  }

  .exercise-grid--checklist .exercise-card__media {
    height: auto;
    aspect-ratio: 1 / 1.08;
    min-height: 0;
  }

  .hero,
  .method-layout,
  .program-layout,
  .answers-layout,
  .authority-layout,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .stack-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .program-list {
    column-count: 1;
  }

  .hero__visual {
    max-width: none;
    justify-self: stretch;
  }

  .authority-quote {
    white-space: normal;
  }

  .hero__waveband,
  .hero-notes,
  .footer {
    flex-direction: column;
  }

  .movement-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .movement-board--curated .movement-tile:first-child {
    grid-column: span 2;
  }

  .exercise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .movement-tile--half,
  .movement-tile--third {
    grid-column: span 1;
  }

  .answers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonials-grid {
    flex-direction: row;
  }
}

@media (max-width: 820px) {
  :root {
    --content: min(100vw - 24px, 1180px);
  }

  .topbar {
    margin-top: 10px;
    padding: 10px 12px;
  }

  .topbar__nav,
  .topbar__cta {
    display: none;
  }

  .brand__logo {
    height: 64px;
  }

  .hero {
    padding: 26px 14px 22px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background:
      linear-gradient(135deg, rgba(214, 246, 255, 0.84), rgba(246, 210, 77, 0.32)),
      rgba(255, 255, 255, 0.9);
    overflow: hidden;
  }

  .intro-banner {
    margin-top: 14px;
  }

  .intro-banner__frame {
    padding: 8px;
    border-radius: 24px;
  }

  .intro-banner__image {
    border-radius: 18px;
  }

  .hero::before {
    display: none;
  }

  .section--method::before,
  .section--program::before,
  .section--answers::before,
  .section--authority::before,
  .section--proof::before,
  .section--cta::before {
    inset: 8px 0;
    width: auto;
  }

  .section {
    padding: 52px 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 8.8vw, 3.2rem);
  }

  .hero__subhead {
    font-size: clamp(1rem, 3.8vw, 1.3rem);
  }

  .hero__handle {
    font-size: 0.8rem;
    padding: 7px 12px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__pills--visual {
    display: flex;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
    align-self: stretch;
    width: 100%;
    -webkit-overflow-scrolling: touch;
  }

  .hero__pills--desktop {
    display: none;
  }

  .hero__pills--mobile {
    display: flex;
  }

  .hero__copy {
    max-width: none;
    justify-self: stretch;
  }

  .hero__pills--visual {
    padding: 0 2px 6px;
  }

  .hero-video {
    min-height: 0;
  }

  .hero-video-shell__title {
    font-size: 0.9rem;
  }

  .stack-list {
    grid-template-columns: 1fr;
  }

  .cta-panel__purchase .button--cta {
    width: 100%;
  }

  .hero-notes {
    flex-direction: column;
  }

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

  .movement-board {
    grid-template-columns: 1fr;
  }

  .movement-board--curated .movement-tile:first-child {
    grid-column: span 1;
  }

  .exercise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .exercise-grid--checklist .exercise-card__media {
    aspect-ratio: 1 / 1;
  }

  .method-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .program-panel {
    grid-template-columns: 1fr;
    padding: 14px;
    gap: 12px;
  }

  .program-panel__lead small {
    font-size: 0.8rem;
    padding: 6px 10px;
  }

  .program-list {
    margin-top: 8px;
    gap: 8px;
  }

  .program-list li {
    font-size: 0.95rem;
    line-height: 1.45;
    padding-left: 16px;
  }

  .program-panel .button {
    width: 100%;
    justify-self: stretch;
  }

  .testimonials-grid {
    flex-direction: column;
  }

  .testimonial-card {
    flex-basis: 100%;
  }

  .footer {
    padding-bottom: 38px;
  }
}

@media (max-width: 560px) {
  :root {
    --content: min(100vw - 16px, 1180px);
  }

  body {
    padding-bottom: max(0px, env(safe-area-inset-bottom));
  }

  .topbar {
    border-radius: 26px;
  }

  .brand {
    gap: 8px;
  }

  .brand__logo {
    height: 56px;
  }

  .brand__copy strong {
    font-size: 1.1rem;
  }

  .brand__copy small {
    font-size: 0.66rem;
  }

  .section {
    padding: 46px 0;
  }

  .hero {
    padding: 18px 10px 14px;
    border-radius: 20px;
  }

  .intro-banner {
    margin-top: 10px;
  }

  .intro-banner__frame {
    padding: 6px;
    border-radius: 20px;
  }

  .intro-banner__image {
    border-radius: 14px;
  }

  .section-heading h2,
  .method-copy h2,
  .authority-copy h2,
  .cta-panel h2 {
    font-size: clamp(1.7rem, 8.2vw, 2.35rem);
  }

  .hero__pills span,
  .authority-chips span,
  .authority-chips a {
    width: auto;
    justify-content: flex-start;
    text-align: left;
  }

  .hero__handle {
    font-size: 0.72rem;
    letter-spacing: 0.04em;
  }

  .hero-video-shell,
  .hero-note,
  .waveband-card,
  .stack-item,
  .program-highlight,
  .program-point,
  .answer-card,
  .testimonial-card,
  .price-badge {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-video-shell {
    padding: 12px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "title toggle"
      "video video";
    align-items: center;
    column-gap: 10px;
    row-gap: 10px;
  }

  .hero__lede,
  .stack-item p,
  .answer-card p,
  .testimonial-card blockquote {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .exercise-grid,
  .method-steps {
    grid-template-columns: 1fr;
  }

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

  .section--cta .cta-panel h2 {
    font-size: clamp(1.18rem, 6.5vw, 1.48rem);
    max-width: 100%;
  }

  .hero-video-shell__badge {
    margin-bottom: 0;
  }

  .hero-video-shell__title {
    grid-area: title;
    margin: 0;
  }

  .hero-video {
    grid-area: video;
  }

  .sound-toggle {
    grid-area: toggle;
    width: auto;
    min-height: 26px;
    padding: 0 10px;
    font-size: 0.8rem;
    margin: 0;
    justify-self: end;
  }

  .sound-toggle--below {
    margin-top: 0;
  }

  .method-photo-card img {
    min-height: 220px;
  }

  .authority-photo,
  .authority-bio-card,
  .authority-story-card,
  .spotlight-card,
  .movement-tile,
  .exercise-card {
    padding: 10px;
  }

  .program-panel {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }

  .program-panel__lead small {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
  }

  .program-list {
    margin-top: 6px;
    gap: 7px;
  }

  .program-list li {
    font-size: 0.9rem;
    line-height: 1.42;
    padding-left: 14px;
  }

  .cta-panel {
    border-radius: 28px;
    padding: 20px 16px;
  }

  .footer {
    font-size: 0.82rem;
  }
}

.section--cross-sell {
  padding-top: 20px;
}

.cross-sell-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: clamp(16px, 2.8vw, 24px);
  border-radius: 22px;
  border: 1px solid rgba(9, 120, 158, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(217, 248, 255, 0.9)),
    linear-gradient(180deg, rgba(0, 184, 230, 0.18), rgba(255, 213, 61, 0.2));
  box-shadow: var(--shadow-soft);
}

.cross-sell-panel__copy {
  max-width: 760px;
}

.cross-sell-panel h2 {
  margin: 8px 0 0;
  max-width: 28ch;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.cross-sell-panel p:not(.eyebrow) {
  margin: 8px 0 0;
  max-width: 56ch;
  color: var(--text-soft);
}

.cross-sell-panel__line {
  white-space: nowrap;
}

@media (max-width: 980px) {
  .cross-sell-panel {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .cross-sell-panel h2 {
    max-width: 100%;
  }

  .cross-sell-panel .button {
    width: 100%;
  }

  .cross-sell-panel__line {
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .cross-sell-panel {
    gap: 18px;
    padding: 20px 16px;
    border-radius: 28px;
  }

  .cross-sell-panel h2 {
    font-size: clamp(1.8rem, 9vw, 2.55rem);
  }
}
