/* ============================================================
   THE AUTHORITY CODE: TAC-FUNNEL design system  ·  GO 4
   ------------------------------------------------------------
   The master pass. A "leather lounge", not "cheap tech". Warm
   near-black canvas, soft cream ink, champagne gold used as a
   SCARCE focal signal (one focal point per screen). Fraunces
   (serif, ceremony) + Manrope (sans, the work). Whitespace is
   the luxury signal. Motion is subtle and exact: it leads the
   eye or it is cut. Everything animates on transform + opacity
   only and stills under prefers-reduced-motion (static is the
   base; motion is layered on for no-preference). No working
   logic, class, or hook that funnel.js depends on was renamed.
   ============================================================ */

:root {
  /* Canvas, warm near-blacks (brown undertone, never pure black). */
  --bg-0: #0b0907;
  --bg-1: #110e0b;
  --bg-2: #181310;
  --bg-3: #221a14;
  --bg-4: #2c2118;
  --line: rgba(201, 162, 75, 0.16);
  --line-soft: rgba(255, 246, 232, 0.07);
  --line-faint: rgba(255, 246, 232, 0.04);

  /* Gold, the single light. Spare, does most of the work. */
  --gold: #c9a24e;
  --gold-bright: #e6c77e;
  --gold-deep: #8c6d32;
  --gold-glow: rgba(201, 162, 75, 0.16);
  --gold-ink: #20180a; /* near-black ink for text ON gold */

  /* Oxblood, the depth accent. Used sparingly. */
  --ox: #7a2e2e;
  --ox-bright: #9c3f3f;
  --ox-soft: rgba(122, 46, 46, 0.16);

  /* Ink, warm off-white hierarchy (never pure white). WCAG-checked tiers. */
  --ink: #ede7db;
  --ink-soft: #cbc3b4;
  --ink-mute: #948b7c;
  --ink-faint: #8a8070;

  /* Status. --red clears WCAG AA (5.46:1) as error text on the canvas. */
  --red: #d4655a;
  --red-soft: rgba(212, 101, 90, 0.14);
  --green: #7aa362;

  /* Type. */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Manrope", system-ui, -apple-system, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, monospace;

  /* Layout. */
  --col: 720px;
  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 22px;

  /* Shadow, warm and layered, never one hard drop. */
  --shadow-1: 0 1px 2px rgba(0, 0, 0, 0.45);
  --shadow-2: 0 6px 22px rgba(0, 0, 0, 0.40), 0 1px 3px rgba(0, 0, 0, 0.45);
  --shadow-3: 0 18px 50px rgba(0, 0, 0, 0.50), 0 2px 8px rgba(0, 0, 0, 0.40);
  --shadow-gold: 0 22px 60px -24px rgba(201, 162, 75, 0.55);

  /* Atmosphere: the spotlit stage + deep-room vignette. */
  --glow-1: 0.15;
  --glow-2: 0.05;
  --glow-hue: 201, 162, 75;

  /* Motion. The expensive easing. Micro 200ms, section 350-500ms. */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-arrive: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.2s;
  --t: 0.32s;
  --t-slow: 0.5s;
  --t-rise: 0.55s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg-0);
  color: var(--ink);
  line-height: 1.62;
  font-size: 17px;
  letter-spacing: 0.004em;
  min-height: 100vh;
  min-height: 100svh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }
a { color: var(--gold-bright); text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Background atmosphere: the spotlit stage ---------- */
.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(900px 620px at 50% -14%, rgba(var(--glow-hue), var(--glow-1)), transparent 60%),
    radial-gradient(680px 520px at 12% 108%, rgba(var(--glow-hue), var(--glow-2)), transparent 60%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1));
}
.atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 720px at 50% 124%, rgba(168, 96, 54, 0.10), transparent 62%),
    radial-gradient(140% 80% at 50% 100%, rgba(0, 0, 0, 0.55), transparent 55%);
}
.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout shell ---------- */
.shell {
  width: 100%;
  max-width: var(--col);
  margin: 0 auto;
  padding: 0 24px;
}
.shell--narrow { max-width: 600px; }
.page {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
.page__body {
  flex: 1;
  padding-top: calc(env(safe-area-inset-top, 0px) + 18px);
  padding-bottom: 96px;
}

/* ---------- Wordmark (single centered gold line, replaces the old lockup) ---------- */
.wordmark {
  text-align: center;
  padding: 24px 0 6px;
}
.wordmark__text {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  /* the trailing letter-spacing pushes right; indent compensates to true-center */
  text-indent: 0.42em;
  color: var(--gold);
  display: inline-block;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.12; color: var(--ink); }
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
}
.eyebrow--mute { color: var(--ink-mute); }
.eyebrow--tick { display: inline-flex; align-items: center; gap: 12px; }
.eyebrow--tick::before {
  content: "";
  width: 22px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  flex-shrink: 0;
}

/* The display headline. Type-craft is the fix for "cheap": tight leading,
   slightly negative tracking to close the gaps large serifs leave, weight 500,
   sentence case (in the copy), a constrained measure so it breaks into strong
   lines. This is the single most important change in GO 4. */
.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.05rem, 8vw, 3.05rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
}
.display em, .gilt { font-style: italic; color: var(--gold-bright); }
.subhead {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-bright);
  font-size: clamp(1rem, 2.6vw, 1.18rem);
  letter-spacing: 0.01em;
}
.lead { color: var(--ink-soft); font-size: clamp(1.02rem, 2.5vw, 1.14rem); line-height: 1.6; }
.faint { color: var(--ink-faint); }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-soft);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1.1;
  min-height: 48px;
  background: var(--bg-2);
  color: var(--ink);
  transition: transform var(--t-fast) var(--ease), background var(--t),
              border-color var(--t), color var(--t), box-shadow var(--t);
}
.btn:hover { border-color: var(--line); }
.btn:active { transform: scale(0.97); }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }
.btn--gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: var(--gold-ink);
  border-color: transparent;
  box-shadow: 0 6px 24px -10px rgba(201, 162, 75, 0.6);
}
.btn--gold:hover {
  box-shadow: 0 16px 36px -12px rgba(201, 162, 75, 0.9);
  border-color: transparent;
  transform: scale(1.02);
}
.btn--gold:active { transform: scale(0.97); box-shadow: 0 6px 18px -10px rgba(201, 162, 75, 0.7); }
.btn--gold::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 252, 240, 0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform var(--t-slow) var(--ease);
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .btn--gold:hover::before { transform: translateX(120%); }
}
.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink-soft);
}
.btn--ghost:hover { color: var(--ink); border-color: var(--gold); background: var(--gold-glow); }
.btn--block { width: 100%; }
.btn--lg { padding: 17px 32px; font-size: 1.02rem; min-height: 56px; }

/* The breathing pulse on a primary CTA (stilled for reduced motion). */
.btn--pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(201, 162, 75, 0.45);
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .btn--pulse::after { animation: cta-pulse 2.8s var(--ease) infinite; }
}
@keyframes cta-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(201, 162, 75, 0.42); }
  70%  { box-shadow: 0 0 0 16px rgba(201, 162, 75, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 162, 75, 0); }
}

/* ---------- Hero ---------- */
/* Tighter top padding since the kicker/eyebrow row was removed (GO 5): the headline
   now sits a natural, close distance below the top wordmark. */
.hero { padding: clamp(8px, 2.5vh, 28px) 0 8px; }
.hero__eyebrow { margin-bottom: 18px; }
.hero__title { margin: 0 auto 18px; max-width: 17ch; }
.hero__tagline {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-bright);
  font-size: clamp(1rem, 2.6vw, 1.16rem);
  margin-bottom: 18px;
  opacity: 0.92;
}
.hero__lead { max-width: 52ch; margin: 0 auto 30px; }
.hero__cta { display: flex; flex-direction: column; gap: 14px; align-items: center; }
.hero__cta .btn { width: 100%; max-width: 420px; }
.hero__reassure { font-size: 0.86rem; color: var(--ink-mute); }

/* Inner pages share ONE hero rhythm + heading scale. */
.hero--inner { padding: clamp(6px, 2vh, 20px) 0 8px; }
.hero--inner .display { font-size: clamp(1.8rem, 6vw, 2.5rem); margin: 10px auto 8px; }

.rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  border: none;
  margin: 40px 0;
}

/* ============================================================
   THE FAKE VIDEO PLAYER (landing). Looks like a real premium
   thumbnail; opens the opt-in gate. Used twice on the landing.
   ============================================================ */
.player {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: radial-gradient(120% 130% at 50% 8%, var(--bg-3), var(--bg-1) 62%, var(--bg-0));
  box-shadow: var(--shadow-3);
  cursor: pointer;
  text-align: left;
  padding: 0;
  color: inherit;
  isolation: isolate;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease),
              border-color var(--t) var(--ease);
}
@supports not (aspect-ratio: 1 / 1) {
  .player { height: 0; padding-bottom: 56.25%; }
}
.player__still {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.02);
  transition: transform var(--t-slow) var(--ease);
}
.player__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(60% 60% at 50% 42%, transparent 0%, rgba(8, 6, 4, 0.32) 100%),
    linear-gradient(180deg, rgba(8, 6, 4, 0.28) 0%, transparent 26%, transparent 58%, rgba(8, 6, 4, 0.72) 100%);
  pointer-events: none;
}
.player__glow {
  position: absolute;
  z-index: 1;
  top: 50%; left: 50%;
  width: 60%; height: 60%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--glow-hue), 0.22), transparent 68%);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(calc(-50% + var(--gx, 0px)), calc(-50% + var(--gy, 0px)), 0);
  transition: opacity var(--t) var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .player:hover .player__glow { opacity: 1; }
}
.player__play {
  position: absolute;
  z-index: 2;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-ink);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  box-shadow: 0 10px 30px -8px rgba(201, 162, 75, 0.7);
}
.player__play svg { width: 30px; height: 30px; margin-left: 5px; }
.player__play::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 75, 0.5);
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .player__play::before { animation: halo-breathe 2.8s var(--ease) infinite; }
}
@keyframes halo-breathe {
  0%   { transform: scale(0.92); opacity: 0.85; }
  70%  { transform: scale(1.28); opacity: 0; }
  100% { transform: scale(1.28); opacity: 0; }
}
.player__time {
  position: absolute;
  z-index: 2;
  top: 14px; right: 14px;
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: rgba(8, 6, 4, 0.55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 4px 11px;
}
.player__caption {
  position: absolute;
  z-index: 2;
  left: 0; right: 0; bottom: 16px;
  text-align: center;
  padding: 0 18px;
}
.player__caption span {
  display: inline;
  font-family: var(--serif);
  font-size: clamp(0.96rem, 2.6vw, 1.18rem);
  line-height: 1.35;
  color: #f4eee2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.player:hover, .player:focus-visible {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.player:focus-visible { outline: none; }
@media (hover: hover) and (pointer: fine) {
  .player:hover .player__still { transform: scale(1.05); }
  .player:hover .player__play { transform: translate(-50%, -50%) scale(1.05); }
}
.player:active { transform: translateY(-1px) scale(0.997); }
.player-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 14px;
  font-size: 0.84rem;
  color: var(--ink-mute);
}
.player-note__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ============================================================
   THE LIVING SCARCITY ELEMENT (a row of dots, gold = taken,
   hollow = open). Data-driven (settings -> config fallback),
   animates a staggered fill + count-up once on scroll-in.
   Calm exclusivity, never alarm-red, never a ticking timer.
   ============================================================ */
.scarcity {
  margin: 0 auto;
  max-width: 460px;
  padding: 26px 24px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(120% 100% at 50% -20%, rgba(var(--glow-hue), 0.07), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg-1));
  text-align: center;
  box-shadow: var(--shadow-2);
}
.scarcity__eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ink-mute);
  margin-bottom: 16px;
}
.scarcity__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px;
  margin-bottom: 18px;
}
.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  position: relative;
  /* settled (and reduced-motion / pre-JS) state: visible */
  opacity: 1;
  transform: none;
}
.dot--filled {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  box-shadow: 0 0 0 1px rgba(201, 162, 75, 0.25), 0 3px 9px -3px rgba(201, 162, 75, 0.55);
}
.dot--open {
  background: transparent;
  border: 1.5px solid rgba(201, 162, 75, 0.5);
}
.dot--open::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 75, 0.45);
  opacity: 0;
  pointer-events: none;
}
.scarcity__line {
  font-family: var(--serif);
  font-size: clamp(1.12rem, 3.6vw, 1.42rem);
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 10px;
}
.scarcity__num { color: var(--gold-bright); font-variant-numeric: tabular-nums; font-style: italic; }
.scarcity__note { font-size: 0.9rem; color: var(--ink-mute); line-height: 1.55; max-width: 38ch; margin: 0 auto; }

/* Motion only when the user has no motion preference against it. The fill is a
   staggered scale+fade per dot (transform/opacity only); --i is set per dot in JS. */
@media (prefers-reduced-motion: no-preference) {
  .scarcity .dot { opacity: 0; transform: scale(0.4); }
  .scarcity.is-in .dot {
    opacity: 1;
    transform: none;
    transition: opacity 0.42s var(--ease-arrive), transform 0.42s var(--ease-arrive);
    transition-delay: calc(var(--i, 0) * 64ms);
  }
  /* open dots breathe a single, very subtle "still available" ring */
  .scarcity.is-in .dot--open::after {
    animation: dot-breathe 3.2s var(--ease) infinite;
    animation-delay: calc(0.9s + var(--i, 0) * 64ms);
  }
}
@keyframes dot-breathe {
  0%, 100% { transform: scale(0.8); opacity: 0; }
  50%      { transform: scale(1.18); opacity: 0.45; }
}

/* ---------- Cards / sections ---------- */
.card {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 26px;
}
.section-eyebrow { margin-bottom: 12px; }
.section-title { font-size: clamp(1.5rem, 4.4vw, 2.1rem); margin-bottom: 14px; }
.stack > * + * { margin-top: 16px; }

/* ---------- Video container (16:9), shared by VSL + confirmation ---------- */
.video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: radial-gradient(120% 120% at 50% 0%, var(--bg-3), var(--bg-1) 70%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-3);
  display: grid;
  place-items: center;
}
@supports not (aspect-ratio: 1 / 1) {
  .video { height: 0; padding-bottom: 56.25%; }
  .video > .video__inner { position: absolute; inset: 0; }
}
.video__inner { display: grid; place-items: center; gap: 16px; text-align: center; padding: 24px; }
.video__play {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--gold-glow), transparent);
  color: var(--gold-bright);
}
.video__play svg { width: 26px; height: 26px; margin-left: 4px; }
.video iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-frame { position: relative; }
.video-frame::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius) + 1px);
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(201, 162, 75, 0.10), 0 30px 80px -40px rgba(201, 162, 75, 0.35);
}

/* ---------- Anticipation cues (open-loop pacing on the video page) ----------
   Pulled into a featured, gold-accented block so the two lines stop the eye.
   Subtle and expensive: a hairline gold edge, larger serif, quiet divider. */
.anticipation-block {
  max-width: 54ch;
  margin: 26px auto 0;
  padding: 22px 24px;
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--gold);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  text-align: left;
  box-shadow: var(--shadow-2);
}
.anticipation {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}
.anticipation + .anticipation {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line-faint);
}
.anticipation__tick {
  flex-shrink: 0;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 12px;
  box-shadow: 0 0 0 4px var(--gold-glow);
}
.anticipation__text {
  font-family: var(--serif);
  color: var(--ink);
  font-size: clamp(1.08rem, 3vw, 1.3rem);
  line-height: 1.4;
  letter-spacing: -0.005em;
}
@media (max-width: 560px) { .anticipation-block { padding: 20px 18px; } }

/* ---------- Qualification: choice tiles ---------- */
.q-block { margin-bottom: 0; }
.q-block__title {
  display: block;
  width: 100%;
  float: none;
  padding: 0;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 4vw, 1.6rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.q-block__num { display: none; }
.q-block__hint { font-size: 0.84rem; color: var(--ink-mute); margin-bottom: 18px; }
.q-options { display: grid; gap: 12px; }
.choice {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 62px;
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: var(--bg-1);
  color: var(--ink);
  cursor: pointer;
  transition: border-color var(--t), background var(--t), transform var(--t-fast) var(--ease), box-shadow var(--t);
}
.choice:hover { border-color: var(--line); transform: translateY(-1px); }
.choice:active { transform: translateY(0); }
.choice__input { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }
.choice__mark {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--ink-mute);
  display: grid;
  place-items: center;
  transition: border-color var(--t), background var(--t);
}
.choice__mark--box { border-radius: 7px; }
.choice__mark::after {
  content: "";
  width: 10px; height: 10px;
  border-radius: inherit;
  background: var(--gold);
  transform: scale(0);
  transition: transform var(--t-fast) var(--ease-arrive);
}
.choice__mark--box::after { width: 12px; height: 12px; border-radius: 3px; }
.choice__label { font-size: 1rem; line-height: 1.4; }
.choice__input:checked ~ .choice__mark { border-color: var(--gold); background: var(--gold-glow); }
.choice__input:checked ~ .choice__mark::after { transform: scale(1); }
.choice:has(.choice__input:checked) {
  border-color: var(--gold);
  background: linear-gradient(180deg, var(--gold-glow), transparent 80%);
  box-shadow: 0 8px 26px -16px rgba(201, 162, 75, 0.6);
}
.choice:has(.choice__input:focus-visible) { outline: 2px solid var(--gold); outline-offset: 3px; }

/* Inline "Other" free-text field. Only opacity is animated; the height/margin
   change is instant. visibility:hidden removes the input from the tab order. */
.q-other {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t) var(--ease);
}
.q-other.is-open { max-height: 220px; margin-top: 12px; opacity: 1; visibility: visible; }

/* ============================================================
   STEPPED QUALIFIER (one question at a time, no skipping)
   ============================================================ */
.qprogress { display: none; margin-bottom: 22px; }
.qform.is-stepped .qprogress { display: block; }
.qprogress__meta { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 10px; }
.qprogress__step {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
}
.qprogress__count { font-size: 0.78rem; color: var(--ink-mute); font-variant-numeric: tabular-nums; }
.qprogress__track { position: relative; height: 3px; border-radius: 999px; background: var(--line-soft); overflow: hidden; }
.qprogress__bar {
  position: absolute;
  inset: 0;
  transform-origin: left center;
  transform: scaleX(var(--p, 0.333));
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  border-radius: 999px;
  transition: transform var(--t) var(--ease-arrive);
}
.qsteps { display: block; }
.qform.is-stepped .qstep { display: none; }
.qform.is-stepped .qstep.is-active { display: block; }
@media (prefers-reduced-motion: no-preference) {
  .qform.is-stepped .qstep.is-active { animation: qstep-rise var(--t-slow) var(--ease-arrive) both; }
}
@keyframes qstep-rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.qform:not(.is-stepped) .qstep + .qstep { margin-top: 30px; }

/* Per-step inline validation error (no-skip): smooth, never disables the button. */
.qstep__error {
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--red);
  min-height: 1.1em;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease);
}
.qstep__error.is-show { opacity: 1; transform: none; }

.qnav { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.qnav .btn--gold { flex: 1; }
.qback {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: 1px solid var(--line-soft);
  color: var(--ink-mute);
  border-radius: var(--radius-sm);
  min-height: 48px;
  padding: 0 16px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color var(--t), border-color var(--t), background var(--t), transform var(--t-fast) var(--ease);
}
.qback:hover { color: var(--ink); border-color: var(--line); transform: translateY(-1px); }
.qback svg { width: 15px; height: 15px; }
.qform.is-stepped > .qualify-submit-row { display: none; }

/* ---------- Forms / inputs ---------- */
.field { margin-bottom: 18px; }
.field__label {
  display: block;
  font-size: 0.96rem;
  color: var(--ink);
  margin-bottom: 9px;
  font-weight: 500;
  font-family: var(--serif);
}
.input, .textarea {
  width: 100%;
  background: var(--bg-1);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  color: var(--ink);
  padding: 15px 16px;
  font-size: 16px;
  line-height: 1.5;
  min-height: 52px;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.input::placeholder, .textarea::placeholder { color: var(--ink-faint); }
.input:focus, .textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
  background: var(--bg-2);
}
.field.is-invalid .input { border-color: var(--red); }
.field.is-invalid .field__label { color: var(--red); }
.input:-webkit-autofill,
.input:-webkit-autofill:hover,
.input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--ink);
  -webkit-box-shadow: 0 0 0 1000px var(--bg-1) inset;
  caret-color: var(--ink);
  transition: background-color 9999s ease-in-out 0s;
}

/* Phone field: a country dial-code select + the national number, as one unit. */
.phone-row { display: flex; gap: 8px; align-items: stretch; }
.phone-cc {
  flex: 0 0 auto;
  width: 144px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bg-1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23948b7c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  padding: 15px 30px 15px 14px;
  min-height: 52px;
  cursor: pointer;
  transition: border-color var(--t), box-shadow var(--t), background-color var(--t);
}
.phone-cc:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
  background-color: var(--bg-2);
}
.phone-cc option { background: var(--bg-2); color: var(--ink); }
.phone-num { flex: 1 1 auto; min-width: 0; }

.form-msg { margin-top: 14px; font-size: 0.88rem; min-height: 1.2em; color: var(--ink-mute); }
.form-msg.is-error { color: var(--red); }
.form-msg.is-ok { color: var(--green); }

/* ---------- Modal / overlay ---------- */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 20px;
  background: rgba(5, 4, 3, 0.74);
  -webkit-backdrop-filter: blur(8px) saturate(118%);
  backdrop-filter: blur(8px) saturate(118%);
  opacity: 0;
  transition: opacity var(--t) var(--ease);
}
.overlay.is-open { display: flex; opacity: 1; }
.modal {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: auto;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(var(--glow-hue), 0.10), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 28px;
  box-shadow: var(--shadow-3);
  transform: translateY(14px) scale(0.985);
  transition: transform var(--t) var(--ease-arrive);
}
.overlay.is-open .modal { transform: none; }
.modal__close {
  position: absolute;
  top: 12px; right: 12px;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-soft);
  background: var(--bg-2);
  color: var(--ink-mute);
  font-size: 1.3rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: color var(--t), border-color var(--t), background var(--t), transform var(--t-fast) var(--ease);
}
.modal__close:hover { color: var(--ink); border-color: var(--line); transform: rotate(90deg); }
.modal__eyebrow { margin-bottom: 10px; }
.modal__title { font-family: var(--serif); font-size: 1.5rem; line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 8px; }
.modal__sub { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 22px; }
body.is-locked { overflow: hidden; }

/* ---------- Calendly embed wrapper ---------- */
.calendly-wrap {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-1);
  box-shadow: var(--shadow-2);
  min-height: 640px;
}
.calendly-inline-widget { min-width: 320px; width: 100%; height: 700px; }
.embed-note { margin-top: 14px; font-size: 0.82rem; color: var(--ink-mute); text-align: center; }

/* A tight inline facts strip (booking page meta, kept above the fold). */
.facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px 0;
  margin: 12px 0 18px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.facts__item { display: inline-flex; align-items: center; }
.facts__item:not(:last-child)::after {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  margin: 0 14px;
  opacity: 0.7;
}

/* ---------- Footer ---------- */
.foot {
  padding: 28px 0 calc(env(safe-area-inset-bottom, 0px) + 28px);
  border-top: 1px solid var(--line-soft);
  color: var(--ink-faint);
  font-size: 0.8rem;
  text-align: center;
}

/* ---------- Content components ---------- */
.meta-list { display: grid; gap: 0; margin: 22px 0; }
.meta-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 15px 2px;
  border-top: 1px solid var(--line-soft);
}
.meta-row:last-child { border-bottom: 1px solid var(--line-soft); }
.meta-row__k {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.5;
}
.meta-row__v { color: var(--ink-soft); }
@media (max-width: 560px) {
  .meta-row { grid-template-columns: 1fr; gap: 5px; }
}

.points { display: grid; gap: 8px; margin: 24px 0; }
.point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 14px 14px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: border-color var(--t), background var(--t), transform var(--t-fast) var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .point:hover { border-color: var(--line-soft); background: linear-gradient(180deg, rgba(255,246,232,0.02), transparent); transform: translateY(-1px); }
}
.point__n { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 1.15rem; line-height: 1.4; min-width: 1.4em; }
.point__t { font-family: var(--serif); font-size: 1.16rem; color: var(--ink); margin-bottom: 5px; line-height: 1.25; }
.point__d { color: var(--ink-mute); font-size: 0.96rem; line-height: 1.6; }
.points--tight { gap: 4px; }
.points--tight .point { padding: 10px 12px; }
.points--tight .point__t { font-size: 1.04rem; margin-bottom: 2px; }
.points--tight .point__d { font-size: 0.9rem; line-height: 1.5; }

.block { margin: 38px 0; }
.block__eyebrow { margin-bottom: 12px; }
.block__title { font-size: clamp(1.45rem, 4.4vw, 2rem); line-height: 1.12; letter-spacing: -0.015em; margin-bottom: 10px; }
.prose { color: var(--ink-soft); }
.prose p + p { margin-top: 12px; }
.signoff { font-family: var(--serif); font-style: italic; color: var(--gold-bright); font-size: 1.1rem; margin-top: 18px; }

/* ---------- Scroll cue ---------- */
.scrollcue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 30px auto 0;
  color: var(--ink-mute);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.scrollcue__line { width: 1px; height: 34px; background: linear-gradient(180deg, var(--gold), transparent); transform-origin: top; }
@media (prefers-reduced-motion: no-preference) {
  .scrollcue__line { animation: cue-drift 2.4s var(--ease) infinite; }
}
@keyframes cue-drift {
  0%   { transform: scaleY(0.3); opacity: 0.3; }
  50%  { transform: scaleY(1);   opacity: 1; }
  100% { transform: scaleY(0.3); opacity: 0.3; }
}

/* ============================================================
   SCROLL-DRIVEN ENTRANCE REVEAL
   Static is the BASE (reduced-motion + no-JS get content as-is).
   Motion is LAYERED ON only for prefers-reduced-motion:no-preference;
   funnel.js adds .is-in via IntersectionObserver. .no-js keeps content
   visible if JS is fully disabled.
   ============================================================ */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--t-rise) var(--ease-arrive), transform var(--t-rise) var(--ease-arrive);
  }
  .reveal.is-in { opacity: 1; transform: none; }
}
.no-js .reveal { opacity: 1 !important; transform: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 560px) {
  body { font-size: 16px; }
  .modal { padding: 26px 20px 24px; }
  .card { padding: 22px; }
  .hero__cta .btn { max-width: none; }
  .calendly-inline-widget { height: 760px; }
  .player__play { width: 72px; height: 72px; }
  .player__play svg { width: 26px; height: 26px; }
  .qnav { flex-wrap: wrap-reverse; }
  .qback { width: 100%; justify-content: center; }
  .scarcity { padding: 24px 20px 22px; }
}

/* ---------- Reduced motion: still and calm (belt for non-keyframe transitions) ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.001s !important; animation-duration: 0.001s !important; }
}
