/* ============================================================
   MorePatients MD — VSL Funnel (navy-throughout)
   v9 funnel-only overrides on top of the brand tokens.
   ============================================================ */
@import url("assets/tokens.css");

/* ---------------- RESET ---------------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body {
  background: var(--navy);
  color: var(--ivory);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body { overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input { font: inherit; color: inherit; }
ul, ol { list-style: none; }
p { text-wrap: pretty; }
::selection { background: var(--champagne); color: var(--navy); }

#book { scroll-margin-top: 80px; }

/* ---------------- SHARED ATOMS ---------------- */
.fn-container { max-width: 1240px; margin: 0 auto; padding: 0 60px; }
@media (max-width: 900px) { .fn-container { padding: 0 24px; } }
@media (max-width: 600px) { .fn-container { padding-left: 20px !important; padding-right: 20px !important; } }

.fn-container--narrow { max-width: 880px; }
.fn-container--reading { max-width: 760px; }
.fn-container--reading-md { max-width: 720px; }

.fn-section { padding: 130px 0; position: relative; }
.fn-section--tight { padding: 70px 0; }
.fn-section--feature { padding: 150px 0; }
@media (max-width: 900px) {
  .fn-section { padding: 80px 0; }
  .fn-section--tight { padding: 48px 0; }
  .fn-section--feature { padding: 96px 0; }
}

/* Section eyebrow: centered label flanked by rules */
.fn-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.fn-eyebrow-rule {
  display: block;
  width: 56px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}
.fn-eyebrow-label { display: block; }
.fn-eyebrow--muted { color: var(--muted-on-navy); }
@media (max-width: 600px) {
  .fn-eyebrow { gap: 10px; font-size: 10px; letter-spacing: 0.16em; }
  .fn-eyebrow-rule { width: 20px; }
  .fn-eyebrow-label { text-align: center; }
}

/* Display heads */
.fn-h {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: -0.005em;
  line-height: 1.1;
}
.fn-h em, .fn-h .gold {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: normal;
  color: var(--champagne);
}
.fn-h--xl { font-size: 76px; line-height: 1.06; }
.fn-h--lg { font-size: 56px; line-height: 1.08; }
.fn-h--md { font-size: 42px; line-height: 1.12; }
.fn-h--sm { font-size: 30px; line-height: 1.2; }
@media (max-width: 900px) {
  .fn-h--xl { font-size: 38px; }
  .fn-h--lg { font-size: 32px; }
  .fn-h--md { font-size: 28px; }
  .fn-h--sm { font-size: 23px; }
}

/* Body */
.fn-p {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(244, 239, 227, 0.90);
}
.fn-p--lg { font-size: 20px; line-height: 1.65; }
.fn-p--md { font-size: 17px; }
.fn-p strong, .fn-p b {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--champagne);
  font-style: normal;
}
.fn-p em { font-style: italic; color: inherit; }
@media (max-width: 900px) {
  .fn-p { font-size: 16.5px; }
  .fn-p--lg { font-size: 18px; }
}

/* Section header block */
.fn-secheader { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; margin: 0 auto 56px; }
.fn-secheader .fn-h { max-width: 880px; text-align: center; }
.fn-secheader--left { align-items: flex-start; text-align: left; margin-left: 0; margin-right: 0; }
.fn-secheader--left .fn-h { text-align: left; }
@media (max-width: 900px) { .fn-secheader { margin-bottom: 40px; } }

/* Hairlines */
.fn-rule { width: 100%; height: 1px; background: var(--rule-on-navy); border: 0; }
.fn-rule--gold { background: var(--champagne); }
.fn-rule--gold-soft { background: rgba(184, 153, 104, 0.4); }

/* ---------------- LOCKUP (primary lockup, exact) ---------------- */
.fn-lockup { display: inline-flex; align-items: center; }
.fn-lockup-svg { display: block; width: auto; }
.fn-lk-mark { fill: var(--champagne); }
.fn-lk-wm { fill: var(--ivory); }

.fn-lockup--sm .fn-lockup-svg { height: 30px; }
.fn-lockup--md .fn-lockup-svg { height: 44px; }
.fn-lockup--lg .fn-lockup-svg { height: 62px; }

/* ---------------- CTA BUTTON ---------------- */
.fn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-weight: 700;
  -webkit-text-stroke: 0.45px currentColor;
  font-size: 12px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  padding: 18px 36px;
  background: var(--ivory);
  color: var(--navy);
  border: 1px solid var(--champagne);
  border-radius: 999px;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease, box-shadow 300ms ease;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 0 0 1px rgba(184, 153, 104, 0.25),
              0 0 18px rgba(184, 153, 104, 0.28),
              0 0 42px rgba(184, 153, 104, 0.16);
}
.fn-cta-arrow {
  flex: 0 0 auto;
  transition: transform 220ms ease;
}
.fn-cta:hover .fn-cta-arrow { transform: translateX(4px); }
.fn-cta:hover { background: var(--champagne); color: var(--navy); transform: scale(1.02); box-shadow: 0 0 0 1px rgba(184, 153, 104, 0.5), 0 0 26px rgba(184, 153, 104, 0.5), 0 0 60px rgba(184, 153, 104, 0.3); }
.fn-cta--ghost {
  background: transparent;
  color: var(--ivory);
  border-color: var(--champagne);
}
.fn-cta--ghost:hover { background: var(--ivory); color: var(--navy); }
.fn-cta--ghost, .fn-cta--ghost:hover { box-shadow: 0 0 0 1px rgba(184, 153, 104, 0.22), 0 0 16px rgba(184, 153, 104, 0.22); }
.fn-cta--nav {
  padding: 11px 22px;
  font-size: 10.5px;
  background: var(--ivory);
  color: var(--navy);
  border: 1px solid var(--champagne);
  animation: fn-cta-glow 2.6s ease-in-out infinite;
}
.fn-cta--nav .fn-cta-arrow { width: 14px; height: 14px; }
.fn-cta--nav:hover { background: var(--champagne); color: var(--navy); transform: none; }

.fn-cta-row { display: flex; justify-content: center; padding: 30px 0; }
@media (max-width: 900px) { .fn-cta-row { padding: 24px 0; } }
.fn-cta-row .fn-cta {
  animation: fn-cta-glow 2.6s ease-in-out infinite;
}
@keyframes fn-cta-glow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(184, 153, 104, 0.25), 0 0 16px rgba(184, 153, 104, 0.24), 0 0 38px rgba(184, 153, 104, 0.14); }
  50% { box-shadow: 0 0 0 1px rgba(184, 153, 104, 0.45), 0 0 26px rgba(184, 153, 104, 0.45), 0 0 60px rgba(184, 153, 104, 0.28); }
}
@media (prefers-reduced-motion: reduce) {
  .fn-cta-row .fn-cta, .fn-cta--nav, .fn-calc { animation: none; }
}

/* ============================================================
   SECTION 1 — ICP CALLOUT BAND
   ============================================================ */
.fn-icp {
  padding: 30px 24px 0;
  text-align: center;
}
.fn-icp-text {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-sans);
  font-size: 10.35px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: #F4EFE3;
  font-weight: 600;
  padding: 8px 21.6px 8px 16.2px;
  border: 1px solid var(--champagne);
  border-radius: 999px;
  background: rgba(184, 153, 104, 0.08);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  backdrop-filter: blur(12px) saturate(1.4);
  text-shadow: 0 0 12px rgba(184, 153, 104, 0.55);
  box-shadow: 0 0 0 1px rgba(184, 153, 104, 0.18),
              0 0 22px rgba(184, 153, 104, 0.32),
              0 0 50px rgba(184, 153, 104, 0.16),
              inset 0 1px 0 rgba(255, 255, 255, 0.14);
  animation: fn-icp-glow 2.6s ease-in-out infinite;
}
@keyframes fn-icp-glow {
  0%, 100% {
    box-shadow: 0 0 0 1px rgba(184, 153, 104, 0.25), 0 0 16px rgba(184, 153, 104, 0.24), 0 0 38px rgba(184, 153, 104, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(184, 153, 104, 0.45), 0 0 26px rgba(184, 153, 104, 0.45), 0 0 60px rgba(184, 153, 104, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
}
@media (prefers-reduced-motion: reduce) {
  .fn-icp-text { animation: none; }
}
.fn-icp-text .fn-crescent { flex: 0 0 auto; width: 30px !important; height: 30px !important; filter: drop-shadow(0 0 6px rgba(184, 153, 104, 0.6)); }
.fn-icp-text .fn-crescent path { fill: var(--champagne); }

/* Animated gold target blip — solid dot + expanding sonar rings */
.fn-icp-blip {
  position: relative;
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.fn-icp-dot {
  position: relative;
  z-index: 2;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #e6cd92, var(--champagne) 68%);
  box-shadow: 0 0 6px 1px rgba(184, 153, 104, 0.9),
              0 0 14px rgba(184, 153, 104, 0.55);
  animation: fn-blip-pulse 1.8s ease-in-out infinite;
}
@keyframes fn-blip-pulse {
  0%, 100% {
    transform: scale(0.82);
    box-shadow: 0 0 4px 1px rgba(184, 153, 104, 0.7),
                0 0 10px rgba(184, 153, 104, 0.4);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 8px 2px rgba(184, 153, 104, 0.95),
                0 0 18px rgba(184, 153, 104, 0.6);
  }
}
@media (prefers-reduced-motion: reduce) {
  .fn-icp-dot { animation: none; }
}
@media (max-width: 600px) {
  .fn-icp-text { font-size: 9.5px; letter-spacing: 0.24em; padding: 8px 18px 8px 14px; }
}

/* ============================================================
   SECTION 2 — HERO
   ============================================================ */
.fn-hero {
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 6px 0 88px;
}
.fn-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.fn-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 64px;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ivory);
  max-width: 1080px;
  text-wrap: balance;
}
.fn-hero h1 .gold {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--champagne);
}
.fn-hero-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.5;
  color: rgba(244, 239, 227, 0.85);
  max-width: 720px;
}
.fn-hero-prompt {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 500;
  margin-top: 8px;
}
.fn-hero-checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 34px;
}
.fn-hero-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: rgba(244, 239, 227, 0.86);
}
.fn-hero-check-ic {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: #45be7a;
}
@media (max-width: 700px) {
  .fn-hero-checks { flex-direction: column; align-items: flex-start; gap: 12px; max-width: 340px; margin: 0 auto; }
  .fn-hero-check { font-size: 15px; }
}
@media (max-width: 1100px) { .fn-hero h1 { font-size: 54px; } }
@media (max-width: 900px) {
  .fn-hero { min-height: auto; padding: 60px 0 60px; }
  .fn-hero h1 { font-size: 36px; line-height: 1.18; margin-left: 0 !important; margin-right: 0 !important; }
  .fn-hero-sub { font-size: 18px; }
  .fn-hero-prompt { font-size: 10.5px; letter-spacing: 0.24em; }
}

/* ============================================================
   SECTION 3 — VSL FRAME
   ============================================================ */
.fn-vsl {
  margin: 0 auto;
  max-width: 880px;
  border: 1px solid var(--champagne);
  border-radius: 16px;
  animation: fn-vsl-glow 3.6s ease-in-out infinite;
  background: var(--navy-deep);
  aspect-ratio: 16 / 9;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 22px;
}
.fn-vsl-frame {
  position: relative;
  border: 1px solid var(--champagne);
  border-radius: 16px;
  background: var(--navy-deep);
  overflow: hidden;
  animation: fn-vsl-glow 3.6s ease-in-out infinite;
}
/* Force the Vidalytics poster + video to fill the frame edge-to-edge
   (the embed ships them as object-fit/background contain, which letterboxes
   any asset that isn't perfectly 16:9 and leaves a gap at the top). */
.fn-vsl-frame .Thumbnail__image { background-size: cover !important; background-position: 50% 50% !important; }
.fn-vsl-frame video,
.fn-vsl-frame .Tech__video { object-fit: cover !important; }
/* The poster/first-frame has a faint dark band baked into its top edge.
   A tiny uniform zoom on just the visual layers (clipped by the frame's
   overflow:hidden) pushes that edge out of view. Controls are a separate
   overlay and are unaffected. */
.fn-vsl-frame .Thumbnail__image,
.fn-vsl-frame video,
.fn-vsl-frame .Tech__video {
  transform: scale(1.045);
  transform-origin: center center;
}
@keyframes fn-vsl-glow {
  0%, 100% {
    border-color: var(--champagne);
    box-shadow: 0 0 0 1px rgba(184, 153, 104, 0.18),
                0 0 16px rgba(184, 153, 104, 0.20),
                0 0 38px rgba(184, 153, 104, 0.10);
  }
  50% {
    border-color: var(--champagne-soft);
    box-shadow: 0 0 0 1px rgba(212, 185, 138, 0.55),
                0 0 30px rgba(212, 185, 138, 0.45),
                0 0 72px rgba(184, 153, 104, 0.28);
  }
}
@media (prefers-reduced-motion: reduce) {
  .fn-vsl-frame,
  .fn-vsl,
  .ty-faq-thumb {
    animation: none;
    box-shadow: 0 0 22px rgba(184, 153, 104, 0.28);
  }
}
.fn-vsl-play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--champagne);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fn-vsl-play::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent var(--champagne);
  margin-left: 4px;
}
.fn-vsl-lbl {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 500;
}
.fn-vsl-section { padding: 0 0 40px; }

/* ---- VSL placeholder ---- */
.fn-vslph { position: relative; display: block; }
.fn-vslph-bg {
  position: absolute; inset: 0; overflow: hidden; border-radius: inherit;
  background:
    radial-gradient(130% 100% at 50% 8%, rgba(184, 153, 104, 0.14), transparent 58%),
    linear-gradient(158deg, #12244a 0%, var(--navy-deep) 52%, #060d1a 100%);
}
/* faint champagne grid to read as a "screen" */
.fn-vslph-bg::before {
  content: ''; position: absolute; inset: 0; opacity: 0.55;
  background-image:
    linear-gradient(rgba(184, 153, 104, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 153, 104, 0.055) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(82% 72% at 50% 42%, #000 28%, transparent 80%);
}
/* slow-drifting champagne light orbs */
.fn-vslph-orb {
  position: absolute; border-radius: 50%; filter: blur(48px); opacity: 0.5;
  background: radial-gradient(circle at 50% 50%, rgba(184, 153, 104, 0.55), transparent 70%);
}
.fn-vslph-orb--1 { width: 46%; height: 90%; left: -8%; top: -20%; animation: fn-vslph-drift1 14s ease-in-out infinite; }
.fn-vslph-orb--2 { width: 40%; height: 80%; right: -6%; bottom: -18%; opacity: 0.32; animation: fn-vslph-drift2 17s ease-in-out infinite; }
@keyframes fn-vslph-drift1 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(28%, 14%) scale(1.15); } }
@keyframes fn-vslph-drift2 { 0%, 100% { transform: translate(0, 0) scale(1.1); } 50% { transform: translate(-24%, -12%) scale(1); } }
/* a scanline sweeping down, like a signal loading */
.fn-vslph-scan {
  position: absolute; left: 0; right: 0; top: -30%; height: 30%;
  background: linear-gradient(180deg, transparent, rgba(184, 153, 104, 0.14), transparent);
  animation: fn-vslph-scan 4.5s ease-in-out infinite;
}
@keyframes fn-vslph-scan { 0% { top: -30%; } 60%, 100% { top: 100%; } }
.fn-vslph-sheen {
  position: absolute; top: 0; bottom: 0; width: 55%; left: -70%;
  background: linear-gradient(100deg, transparent, rgba(244, 239, 227, 0.05), transparent);
  animation: fn-vslph-sheen 7s ease-in-out infinite;
}
@keyframes fn-vslph-sheen { 0% { left: -70%; } 55%, 100% { left: 130%; } }

.fn-vslph-inner {
  position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 24px;
}
.fn-vslph-play {
  position: relative; width: 92px; height: 92px; border: none; background: none; cursor: default;
  display: grid; place-items: center; padding: 0;
}
.fn-vslph-play-ring {
  position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid var(--champagne);
  background: rgba(184, 153, 104, 0.1);
}
.fn-vslph-play-ring::after {
  content: ''; position: absolute; inset: -1.5px; border-radius: 50%; border: 1.5px solid var(--champagne);
  animation: fn-vslph-pulse 2.6s ease-out infinite;
}
@keyframes fn-vslph-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  70%, 100% { transform: scale(1.6); opacity: 0; }
}
.fn-vslph-play-tri {
  position: relative; width: 0; height: 0; margin-left: 6px;
  border-style: solid; border-width: 13px 0 13px 22px;
  border-color: transparent transparent transparent var(--champagne);
}
.fn-vslph-eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 30px;
  font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--champagne);
}
.fn-vslph-rec {
  width: 8px; height: 8px; border-radius: 50%; background: var(--champagne);
  box-shadow: 0 0 10px rgba(184, 153, 104, 0.8); animation: fn-vslph-blink 1.6s steps(1) infinite;
}
@keyframes fn-vslph-blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0.2; } }
.fn-vslph-tease {
  font-family: var(--font-display); font-style: italic; color: rgba(244, 239, 227, 0.82);
  font-size: clamp(16px, 2vw, 21px); line-height: 1.4; max-width: 480px; margin-top: 16px;
}

.fn-vslph-bar {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; height: 40px;
  display: flex; align-items: center; padding: 0 18px;
  background: linear-gradient(0deg, rgba(6, 13, 26, 0.9), transparent);
}
.fn-vslph-bar-fill {
  flex: 1; height: 3px; border-radius: 2px; background: rgba(244, 239, 227, 0.16); position: relative; overflow: hidden;
}
.fn-vslph-bar-fill::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; border-radius: 2px;
  background: var(--champagne); box-shadow: 0 0 10px rgba(184, 153, 104, 0.6);
  animation: fn-vslph-load 5.5s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}
@keyframes fn-vslph-load { 0% { width: 6%; } 50% { width: 34%; } 100% { width: 6%; } }

@media (prefers-reduced-motion: reduce) {
  .fn-vslph-sheen, .fn-vslph-scan, .fn-vslph-orb, .fn-vslph-play-ring::after,
  .fn-vslph-rec, .fn-vslph-bar-fill::after { animation: none; }
  .fn-vslph-bar-fill::after { width: 22%; }
}
@media (max-width: 640px) {
  .fn-vslph-play { width: 70px; height: 70px; }
  .fn-vslph-play-tri { border-width: 10px 0 10px 17px; }
  .fn-vslph-tease { font-size: 16px; }
}


/* ============================================================
   SECTION 5 — DIAGNOSIS
   ============================================================ */
.fn-diag-body { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 22px; }
.fn-diag-body .fn-p { text-align: left; }

/* ------------------------------------------------------------
   SECTION 5 — DIAGNOSIS · pinned scroll-driven scan
   ------------------------------------------------------------ */
.fn-scan-wrap { position: relative; padding: 90px 0; }
.fn-scan-wrap--live { padding: 0; min-height: 360vh; }
.fn-scan-pin { position: static; }
.fn-scan-wrap--live .fn-scan-pin {
  position: sticky; top: 0; height: 100vh; display: flex; align-items: center; overflow: hidden;
}
.fn-scan-grid { display: grid; grid-template-columns: 1.02fr 1fr; gap: 72px; align-items: center; width: 100%; }

/* LEFT */
.fn-scan-left { max-width: 560px; }
.fn-scan-eyebrow {
  display: flex; align-items: center; gap: 16px; margin-bottom: 26px;
  font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted-on-navy);
}
.fn-scan-eyebrow-num { color: var(--champagne); }
.fn-scan-eyebrow-rule { width: 42px; height: 1px; background: var(--rule-on-navy); }
.fn-scan-h { font-size: clamp(40px, 4.7vw, 68px); line-height: 1.03; letter-spacing: -0.01em; }
.fn-scan-mark { position: relative; display: inline-block; }
.fn-scan-mark-base { color: var(--champagne); }
.fn-scan-mark-fill {
  position: absolute; inset: 0; color: var(--navy); white-space: nowrap;
  clip-path: inset(0 calc(100% - var(--w, 100%)) 0 0);
}
.fn-scan-mark-fill::before {
  content: ''; position: absolute; inset: 0.06em -0.12em; background: var(--champagne); border-radius: 2px; z-index: -1;
}
.fn-scan-sub { margin-top: 24px; max-width: 490px; color: var(--muted-strong-navy); text-align: left; }

.fn-scan-tactics { margin-top: 18px; max-width: 500px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 12px; }
.fn-scan-tactic {
  position: relative; font-family: var(--font-display); font-size: 20px; line-height: 1.35;
  color: var(--ivory); white-space: nowrap; opacity: 0;
  animation: fn-scan-tactic-in 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.fn-scan-tactic::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -3px; height: 1.5px; background: var(--champagne);
  transform: scaleX(0); transform-origin: left; animation: fn-scan-underline 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: inherit;
}
.fn-scan-tactic-sep { color: var(--champagne); font-size: 18px; font-weight: 700; opacity: 0.7; }
@keyframes fn-scan-tactic-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@keyframes fn-scan-underline { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@media (prefers-reduced-motion: reduce) {
  .fn-scan-tactic { opacity: 1; animation: none; }
  .fn-scan-tactic::after { transform: scaleX(1); animation: none; }
}

.fn-scan-readout {
  margin-top: 40px; padding: 22px 24px; border: 1px solid var(--rule-on-navy); border-radius: 4px;
  background: linear-gradient(180deg, rgba(184, 153, 104, 0.06), rgba(7, 16, 31, 0.4));
}
.fn-scan-readout-top { display: flex; align-items: center; justify-content: space-between; }
.fn-scan-readout-label {
  display: flex; align-items: center; gap: 11px; font-family: 'Courier New', Courier, monospace;
  font-size: 13px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ivory);
}
.fn-scan-pulse { width: 28px; height: 14px; color: var(--champagne); animation: fn-scan-beat 2.4s ease-in-out infinite; }
@keyframes fn-scan-beat { 0%, 70%, 100% { opacity: 0.5; } 12% { opacity: 1; } }
.fn-scan-pct { font-family: 'Courier New', Courier, monospace; font-size: 13px; color: var(--muted-on-navy); font-variant-numeric: tabular-nums; }
.fn-scan-track { height: 4px; border-radius: 2px; margin: 16px 0 14px; overflow: hidden; background: rgba(244, 239, 227, 0.12); }
.fn-scan-fill { display: block; height: 100%; border-radius: 2px; background: var(--champagne); box-shadow: 0 0 12px rgba(184, 153, 104, 0.6); transition: width 0.12s linear; }
.fn-scan-status { font-family: 'Courier New', Courier, monospace; font-size: 13px; color: var(--champagne); }

/* RIGHT */
.fn-scan-right { position: relative; }
.fn-scan-cards { display: flex; flex-direction: column; gap: 15px; }
.fn-scan-card {
  display: flex; gap: 18px; align-items: flex-start; padding: 19px 22px;
  border: 1px solid var(--rule-on-navy); border-radius: 4px;
  background: linear-gradient(180deg, rgba(11, 23, 48, 0.72), rgba(7, 16, 31, 0.5));
  transition: opacity 0.5s ease, transform 0.55s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
}
.fn-scan-card-ic {
  flex: none; width: 44px; height: 44px; border-radius: 4px; display: grid; place-items: center;
  color: var(--champagne); border: 1px solid rgba(184, 153, 104, 0.32); background: rgba(184, 153, 104, 0.08);
}
.fn-scan-card-body { min-width: 0; }
.fn-scan-code { font-family: 'Courier New', Courier, monospace; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--champagne); }
.fn-scan-card-title { font-family: var(--font-display); font-weight: 400; font-size: 22px; line-height: 1.14; color: var(--ivory); margin-top: 5px; }
.fn-scan-card-sub { font-family: var(--font-body); font-size: 15px; line-height: 1.5; color: var(--muted-on-navy); margin-top: 6px; }

.fn-scan-root {
  margin-top: 15px; padding: 40px; display: flex; flex-direction: column; justify-content: center;
  border: 1px solid rgba(184, 153, 104, 0.4); border-radius: 4px;
  background: linear-gradient(180deg, rgba(11, 23, 48, 0.98), rgba(7, 16, 31, 0.99));
  box-shadow: 0 0 70px rgba(184, 153, 104, 0.12);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.fn-scan-wrap--live .fn-scan-root { position: absolute; inset: 0; margin-top: 0; }
.fn-scan-root-label {
  display: flex; align-items: center; gap: 16px; margin-bottom: 20px;
  font-family: 'Courier New', Courier, monospace; font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted-on-navy);
}
.fn-scan-root-rule { flex: 1; height: 1px; max-width: 100px; background: var(--champagne); opacity: 0.6; }
.fn-scan-root-h { font-family: var(--font-display); font-weight: 400; font-size: clamp(29px, 3vw, 42px); line-height: 1.1; color: var(--ivory); letter-spacing: -0.005em; }
.fn-scan-root-h em { font-style: normal; font-weight: 700; color: var(--champagne); }
.fn-scan-root-sub { font-family: var(--font-body); font-size: 17px; line-height: 1.6; color: var(--muted-strong-navy); margin-top: 20px; }

.fn-scan-hint {
  position: absolute; left: 50%; bottom: 3.5vh; transform: translateX(-50%);
  font-family: 'Courier New', Courier, monospace; font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--muted-on-navy); transition: opacity 0.4s ease; pointer-events: none;
}

@media (max-width: 900px) {
  .fn-scan-wrap, .fn-scan-wrap--live { padding: 70px 0; min-height: 0; }
  .fn-scan-wrap--live .fn-scan-pin { position: static; height: auto; display: block; overflow: visible; }
  .fn-scan-grid { grid-template-columns: 1fr; gap: 38px; }
  .fn-scan-left { max-width: none; }
  .fn-scan-h { font-size: 38px; }
  .fn-scan-wrap--live .fn-scan-root { position: relative; inset: auto; margin-top: 15px; }
  .fn-scan-root { padding: 30px 24px; }
  .fn-scan-hint { display: none; }
}


/* ---- Diagnosis · animated beats ---- */
.fn-dg .fn-p { text-align: center; }
.fn-dg-lead { max-width: 640px; margin: 0 auto; }

/* Tactics — struck through on reveal */
.fn-dg-tactics { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 26px auto 0; max-width: 760px; }
.fn-dg-chip {
  position: relative; font-family: var(--font-sans); font-size: 15px; letter-spacing: 0.01em;
  color: var(--muted-strong-navy); padding: 10px 18px; border: 1px solid var(--rule-on-navy); border-radius: 3px;
  opacity: 0; transform: translateY(10px); transition: opacity 0.5s ease, transform 0.5s ease, color 0.5s ease;
  background: rgba(184, 153, 104, 0.03);
}
.fn-dg-tactics.is-in .fn-dg-chip { opacity: 1; transform: none; color: var(--muted-on-navy); }
.fn-dg-chip-txt { position: relative; }
.fn-dg-chip-txt::after {
  content: ''; position: absolute; left: -2px; right: -2px; top: 52%; height: 1.5px; background: var(--champagne);
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.fn-dg-tactics.is-in .fn-dg-chip .fn-dg-chip-txt::after { transform: scaleX(1); transition-delay: inherit; }

/* Trap — pull-quote with left rule */
.fn-dg-trap { max-width: 680px; margin: 56px auto 0; padding-left: 26px; border-left: 2px solid var(--champagne); text-align: left; }
.fn-dg-trap .fn-p { text-align: left; font-size: 21px; line-height: 1.6; color: var(--ivory); }
.fn-dg-trap .fn-p b { font-family: var(--font-display); font-weight: 700; color: var(--champagne); }

/* "one layer deeper" — descent cue */
.fn-dg-deeper { max-width: 620px; margin: 52px auto 0; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.fn-dg-deeper-txt { font-family: var(--font-display); font-size: 24px; line-height: 1.3; color: var(--muted-strong-navy); text-align: center; }
.fn-dg-deeper-txt--gold { color: var(--champagne); font-weight: 700; }
.fn-dg-deeper-cue { display: flex; flex-direction: column; align-items: center; height: 34px; justify-content: center; }
.fn-dg-deeper-line { width: 1px; height: 22px; background: var(--rule-on-navy); }
.fn-dg-deeper-chev { color: var(--champagne); font-size: 18px; line-height: 1; transform: rotate(90deg); margin-top: 2px; animation: fn-dg-bob 1.8s ease-in-out infinite; }
@keyframes fn-dg-bob { 0%, 100% { transform: rotate(90deg) translateX(0); } 50% { transform: rotate(90deg) translateX(4px); } }

/* Intro line above formula */
.fn-dg-eq-intro { margin: 56px auto 0; max-width: 620px; color: var(--muted-strong-navy); }

/* ---- The equation, rebuilt ---- */
.fn-dg-eq { margin: 30px auto 0; max-width: 980px; display: flex; flex-direction: column; align-items: center; gap: 26px; }
.fn-dg-eq-lhs {
  font-family: var(--font-display); font-weight: 700; font-size: 26px; color: var(--ivory); letter-spacing: -0.005em;
  opacity: 0; transform: translateY(12px); transition: opacity 0.6s ease, transform 0.6s ease;
}
.fn-dg-eq.is-in .fn-dg-eq-lhs { opacity: 1; transform: none; }
.fn-dg-eq-sign { color: var(--champagne); padding-left: 8px; }

.fn-dg-eq-groups { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; width: 100%; }

.fn-dg-eq-first {
  display: flex; flex-direction: column; align-items: center; gap: 12px; justify-content: center; padding: 20px 22px;
  opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease;
}
.fn-dg-eq.is-in .fn-dg-eq-first { opacity: 1; transform: none; }

.fn-dg-eq-op {
  display: flex; align-items: center; font-family: var(--font-display); font-weight: 700; font-size: 26px; color: var(--champagne);
  opacity: 0; transition: opacity 0.5s ease;
}
.fn-dg-eq.is-in .fn-dg-eq-op { opacity: 1; }
.fn-dg-eq-op--sm { font-size: 18px; }

.fn-dg-eq-rest {
  display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 24px 26px;
  border: 1px solid rgba(184, 153, 104, 0.42); border-radius: 4px;
  background: linear-gradient(180deg, rgba(184, 153, 104, 0.07), rgba(184, 153, 104, 0.02));
  box-shadow: 0 0 0 rgba(184, 153, 104, 0);
  opacity: 0; transform: translateY(16px) scale(0.98);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.7s ease;
}
.fn-dg-eq.is-in .fn-dg-eq-rest { opacity: 1; transform: none; box-shadow: 0 0 50px rgba(184, 153, 104, 0.14); }
.fn-dg-eq-rest-vars { display: flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 10px 12px; }

.fn-dg-var {
  display: inline-flex; align-items: baseline; gap: 8px;
  font-family: var(--font-display); font-weight: 400; font-size: 20px; color: var(--ivory); white-space: nowrap;
  opacity: 0; transform: translateY(10px); transition: opacity 0.55s ease, transform 0.55s ease;
}
.fn-dg-eq.is-in .fn-dg-var { opacity: 1; transform: none; }
.fn-dg-var-idx { font-family: 'Courier New', Courier, monospace; font-size: 11px; letter-spacing: 0.12em; color: var(--champagne); }
.fn-dg-eq-first .fn-dg-var { font-size: 24px; }

/* Each of the five built variables becomes a small stacked card with a plain-English tag */
.fn-dg-var--rest {
  flex-direction: column; align-items: flex-start; gap: 3px; white-space: normal;
  padding: 12px 15px; border: 1px solid var(--rule-on-navy); border-radius: 3px;
  background: rgba(11, 23, 48, 0.5); min-width: 150px;
}
.fn-dg-var--rest .fn-dg-var-idx { order: -1; }
.fn-dg-var--rest .fn-dg-var-name { font-size: 18px; line-height: 1.1; }
.fn-dg-var-tag { font-family: var(--font-body); font-size: 12.5px; line-height: 1.3; color: var(--muted-on-navy); }

.fn-dg-eq-rest { position: relative; }
.fn-dg-eq-rest-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-sc); font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--navy); background: var(--champagne); padding: 4px 14px; border-radius: 2px; white-space: nowrap;
  opacity: 0; transition: opacity 0.5s ease;
}
.fn-dg-eq.is-in .fn-dg-eq-rest-badge { opacity: 1; }

.fn-dg-cap {
  font-family: var(--font-sc); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0; transform: translateY(6px); transition: opacity 0.5s ease, transform 0.5s ease;
}
.fn-dg-eq.is-in .fn-dg-cap { opacity: 1; transform: none; }
.fn-dg-cap--sold { color: var(--muted-on-navy); }
.fn-dg-cap--build { color: var(--champagne); }

/* ---- Stat: 23% vs 3x ---- */
.fn-dg-stat { max-width: 620px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 18px; }
.fn-dg-stat-row { display: grid; grid-template-columns: 150px 1fr 56px; align-items: center; gap: 18px; }
.fn-dg-stat-label { font-family: var(--font-sans); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-on-navy); text-align: right; }
.fn-dg-bar { position: relative; height: 8px; border-radius: 4px; background: rgba(244, 239, 227, 0.10); overflow: hidden; }
.fn-dg-bar-fill { display: block; height: 100%; width: 0; border-radius: 4px; background: rgba(244, 239, 227, 0.32); transition: width 1.1s cubic-bezier(0.4, 0, 0.2, 1); }
.fn-dg-bar-fill--gold { background: var(--champagne); box-shadow: 0 0 12px rgba(184, 153, 104, 0.5); }
.fn-dg-stat.is-in .fn-dg-bar-fill { width: var(--to); }
.fn-dg-stat-num { font-family: var(--font-display); font-weight: 700; font-size: 24px; color: var(--ivory); font-variant-numeric: tabular-nums; }
.fn-dg-stat-row--gold .fn-dg-stat-num { color: var(--champagne); }

/* Closing beats */
.fn-dg-after { max-width: 680px; margin: 48px auto 0; color: rgba(244, 239, 227, 0.9); }
.fn-dg-after--tight { margin-top: 22px; }
.fn-dg-punch { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 3.2vw, 40px); line-height: 1.14; text-align: center; color: var(--ivory); max-width: 760px; margin: 52px auto 0; letter-spacing: -0.005em; }
.fn-dg-close { font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 30px); line-height: 1.25; text-align: center; color: var(--muted-strong-navy); max-width: 720px; margin: 20px auto 0; }
.fn-dg-close em { font-style: normal; font-weight: 700; color: var(--champagne); }

@media (max-width: 760px) {
  .fn-dg-eq-groups { flex-direction: column; align-items: center; gap: 12px; }
  .fn-dg-eq-op { justify-content: center; }
  .fn-dg-eq-rest-vars { flex-direction: column; gap: 8px; }
  .fn-dg-eq-rest-vars .fn-dg-eq-op--sm { display: none; }
  .fn-dg-eq-lhs { font-size: 21px; text-align: center; }
  .fn-dg-stat-row { grid-template-columns: 110px 1fr 46px; gap: 12px; }
  .fn-dg-stat-label { font-size: 11px; }
  .fn-dg-trap .fn-p { font-size: 18px; }
}

.fn-formula {
  margin: 18px auto;
  padding: 28px 0;
  border-top: 1px solid var(--rule-on-navy);
  border-bottom: 1px solid var(--rule-on-navy);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.fn-formula-lhs {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--ivory);
  letter-spacing: -0.005em;
}
.fn-formula-eq { color: var(--champagne); padding-left: 10px; }
.fn-formula-rhs {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  color: var(--ivory);
  max-width: 880px;
}
.fn-formula-rhs .var { padding-bottom: 2px; border-bottom: 1px solid rgba(184, 153, 104, 0.5); }
.fn-formula-rhs .op { color: var(--champagne); font-weight: 700; padding: 0 2px; }
@media (max-width: 700px) {
  .fn-formula-rhs { font-size: 17px; flex-direction: column; align-items: center; gap: 8px; }
  .fn-formula-rhs .op { display: none; }
  .fn-formula-lhs { font-size: 22px; }
}

/* ============================================================
   SECTION 7 — OLD WAY vs NEW WAY
   ============================================================ */
.fn-cmp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 28px;
}
.fn-cmp-col {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
/* BEFORE — recessed, muted, struck-through energy */
.fn-cmp-col--old {
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid var(--rule-on-navy);
  border-radius: 14px;
}
/* AFTER — elevated, champagne-framed, faint glow */
.fn-cmp-col--new {
  background: rgba(184, 153, 104, 0.07);
  border: 1px solid var(--champagne);
  border-radius: 14px;
  box-shadow: 0 0 0 1px rgba(184, 153, 104, 0.15),
              0 0 28px rgba(184, 153, 104, 0.14),
              0 22px 50px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 1;
}
.fn-cmp-header {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--champagne);
  padding-bottom: 8px;
}
.fn-cmp-col--old .fn-cmp-header { color: rgba(244, 239, 227, 0.5); }
.fn-cmp-tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(244, 239, 227, 0.3);
  color: rgba(244, 239, 227, 0.6);
}
.fn-cmp-tag--gold {
  border-color: var(--champagne);
  color: var(--navy);
  background: var(--champagne);
}
.fn-cmp-list { display: flex; flex-direction: column; gap: 0; }
.fn-cmp-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.6;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule-on-navy);
}
.fn-cmp-item:last-child { border-bottom: none; }
.fn-cmp-col--old .fn-cmp-text { color: rgba(244, 239, 227, 0.58); }
.fn-cmp-col--new .fn-cmp-text { color: var(--ivory); }
.fn-cmp-mark {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.fn-cmp-mark--x {
  color: rgba(244, 239, 227, 0.45);
  border: 1px solid rgba(244, 239, 227, 0.2);
}
.fn-cmp-mark--check {
  color: var(--navy);
  background: var(--champagne);
}
@media (max-width: 900px) {
  .fn-cmp { grid-template-columns: 1fr; gap: 28px; }
}

.fn-insight {
  max-width: 760px;
  margin: 64px auto 0;
  text-align: center;
}
.fn-insight .fn-p { font-size: 18px; color: rgba(244, 239, 227, 0.92); }

.fn-diff-head {
  margin-top: 80px;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 500;
  margin-bottom: 36px;
}
.fn-diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule-on-navy);
  border-bottom: 1px solid var(--rule-on-navy);
}
.fn-diff-col {
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fn-diff-col + .fn-diff-col { border-left: 1px solid var(--rule-on-navy); }
.fn-diff-head-row {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
}
.fn-diff-ic {
  width: 30px;
  height: 30px;
  color: var(--champagne);
  flex-shrink: 0;
  order: 2;
}
.fn-diff-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--champagne);
  letter-spacing: -0.01em;
}
.fn-diff-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.25;
  color: var(--ivory);
}
.fn-diff-body {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(244, 239, 227, 0.85);
}
@media (max-width: 900px) {
  .fn-diff-grid { grid-template-columns: 1fr; }
  .fn-diff-col + .fn-diff-col { border-left: none; border-top: 1px solid var(--rule-on-navy); }
  .fn-diff-col { padding: 28px 0; }
}

/* ============================================================
   SECTION 8 — PILLARS
   ============================================================ */
.fn-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fn-pillar {
  background: transparent;
  border: 2px solid rgba(184, 153, 104, 0.6);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 0 0 1px rgba(184, 153, 104, 0.08),
              0 0 22px rgba(184, 153, 104, 0.16);
  transition: border-color 450ms ease, transform 450ms ease, background 450ms ease, box-shadow 450ms ease;
}
.fn-pillar-num,
.fn-pillar-title,
.fn-pillar-role,
.fn-pillar-lede,
.fn-pillar-list li,
.fn-pillar-list li b {
  transition: color 450ms ease, border-color 450ms ease;
}
.fn-pillar:hover {
  background: var(--champagne);
  border-color: var(--champagne);
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(184, 153, 104, 0.4),
              0 0 36px rgba(184, 153, 104, 0.5),
              0 0 76px rgba(184, 153, 104, 0.26);
}
.fn-pillar:hover .fn-pillar-num,
.fn-pillar:hover .fn-pillar-title,
.fn-pillar:hover .fn-pillar-role,
.fn-pillar:hover .fn-pillar-lede,
.fn-pillar:hover .fn-pillar-list li,
.fn-pillar:hover .fn-pillar-list li b { color: var(--navy); }
.fn-pillar:hover .fn-pillar-lede { border-bottom-color: rgba(20, 30, 55, 0.28); }
.fn-pillar:hover .fn-pillar-list li { border-bottom-color: rgba(20, 30, 55, 0.2); }
.fn-pillar-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}
.fn-pillar-ic {
  display: inline-flex;
  width: 30px;
  height: 30px;
  color: var(--champagne);
  flex-shrink: 0;
}
.fn-pillar-ic svg { width: 100%; height: 100%; }
.fn-pillar:hover .fn-pillar-ic { color: var(--navy); }
.fn-pillar-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  color: var(--champagne);
  letter-spacing: -0.01em;
}
.fn-pillar-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 27px;
  line-height: 1.18;
  color: var(--ivory);
  letter-spacing: -0.005em;
}
.fn-pillar-role {
  font-family: var(--font-sc);
  font-weight: 600;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
}
.fn-pillar-lede {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(244, 239, 227, 0.9);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule-on-navy);
}
.fn-pillar-list { display: flex; flex-direction: column; gap: 0; }
.fn-pillar-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(244, 239, 227, 0.85);
  padding: 14px 0;
  border-bottom: 1px solid var(--rule-on-navy);
}
.fn-pillar-list li::before {
  content: '\2713';
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid var(--champagne);
  border-radius: 5px;
  color: var(--navy);
  background: var(--champagne);
  box-shadow: 0 0 10px rgba(184, 153, 104, 0.4);
  transition: background 450ms ease, color 450ms ease, border-color 450ms ease, box-shadow 450ms ease;
}
.fn-pillar:hover .fn-pillar-list li::before {
  background: var(--navy);
  color: var(--champagne);
  border-color: var(--navy);
  box-shadow: none;
}
.fn-pillar-list li:last-child { border-bottom: none; }
.fn-pillar-li-text { flex: 1 1 auto; min-width: 0; }
.fn-pillar-list li b {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--champagne);
  font-style: normal;
}
@media (max-width: 900px) { .fn-pillars { grid-template-columns: 1fr; } }

/* ============================================================
   SECTION 10 — TIMELINE
   ============================================================ */
.fn-tl { max-width: 880px; margin: 0 auto; position: relative; }
/* Champagne spine sits on the column boundary between time + body */
.fn-tl-spine {
  position: absolute; top: 40px; bottom: 40px; left: 299px; width: 2px;
  background: var(--rule-on-navy); overflow: hidden; border-radius: 2px;
}
.fn-tl-spine-fill {
  position: absolute; top: 0; left: 0; width: 100%; background: var(--champagne);
  box-shadow: 0 0 10px rgba(184, 153, 104, 0.5); transition: height 0.12s linear;
}
.fn-tl-row {
  display: grid;
  grid-template-columns: 260px 40px 1fr;
  gap: 0 20px;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule-on-navy);
  align-items: start;
}
.fn-tl-row:last-child { border-bottom: none; }
.fn-tl-t { display: flex; flex-direction: column; gap: 6px; text-align: right; }
.fn-tl-stamp {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
}
.fn-tl-name {
  font-family: var(--font-sc);
  font-weight: 600;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(244, 239, 227, 0.8);
}
/* Node marker on the spine */
.fn-tl-node { position: relative; display: flex; justify-content: center; padding-top: 4px; }
.fn-tl-node-dot {
  width: 11px; height: 11px; border-radius: 50%; background: var(--navy);
  border: 1.5px solid var(--rule-on-navy); transition: border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}
.fn-tl-row.is-active .fn-tl-node-dot {
  background: var(--champagne); border-color: var(--champagne);
  box-shadow: 0 0 0 4px rgba(184, 153, 104, 0.14), 0 0 14px rgba(184, 153, 104, 0.55); transform: scale(1.08);
}
.fn-tl-body .fn-p { color: rgba(244, 239, 227, 0.9); max-width: 560px; }
.fn-tl-lead, .fn-tl-rest {
  display: block; opacity: 0; transform: translateY(8px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.fn-tl-row.is-in .fn-tl-lead, .fn-tl-row.is-in .fn-tl-rest { opacity: 1; transform: none; }
.fn-tl-lead { font-size: 19px; line-height: 1.5; color: var(--ivory); }
.fn-tl-rest { font-size: 15.5px; line-height: 1.6; color: var(--muted-on-navy); margin-top: 12px; max-width: 560px; }
/* Champagne underline sweeps under the pulled stats as the step reveals */
.fn-tl-rest strong { position: relative; white-space: nowrap; }
.fn-tl-rest strong::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 1.5px; background: var(--champagne);
  transform: scaleX(0); transform-origin: left; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.45s;
}
.fn-tl-row.is-in .fn-tl-rest strong::after { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) {
  .fn-tl-lead, .fn-tl-rest { opacity: 1; transform: none; transition: none; }
  .fn-tl-rest strong::after { transform: scaleX(1); transition: none; }
}

/* Stat chips pulled out of the body */
.fn-tl-stats { display: flex; flex-wrap: wrap; gap: 12px; margin: 16px 0 4px; }
.fn-tl-stat {
  display: flex; align-items: baseline; gap: 9px; padding: 9px 15px;
  border: 1px solid var(--rule-on-navy); border-radius: 3px; background: rgba(184, 153, 104, 0.05);
}
.fn-tl-stat-v { font-family: var(--font-display); font-weight: 700; font-size: 21px; color: var(--champagne); }
.fn-tl-stat-l { font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.03em; text-transform: uppercase; color: var(--muted-on-navy); }

@media (max-width: 900px) {
  .fn-tl-spine { display: block; left: 13px; top: 24px; bottom: 24px; }
  .fn-tl-row {
    grid-template-columns: 28px 1fr;
    column-gap: 16px; row-gap: 4px;
    padding: 22px 0;
    align-items: start;
  }
  .fn-tl-node { display: flex; grid-column: 1; grid-row: 1 / span 2; align-items: flex-start; padding-top: 3px; }
  .fn-tl-t { grid-column: 2; grid-row: 1; text-align: left; }
  .fn-tl-body { grid-column: 2; grid-row: 2; }
  .fn-tl-lead { font-size: 17px; }
  .fn-tl-rest { font-size: 15px; }
}


/* ============================================================
   SECTION 11 — BONUSES
   ============================================================ */
.fn-bonuses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fn-bonus {
  border: 2px solid rgba(184, 153, 104, 0.6);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 0 0 1px rgba(184, 153, 104, 0.08),
              0 0 22px rgba(184, 153, 104, 0.16);
  transition: border-color 450ms ease, transform 450ms ease, background 450ms ease, box-shadow 450ms ease;
}
.fn-bonus-tag,
.fn-bonus-title,
.fn-bonus-title .gold,
.fn-bonus-body {
  transition: color 450ms ease;
}
.fn-bonus:hover {
  background: var(--champagne);
  border-color: var(--champagne);
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(184, 153, 104, 0.4),
              0 0 36px rgba(184, 153, 104, 0.5),
              0 0 76px rgba(184, 153, 104, 0.26);
}
.fn-bonus:hover .fn-bonus-tag,
.fn-bonus:hover .fn-bonus-title,
.fn-bonus:hover .fn-bonus-title .gold,
.fn-bonus:hover .fn-bonus-body { color: var(--navy); }
.fn-bonus-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fn-bonus-ic {
  display: inline-flex;
  width: 30px;
  height: 30px;
  color: var(--champagne);
  flex-shrink: 0;
}
.fn-bonus-ic svg { width: 100%; height: 100%; }
.fn-bonus:hover .fn-bonus-ic { color: var(--navy); }
.fn-bonus-tag {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 700;
}
.fn-bonus-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.22;
  color: var(--ivory);
}
.fn-bonus-title .gold {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--champagne);
}
.fn-bonus-body {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(244, 239, 227, 0.85);
}
@media (max-width: 900px) { .fn-bonuses { grid-template-columns: 1fr; } }

/* ============================================================
   SECTION 13 — GUARANTEE
   ============================================================ */
.fn-guarantee {
  padding: 130px 0;
}
.fn-guarantee-inner { text-align: center; max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 32px; }
.fn-guarantee-box {
  position: relative;
  max-width: 780px;
  margin: 46px auto 0;
  padding: 76px 72px 64px;
  border: 1px solid rgba(184, 153, 104, 0.55);
  border-radius: 20px;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(184, 153, 104, 0.12), rgba(184, 153, 104, 0) 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.12));
  box-shadow:
    0 0 0 1px rgba(184, 153, 104, 0.14),
    0 30px 80px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.fn-guarantee-box::before,
.fn-guarantee-box::after {
  content: '';
  position: absolute;
  width: 26px;
  height: 26px;
  border: 1px solid var(--champagne);
  opacity: 0.55;
}
.fn-guarantee-box::before { top: 16px; left: 16px; border-right: none; border-bottom: none; }
.fn-guarantee-box::after { bottom: 16px; right: 16px; border-left: none; border-top: none; }
.fn-guar-emblem {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--champagne);
  background: var(--navy);
  border: 1px solid rgba(184, 153, 104, 0.55);
  box-shadow: 0 0 0 6px var(--navy), 0 0 34px rgba(184, 153, 104, 0.35);
}
.fn-guar-emblem svg { width: 42px; height: 42px; }
.fn-guarantee h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.1;
  color: var(--ivory);
  letter-spacing: -0.01em;
}
.fn-guarantee h2 .gold { font-weight: 700; color: var(--champagne); }
.fn-guarantee-body {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.55;
  color: rgba(244, 239, 227, 0.95);
  max-width: 720px;
}
.fn-guarantee-body b, .fn-guarantee-body strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--champagne);
  font-style: normal;
}
@media (max-width: 900px) {
  .fn-guarantee { padding: 80px 0; }
  .fn-guarantee h2 { font-size: 34px; }
  .fn-guarantee-body { font-size: 18px; }
}

/* ============================================================
   SECTION 14 — CALCULATOR
   ============================================================ */
.fn-calc {
  max-width: 1040px;
  margin: 0 auto;
  border: 1px solid var(--champagne);
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.1));
  animation: fn-cta-glow 2.6s ease-in-out infinite;
}
.fn-calc-inputs {
  padding: 46px 44px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  justify-content: center;
}
.fn-field { display: flex; flex-direction: column; gap: 14px; }
.fn-field-lbl {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.fn-field-hint {
  color: var(--champagne);
  margin-left: 0;
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 500;
}
.fn-field-money { display: flex; align-items: baseline; gap: 6px; border-bottom: 1px solid var(--champagne); padding-bottom: 6px; }
.fn-field-money .pre {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  color: var(--champagne);
  line-height: 1;
}
.fn-field-money input {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  color: var(--ivory);
  background: transparent;
  border: 0;
  padding: 0;
  outline: none;
  width: 100%;
  -moz-appearance: textfield;
}
.fn-field-money input::-webkit-outer-spin-button,
.fn-field-money input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.fn-slider { display: flex; align-items: center; gap: 18px; }
.fn-slider input[type=range] {
  flex: 1; -webkit-appearance: none; appearance: none;
  background: transparent; height: 18px;
}
.fn-slider input[type=range]::-webkit-slider-runnable-track { height: 1px; background: rgba(244, 239, 227, 0.4); }
.fn-slider input[type=range]::-moz-range-track { height: 1px; background: rgba(244, 239, 227, 0.4); }
.fn-slider input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 16px; height: 16px;
  border-radius: 50%; background: var(--champagne);
  margin-top: -7px; cursor: pointer;
  transition: transform 200ms ease;
}
.fn-slider input[type=range]:hover::-webkit-slider-thumb { transform: scale(1.15); }
.fn-slider input[type=range]:active::-webkit-slider-thumb { transform: scale(1.15); }
.fn-slider input[type=range]::-moz-range-thumb {
  width: 16px; height: 16px;
  border-radius: 50%; background: var(--champagne);
  border: 0; cursor: pointer;
}
.fn-slider-val {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  color: var(--ivory);
  white-space: nowrap;
  min-width: 64px;
  text-align: right;
}

.fn-calc-outputs {
  padding: 44px 44px;
  border-left: 1px solid var(--rule-on-navy);
  background:
    radial-gradient(130% 90% at 50% 0%, rgba(184, 153, 104, 0.11), rgba(184, 153, 104, 0) 62%),
    var(--navy-deep);
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-content: center;
}
.fn-calc-hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.fn-calc-hero-lbl {
  font-family: var(--font-sans);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244, 239, 227, 0.55);
  font-weight: 600;
}
.fn-calc-hero-val {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 66px;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(100deg, #9E8250 0%, #F6E8C6 24%, #C9A567 48%, #F6E8C6 72%, #9E8250 100%);
  background-size: 240% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: fn-shine 6.5s linear infinite;
  filter: drop-shadow(0 3px 26px rgba(184, 153, 104, 0.3));
  font-variant-numeric: tabular-nums;
}
@keyframes fn-shine { to { background-position: 240% center; } }
.fn-calc-hero-sub {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: rgba(244, 239, 227, 0.5);
}
.fn-calc-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule-on-navy);
  padding-top: 26px;
}
.fn-sec {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 9px;
  padding: 2px 18px;
}
.fn-sec + .fn-sec { border-left: 1px solid var(--rule-on-navy); }
.fn-sec-ic { width: 24px; height: 24px; color: var(--champagne); }
.fn-sec-val {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 30px;
  line-height: 1;
  color: var(--ivory);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.fn-sec-lbl {
  font-family: var(--font-sans);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 239, 227, 0.5);
  font-weight: 600;
}

.fn-calc-upside {
  max-width: 760px;
  margin: 26px auto 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.fn-calc-upside-lbl {
  font-family: var(--font-sans);
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(184, 153, 104, 0.85);
  font-weight: 600;
}
.fn-calc-upside-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 26px;
}
.fn-calc-upside-list li {
  position: relative;
  padding-left: 16px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(244, 239, 227, 0.62);
}
.fn-calc-upside-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--champagne);
  font-weight: 600;
}
.fn-calc-closer {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 13px;
  color: rgba(244, 239, 227, 0.42);
}

@media (max-width: 900px) {
  .fn-calc { grid-template-columns: 1fr; }
  .fn-calc-inputs { gap: 30px; padding: 32px 24px; }
  .fn-calc-outputs { border-left: none; border-top: 1px solid var(--rule-on-navy); padding: 36px 24px; }
  .fn-calc-hero-val { font-size: 52px; }
  .fn-calc, .fn-calc-inputs, .fn-calc-outputs, .fn-field, .fn-field-money, .fn-slider { min-width: 0; }
  .fn-field-money { width: 100%; box-sizing: border-box; }
  .fn-field-money input { width: 100%; min-width: 0; box-sizing: border-box; }
  .fn-slider input[type="range"] { width: 100%; min-width: 0; }
}

/* ============================================================
   SECTION 16 — FAQ
   ============================================================ */
/* Editorial index — expanding gold-framed cards */
.fn-faq {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fn-faq-row {
  position: relative;
  border: 1px solid rgba(184, 153, 104, 0.26);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.014);
  overflow: hidden;
  transition: border-color 380ms ease, background 380ms ease, box-shadow 420ms ease;
}
/* left gold accent bar grows on open */
.fn-faq-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: var(--champagne);
  border-radius: 0 2px 2px 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
}
.fn-faq-row:hover { border-color: rgba(184, 153, 104, 0.5); }
.fn-faq-row.is-open {
  border-color: var(--champagne);
  background: rgba(184, 153, 104, 0.06);
  box-shadow: 0 0 0 1px rgba(184, 153, 104, 0.2),
              0 0 30px rgba(184, 153, 104, 0.13),
              0 22px 48px rgba(0, 0, 0, 0.34);
}
.fn-faq-row.is-open::before { transform: scaleY(1); }

.fn-faq-q {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  width: 100%;
  padding: 25px 30px;
  text-align: left;
}
.fn-faq-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: rgba(184, 153, 104, 0.5);
  font-variant-numeric: tabular-nums;
  transition: color 380ms ease;
}
.fn-faq-row:hover .fn-faq-num,
.fn-faq-row.is-open .fn-faq-num { color: var(--champagne); }
.fn-faq-q-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  line-height: 1.3;
  color: var(--ivory);
  letter-spacing: -0.005em;
}
/* circular +/- toggle — spins & fills gold on open, plus collapses to minus */
.fn-faq-tog {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid var(--champagne);
  transition: transform 460ms cubic-bezier(0.22, 1, 0.36, 1), background 300ms ease;
}
.fn-faq-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--champagne);
  border-radius: 2px;
  transition: transform 420ms cubic-bezier(0.34, 1.56, 0.64, 1), background 300ms ease;
}
.fn-faq-bar.h { width: 13px; height: 2px; transform: translate(-50%, -50%); }
.fn-faq-bar.v { width: 2px; height: 13px; transform: translate(-50%, -50%); }
.fn-faq-q:hover .fn-faq-tog { transform: scale(1.09); }
.fn-faq-row.is-open .fn-faq-tog { transform: rotate(180deg); background: var(--champagne); }
.fn-faq-row.is-open .fn-faq-q:hover .fn-faq-tog { transform: rotate(180deg) scale(1.09); }
.fn-faq-row.is-open .fn-faq-bar { background: var(--navy); }
.fn-faq-row.is-open .fn-faq-bar.v { transform: translate(-50%, -50%) scaleY(0); }

.fn-faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 400ms cubic-bezier(0.22, 1, 0.36, 1);
}
.fn-faq-a-inner { overflow: hidden; min-height: 0; }
.fn-faq-row.is-open .fn-faq-a { grid-template-rows: 1fr; }
.fn-faq-a .fn-p {
  margin: 0;
  padding: 2px 34px 28px 74px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(244, 239, 227, 0.85);
  max-width: 780px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 300ms ease, transform 440ms cubic-bezier(0.16, 1, 0.3, 1);
}
.fn-faq-row.is-open .fn-faq-a .fn-p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 100ms;
}
@media (max-width: 900px) {
  .fn-faq-q { padding: 22px 20px; gap: 14px; }
  .fn-faq-q-text { font-size: 17px; }
  .fn-faq-num { font-size: 16px; }
  .fn-faq-a .fn-p { padding: 2px 20px 24px 20px; font-size: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .fn-faq-row, .fn-faq-row::before, .fn-faq-tog, .fn-faq-bar,
  .fn-faq-a, .fn-faq-a .fn-p { transition: none; }
}

/* ============================================================
   SECTION 18 — FOUNDER NOTE
   ============================================================ */
.fn-founder {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 247px 1fr;
  gap: 95px;
  align-items: start;
}
.fn-founder-col { display: flex; flex-direction: column; gap: 28px; }
.fn-founder-title { margin-bottom: 4px; }
.fn-founder-body { display: flex; flex-direction: column; gap: 20px; }
.fn-founder-body p {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.75;
  color: rgba(244, 239, 227, 0.92);
}
.fn-founder-link {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ivory);
  border-bottom: 1px solid var(--champagne);
  padding-bottom: 1px;
  transition: color 200ms ease;
}
.fn-founder-link:hover { color: var(--champagne); }

.fn-founder-aside {
  position: sticky;
  top: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.fn-founder-photo {
  width: 247px;
  max-width: 100%;
  align-self: flex-start;
  aspect-ratio: 372 / 520;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--champagne);
  background: var(--navy-deep);
  overflow: hidden;
}
.fn-founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.fn-founder-signoff {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fn-founder-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.1;
  color: var(--ivory);
}
.fn-founder-role {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne);
}
@media (max-width: 900px) {
  .fn-founder {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 640px;
  }
  .fn-founder-aside {
    position: static;
    max-width: 320px;
    margin: 0 auto;
    align-items: center;
    text-align: center;
  }
  .fn-founder-photo {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 372 / 460;
  }
  .fn-founder-signoff { text-align: center; }
  .fn-founder-body p { font-size: 17px; }
}

/* ============================================================
   SECTION 19 — BOOK / iCLOSED EMBED
   ============================================================ */
.fn-book {
  padding: 130px 0;
}
.fn-book-head { text-align: center; margin-bottom: 56px; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.fn-book-h {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.08;
  color: var(--ivory);
  letter-spacing: -0.01em;
  max-width: 720px;
}
.fn-book-h .gold { font-weight: 700; color: var(--champagne); }
.fn-book-sub {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(184, 153, 104, 0.9);
  font-weight: 500;
}
.fn-book-frame {
  max-width: 880px;
  margin: 0 auto;
  min-height: 720px;
  border: 1px solid var(--champagne);
  background: var(--navy-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  gap: 20px;
}
.fn-book-frame--live {
  display: block;
  padding: 0;
  min-height: 0;
  border-radius: 16px;
  background: var(--navy-deep);
  overflow: hidden;
  animation: fn-vsl-glow 3.6s ease-in-out infinite;
  transition: height 0.42s cubic-bezier(0.4, 0, 0.2, 1), width 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
.fn-book-frame--live #my-cal-inline-strategy-call {
  display: block;
}
.fn-book-frame--live iframe {
  display: block;
  border-radius: 16px;
  transition: height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (prefers-reduced-motion: reduce) {
  .fn-book-frame--live {
    animation: none;
    box-shadow: 0 0 22px rgba(184, 153, 104, 0.28);
  }
}
.fn-book-frame-glyph {
  width: 48px; height: 48px;
  border: 1px solid var(--champagne);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--champagne);
  font-family: var(--font-display);
  font-size: 22px;
}
.fn-book-frame-lbl {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(184, 153, 104, 0.9);
  font-weight: 500;
  text-align: center;
}
.fn-book-frame-sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(244, 239, 227, 0.55);
  text-align: center;
  max-width: 440px;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .fn-book { padding: 80px 0; }
  .fn-book-h { font-size: 34px; }
  .fn-book-frame { min-height: 560px; padding: 40px 24px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.fn-footer {
  padding: 80px 0;
}
.fn-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.fn-footer-meta {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(244, 239, 227, 0.55);
  font-weight: 500;
}
@media (max-width: 900px) { .fn-footer { padding: 40px 0; } }

/* ============================================================
   NAVIGATION
   ============================================================ */
.fn-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  padding: 14px 24px;
  background: transparent;
  transition: padding 240ms ease;
}
.fn-nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: background 280ms ease, border-color 280ms ease, box-shadow 280ms ease, backdrop-filter 280ms ease;
}
/* Ceramic / porcelain floating pill once scrolled */
.fn-nav.is-scrolled .fn-nav-inner {
  background: linear-gradient(180deg, #fdfaf4 0%, #f3ecdd 52%, #ece2cf 100%);
  border-color: rgba(184, 153, 104, 0.45);
  box-shadow: inset 0 1.5px 0 rgba(255, 255, 255, 0.9),
              inset 0 -2px 4px rgba(184, 153, 104, 0.18),
              0 14px 38px rgba(7, 16, 31, 0.34);
}
.fn-nav.is-scrolled .fn-nav-link { color: var(--navy); }
.fn-nav.is-scrolled .fn-lk-wm { fill: var(--navy); }
.fn-nav.is-scrolled .fn-lk-mark { fill: var(--champagne); }
.fn-nav.is-scrolled .fn-cta--nav {
  background: var(--navy);
  color: var(--ivory);
  border-color: var(--navy);
}
.fn-nav.is-scrolled .fn-cta--nav:hover {
  background: var(--champagne);
  color: var(--navy);
  border-color: var(--champagne);
}
.fn-nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0 auto;
}
.fn-nav-link {
  position: relative;
  font-family: var(--font-sans);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ivory);
  white-space: nowrap;
  transition: color 200ms ease;
}
.fn-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}
.fn-nav-link:hover { color: var(--champagne); }
.fn-nav-link:hover::after { transform: scaleX(1); }
.fn-nav-actions { display: flex; align-items: center; gap: 14px; }
.fn-nav-toggle { display: none; }
.fn-nav-menu-cta { display: none; }
@media (max-width: 960px) {
  .fn-nav-inner { position: relative; }
  .fn-nav-actions .fn-cta--nav { display: none; }
  .fn-nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 4.5px;
    width: 42px; height: 40px; padding: 0 10px;
    background: transparent; border: 1px solid rgba(184, 153, 104, 0.5); border-radius: 10px; cursor: pointer;
  }
  .fn-nav-toggle span { display: block; height: 1.6px; width: 100%; background: var(--ivory); border-radius: 2px; transition: transform .3s ease, opacity .2s ease; }
  .fn-nav.is-scrolled .fn-nav-toggle { border-color: rgba(11, 23, 48, 0.4); }
  .fn-nav.is-scrolled .fn-nav-toggle span { background: var(--navy); }
  .fn-nav.is-menu-open .fn-nav-toggle span:nth-child(1) { transform: translateY(6.1px) rotate(45deg); }
  .fn-nav.is-menu-open .fn-nav-toggle span:nth-child(2) { opacity: 0; }
  .fn-nav.is-menu-open .fn-nav-toggle span:nth-child(3) { transform: translateY(-6.1px) rotate(-45deg); }
  .fn-nav-links {
    display: flex; flex-direction: column; align-items: stretch; gap: 0; margin: 0;
    position: absolute; top: calc(100% + 10px); left: 0; right: 0; z-index: 60;
    background: linear-gradient(180deg, #fdfaf4 0%, #f3ecdd 52%, #ece2cf 100%);
    border: 1px solid rgba(184, 153, 104, 0.45); border-radius: 18px;
    padding: 6px 22px 18px;
    box-shadow: 0 20px 44px rgba(7, 16, 31, 0.4);
    opacity: 0; transform: translateY(-10px); pointer-events: none;
    transition: opacity .26s ease, transform .26s ease;
  }
  .fn-nav.is-menu-open .fn-nav-links { opacity: 1; transform: none; pointer-events: auto; }
  .fn-nav-links .fn-nav-link {
    color: var(--navy); font-size: 13px; letter-spacing: 0.14em;
    padding: 15px 2px; border-bottom: 1px solid rgba(184, 153, 104, 0.2); white-space: nowrap;
  }
  .fn-nav-links .fn-nav-link::after { display: none; }
  .fn-nav-links .fn-nav-link:hover { color: var(--champagne); }
  .fn-nav-menu-cta { display: flex; justify-content: center; padding-top: 16px; }
}
#system, #included, #guarantee, #calculator, #faq { scroll-margin-top: 80px; }
@media (max-width: 900px) {
  .fn-nav-inner { padding: 12px 18px; }
  .fn-lockup--sm .fn-lockup-svg { height: 26px; }
}

/* ============================================================
   SCROLL REVEAL (subtle)
   ============================================================ */
.fn-reveal { opacity: 0; transform: translateY(20px); transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.16, 1, 0.3, 1); }
.fn-reveal.is-in { opacity: 1; transform: translateY(0); }
.fn-reveal[data-delay="100"] { transition-delay: 100ms; }
.fn-reveal[data-delay="200"] { transition-delay: 200ms; }
.fn-reveal[data-delay="300"] { transition-delay: 300ms; }
@media (prefers-reduced-motion: reduce) {
  .fn-reveal, .fn-reveal.is-in { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   THANK-YOU PAGE
   ============================================================ */
/* ---------- CONFIRMATION · RESERVATION CARD ---------- */
.ty-booked { padding-top: 120px; }

.ty-appt {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  background:
    radial-gradient(120% 160% at 100% 0%, rgba(184, 153, 104, 0.10), rgba(184, 153, 104, 0) 55%),
    var(--navy-deep);
  border: 1px solid rgba(184, 153, 104, 0.55);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(184, 153, 104, 0.14),
    0 40px 90px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  isolation: isolate;
}
.ty-appt-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(70% 120% at 18% 50%, rgba(184, 153, 104, 0.16), rgba(184, 153, 104, 0) 60%);
}

/* left gold date medallion */
.ty-appt-date {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px;
  padding: 44px 26px;
  text-align: center;
  color: var(--navy);
  background: linear-gradient(150deg, #e6cd92 0%, #cdab6b 46%, #a98a52 100%);
  border-right: 1px solid rgba(120, 92, 43, 0.4);
  overflow: hidden;
}
.ty-appt-date::after {
  content: ''; position: absolute; top: -40%; left: -60%;
  width: 40%; height: 180%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(18deg);
  animation: ty-shimmer 5.5s ease-in-out infinite;
}
@keyframes ty-shimmer { 0%, 72% { left: -60%; } 88%, 100% { left: 130%; } }
@media (prefers-reduced-motion: reduce) { .ty-appt-date::after { animation: none; display: none; } }

.ty-appt-dow {
  font-family: var(--font-sans);
  font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
  font-weight: 700; color: rgba(28, 22, 8, 0.68);
}
.ty-appt-daynum {
  font-family: var(--font-display);
  font-weight: 700; font-size: 102px; line-height: 0.92;
  letter-spacing: -0.02em; color: #241a08;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.28);
}
.ty-appt-monyr {
  font-family: var(--font-sc, var(--font-body)); font-style: italic;
  font-size: 18px; color: #3a2c11; margin-top: 2px;
}
.ty-appt-time {
  margin-top: 14px;
  font-family: var(--font-sans);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
  color: var(--navy);
  padding: 6px 14px; border-radius: 999px;
  background: rgba(20, 14, 4, 0.12);
  border: 1px solid rgba(60, 44, 17, 0.35);
}

/* right info panel */
.ty-appt-info {
  position: relative; z-index: 1;
  padding: 42px 46px;
  display: flex; flex-direction: column; gap: 14px;
  justify-content: center;
}
.ty-appt-badge {
  display: inline-flex; align-items: center; gap: 9px; align-self: flex-start;
  font-family: var(--font-sans); font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 700;
  color: var(--champagne-soft);
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid rgba(184, 153, 104, 0.45);
  background: rgba(184, 153, 104, 0.08);
}
.ty-appt-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--champagne-soft);
  animation: ty-pulse 2.2s ease-out infinite;
}
@keyframes ty-pulse {
  0% { box-shadow: 0 0 0 0 rgba(230, 205, 146, 0.55); }
  70%, 100% { box-shadow: 0 0 0 8px rgba(230, 205, 146, 0); }
}
.ty-appt-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 44px; line-height: 1; letter-spacing: -0.015em;
  color: var(--ivory);
}
.ty-appt-with {
  font-family: var(--font-sc, var(--font-body)); font-style: italic;
  font-size: 16.5px; color: rgba(244, 239, 227, 0.68);
  margin-top: -4px;
}
.ty-appt-rows {
  margin-top: 12px;
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(184, 153, 104, 0.2);
}
.ty-appt-row {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(184, 153, 104, 0.14);
  color: var(--champagne);
}
.ty-appt-row:last-child { border-bottom: 0; }
.ty-appt-row svg { flex: 0 0 auto; }
.ty-appt-cell { display: flex; flex-direction: column; gap: 2px; }
.ty-appt-k {
  font-family: var(--font-sans); font-size: 9.5px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--muted-on-navy);
}
.ty-appt-v {
  font-family: var(--font-body); font-weight: 600; font-size: 16px; color: var(--ivory);
}

/* countdown ribbon */
.ty-appt-count {
  position: absolute; z-index: 2; top: 20px; right: 20px;
  font-family: var(--font-sans); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
  color: var(--navy);
  padding: 8px 15px; border-radius: 999px;
  background: linear-gradient(180deg, #e6cd92, #cdab6b);
  box-shadow: 0 6px 18px rgba(120, 92, 43, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

@media (max-width: 760px) {
  .ty-appt { grid-template-columns: 1fr; }
  .ty-appt-date { padding: 34px 24px; border-right: 0; border-bottom: 1px solid rgba(120, 92, 43, 0.4); }
  .ty-appt-daynum { font-size: 84px; }
  .ty-appt-info { padding: 32px 28px; }
  .ty-appt-title { font-size: 36px; }
  .ty-appt-count { top: 14px; right: 14px; }
}

/* ---------- ADD-TO-CALENDAR ACTION ROW ---------- */
.ty-cal-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin: 44px auto 0;
}
.ty-cal-btn {
  background: var(--champagne);
  color: var(--navy);
  padding: 16px 30px;
}
.ty-cal-btn:hover { background: var(--champagne-soft); color: var(--navy); }
.ty-cal-btn-ic { flex: 0 0 auto; }
.ty-reschedule { padding: 16px 30px; }

.ty-cal-microcopy {
  text-align: center;
  max-width: 520px;
  margin: 18px auto 0;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--muted-on-navy);
}
.ty-booked .ty-step-grid { margin-top: 72px; }

@media (max-width: 600px) {
  .ty-cal-actions { flex-direction: column; }
  .ty-cal-btn, .ty-reschedule { width: 100%; }
}

/* ---------- PREP STEP CARDS ---------- */
.ty-step-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}
.ty-step-grid--3 { grid-template-columns: repeat(3, 1fr); }
.ty-step {
  border-top: 2px solid rgba(184, 153, 104, 0.6);
  padding: 26px 4px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ty-step-head {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--champagne);
}
.ty-step-ic { flex: 0 0 auto; display: inline-flex; }
.ty-step-label {
  font-family: var(--font-sans);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne);
}
.ty-step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 23px;
  color: var(--ivory);
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.ty-step-body {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(244, 239, 227, 0.85);
}
@media (max-width: 900px) {
  .ty-step-grid, .ty-step-grid--3 { grid-template-columns: 1fr; gap: 8px; }
  .ty-step { padding: 24px 0 0; }
}

.ty-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ty-faq-card {
  display: flex;
  flex-direction: column;
  background: transparent;
}
.ty-faq-thumb {
  aspect-ratio: 16 / 9;
  background: var(--navy-deep);
  border: 1px solid var(--champagne);
  border-radius: 16px;
  overflow: hidden;
  animation: fn-vsl-glow 3.6s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
}
.ty-faq-num {
  position: absolute;
  top: 18px;
  left: 22px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--champagne);
  font-weight: 500;
}
.ty-faq-play {
  width: 44px; height: 44px;
  border: 1.5px solid var(--champagne);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.ty-faq-play::after {
  content: '';
  width: 0; height: 0;
  border-style: solid;
  border-width: 7px 0 7px 11px;
  border-color: transparent transparent transparent var(--champagne);
  margin-left: 3px;
}
.ty-faq-soon {
  font-family: var(--font-sans);
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(184, 153, 104, 0.7);
  font-weight: 500;
}
.ty-faq-content {
  padding: 20px 4px 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ty-faq-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.28;
  color: var(--ivory);
  letter-spacing: -0.005em;
}
.ty-faq-preview {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(244, 239, 227, 0.78);
}
.ty-faq-watch {
  margin-top: 6px;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 500;
}
@media (max-width: 1100px) { .ty-faq-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .ty-faq-grid { grid-template-columns: 1fr; } }

/* ============================================================
   TWEAKS — expressive feel controls
   Atmosphere (the navy field) · Gilding (gold) · Type voice
   ============================================================ */

/* ---------- ATMOSPHERE: the navy field ---------- */
body[data-atmos="austere"] { background: var(--navy); }

body[data-atmos="depth"] {
  background:
    radial-gradient(140% 92% at 50% -16%, #13244a 0%, rgba(19, 36, 74, 0) 56%),
    linear-gradient(180deg, #0d1c38 0%, #0b1730 44%, #06101d 100%);
  background-attachment: fixed;
}

body[data-atmos="candlelit"] {
  background:
    radial-gradient(56% 40% at 50% -2%, rgba(184, 153, 104, 0.22), rgba(184, 153, 104, 0) 62%),
    radial-gradient(46% 32% at 83% 58%, rgba(184, 153, 104, 0.11), rgba(184, 153, 104, 0) 56%),
    radial-gradient(42% 30% at 14% 34%, rgba(184, 153, 104, 0.10), rgba(184, 153, 104, 0) 56%),
    linear-gradient(180deg, #0f1d36 0%, #0b1730 46%, #060f1c 100%);
  background-attachment: fixed;
}

/* Permanent slow-drifting glow layer — subtle motion whether static or scrolling.
   Sits above the base field, behind all content. */
body::before {
  content: "";
  position: fixed;
  inset: -25%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(38% 30% at 27% 24%, rgba(184, 153, 104, 0.13), transparent 62%),
    radial-gradient(34% 28% at 78% 70%, rgba(96, 132, 196, 0.10), transparent 60%),
    radial-gradient(30% 26% at 60% 16%, rgba(184, 153, 104, 0.08), transparent 62%);
  will-change: transform;
  animation: fn-atmos-drift 46s ease-in-out infinite alternate;
}
body[data-atmos="austere"]::before { display: none; }
@keyframes fn-atmos-drift {
  0%   { transform: translate3d(-2.5%, -1.5%, 0) scale(1.04); }
  50%  { transform: translate3d(2%, 2.5%, 0) scale(1.11); }
  100% { transform: translate3d(2.5%, -1%, 0) scale(1.05); }
}
@media (prefers-reduced-motion: reduce) {
  body::before { animation: none; }
}

/* ---------- GILDING: gold presence ---------- */
/* Restrained — desaturated gold, no glow. Quiet, editorial. */
body[data-gild="restrained"] {
  --champagne: #9d855e;
  --champagne-soft: #b49b71;
}
body[data-gild="restrained"] .fn-cta {
  box-shadow: none;
  border-color: rgba(157, 133, 94, 0.7);
}
body[data-gild="restrained"] .fn-cta:hover {
  box-shadow: none;
}
body[data-gild="restrained"] .fn-guarantee {
  border-top-color: rgba(157, 133, 94, 0.3);
  border-bottom-color: rgba(157, 133, 94, 0.3);
}

/* Opulent — brighter gold, lavish glow. Maximal luxury. */
body[data-gild="opulent"] {
  --champagne: #cdab6b;
  --champagne-soft: #e6cd92;
}
body[data-gild="opulent"] .fn-cta {
  box-shadow:
    0 0 0 1px rgba(205, 171, 107, 0.55),
    0 0 26px rgba(205, 171, 107, 0.5),
    0 0 72px rgba(205, 171, 107, 0.32);
}
body[data-gild="opulent"] .fn-cta:hover {
  box-shadow:
    0 0 0 1px rgba(205, 171, 107, 0.72),
    0 0 36px rgba(205, 171, 107, 0.62),
    0 0 96px rgba(205, 171, 107, 0.42);
}
body[data-gild="opulent"] .fn-eyebrow,
body[data-gild="opulent"] .fn-kicker { color: var(--champagne-soft); }

/* ---------- TYPE VOICE: headline personality ---------- */
/* Inscribed — Cinzel Roman capitals (small-caps for lowercase). Monumental.
   Cinzel runs wide, so pull display sizes in and tighten tracking. */
body[data-voice="inscriptional"] {
  --font-display: 'Cinzel', 'Trajan Pro', 'Trajan Pro 3', Georgia, serif;
}
body[data-voice="inscriptional"] .fn-h,
body[data-voice="inscriptional"] .fn-hero h1,
body[data-voice="inscriptional"] .fn-guarantee h2,
body[data-voice="inscriptional"] .fn-book-h {
  letter-spacing: 0.012em;
  line-height: 1.16;
}
body[data-voice="inscriptional"] .fn-hero h1 { font-size: 50px; }
body[data-voice="inscriptional"] .fn-h--xl { font-size: 58px; }
body[data-voice="inscriptional"] .fn-h--lg { font-size: 44px; }
body[data-voice="inscriptional"] .fn-h--md { font-size: 35px; }
body[data-voice="inscriptional"] .fn-guarantee h2,
body[data-voice="inscriptional"] .fn-book-h { font-size: 44px; }
@media (max-width: 1100px) {
  body[data-voice="inscriptional"] .fn-hero h1 { font-size: 42px; }
}
@media (max-width: 900px) {
  body[data-voice="inscriptional"] .fn-hero h1 { font-size: 30px; }
  body[data-voice="inscriptional"] .fn-h--xl { font-size: 32px; }
  body[data-voice="inscriptional"] .fn-h--lg { font-size: 28px; }
  body[data-voice="inscriptional"] .fn-h--md { font-size: 24px; }
}
