:root {
  --bg: #0e1612;
  --bg-soft: #15231d;
  --surface: rgba(246, 236, 219, 0.08);
  --surface-strong: rgba(246, 236, 219, 0.14);
  --card: rgba(14, 22, 18, 0.78);
  --line: rgba(255, 241, 221, 0.14);
  --text: #f6eddc;
  --muted: #d5cab7;
  --sage: #9bc8a5;
  --olive: #5f8768;
  --sand: #d6b992;
  --amber: #f7a44b;
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 999px;
  --content: min(1180px, 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;
  background:
    radial-gradient(circle at top right, rgba(247, 164, 75, 0.12), transparent 36%),
    radial-gradient(circle at 20% 20%, rgba(155, 200, 165, 0.14), transparent 32%),
    linear-gradient(180deg, #102019 0%, #0d1613 30%, #0d1311 100%);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.28) 0 0.8px, transparent 1px),
    radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.18) 0 0.8px, transparent 1px);
  background-size: 22px 22px, 28px 28px;
}

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

.scroll-progress__bar {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--amber), #ffd79c);
  box-shadow: 0 0 24px rgba(247, 164, 75, 0.45);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  width: var(--content);
  margin: 0 auto;
  margin-top: 16px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(255, 248, 239, 0.72);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(135deg, rgba(249, 243, 232, 0.92), rgba(236, 225, 205, 0.86)),
    rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  box-shadow:
    0 14px 30px rgba(16, 26, 20, 0.18),
    0 6px 16px rgba(214, 185, 146, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  color: #17231d;
}

.brand__home {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand__logo {
  width: auto;
  height: 78px;
  object-fit: contain;
  filter: none;
  transform: translateY(-4px);
}

.brand__copy {
  display: grid;
  gap: 2px;
  font-size: 0.9rem;
  line-height: 1.05;
  align-content: center;
}

.brand__course {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1b2721;
}

.brand__name {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(23, 35, 29, 0.72);
}

.brand__handle {
  display: inline-flex;
  width: fit-content;
  color: rgba(23, 35, 29, 0.62);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.62rem;
  transition: color 180ms ease;
}

.brand__handle:hover,
.brand__handle:focus-visible {
  color: #17231d;
}

.topbar__handle {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(23, 35, 29, 0.62);
  text-decoration: none;
  white-space: nowrap;
  align-self: center;
}

.topbar__handle:hover,
.topbar__handle:focus-visible {
  color: #17231d;
}

.topbar__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 4px;
  align-self: center;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(220, 226, 210, 0.9);
  background: linear-gradient(135deg, rgba(238, 244, 230, 0.96), rgba(226, 235, 214, 0.92));
}

.topbar__nav a {
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  color: #2e332f;
  font-size: 0.76rem;
  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.75);
  color: #1b2721;
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

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

.button:focus-visible {
  outline: 2px solid #f8dfbc;
  outline-offset: 4px;
}

.button--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.button--primary {
  color: #111;
  background: linear-gradient(135deg, #f7b86e, #ffd7a8);
  box-shadow: 0 18px 32px rgba(247, 164, 75, 0.24);
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.topbar__cta {
  white-space: nowrap;
  color: #101713;
  border-color: rgba(255, 209, 142, 0.58);
  background: linear-gradient(135deg, #f9c46b, #ffdba4);
  box-shadow:
    0 16px 30px rgba(247, 164, 75, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.topbar__cta:hover,
.topbar__cta:focus-visible {
  box-shadow:
    0 20px 38px rgba(247, 164, 75, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.button--large {
  min-height: 58px;
  padding-inline: 28px;
}

.button--cta {
  min-height: 46px;
  padding-inline: 20px;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.hero {
  position: relative;
  width: var(--content);
  margin: 0 auto;
  padding: 42px 0 78px;
}

.hero__texture {
  position: absolute;
  inset: 8% -8% auto auto;
  width: min(52vw, 620px);
  aspect-ratio: 1 / 1;
  border-radius: 34% 66% 59% 41% / 42% 47% 53% 58%;
  background:
    linear-gradient(180deg, rgba(5, 11, 8, 0.12), rgba(5, 11, 8, 0.65)),
    url("./optimized_assets/hero-flow.webp") center/cover;
  opacity: 0.24;
  filter: saturate(0.7);
  transform: rotate(-9deg);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}

.hero__glow--one {
  width: 220px;
  height: 220px;
  top: 80px;
  left: -30px;
  background: rgba(155, 200, 165, 0.25);
}

.hero__glow--two {
  width: 240px;
  height: 240px;
  right: 90px;
  bottom: 80px;
  background: rgba(247, 164, 75, 0.18);
}

.hero__content,
.hero__footer,
.section__inner,
.footer {
  position: relative;
  z-index: 1;
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
  gap: 34px;
  align-items: center;
}

.hero__intro,
.hero__stage {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
}

.hero h1,
.section-heading h2,
.method-grid__left h2,
.authority-grid__copy h2,
.cta-panel h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 13ch;
  font-size: clamp(2.3rem, 5.3vw, 4.8rem);
  line-height: 1.01;
  letter-spacing: -0.03em;
}

.hero__handle {
  display: inline-flex;
  align-items: center;
  margin-top: 2px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(247, 164, 75, 0.35);
  background:
    linear-gradient(135deg, rgba(247, 164, 75, 0.14), rgba(155, 200, 165, 0.12)),
    rgba(255, 255, 255, 0.04);
  color: #f4dfc1;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(247, 164, 75, 0.14);
}

.hero h1 span {
  display: block;
  color: #f1d6a9;
  margin-top: 8px;
  font-size: clamp(1.3rem, 2.85vw, 2.25rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
}

.hero__lede {
  max-width: 62ch;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.07rem;
}

.hero__pills,
.hero__actions,
.hero__trust,
.hero__footer,
.problem-grid,
.feature-stack,
.flow-grid,
.authority-grid__chips,
.proof-layout,
.cta-panel,
.footer {
  display: flex;
}

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

.hero__pills span,
.authority-grid__chips span,
.authority-grid__chips a {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.86rem;
}

.authority-grid__chips a:hover,
.authority-grid__chips a:focus-visible {
  border-color: rgba(247, 196, 107, 0.34);
  color: #f6eddc;
}

.hero__actions {
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero__pills--mobile {
  display: none;
  margin-top: 14px;
}

.hero__pills--desktop {
  display: flex;
}

.hero__actions--mobile {
  display: none;
  margin-top: 18px;
}

.hero__actions--desktop {
  display: flex;
}

.hero__trust {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__trust li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero__trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), #ffe0b8);
}

.hero__stage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "media media"
    "count count";
  gap: 14px;
  min-height: 0;
  align-content: start;
  align-items: start;
}

.hero-card {
  position: relative;
  inset: auto;
  grid-area: media;
  display: block;
  min-height: 560px;
}

.hero-card__media {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(15, 21, 18, 0.82);
  box-shadow: var(--shadow);
}

.hero-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 172px;
  background:
    radial-gradient(circle at 18% 100%, rgba(6, 10, 8, 0.9), transparent 44%),
    linear-gradient(
      180deg,
      rgba(6, 10, 8, 0) 0%,
      rgba(6, 10, 8, 0.72) 42%,
      rgba(6, 10, 8, 0.96) 74%,
      rgba(6, 10, 8, 0.995) 100%
    );
  z-index: 1;
  pointer-events: none;
}

.hero-card__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  filter: contrast(1.05) saturate(0.92);
}

.hero-card__overlay {
  position: absolute;
  inset: 18px;
  z-index: 3;
  pointer-events: none;
}

.hero-card__badge {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(11, 17, 14, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card__frame {
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(255, 244, 226, 0.18);
  border-radius: calc(var(--radius-xl) - 12px);
  pointer-events: none;
}

.sound-toggle {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  pointer-events: auto;
  min-height: 42px;
  padding: 0 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(11, 17, 14, 0.74);
  color: var(--text);
  cursor: pointer;
}

.float-card {
  position: static;
  z-index: 3;
  align-self: start;
  display: grid;
  gap: 6px;
  max-width: none;
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 18, 15, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.float-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
  line-height: 1.2;
  white-space: nowrap;
}

.float-card span,
.float-card small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.2;
  white-space: nowrap;
}

.float-card--schedule {
  grid-area: schedule;
}

.float-card--count {
  grid-area: count;
}

.float-card--count strong {
  color: #f3d19f;
}

.float-card--count {
  width: 100%;
}

.hero__footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 10px;
  margin-top: 32px;
}

.metric {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(10, 16, 13, 0.48);
}

.metric strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(0.82rem, 1.05vw, 0.92rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.metric span {
  color: var(--muted);
  font-size: clamp(0.72rem, 0.95vw, 0.82rem);
  line-height: 1.18;
  white-space: nowrap;
}

.section {
  padding: 86px 0;
}

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

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

.section-heading h2,
.method-grid__left h2,
.authority-grid__copy h2,
.cta-panel h2 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
}

.problem-grid {
  gap: 18px;
}

.section--problem .section-heading {
  max-width: 100%;
  margin-bottom: 18px;
}

.section--problem .section-heading h2 {
  max-width: 14ch;
  font-size: clamp(2.25rem, 4.2vw, 4.1rem);
  line-height: 1.06;
}

.problem-split {
  display: grid;
  grid-template-columns: minmax(320px, 1.06fr) minmax(280px, 0.94fr);
  gap: 26px;
  align-items: start;
}

.problem-copy {
  display: grid;
  gap: 0;
}

.problem-photo {
  justify-self: end;
  margin: 0;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  background: rgba(8, 13, 11, 0.66);
}

.problem-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.problem-pill-stack {
  display: grid;
  gap: 12px;
  align-content: start;
  grid-auto-rows: min-content;
}

.problem-card,
.problem-pill,
.flow-card,
.feature-chip,
.mini-note,
.proof-copy blockquote {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(13, 19, 16, 0.74);
  box-shadow: var(--shadow);
}

.problem-card {
  flex: 1;
  padding: 26px;
  border-radius: var(--radius-lg);
}

.problem-pill {
  padding: 16px 18px;
  border-radius: 18px;
}

.problem-card__index {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--sage);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.problem-card h3,
.problem-pill h3,
.flow-card h3 {
  margin: 0 0 8px;
  font-size: 1.34rem;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
}

.problem-card p,
.problem-pill p,
.flow-card p,
.method-grid__left p,
.authority-grid__copy p,
.cta-panel p,
.mini-note span,
.feature-chip span {
  margin: 0;
  color: var(--muted);
}

.problem-pill p {
  font-size: 1rem;
  line-height: 1.54;
}

.flows-title-compact {
  font-size: clamp(1.6rem, 3.1vw, 2.35rem) !important;
  line-height: 1.14 !important;
  letter-spacing: -0.01em !important;
}

.flow-item-title-compact {
  font-size: 1.1rem !important;
  line-height: 1.28 !important;
}

.cta-title-compact {
  font-size: clamp(0.98rem, 1.6vw, 1.28rem) !important;
  line-height: 1.22 !important;
  letter-spacing: 0 !important;
  max-width: 42ch;
}

.section--method {
  background:
    linear-gradient(180deg, rgba(246, 236, 219, 0.03), rgba(246, 236, 219, 0.01));
}

.method-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.88fr);
  gap: 34px;
  align-items: center;
}

.method-grid__left {
  display: grid;
  gap: 18px;
}

.feature-stack {
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
}

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

.feature-chip strong {
  display: block;
  margin-bottom: 6px;
}

.method-grid__right {
  display: grid;
  gap: 18px;
}

.portrait-card {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.portrait-card img,
.authority-grid__visual img,
.proof-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.authority-grid__visual img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 34%;
}

.mini-note {
  padding: 20px;
  border-radius: var(--radius-lg);
}

.mini-note strong {
  display: block;
  margin-bottom: 6px;
  color: #f3d19f;
}

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

.flow-card {
  width: 100%;
  min-width: 0;
  padding: 26px;
  border-radius: var(--radius-lg);
}

.flow-card__tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: rgba(155, 200, 165, 0.12);
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.authority-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.08fr) minmax(320px, 0.92fr);
  gap: 34px;
  align-items: center;
}

.authority-grid__visual {
  position: relative;
  margin: 0;
  min-height: 620px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top, rgba(214, 185, 146, 0.1), transparent 42%),
    rgba(11, 17, 14, 0.78);
  box-shadow: var(--shadow);
}

.authority-grid__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 17, 14, 0.08), rgba(11, 17, 14, 0.22)),
    linear-gradient(0deg, rgba(11, 17, 14, 0.3), transparent 26%);
  pointer-events: none;
}

.authority-grid__copy {
  display: grid;
  gap: 20px;
  padding: clamp(26px, 3vw, 38px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(214, 185, 146, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(13, 19, 16, 0.78);
  box-shadow: var(--shadow);
}

.authority-grid__headline {
  display: grid;
  gap: 6px;
}

.authority-grid__headline h2 {
  margin: 0;
  max-width: 7ch;
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.authority-grid__intro {
  margin: 0;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(243, 209, 159, 0.84);
}

.authority-grid__role {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 11px 15px;
  border-radius: 999px;
  border: 1px solid rgba(214, 185, 146, 0.2);
  background: rgba(214, 185, 146, 0.08);
  color: #f4e5cf !important;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

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

.authority-grid__story p:first-child {
  font-size: 1.03rem;
  line-height: 1.72;
  color: rgba(246, 237, 220, 0.92);
}

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

.authority-grid__invite {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.18rem, 2vw, 1.52rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #f3d19f !important;
}

.section--proof {
  overflow: hidden;
}

.proof-layout {
  gap: 20px;
  align-items: flex-start;
}

.proof-gallery {
  flex: 1.28;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  min-width: 0;
  align-items: start;
}

.proof-shot {
  margin: 0;
  min-height: 0;
  align-self: start;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.proof-shot--offset {
  transform: translateY(24px);
}

.proof-copy {
  flex: 0.72;
  flex-direction: column;
  gap: 16px;
}

.proof-copy blockquote {
  margin: 0;
  padding: 22px;
  border-radius: var(--radius-lg);
  font-size: 1rem;
}

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

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: center;
  gap: 24px;
  padding: clamp(22px, 3.2vw, 36px);
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(155, 200, 165, 0.1), rgba(247, 164, 75, 0.12)),
    rgba(12, 18, 15, 0.82);
  box-shadow: var(--shadow);
}

.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: 32ch;
}

.cta-panel__bonus {
  font-size: 1.35rem;
  font-weight: 700;
  color: #f6eddc;
}

.cta-panel__brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding: 14px 18px;
  border-radius: 26px;
  color: #17231d;
  background: linear-gradient(135deg, rgba(249, 243, 232, 0.96), rgba(236, 225, 205, 0.92));
  border: 1px solid rgba(255, 248, 239, 0.72);
  box-shadow:
    0 16px 32px rgba(2, 8, 6, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.cta-panel__brand img {
  width: auto;
  height: 104px;
  object-fit: contain;
  flex: 0 0 auto;
}

.cta-panel__brand span {
  color: rgba(23, 35, 29, 0.8);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.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: rgba(223, 235, 227, 0.92);
}

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

.price-badge {
  width: 100%;
  padding: 14px 16px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(236, 225, 205, 0.9)),
    linear-gradient(180deg, rgba(214, 185, 146, 0.22), rgba(95, 135, 104, 0.2));
  box-shadow:
    0 14px 30px rgba(2, 8, 6, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.price-badge small {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(23, 35, 29, 0.7);
}

.price-badge strong {
  display: block;
  margin-top: 6px;
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  line-height: 1.1;
  color: #17231d;
}

.cta-panel__note {
  margin: 0;
  font-size: 0.82rem;
  text-align: center;
  color: var(--muted);
}

.card-icon-img {
  display: block;
  width: auto;
  height: 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 8px 20px rgba(3, 8, 6, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.footer {
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 60px;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer p {
  margin: 0;
}

.footer__instagram {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}

.footer__instagram:hover,
.footer__instagram:focus-visible {
  color: #f7d24e;
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  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 {
    transition: none;
  }

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

@media (max-width: 1080px) {
  .topbar__nav {
    display: none;
  }

  .hero__content,
  .method-grid,
  .authority-grid,
  .proof-layout,
  .cta-panel {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .hero__stage {
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "count";
    gap: 12px;
  }

  .hero-card {
    inset: auto;
    min-height: 520px;
  }

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

  .float-card strong,
  .float-card span,
  .float-card small {
    white-space: normal;
  }

  .problem-split {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .problem-copy {
    order: 1;
  }

  .problem-photo {
    order: 2;
  }

  .problem-photo {
    max-width: 440px;
    margin: 0 auto;
  }

  .proof-gallery {
    width: 100%;
  }

  .proof-shot--offset {
    transform: none;
  }

  .authority-grid__visual {
    min-height: 560px;
  }

  .footer {
    flex-direction: column;
  }

  .metric strong,
  .metric span {
    white-space: normal;
  }
}

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

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

  .topbar {
    margin-top: 10px;
    padding: max(10px, env(safe-area-inset-top)) 12px 10px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
  }

  .topbar__cta {
    display: none;
  }

  .topbar__handle {
    display: inline-flex;
    justify-self: end;
    font-size: 0.56rem;
  }

  .brand {
    width: auto;
    justify-content: flex-start;
  }

  .brand__logo {
    height: 60px;
    transform: translateY(-3px);
  }

  .brand__course {
    font-size: 0.82rem;
    letter-spacing: 0.09em;
  }

  .brand__name {
    font-size: 0.62rem;
  }

  .hero {
    padding-top: 24px;
    padding-bottom: 54px;
  }

  .hero__texture {
    inset: 10% 0 auto auto;
    width: min(58vw, 280px);
    transform: none;
  }

  .hero__glow--one {
    left: 0;
  }

  .hero__glow--two {
    right: 24px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.6rem, 14vw, 4.5rem);
  }

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

  .hero__lede {
    font-size: 1rem;
  }

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

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

  .cta-panel {
    gap: 16px;
    padding: 18px;
  }

  .cta-panel__note {
    white-space: normal;
  }

  .price-badge {
    padding: 10px 12px;
  }

  .hero__pills span,
  .authority-grid__chips span,
  .authority-grid__chips a {
    font-size: 0.82rem;
  }

  .authority-grid__copy {
    padding: 24px 20px;
  }

  .authority-grid__visual {
    min-height: 0;
  }

  .authority-grid__visual img {
    height: auto;
  }

  .hero__trust {
    gap: 10px;
  }

  .hero__trust li {
    font-size: 0.84rem;
  }

  .hero__stage {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .hero-card {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .hero-card__media {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 10 / 16;
  }

  .hero-card__media::after {
    height: 154px;
  }

  .hero-card__video {
    position: absolute;
    inset: 0;
    object-position: 50% 34%;
  }

  .hero-card__overlay {
    position: static;
    inset: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 2px;
    pointer-events: auto;
    order: -1;
  }

  .hero-card__media {
    order: 1;
  }

  .hero__pills--desktop {
    display: none;
  }

  .hero__pills--mobile {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 8px;
  }

  .hero__actions--desktop {
    display: none;
  }

  .hero__actions--mobile {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-top: 10px;
  }

  .hero-card__badge {
    display: none;
  }

  .sound-toggle {
    position: static;
    align-self: center;
    display: inline-flex;
    width: auto;
    min-width: 0;
    min-height: 28px;
    padding: 0 14px;
    font-size: 0.6rem;
    letter-spacing: 0.06em;
  }


  .hero-card__frame {
    inset: 10px;
  }

  .float-card {
    position: static;
    max-width: none;
    width: 100%;
    padding: 14px 16px;
  }

  .float-card--schedule,
  .float-card--count {
    margin-top: 12px;
  }

  .float-card--count {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 8px;
  }

  .section {
    padding: 56px 0;
  }

  .section-heading h2,
  .method-grid__left h2,
  .authority-grid__copy h2 {
    font-size: clamp(2rem, 10vw, 3.3rem);
  }

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

  .section--cta .cta-panel h2 {
    font-size: clamp(1.2rem, 5.4vw, 1.6rem);
  }

  .cta-panel__bonus {
    font-size: 1.1rem;
    line-height: 1.35;
  }

  .cta-panel__actions {
    width: 100%;
    min-width: 0;
  }

  .card-icons {
    gap: 6px;
  }

  .card-icon-img {
    height: 28px;
    padding: 3px 7px;
  }

  .cta-panel__brand {
    width: 100%;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
  }

  .cta-panel__brand img {
    height: 88px;
  }

  .proof-gallery {
    grid-template-columns: 1fr;
  }

  .proof-shot {
    min-height: auto;
  }
}

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

  .topbar {
    padding-bottom: 10px;
    border-radius: 26px;
  }

  .brand {
    gap: 6px;
    padding-inline: 6px;
  }

  .brand__logo {
    height: 54px;
    transform: translateY(-2px);
  }

  .brand__course {
    font-size: 0.68rem;
    white-space: normal;
  }

  .brand__name {
    font-size: 0.58rem;
  }

  .topbar__handle {
    font-size: 0.52rem;
  }

  .hero {
    padding-top: 18px;
    padding-bottom: 42px;
  }

  .hero__texture {
    inset: 12% 0 auto auto;
    width: min(54vw, 220px);
  }

  .hero__glow--one,
  .hero__glow--two {
    width: 180px;
    height: 180px;
  }

  .hero__glow--one {
    top: 72px;
  }

  .hero__glow--two {
    right: 8px;
    bottom: 56px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 13vw, 3.8rem);
  }

  .hero__lede {
    font-size: 0.94rem;
  }

  .hero__pills {
    gap: 6px;
    margin-top: 10px;
  }

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

  .hero__pills span {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
    text-align: center;
    min-width: 0;
    padding: 6px 10px;
    font-size: 0.8rem;
  }

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

  .hero__trust {
    margin-top: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-card {
    border-radius: 24px;
  }

  .hero-card__media {
    aspect-ratio: 10 / 16.8;
    border-radius: 24px;
  }

  .hero-card__media::after {
    height: 148px;
  }

  .hero-card__badge {
    padding: 7px 9px;
    font-size: 0.64rem;
  }

  .hero-card__frame {
    inset: 8px;
  }

  .hero-card__overlay {
    position: absolute;
    inset: auto 12px 12px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0;
    z-index: 3;
  }

  .hero-card__badge {
    text-align: center;
  }

  .sound-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 0;
    min-height: 28px;
    padding: 0 14px;
    font-size: 0.6rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
  }

  .float-card {
    padding: 12px 14px;
  }

  .float-card strong {
    font-size: 0.92rem;
  }

  .float-card span,
  .float-card small {
    font-size: 0.8rem;
  }

  .section {
    padding: 46px 0;
  }

  .flow-card {
    padding: 20px;
  }

  .cta-panel {
    padding: 16px;
  }

  .cta-panel__bonus {
    font-size: 1rem;
  }

  .cta-panel__note {
    font-size: 0.76rem;
  }

  .price-badge strong {
    font-size: clamp(1.2rem, 6vw, 1.6rem);
  }

  .metric,
  .problem-card,
  .flow-card,
  .feature-chip,
  .mini-note,
  .proof-copy blockquote {
    padding: 16px;
  }

.problem-card p,
.problem-pill p,
.flow-card p,
.feature-chip span,
.proof-copy blockquote {
    font-size: 0.94rem;
    line-height: 1.56;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .problem-photo {
    max-width: 340px;
    border-radius: 14px;
  }

  .problem-pill {
    padding: 14px;
  }

  .problem-pill h3 {
    font-size: 1.1rem;
  }

  .problem-pill p {
    font-size: 0.94rem;
    line-height: 1.5;
  }

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

  .cta-panel__brand {
    gap: 10px;
    padding: 12px 14px;
  }

  .cta-panel__brand img {
    height: 74px;
  }

  .cta-panel__brand span {
    font-size: 0.64rem;
    letter-spacing: 0.08em;
    overflow-wrap: anywhere;
  }

  .cta-panel__secure-label {
    font-size: 0.8rem;
  }

  .card-icon-img {
    height: 24px;
    padding: 2px 6px;
  }
}

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

.cross-sell-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: clamp(22px, 3.5vw, 34px);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(245, 164, 75, 0.1), rgba(155, 200, 165, 0.08)),
    rgba(12, 18, 15, 0.76);
  box-shadow: var(--shadow);
}

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

.cross-sell-panel h2 {
  margin: 10px 0 0;
  max-width: 24ch;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.cross-sell-panel p:not(.eyebrow) {
  margin: 12px 0 0;
  max-width: 54ch;
  color: var(--muted);
}

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

.cross-sell-panel .button--secondary {
  color: #f6fbff;
  border-color: rgba(125, 202, 255, 0.62);
  background: linear-gradient(135deg, #1d8fcb, #3eb2eb);
  box-shadow:
    0 16px 30px rgba(30, 144, 203, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.cross-sell-panel .button--secondary:hover,
.cross-sell-panel .button--secondary:focus-visible {
  box-shadow:
    0 22px 36px rgba(30, 144, 203, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

@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.6rem);
  }
}
