/* =========================================================
   Financial Increase — Redesign (v2)
   Sections 1 (Nav + Hero, full green) and 2 (Community + Tools)
   Palette + type locked to new_design/brandkit.jpeg
   ========================================================= */

:root {
  --evergreen: #0D3B34;
  --forest: #1B473D;
  --moss: #355E50;
  --gold: #D7A327;
  --gold-deep: #b88a1d;
  --orange: #F36E21;
  --cream: #F4EBDD;
  --sand: #E7DCCB;
  --ink: #243833;

  --green-deep: #062019;
  /* hero_full.png base / curve color (rgb 6,32,25) */

  --cream-soft: #faf4ea;
  --line-gold: rgba(215, 163, 39, 0.45);

  --serif: "Cormorant Garamond", Georgia, serif;
  --display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;

  --r-md: 16px;
  --r-lg: 28px;
  --r-xl: 34px;
  --r-pill: 999px;
  --r-btn: 12px;
  /* one shared radius for every button on the page */
  --shadow-soft: 0 18px 50px -24px rgba(0, 0, 0, 0.45);
  --shadow-card: 0 34px 80px -32px rgba(0, 0, 0, 0.55);

  /* ---- DESIGN SYSTEM TOKENS (single source of truth) ---- */

  /* Layout: one content column + one wide column, both centered with the
     same gutter so every section's left edge aligns with the nav. */
  --content: 1200px;
  /* default text/grid column */
  --content-wide: 1320px;
  /* hero / portal / coaches feature rows */
  --gutter: clamp(20px, 4vw, 56px);
  --shell: var(--content);
  /* back-compat alias used by .shell */

  /* Type scale — serif headings, sans body. Every section pulls from here;
     no section invents its own clamp. */
  --fs-h1: clamp(2.7rem, 5vw, 4.6rem);
  --fs-h2: clamp(2.1rem, 4vw, 3.5rem);
  --fs-h3: clamp(1.4rem, 2vw, 1.9rem);
  --fs-lead: clamp(1.02rem, 1.15vw, 1.12rem);
  /* section intro paragraph */
  --fs-body: 1.05rem;
  --fs-cta: 1.18rem;
  /* shared size for the serif "elegant" CTAs */
  --fs-eyebrow: 0.76rem;
  --ls-eyebrow: 0.24em;
  /* one tracking value for every eyebrow label */
  --fw-eyebrow: 600;
  --lh-tight: 1.04;
  /* display headings */
  --lh-snug: 1.2;
  /* sub-heads */
  --lh-body: 1.65;
  /* paragraphs */

  /* Spacing scale — 4px base. Use these for margins/gaps/padding. */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;
  --section-y: clamp(64px, 9vw, 120px);
  /* standard vertical section rhythm */

  /* Standard breakpoints (reference; media queries use the px values):
     --bp-sm 480 · --bp-md 768 · --bp-lg 1024 · --bp-xl 1280 */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* clip (not hidden) so horizontal bleed is still trimmed WITHOUT turning the
     body into a scroll container — hidden forces overflow-y to compute to auto,
     which breaks position: sticky and desyncs scroll measurements */
  overflow-x: clip;
}

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

.shell {
  width: 100%;
  max-width: var(--content);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* wide variant for full-bleed feature rows (hero, portal, coaches) — same
   gutter as .shell so left edges align with the nav, just a little wider */
.shell--wide {
  max-width: var(--content-wide);
}

em {
  font-style: italic;
}

/* Responsive heading/paragraph wrapping — headings balance their lines, body
   copy avoids orphans. Applied page-wide so wrapping is consistent and no
   longer depends on hand-placed <br> tags. */
h1,
h2,
h3,
.hero__title,
.community__title,
.portal__title,
.dash__title,
.next__title,
.coaches__title,
.faq__title,
.finale__title,
.nextcard__title {
  text-wrap: balance;
}

.hero__sub,
.community__lead,
.portal__lead,
.dash__lead,
.coaches__lead,
.faq__lead,
.nextcard__body,
.next__sub {
  text-wrap: pretty;
}

/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */
.btn {
  --btn-fs: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--sans);
  font-weight: 600;
  font-size: var(--btn-fs);
  line-height: 1;
  letter-spacing: 0.01em;
  border-radius: var(--r-btn);
  padding: 0.85em 1.5em;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease, color .2s ease;
}

.btn i {
  font-size: 1.1em;
}

.btn:active {
  transform: translateY(1px);
}

.btn--gold {
  background: var(--gold);
  color: #2c2008;
  box-shadow: 0 12px 26px -14px rgba(215, 163, 39, 0.9);
}

.btn--gold:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -16px rgba(215, 163, 39, 0.95);
}

.btn--pop {
  background: var(--orange);
  color: #fff;
}

.btn--pop:hover {
  transform: translateY(-2px);
  filter: brightness(0.97);
}

/* white "Watch Free Workshop" pill used on the cream card */
.btn--workshop {
  background: #fff;
  color: var(--evergreen);
  box-shadow: var(--shadow-soft);
  padding-left: 0.55em;
}

.btn--workshop:hover {
  transform: translateY(-2px);
}

.playcircle {
  width: 1.9em;
  height: 1.9em;
  border-radius: 50%;
  background: var(--evergreen);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-size: 0.7em;
}

.btn--sm {
  --btn-fs: 0.82rem;
  padding: 0.7em 1.15em;
}

.btn--lg {
  --btn-fs: 1rem;
  padding: 1em 1.7em;
}

/* The "elegant" serif CTA — one definition shared by every large marketing
   button (dashboard, FAQ, finale) so they no longer drift in size/weight. */
.btn--serif {
  font-family: var(--serif);
  font-size: var(--fs-cta);
  font-weight: 600;
}

/* ---------------------------------------------------------
   Eyebrow label
   --------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--evergreen);
}

.eyebrow--gold i {
  color: var(--gold);
  font-size: 1.2em;
}

.eyebrow__mark {
  width: 26px;
  height: 26px;
}

/* ---------------------------------------------------------
   NAV
   --------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--green-deep);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand__seal {
  width: 44px;
  height: 44px;
}

.brand__word {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.02;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 28px);
}

.nav__links a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(244, 235, 221, 0.85);
  text-decoration: none;
  transition: color .2s ease;
}

.nav__links a:hover {
  color: #fff;
}

.has-caret i {
  font-size: 0.8em;
  opacity: 0.7;
  transition: transform .2s ease;
}

/* ---- dropdown menus (CSS hover + keyboard focus-within, no JS) ---- */
.nav__drop {
  position: relative;
  display: flex;
  align-items: center;
}

/* full nav-height trigger so the panel anchors to the bar's bottom edge; the
   inline-flex centering is what keeps the label vertically centered (the Log In
   trigger lives in .nav__cta, so it doesn't inherit .nav__links a centering) */
.nav__drop > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 74px;
}

.nav__drop:hover .has-caret i,
.nav__drop:focus-within .has-caret i {
  transform: rotate(180deg);
}

.nav__menu {
  position: absolute;
  top: 100%;
  left: 0;
  /* floats just below the bar; the ::before bridge spans this gap so the hover
     never drops while the cursor travels from trigger to panel */
  margin-top: 9px;
  min-width: 234px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 7px;
  background: linear-gradient(180deg, #11433a, #0c322b);
  border: 1px solid rgba(215, 163, 39, 0.28);
  border-radius: 16px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 24px 48px -20px rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s cubic-bezier(.16, 1, .3, 1), visibility .2s;
  z-index: 60;
}

/* transparent hover bridge covering the margin gap above the panel */
.nav__menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -11px;
  height: 11px;
}

.nav__menu--right {
  left: auto;
  right: 0;
}

.nav__drop:hover .nav__menu,
.nav__drop:focus-within .nav__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  text-decoration: none;
  padding: 8px 14px 8px 8px;
  border-radius: 11px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(244, 235, 221, 0.9);
  transition: background .18s ease, color .18s ease;
}

.nav__menu a i {
  flex: none;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(215, 163, 39, 0.13);
  color: var(--gold);
  font-size: 1.1rem;
  transition: background .18s ease, color .18s ease;
}

.nav__menu a:hover {
  background: rgba(244, 235, 221, 0.07);
  color: #fff;
}

.nav__menu a:hover i {
  background: var(--gold);
  color: var(--green-deep);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__login {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cream);
  text-decoration: none;
}

.nav__login:hover {
  color: var(--gold);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}

.nav__burger span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 24px 22px;
  background: var(--evergreen);
  /* never let a long menu run past the viewport on short phones */
  max-height: calc(100dvh - 74px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-menu a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 500;
  padding: 11px 4px;
  border-bottom: 1px solid rgba(244, 235, 221, 0.08);
}

.mobile-menu__group {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 4px 4px;
}

.mobile-menu__sub {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 14px;
  font-size: 0.95rem;
  color: rgba(244, 235, 221, 0.82);
}

.mobile-menu__sub i {
  flex: none;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(215, 163, 39, 0.13);
  color: var(--gold);
  font-size: 1.05rem;
}

.mobile-menu .btn {
  margin-top: 12px;
}

.mobile-menu.is-open {
  display: flex;
}

/* ---------------------------------------------------------
   HERO — full composited background image + content overlay
   --------------------------------------------------------- */
.hero {
  position: relative;
  background-color: var(--green-deep);
  overflow: hidden;
}

/* the photo zone: capped to ~one viewport; image is cover-cropped */
.hero__top {
  position: relative;
  height: clamp(540px, calc(100vh - 250px), 820px);
  overflow: hidden;
  background: var(--green-deep);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}

/* fade the cropped bottom into the deep green so the curve stays seamless */
.hero__top::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 36%;
  background: linear-gradient(to bottom, transparent, var(--green-deep) 90%);
  z-index: 1;
  pointer-events: none;
}

.hero__inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* centre the cluster vertically; the stage hugs the card's height so the
     dashboard can stretch to exactly match it */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__stage {
  position: relative;
  /* height hugs the card so the dashboard (stretched) can match it exactly */
  height: auto;
  width: 100%;
  max-width: 1680px;
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  /* stretch both columns to the same (card) height so their bottoms line up */
  align-items: stretch;
  /* centre the card+dashboard cluster and keep the gap tight, so the two masses
     read as one balanced unit with even breathing room on both sides */
  justify-content: center;
  gap: clamp(16px, 2vw, 44px);
  --hero-card-w: clamp(400px, 38vw, 560px);
  --hero-card-minh: clamp(360px, 56vh, 560px);
}

/* cream text card, left — large and breathing */
.hero__card {
  position: relative;
  z-index: 4;
  flex: 0 0 auto;
  width: var(--hero-card-w);
  min-height: var(--hero-card-minh);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
  border-radius: var(--r-xl);
  padding: clamp(34px, 4vw, 66px) clamp(30px, 3.2vw, 58px);
  box-shadow: var(--shadow-card);
}

.hero__title {
  font-family: var(--display);
  font-weight: 700;
  color: var(--evergreen);
  font-size: var(--fs-h1);
  line-height: 1.02;
  letter-spacing: -0.015em;
}

.hero__title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 700;
}

.hero__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 20px;
}

.hero__divider span {
  flex: 1;
  height: 1.5px;
  background: var(--line-gold);
  max-width: 80px;
}

.hero__divider img {
  width: 28px;
  height: 28px;
  opacity: 0.9;
}

.hero__sub {
  font-size: var(--fs-lead);
  line-height: var(--lh-body);
  color: var(--moss);
  max-width: 42ch;
  margin-bottom: var(--space-6);
}

.hero__actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
}

.hero__actions .btn {
  flex: 0 1 auto;
  padding: 0.92em 1.35em;
  font-size: 0.92rem;
}

.hero__actions .playcircle {
  width: 1.8em;
  height: 1.8em;
}

/* floating dashboard mockup, right — transparent PNG, no card frame.
   It sits at the hero__inner (full-width) level, so it scales with the viewport
   and reaches toward the screen edge instead of being capped by the stage. */
.hero__dash {
  position: relative;
  z-index: 5;
  flex: 0 1 auto;
  /* responsive width: grows with the viewport, floored so it never looks small
     on large monitors and capped so it never crowds the card */
  width: clamp(380px, 42vw, 720px);
  /* stretched to the card's height (via the stage), with the image pinned to the
     bottom — so the dashboard's bottom edge lines up exactly with the card's,
     while its shorter image leaves the people's faces clear above it */
  display: flex;
  align-items: flex-end;
}

.hero__dash img {
  display: block;
  width: 100%;
}

/* assurance line on the green */
.assurance {
  position: relative;
  text-align: center;
  padding: 10px 24px 30px;
}

.assurance p {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  font-weight: 500;
  color: var(--cream);
}

.assurance em {
  color: var(--gold);
}

/* bezier curve into cream */
.hero__curve {
  display: block;
  width: 100%;
  height: clamp(46px, 7vw, 104px);
  margin-bottom: -1px;
}

/* ---------------------------------------------------------
   COMMUNITY + TOOLS
   --------------------------------------------------------- */
.community {
  position: relative;
  background: var(--cream);
  padding: clamp(12px, 2vw, 30px) 0 clamp(56px, 7vw, 96px);
  overflow: hidden;
}

.community__dots {
  position: absolute;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(var(--line-gold) 1.6px, transparent 1.6px);
  background-size: 16px 16px;
  opacity: 0.6;
  pointer-events: none;
}

.community__dots--tl {
  top: 50px;
  left: 28px;
}

.community__dots--bl {
  bottom: 50px;
  left: 46px;
}

.spark {
  position: absolute;
  color: var(--gold);
  opacity: 0.6;
  pointer-events: none;
}

.spark--1 {
  top: 120px;
  left: 8%;
  font-size: 22px;
}

.spark--2 {
  top: 38%;
  left: 2%;
  font-size: 16px;
}

.spark--3 {
  top: 200px;
  right: 46%;
  font-size: 18px;
}

.community__inner {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  /* wheel on the left spanning both rows; copy then the pill bar stacked on the
     right (pillrow is a sibling now so mobile can reorder it independently) */
  grid-template-areas:
    "wheel copy"
    "wheel pills";
  align-items: center;
  column-gap: clamp(20px, 3vw, 48px);
  row-gap: 0;
}

.community__inner > .wheel {
  grid-area: wheel;
}

.community__inner > .community__copy {
  grid-area: copy;
}

.community__inner > .pillrow {
  grid-area: pills;
}

/* The orbit wheel (container-query sized so internals scale with it) */
.wheel {
  position: relative;
  width: min(100%, 800px);
  aspect-ratio: 1;
  margin-inline: auto;
  container-type: inline-size;
}

.wheel__rings {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.wheel__core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 30cqi;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(120% 120% at 30% 25%, var(--forest), var(--evergreen));
  color: var(--cream);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 8.6cqi;
  box-shadow: 0 20px 44px -18px rgba(13, 59, 52, 0.6);
  z-index: 2;
}

.node {
  position: absolute;
  transform: translate(-50%, -50%);
  width: clamp(80px, 20.7cqi, 124px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cream-soft);
  border: 1.5px solid var(--line-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-align: center;
  box-shadow: 0 10px 24px -16px rgba(13, 59, 52, 0.5);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  z-index: 1;
}

.node i {
  font-size: clamp(1.1rem, 4.2cqi, 1.7rem);
  color: var(--moss);
  line-height: 1;
}

.node b {
  font-size: clamp(0.52rem, 2cqi, 0.72rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--evergreen);
}

.node:hover {
  transform: translate(-50%, -50%) scale(1.07);
  border-color: var(--gold);
  box-shadow: 0 16px 30px -16px rgba(215, 163, 39, 0.6);
}

/* Copy column */
.community__copy {
  max-width: 540px;
}

.community__title {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--evergreen);
  font-size: var(--fs-h2);
  line-height: 1.07;
  letter-spacing: -0.005em;
  margin: var(--space-4) 0 var(--space-5);
}

.community__title em {
  color: var(--gold);
  font-style: italic;
}

.community__accent {
  position: relative;
  display: inline-block;
}

.community__accent .swash {
  position: absolute;
  left: 0;
  bottom: -0.26em;
  width: 100%;
  height: 0.34em;
  overflow: visible;
}

.community__lead {
  font-size: var(--fs-lead);
  line-height: var(--lh-body);
  color: var(--moss);
  max-width: 46ch;
}

.community__lead strong {
  color: var(--evergreen);
  font-weight: 700;
}

.pillrow {
  display: flex;
  gap: 0;
  margin-top: 28px;
  padding: clamp(14px, 1.6vw, 20px) 6px;
  background: var(--cream-soft);
  border: 1px solid var(--line-gold);
  border-radius: var(--r-md);
  max-width: 480px;
}

.pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
  padding-inline: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--evergreen);
}

.pill+.pill {
  border-left: 1px solid var(--line-gold);
}

.pill__ic {
  font-size: 1.5rem;
  color: var(--gold-deep);
}

/* ---------------------------------------------------------
   TRAINING PORTAL (section 3)
   --------------------------------------------------------- */
.portal {
  position: relative;
  background: var(--evergreen);
}

.portal__top {
  position: relative;
  z-index: 1;
  /* containing block for the device cluster; visible so the cluster can spill
     past the curve onto the beige foot below */
  overflow: visible;
  background-color: var(--evergreen);
  background-image: linear-gradient(0deg, rgba(6, 32, 25, 0.35), rgba(6, 32, 25, 0.05)), url("images/decorative/texture-green.png");
  background-size: cover;
  background-position: center;
  padding-top: clamp(36px, 4.5vw, 64px);
  /* room below the CTA before the curve starts (left side of the S) */
  padding-bottom: clamp(74px, 9vw, 124px);
}

.portal__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  /* text column pinned to the top of the green band */
  gap: clamp(16px, 2vw, 34px);
}

/* eyebrow: cap in a ring + short rule + label */
.portal__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
}

.portal__cap {
  width: 46px;
  height: 46px;
  border: 1.5px solid rgba(215, 163, 39, 0.6);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.portal__cap i {
  font-size: 1.5rem;
}

.portal__eyebrow-label {
  padding: 0.62em 1.15em;
  border: 1.5px solid rgba(215, 163, 39, 0.6);
  border-radius: 11px;
  line-height: 1;
}

.portal__title {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--cream);
  font-size: var(--fs-h1);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: var(--space-5) 0 0;
}

.portal__title em {
  color: var(--gold);
  font-style: normal;
}

.portal__rule {
  display: block;
  width: 64px;
  height: 3px;
  background: var(--gold);
  margin: 22px 0 24px;
  border-radius: 2px;
}

.portal__lead {
  font-size: var(--fs-lead);
  line-height: var(--lh-body);
  color: rgba(244, 235, 221, 0.82);
  max-width: 46ch;
  margin-bottom: var(--space-6);
}

.portal__copy {
  position: relative;
  z-index: 2;
  flex: 0 1 500px;
  /* text column: ~500px, may shrink on smaller screens */
  max-width: 500px;
}

/* Both sub-blocks behave as a single stacked column on desktop */
.portal__copy-top,
.portal__copy-bottom {
  width: 100%;
}

.portal__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.pbadge {
  display: inline-flex;
  align-items: center;
  gap: 0.65em;
  padding: 0.6em 1em 0.6em 0.6em;
  border: 1px solid rgba(215, 163, 39, 0.4);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.15;
}

.pbadge__ic {
  flex: 0 0 auto;
  width: 2.3em;
  height: 2.3em;
  border-radius: 50%;
  background: var(--gold);
  color: var(--evergreen);
  display: grid;
  place-items: center;
  font-size: 1.15em;
}

.portal__cta {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* devices image — flows in the same row as the copy (after the flex gap), so the
   cluster always sits beside the text with a guaranteed gap and never touches it.
   Uses assets/devices-tight.png (transparent padding cropped off) so the laptop's
   left edge sits right at the column start. Sized by viewport WIDTH *and* HEIGHT so
   the whole section stays fully visible on screen at any size, while the surplus
   width bleeds cleanly off the right edge like new_design/section3.jpeg. */
.portal__devices {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  /* reserves the right column width but contributes no height, so the image
     no longer stretches the green band — the curve can ride high */
  height: 0;
  pointer-events: none;
}

.portal__devices img {
  position: absolute;
  top: 0;
  left: -8%;
  /* Anchored to the column and capped so the cluster scales with the 1200
     content block instead of sprawling to 67vw on wide monitors. A small,
     controlled bleed to the right keeps the reference's "spills off-edge" feel
     without leaving the left half of the page empty. */
  width: clamp(560px, 60vw, 760px);
  height: auto;
  max-width: none;
  max-height: min(80vh, 820px);
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.45));
}

/* S-curve separator — taller so the asymmetric S reads clearly: low on the
   left, sweeping up high on the right behind the device cluster */
.portal__curve {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: clamp(150px, 16vw, 250px);
  display: block;
}

/* cream foot band */
.portal__foot {
  position: relative;
  z-index: 0;
  /* below the device cluster so the cluster can spill onto it */
  background: var(--cream);
  padding: clamp(0px, 0.4vw, 6px) 0 clamp(18px, 2.6vw, 32px);
}

.portal__foot-inner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 26px);
}

.portal__emblem {
  flex: 0 0 auto;
  width: clamp(56px, 7vw, 78px);
  height: clamp(56px, 7vw, 78px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--evergreen);
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.portal__tagline {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  line-height: 1.4;
  color: var(--ink);
  max-width: 60ch;
}

.portal__tagline em {
  font-style: italic;
  color: var(--evergreen);
}

/* ---------------------------------------------------------
   CUSTOM DASHBOARD (section 4)
   iPhone + floating tooltips ported from the index.html hero
   --------------------------------------------------------- */
.dash {
  position: relative;
  background: var(--cream);
  overflow: hidden;
  /* tighter than the standard section rhythm so the paper-cut lines sit
     closer to the content (gap shrunk ~30% top and bottom) */
  padding: calc(var(--section-y) * 0.7) 0;
}

/* ---------------------------------------------------------
   Raised "paper-cut" dividers around the dashboard section.
   A hairline sits on the section boundary; a soft elliptical
   shadow falls AWAY from the section — up above the top line,
   down below the bottom line — so the dashboard block reads
   like a strip of paper that's been cut and lifted off the page.
   Placed as their own elements (not on .dash, which clips) so the
   shadow can spill onto the neighbouring sections.
   --------------------------------------------------------- */
.paper-cut {
  position: relative;
  height: 0;
  z-index: 6;
  pointer-events: none;
}

/* the hairline — gradient so it dissolves toward the edges */
.paper-cut::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 0;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(90deg,
      transparent,
      rgba(13, 59, 52, 0.34) 16%,
      rgba(13, 59, 52, 0.34) 84%,
      transparent);
}

/* the soft curved shadow — darkest at the centre, tapering to nothing at
   the ends, lifting away from the section so the block reads as raised */
.paper-cut::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 26px;
}

.paper-cut--top::after {
  transform: translateY(-100%);
  /* shadow sits above the top line */
  background: radial-gradient(58% 100% at 50% 100%,
      rgba(13, 59, 52, 0.30),
      rgba(13, 59, 52, 0.14) 38%,
      transparent 72%);
}

.paper-cut--bottom::after {
  /* shadow sits below the bottom line */
  background: radial-gradient(58% 100% at 50% 0%,
      rgba(13, 59, 52, 0.30),
      rgba(13, 59, 52, 0.14) 38%,
      transparent 72%);
}

/* faint wheat/leaf motifs at the edges, like the reference */
.dash__leaf {
  position: absolute;
  top: 50%;
  width: clamp(120px, 15vw, 250px);
  opacity: 0.07;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
}

.dash__leaf--l {
  left: -2%;
  transform: translateY(-50%) scaleX(-1) rotate(8deg);
}

.dash__leaf--r {
  right: -2%;
  transform: translateY(-50%) rotate(-6deg);
}

.dash__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 440px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 88px);
}

/* phone cell sized to the device so the tooltips anchor to its edges */
.dash__device {
  position: relative;
  justify-self: center;
  width: min(360px, 86vw);
}

/* copy */
.dash__copy {
  max-width: 560px;
}

.dash__eyebrow {
  color: var(--gold-deep);
}

.dash__eyebrow .eyebrow__mark {
  width: 30px;
  height: 30px;
}

.dash__title {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--evergreen);
  font-size: var(--fs-h2);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 18px 0 22px;
}

.dash__lead {
  font-size: var(--fs-lead);
  line-height: var(--lh-body);
  color: var(--moss);
  max-width: 48ch;
  margin-bottom: var(--space-6);
}

/* dark-green CTA with gold serif label (reference) */
.btn--green {
  background: var(--evergreen);
  color: var(--gold);
  box-shadow: 0 18px 40px -20px rgba(13, 59, 52, 0.7);
}

.btn--green:hover {
  background: #0a2e29;
  transform: translateY(-2px);
  box-shadow: 0 24px 50px -22px rgba(13, 59, 52, 0.8);
}

.dash__cta {
  padding: 0.85em 1.6em;
}

/* ---- ported phone3d ---- */
.phone3d {
  position: relative;
  width: 100%;
  height: min(680px, 74vh);
  z-index: 2;
  cursor: grab;
}

.phone3d:active {
  cursor: grabbing;
}

.phone3d__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  touch-action: pan-y;
}

.phone3d__fallback {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 76%;
  height: auto;
  border-radius: 36px;
  box-shadow: var(--shadow-card);
  display: none;
  /* shown only if the 3D model fails to boot */
}

.phone3d.is-fallback .phone3d__fallback {
  display: block;
}

/* soft contact shadow that grounds the device */
.phone3d__shadow {
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: 72%;
  height: 56px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(20, 16, 10, 0.22), transparent 70%);
  filter: blur(14px);
  z-index: 1;
  pointer-events: none;
  animation: shadowBreath 6s ease-in-out infinite;
}

@keyframes shadowBreath {
  50% {
    transform: translateX(-50%) scale(0.9);
    opacity: 0.8;
  }
}

/* ---- floating glass cards / tooltips ---- */
.dash__device .glass-card {
  z-index: 4;
}

.glass-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(13, 59, 52, 0.08);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 18px 44px -22px rgba(13, 59, 52, 0.5);
}

.gc__label {
  font-size: 11px;
  color: var(--moss);
  font-weight: 500;
}

.gc__val {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--evergreen);
  line-height: 1.12;
}

.gc__seal {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--evergreen);
}

.gc__ring {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.gc1 {
  top: 56px;
  left: -32px;
}

.gc2 {
  bottom: 116px;
  right: -38px;
}

.float-a {
  animation: floatA 6s ease-in-out infinite;
}

.float-b {
  animation: floatB 7s ease-in-out infinite;
}

@keyframes floatA {
  50% {
    transform: translateY(-14px);
  }
}

@keyframes floatB {
  50% {
    transform: translateY(12px);
  }
}

/* ---------------------------------------------------------
   COMMUNITY SCENE (section 5)
   Scroll-choreographed tablet + member chips, ported from
   index.html onto the cream/wheat background of the reference.
   --------------------------------------------------------- */
.scene {
  position: relative;
  /* No manual height track: ScrollTrigger pins .scene__pin with pinSpacing:true
     and creates the scroll spacer itself, so there is a single source of truth
     (the old fixed 300vh + JS pin were two systems that desynced and overlapped).
     Before JS runs / on mobile this collapses to the pin's own 100vh height. */
  background: var(--cream);
}

.scene__pin {
  /* ScrollTrigger pins this (pinSpacing:true) for the choreography; relative is
     the correct base for it to manage. */
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  /* top clears the sticky 74px nav so the eyebrow is never hidden under it */
  padding: calc(74px + clamp(14px, 2.4vh, 34px)) 24px clamp(24px, 4vh, 52px);
}

/* faint wheat motifs, matching section 4 */
.scene__leaf {
  position: absolute;
  top: 50%;
  width: clamp(120px, 15vw, 250px);
  opacity: 0.07;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.scene__leaf--l {
  left: -1.5%;
  transform: translateY(-50%) scaleX(-1) rotate(8deg);
}

.scene__leaf--r {
  right: -1.5%;
  transform: translateY(-50%) rotate(-6deg);
}

.scene__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.scene__glow {
  position: absolute;
  top: 48%;
  left: 50%;
  width: 1100px;
  height: 740px;
  max-width: 130vw;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(215, 163, 39, 0.14), rgba(215, 163, 39, 0.04) 42%, transparent 70%);
}

.scene__head {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.scene__eyebrow {
  color: var(--gold-deep);
  justify-content: center;
  margin-bottom: 14px;
}

.scene__title {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--evergreen);
  font-size: clamp(28px, 4.8vh, 56px);
  line-height: 1.06;
  letter-spacing: -0.01em;
}

.scene__lead {
  max-width: 580px;
  margin: clamp(8px, 1.4vh, 16px) auto 0;
  font-size: clamp(13.5px, 1.9vh, 18px);
  line-height: 1.6;
  color: var(--moss);
}

.scene__stage {
  position: relative;
  z-index: 3;
  perspective: 1500px;
  perspective-origin: 50% 42%;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.device {
  position: relative;
  width: min(950px, 92vw, 78vh);
  transform-style: preserve-3d;
  transform: rotateX(0deg);
  will-change: transform;
}

.device__frame {
  position: relative;
  border-radius: 26px;
  background: linear-gradient(150deg, #232327, #0c0c0e 60%);
  padding: 14px;
  box-shadow:
    0 2px 0 1px rgba(255, 255, 255, 0.06) inset,
    0 50px 90px -36px rgba(20, 14, 6, 0.55),
    0 18px 40px -28px rgba(0, 0, 0, 0.4);
}

.device__screen {
  position: relative;
  aspect-ratio: 16 / 10.4;
  border-radius: 13px;
  overflow: hidden;
  background: #fff;
}

.device__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.device__glare {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 32%, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0.1) 100%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.device__cam {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle at 35% 35%, #3a3a40, #08080a);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.5);
}

/* floating member chips */
.member {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px 8px 8px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(13, 59, 52, 0.08);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px -22px rgba(20, 14, 6, 0.5);
  white-space: nowrap;
  opacity: 0;
  will-change: transform, opacity;
}

.member img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
}

.member figcaption {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.member figcaption b {
  font-size: 13px;
  font-weight: 600;
  color: var(--evergreen);
}

.member figcaption span {
  font-size: 11.5px;
  color: var(--gold-deep);
  font-weight: 600;
}

.m1 {
  top: 16%;
  left: 6%;
}

.m2 {
  top: 30%;
  right: 4%;
}

.m3 {
  bottom: 24%;
  left: 3%;
}

.m4 {
  bottom: 16%;
  right: 8%;
}

.m5 {
  top: 9%;
  right: 22%;
}

.m6 {
  bottom: 12%;
  left: 26%;
}

.scene__cta {
  position: relative;
  z-index: 5;
  text-align: center;
}

.scene__fine {
  font-size: 13px;
  color: var(--moss);
  margin-top: 14px;
}

@media (max-width: 900px) {
  /* fit the tablet inside the stage's padded column (24px each side) so
     place-items:center can actually centre it — at 94vw it was wider than
     the column and overflowed/clipped to one side, reading as off-centre */
  .device {
    width: min(82vh, calc(100vw - 48px));
  }

  .member {
    transform: scale(0.82);
  }

  .m1 {
    left: -2%;
  }

  .m3 {
    left: -2%;
  }

  .m6 {
    left: 8%;
  }

  .m2 {
    right: -2%;
  }

  .m4 {
    right: -2%;
  }

  .m5 {
    right: 8%;
  }
}

@media (max-width: 560px) {
  .scene__title {
    font-size: clamp(24px, 7vw, 36px);
  }

  .member figcaption {
    display: none;
  }

  .member {
    padding: 5px;
  }
}

/* ---------------------------------------------------------
   CHOOSE YOUR NEXT STEP (section 6)
   Lighter background; a hero-style C-curve marks where section 5's
   cream ends and this section begins.
   --------------------------------------------------------- */
.next {
  position: relative;
  background: var(--cream-soft);
  padding-bottom: clamp(56px, 8vw, 110px);
}

.next__curve {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(48px, 7vw, 110px);
  display: block;
  z-index: 0;
}

.next__inner {
  position: relative;
  z-index: 1;
  padding-top: clamp(74px, 10vw, 134px);
  /* clear the curve band */
}

.next__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(32px, 4vw, 56px);
}

.next__title {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--evergreen);
  font-size: var(--fs-h2);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.next__sub {
  margin-top: 10px;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--ink);
}

.next__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.4vw, 34px);
  max-width: 1040px;
  margin-inline: auto;
}

.nextcard {
  display: flex;
  flex-direction: column;
  /* button can pin to the bottom for aligned CTAs */
  padding: clamp(26px, 2.8vw, 42px);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line-gold);
  border-radius: 20px;
}

.nextcard__head {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: clamp(16px, 1.8vw, 26px);
  align-items: start;
  margin-bottom: clamp(24px, 3vw, 34px);
  /* minimum gap before the CTA */
}

.nextcard__icon {
  width: clamp(64px, 6vw, 88px);
  height: clamp(64px, 6vw, 88px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: clamp(1.6rem, 2.4vw, 2.15rem);
}

.nextcard__icon--green {
  background: radial-gradient(120% 120% at 30% 25%, var(--forest), var(--evergreen));
  box-shadow: 0 18px 36px -16px rgba(13, 59, 52, 0.6), 0 8px 20px -8px rgba(215, 163, 39, 0.4);
}

.nextcard__icon--gold {
  background: radial-gradient(120% 120% at 30% 25%, #e6bb4e, var(--gold));
  box-shadow: 0 18px 36px -16px rgba(215, 163, 39, 0.75);
}

.nextcard__title {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--evergreen);
  font-size: var(--fs-h3);
  line-height: 1.1;
  margin-bottom: 10px;
}

.nextcard__body {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--moss);
}

.nextcard__btn {
  margin-top: auto;
  /* pin to the card bottom → CTAs align across cards */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.95em 1.5em;
  border-radius: var(--r-btn);
  border: 1.6px solid transparent;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background .25s ease, color .2s ease, transform .18s ease, box-shadow .25s ease, border-color .2s ease;
}

.nextcard__btn i {
  position: absolute;
  right: 1.3em;
  font-size: 1.1em;
}

.nextcard__btn--outline {
  background: transparent;
  color: var(--evergreen);
  border-color: rgba(13, 59, 52, 0.45);
}

.nextcard__btn--outline:hover {
  background: var(--evergreen);
  color: var(--cream);
  border-color: var(--evergreen);
  transform: translateY(-2px);
}

.nextcard__btn--gold {
  background: var(--gold);
  color: #2c2008;
  /* dark ink on gold — matches every other gold CTA */
  box-shadow: 0 14px 30px -16px rgba(215, 163, 39, 0.95);
}

.nextcard__btn--gold:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -18px rgba(215, 163, 39, 1);
}

@media (max-width: 760px) {
  .next__grid {
    grid-template-columns: 1fr;
    max-width: 540px;
  }
}

@media (max-width: 400px) {
  .nextcard__head {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }
}

/* ---------------------------------------------------------
   MEET THE COACHES (section 7)
   Green textured panel; team photo bleeds right; the green is
   trimmed at the bottom by a gold bezier curve into cream.
   --------------------------------------------------------- */
.coaches {
  position: relative;
  overflow: hidden;
  background-color: var(--evergreen);
  background-image: linear-gradient(0deg, rgba(6, 32, 25, 0.42), rgba(6, 32, 25, 0.08)), url("images/decorative/texture-green.png");
  background-size: cover;
  background-position: center;
  padding-bottom: clamp(96px, 13vw, 200px);
  /* room for the bottom curve */
}

.coaches__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(auto, 480px) 1fr;
  align-items: end;
  padding-top: clamp(40px, 5vw, 78px);
  gap: 0;
}

/* ---- copy ---- */
.coaches__copy {
  grid-column: 1;
  grid-row: 1 / 3;
  padding-bottom: clamp(16px, 3vw, 40px);
  align-self: flex-start;
  z-index: 4;
}

.coaches__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(20px, 3vw, 34px);
}

.coaches__logo img {
  width: clamp(50px, 5vw, 66px);
  height: auto;
}

.coaches__wordmark {
  font-family: var(--serif);
  color: var(--cream);
  line-height: 0.98;
  text-transform: uppercase;
}

.coaches__wordmark b {
  display: block;
  font-weight: 700;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  letter-spacing: 0.04em;
}

.coaches__word2 {
  display: block;
  font-weight: 500;
  font-size: clamp(0.74rem, 1vw, 0.92rem);
  letter-spacing: 0.34em;
  color: var(--gold);
}

.coaches__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85em;
  font-family: var(--sans);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.coaches__eyebrow::before,
.coaches__eyebrow::after {
  content: "";
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.coaches__eyebrow::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.coaches__title {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--cream);
  font-size: var(--fs-h2);
  line-height: 1.04;
  letter-spacing: -0.005em;
}

.coaches__script {
  position: relative;
  display: inline-block;
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  color: var(--gold);
  font-size: 1.22em;
  line-height: 1;
}

.coaches__swash {
  position: absolute;
  left: 0;
  bottom: -0.16em;
  width: 100%;
  height: 0.3em;
  overflow: visible;
}

.coaches__lead {
  margin-top: clamp(18px, 2.4vw, 28px);
  font-size: var(--fs-lead);
  line-height: var(--lh-body);
  color: rgba(244, 235, 221, 0.82);
  max-width: 44ch;
}

.coaches__heart {
  color: var(--gold);
  font-size: 1.05em;
  margin-left: 0.35em;
  vertical-align: -0.05em;
}

/* ---- team photo ---- */
/* Bleeds to the right viewport edge and is anchored to the bottom, filling
   roughly the right 64% of the section like the reference. */
.coaches__photo {
  grid-column: 2;
  grid-row: 1;
  margin-right: calc(50% - 50vw);
  margin-left: -100px;
  margin-top: -28px;
  z-index: 2;
  pointer-events: none;
}

.coaches__photo img {
  width: 100%;
  height: auto;
  max-width: none;
  display: block;
  object-position: right bottom;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.4));
}

/* ---- name plates ---- */
.coaches__plates {
  grid-column: 1 / 3;
  /* span both columns to have space to grow */
  justify-self: end;
  /* right-align the group within the wide row */
  width: 100%;
  max-width: 1060px;
  /* allows them to be ~50% wider than before */
  /* The shell is capped at --content and centered, but the team photo bleeds
     to the viewport edge. Bleed the group's right boundary out to the viewport
     edge too (minus a gutter) so the cards right-align to the photo, not the
     narrower shell — otherwise they read as centered on wide screens. */
  margin-right: calc(50% - 50vw + var(--gutter));
  grid-row: 2;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* exactly equal width */
  justify-content: center;
  gap: 54px;
  /* double the user's 27px setting */
  margin-top: -291px;
  padding-top: 0;
  transform: translateY(-47px);
}

.plate {
  position: relative;
  background: rgba(8, 36, 28, 0.74);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border: 2.5px solid rgba(215, 163, 39, 0.95);
  /* thicker, more pronounced gold edge */
  border-radius: 16px;
  padding: 26px 20px 18px;
  /* tight ~20px padding around the text */
  text-align: center;
  box-shadow:
    0 0 28px rgba(215, 163, 39, 0.55),
    /* gold glow */
    0 0 8px rgba(215, 163, 39, 0.45),
    0 10px 26px rgba(0, 0, 0, 0.32);
}

.plate__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(46px, 4vw, 58px);
  height: clamp(46px, 4vw, 58px);
  border-radius: 50%;
  background: var(--evergreen);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
}

.plate__name {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--cream);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.12;
}

.plate__role {
  margin-top: 6px;
  font-size: clamp(0.8rem, 1vw, 0.92rem);
  font-weight: 600;
  color: var(--gold);
}

/* ---- gold bezier trim ---- */
.coaches__curve {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: clamp(300px, 40vw, 520px);
  /* tall enough for the S to start high on the left */
  z-index: 3;
  /* masks the bottom of the team photo */
  display: block;
}

@media (max-width: 880px) {
  .coaches__inner {
    display: flex;
    flex-direction: column;
    min-height: 0;
    align-items: center;
    text-align: center;
  }

  .coaches__copy {
    align-self: center;
    max-width: 620px;
    grid-column: auto;
    grid-row: auto;
  }

  .coaches__logo,
  .coaches__eyebrow {
    justify-content: center;
  }

  .coaches__lead {
    margin-inline: auto;
  }

  .coaches__photo {
    order: 1;
    position: relative;
    z-index: 5;
    width: min(100%, 620px);
    /* full reset of the desktop bleed/overlap so the photo always sits
       above the cards in the column, never pulled behind them */
    margin: clamp(24px, 5vw, 40px) auto 0;
  }

  .coaches__plates {
    order: 2;
    margin: clamp(28px, 6vw, 44px) auto 0;
    grid-template-columns: 1fr;
    max-width: 440px;
    width: 100%;
    gap: clamp(30px, 7vw, 44px);
    transform: none;
  }
}

/* ---------------------------------------------------------
   Reveal animation
   --------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
}

.reveal[data-delay="1"] {
  transition-delay: .12s;
}

.reveal[data-delay="2"] {
  transition-delay: .22s;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */
/* Tablet: keep the inline nav but condense it (tighter tracking, smaller type,
   drop the secondary "Log In" link first) so it survives down to ~860px
   instead of collapsing to a burger the moment we leave desktop. */
@media (max-width: 1100px) {
  .nav__links {
    gap: clamp(10px, 1.3vw, 18px);
  }

  .nav__links a {
    font-size: 0.82rem;
  }

  .nav__cta .nav__drop--login {
    display: none;
  }
}

/* Below the tablet range: collapse to the burger menu. */
@media (max-width: 860px) {
  .nav__links {
    display: none;
  }

  .nav__burger {
    display: flex;
  }
}

/* ---- Tablet / small-desktop: keep overlay but ease proportions ---- */
@media (max-width: 1100px) {

  /* ease the card width + box height as the column tightens; the dashboard
     tracks both via the shared variables so it stays balanced and bottom-aligned. */
  .hero__stage {
    --hero-card-w: clamp(380px, 46vw, 520px);
    --hero-card-minh: clamp(380px, 50vw, 560px);
  }

  /* tighten the text column so the device cluster keeps room as width shrinks */
  .portal__copy {
    flex-basis: 420px;
  }

  .portal__copy-top,
  .portal__copy-bottom {
    width: 100%;
  }

  .portal__devices img {
    width: 62vw;
  }
}

/* ---- Mobile: photo banner on top, card + dashboard stacked below ---- */
@media (max-width: 880px) {
  .hero__top {
    height: auto;
    overflow: hidden;
    position: relative;
    background: var(--green-deep);
  }

  /* the mobile image already fades to deep green, so the extra scrim is redundant */
  .hero__top::after {
    display: none;
  }

  /* full-bleed backdrop at its natural portrait aspect: the photo sits up top,
     the baked-in green washes down behind the card and dashboard */
  .hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 0;
  }

  .hero__inner {
    position: relative;
    z-index: 2;
    /* vw-based so the card always lands just below the group in the photo,
       regardless of phone width (photo height tracks width on a portrait image) */
    padding-top: clamp(180px, 58vw, 520px);
  }

  .hero__stage {
    display: block;
    height: auto;
    max-width: 540px;
    padding-bottom: clamp(28px, 7vw, 44px);
  }

  .hero__card {
    width: 100%;
    min-height: 0;
    margin-top: 0;
    padding: clamp(28px, 6vw, 44px) clamp(24px, 5vw, 38px);
  }

  .hero__title {
    font-size: clamp(2.1rem, 8.6vw, 3.1rem);
  }

  .hero__dash {
    position: static;
    width: 100%;
    max-width: 520px;
    margin: 18px auto 0;
  }

  .community__inner {
    display: flex;
    flex-direction: column;
    gap: clamp(22px, 5vw, 34px);
  }

  /* text first, the circle graphic next, the pill bar last */
  .community__inner > .community__copy {
    order: 1;
    max-width: none;
  }

  .community__inner > .wheel {
    order: 2;
    width: min(100%, 480px);
    margin-inline: auto;
  }

  .community__inner > .pillrow {
    order: 3;
    margin-top: 0;
    margin-inline: auto;
    width: 100%;
  }

  /* portal: mobile reorder — title/rule → image → description+buttons */
  .portal__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .portal__copy {
    flex: none;
    width: 100%;
    max-width: none;
    /* switch copy container to flex-column so we can inject the image between top and bottom */
    display: contents;
  }

  .portal__copy-top {
    order: 1;
    width: 100%;
  }

  .portal__devices {
    order: 2;
    position: static;
    display: block;
    height: auto;
    width: 100%;
    max-width: 640px;
    margin: clamp(16px, 5vw, 28px) auto;
  }

  .portal__copy-bottom {
    order: 3;
    width: 100%;
  }

  .portal__devices img {
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 100%;
    max-height: none;
    margin: 0 auto;
  }

  .portal__lead {
    max-width: none;
  }

  /* gentle, shallow separator when the cluster is stacked (not bleeding right) */
  .portal__curve {
    height: clamp(48px, 12vw, 80px);
  }

  .portal__foot-inner {
    gap: 16px;
  }

  /* dashboard: stack phone over copy */
  .dash__inner {
    grid-template-columns: 1fr;
    gap: clamp(28px, 8vw, 56px);
    justify-items: center;
    text-align: center;
  }

  .dash__device {
    order: 1;
  }

  .dash__copy {
    order: 2;
    max-width: 620px;
  }

  .dash__lead {
    max-width: none;
    margin-inline: auto;
  }

  .phone3d {
    height: min(620px, 64vh);
  }

  .glass-card {
    transform: scale(0.9);
  }

  .gc1 {
    left: -14px;
    top: 40px;
  }

  .gc2 {
    right: -16px;
    bottom: 96px;
  }
}

@media (max-width: 520px) {
  .shell {
    padding-inline: 18px;
  }

  /* tighten the bar so the logo and the $7 Trial button stop colliding on
     narrow phones (at ~360px the button was overlapping the wordmark) */
  .nav__inner {
    gap: 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand__seal {
    width: 38px;
    height: 38px;
  }

  .brand__word {
    font-size: 0.92rem;
  }

  .nav__cta {
    gap: 10px;
  }

  .nav__cta .btn--sm {
    padding: 0.6em 0.8em;
    font-size: 0.82rem;
  }

  .pill {
    min-width: 72px;
  }

  .hero__actions {
    flex-wrap: wrap;
  }

  .hero__actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }

  .portal__cta {
    width: 100%;
  }

  .pbadge {
    flex: 1 1 40%;
    justify-content: center;
  }

  .portal__foot-inner {
    flex-direction: column;
    text-align: center;
  }

  /* dashboard: keep tooltips inside the viewport on phones */
  .dash__device {
    width: min(320px, 88vw);
  }

  .phone3d {
    height: min(560px, 60vh);
  }

  .glass-card {
    transform: scale(0.8);
  }

  .gc1 {
    left: -4px;
    top: 24px;
  }

  .gc2 {
    right: -6px;
    bottom: 78px;
  }

  .dash__cta {
    width: 100%;
  }
}

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

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

  .btn,
  .node {
    transition: none;
  }

  /* community scene: no pin/lift — show it upright and complete */
  .scene {
    height: auto;
  }

  .scene__pin {
    height: auto;
    min-height: 90vh;
  }

  .device {
    transform: none;
  }

  .member,
  .scene__cta {
    opacity: 1;
  }

  .float-a,
  .float-b,
  .phone3d__shadow {
    animation: none;
  }

  .qa,
  .qa__ic i {
    transition: none;
  }
}

/* =========================================================
   THE BOOK (section 7.5)
   Cream continues from the coaches curve into this section, so the
   background is var(--cream) — no curve needed, it reads as one surface.
   Cover on the left, centered copy + stacked CTAs on the right.
   ========================================================= */
.book {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding: clamp(14px, 2.4vw, 30px) 0 clamp(44px, 6vw, 80px);
}

.book__leaf {
  position: absolute;
  right: -2%;
  top: 7%;
  width: clamp(120px, 13vw, 220px);
  opacity: 0.22;
  transform: rotate(-12deg);
  filter: invert(63%) sepia(73%) saturate(360%) hue-rotate(1deg) brightness(95%) contrast(88%);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.book__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
}

/* ---- cover ---- */
.book__cover {
  justify-self: center;
  margin: 0;
}

.book__cover img {
  width: 100%;
  max-width: 564px;
  height: auto;
  display: block;
  /* the book's solid mass sits ~13.7% right of the PNG's center (the soft
     shadow fans out to the left), so nudge the image left to optically center
     the book itself rather than the image's bounding box */
  transform: translateX(-13.5%);
  filter: drop-shadow(0 40px 60px rgba(6, 32, 25, 0.28));
}

/* ---- copy ---- */
.book__copy {
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
}

.book__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85em;
  font-family: var(--sans);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: clamp(18px, 2.2vw, 26px);
}

.book__eyebrow::before,
.book__eyebrow::after {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.book__eyebrow::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.book__title {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--evergreen);
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
}

.book__rule {
  display: flex;
  align-items: center;
  gap: 12px;
  width: clamp(160px, 20vw, 230px);
  margin: clamp(20px, 2.6vw, 30px) auto;
}

.book__rule span {
  flex: 1;
  height: 1.5px;
  background: var(--line-gold);
}

.book__diamond {
  width: 9px;
  height: 9px;
  flex: none;
  background: var(--gold);
  transform: rotate(45deg);
}

.book__lead {
  font-size: var(--fs-lead);
  line-height: var(--lh-body);
  color: rgba(36, 56, 51, 0.82);
  max-width: 42ch;
  margin-inline: auto;
}

/* ---- CTAs: stacked full-width pills, label centered + arrow at the edge ---- */
.book__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 420px;
  margin: clamp(28px, 3.4vw, 44px) auto 0;
}

.book__cta {
  width: 100%;
}

.book__cta-label {
  flex: 1 1 auto;
  text-align: center;
}

.book__cta--ghost {
  background: transparent;
  color: var(--evergreen);
  border-color: rgba(36, 56, 51, 0.4);
}

.book__cta--ghost:hover {
  background: var(--evergreen);
  color: var(--cream);
  border-color: var(--evergreen);
  transform: translateY(-2px);
}

@media (max-width: 880px) {
  .book__inner {
    grid-template-columns: 1fr;
    gap: clamp(28px, 6vw, 44px);
  }

  .book__cover img {
    max-width: 360px;
  }

  .book__leaf {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .book__cta--ghost:hover {
    transform: none;
  }
}

/* =========================================================
   FAQ (section 8)
   ========================================================= */
.faq {
  position: relative;
  overflow: hidden;
  background-color: var(--evergreen);
  background-image: linear-gradient(0deg, rgba(6, 32, 25, 0.55), rgba(6, 32, 25, 0.1)), url("images/decorative/texture-green.png");
  background-size: cover;
  background-position: center;
  padding: clamp(120px, 14vw, 200px) 0 clamp(70px, 9vw, 120px);
}

/* cream wave bridging the coaches curve into the green */
.faq__curve {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: clamp(60px, 9vw, 120px);
  display: block;
  z-index: 2;
}

.faq__leaf {
  position: absolute;
  left: -3%;
  bottom: -4%;
  width: clamp(150px, 17vw, 300px);
  opacity: 0.5;
  transform: rotate(8deg);
  filter: invert(63%) sepia(73%) saturate(360%) hue-rotate(1deg) brightness(95%) contrast(88%);
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.faq__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(36px, 5vw, 88px);
}

/* ---- left copy ---- */
.faq__eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 14px;
  border-bottom: 2px solid var(--line-gold);
}

.faq__title {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--cream);
  font-size: var(--fs-h1);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-top: clamp(18px, 2.4vw, 28px);
}

.faq__rule {
  display: flex;
  align-items: center;
  gap: 12px;
  width: clamp(180px, 22vw, 260px);
  margin: clamp(20px, 2.6vw, 30px) 0;
}

.faq__rule span {
  flex: 1;
  height: 1.5px;
  background: var(--line-gold);
}

.faq__diamond {
  width: 9px;
  height: 9px;
  flex: none;
  background: var(--gold);
  transform: rotate(45deg);
}

.faq__lead {
  font-size: var(--fs-lead);
  line-height: var(--lh-body);
  color: rgba(244, 235, 221, 0.78);
  max-width: 34ch;
}

.faq__help {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: clamp(26px, 3vw, 38px);
  padding: 18px 22px;
  border: 1.5px solid rgba(215, 163, 39, 0.4);
  border-radius: var(--r-md);
  background: rgba(8, 36, 28, 0.45);
  max-width: 400px;
}

.faq__help-ic {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
}

.faq__help-text {
  line-height: 1.35;
}

.faq__help-text b {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--gold);
}

.faq__help-text span {
  font-size: 0.92rem;
  color: rgba(244, 235, 221, 0.8);
}

.faq__cta {
  margin-top: clamp(22px, 2.6vw, 32px);
  letter-spacing: 0.02em;
  padding: 0.9em 1.7em;
}

.faq__cta .ph-leaf {
  color: #2c2008;
}

.faq__trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5em;
  margin-top: clamp(16px, 2vw, 22px);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 235, 221, 0.62);
}

.faq__trust .ph-shield-check {
  color: var(--gold);
  font-size: 1.1em;
}

/* ---- accordion ---- */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.qa {
  border: 1.5px solid rgba(215, 163, 39, 0.4);
  border-radius: var(--r-md);
  background: rgba(8, 36, 28, 0.45);
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.qa[open] {
  background: var(--cream-soft);
  border-color: transparent;
  box-shadow: 0 26px 60px -28px rgba(0, 0, 0, 0.6);
}

.qa__q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 22px);
  padding: clamp(16px, 1.8vw, 22px) clamp(18px, 2vw, 26px);
}

.qa__q::-webkit-details-marker {
  display: none;
}

.qa__num {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.15rem;
  transition: background .3s ease, color .3s ease;
}

.qa[open] .qa__num {
  background: var(--gold);
  color: #2c2008;
  box-shadow: 0 0 0 4px rgba(215, 163, 39, 0.18);
}

.qa__text {
  flex: 1;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.1rem, 1.5vw, 1.38rem);
  line-height: 1.2;
  color: var(--cream);
  transition: color .3s ease;
}

.qa[open] .qa__text {
  color: var(--evergreen);
}

.qa__ic {
  flex: none;
  color: var(--gold);
  font-size: 1.25rem;
  display: grid;
  place-items: center;
}

.qa__ic .ph-minus {
  display: none;
}

.qa[open] .qa__ic .ph-plus {
  display: none;
}

.qa[open] .qa__ic .ph-minus {
  display: block;
  color: var(--gold-deep);
}

.qa__a {
  position: relative;
  margin: 0 clamp(18px, 2vw, 26px);
  padding: 18px 0 clamp(20px, 2.2vw, 26px) calc(40px + clamp(14px, 1.6vw, 22px));
  border-top: 1.5px solid var(--line-gold);
  font-size: clamp(0.96rem, 1.1vw, 1.05rem);
  line-height: 1.62;
  color: #3a4f48;
}

.qa__a::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  width: 9px;
  height: 9px;
  background: var(--gold);
  transform: translateX(-50%) rotate(45deg);
}

/* =========================================================
   Final CTA banner (section 9)
   ========================================================= */
.finale {
  position: relative;
  overflow: hidden;
  background: var(--green-deep);
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
  padding: var(--section-y) 0;
}

.finale__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.finale__crest {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: clamp(22px, 3vw, 36px);
}

.finale__line {
  width: clamp(120px, 22vw, 320px);
  height: 1.5px;
  background: var(--line-gold);
}

.finale__crest .finale__line:first-child {
  background: linear-gradient(90deg, transparent, var(--gold));
}

.finale__crest .finale__line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.finale__seal {
  width: 46px;
  height: 46px;
  flex: none;
}

.finale__title {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--cream);
  font-size: clamp(1.5rem, 3.55vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  white-space: nowrap;
  margin: 0 auto clamp(30px, 4vw, 46px);
}

.finale__title em {
  color: var(--gold);
}

.finale__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 22px);
}

.finale__btn .ph-leaf {
  color: #2c2008;
}

.finale__ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(215, 163, 39, 0.55);
  padding-left: 0.7em;
}

.finale__ghost:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: rgba(215, 163, 39, 0.08);
}

.finale__play {
  background: var(--gold);
  color: var(--evergreen);
}

/* ---- responsive ---- */
@media (max-width: 880px) {
  .faq__inner {
    grid-template-columns: 1fr;
    gap: clamp(34px, 8vw, 52px);
  }

  /* keep title + rule visible; hide description, help box, CTA, trust */
  .faq__copy {
    text-align: center;
  }

  .faq__rule {
    margin-inline: auto;
  }

  .faq__eyebrow {
    border-bottom: none;
  }

  .faq__lead,
  .faq__help,
  .faq__cta,
  .faq__trust {
    display: none;
  }

  .qa__text {
    font-size: clamp(1.04rem, 3.4vw, 1.2rem);
  }
}

@media (max-width: 720px) {
  .finale__title {
    white-space: normal;
    font-size: clamp(1.8rem, 7vw, 2.6rem);
    max-width: none;
  }
}

@media (max-width: 520px) {
  .qa__q {
    gap: 12px;
    padding: 15px 16px;
  }

  .qa__num {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .qa__a {
    padding-left: 0;
    margin-inline: 16px;
  }

  .finale__line {
    width: clamp(56px, 26vw, 120px);
  }

  .finale__actions .btn {
    width: 100%;
    justify-content: center;
  }
}