/* ══════════════════════════════════════════════════════════════════════
   CINEMATIC LAYER — shared by every /v2/ page.
   One navy stage (Variant C, lifted a step), one light source (Beacon
   Gold), Fraunces at display scale. Every motion is entrance, light, or
   depth — nothing decorates for its own sake. Film grain rides over
   everything at 7% so the pages read as shot on film, not rendered flat.
   Committed single-theme dark; --text is pinned because tokens.css paints
   h1-h4 with it and its light-scheme value would vanish into the stage.
   ══════════════════════════════════════════════════════════════════════ */
:root {
  --stage: #0D1729; --stage-lift: #131C2E; --panel: #16223A;
  --ink: #F0F4FB; --muted: #9AA7BD; --line-dim: rgba(154,167,189,.16);
  --gold: #F0B429; --gold-deep: #D99A1F; --gold-dim: rgba(240,180,41,.14);
  --on-gold: #0A0F1C;
  --text: #F0F4FB; --text-soft: #9AA7BD;
}
html { background: var(--stage); scroll-padding-top: 0; }
body { margin: 0; background: var(--stage); color: var(--ink);
  font-family: var(--font-body); font-size: 16px; line-height: 1.55;
  -webkit-font-smoothing: antialiased; overflow-x: clip; }
::selection { background: var(--gold); color: var(--on-gold); }

/* ── Film grain + vignette, over everything ─────────────────────────── */
.grain { position: fixed; inset: -50%; z-index: 90; pointer-events: none;
  width: 200%; height: 200%; opacity: .07; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 1.2s steps(4) infinite; }
@keyframes grain-shift { 0%{transform:translate(0,0)} 25%{transform:translate(-2%,1%)}
  50%{transform:translate(1%,-2%)} 75%{transform:translate(-1%,2%)} 100%{transform:translate(0,0)} }
.vignette { position: fixed; inset: 0; z-index: 89; pointer-events: none;
  background: radial-gradient(130% 100% at 50% 45%, transparent 55%, rgba(5,10,20,.5) 100%); }

/* ── Nav: one glass line ────────────────────────────────────────────── */
.cn-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 48px);
  background: linear-gradient(180deg, rgba(13,23,41,.78), transparent);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.cn-wordmark { font-family: var(--font-display); font-weight: 700; font-size: 1.125rem;
  color: var(--ink); text-decoration: none; letter-spacing: -.01em; display: flex;
  align-items: center; gap: 10px; }
.cn-wordmark svg { width: 20px; height: 20px; }
.cn-wordmark img { height: 30px; width: auto; display: block;
  filter: drop-shadow(0 0 10px rgba(240,180,41,.25)); }
.cn-links { display: flex; gap: clamp(16px, 3vw, 34px); align-items: center; }
.cn-links a { font-family: var(--font-label); font-size: 0.875rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
  text-decoration: none; transition: color .25s; }
.cn-links a:hover, .cn-links a:focus-visible { color: var(--gold); }
@media (max-width: 640px) { .cn-links a:not(.cn-cta-link) { display: none; } }
.cn-cta-link { color: var(--gold) !important; border: 1px solid rgba(240,180,41,.4);
  padding: 9px 18px; border-radius: 999px; white-space: nowrap;
  transition: background-color .25s, color .25s !important; }
.cn-cta-link:hover { background: var(--gold); color: var(--on-gold) !important; }
/* Shrink the CTA pill on mobile so it clears the wordmark (and the burger)
   instead of overlapping them. Uses .cn-links a.cn-cta-link so it out-specifies
   the .cn-links a font-size (0.875rem) that would otherwise keep it full size. */
@media (max-width: 640px) {
  .cn-links a.cn-cta-link { padding: 6px 11px; font-size: 0.6rem; letter-spacing: .05em; }
}

/* ── Mobile menu: glass burger + full-stage overlay ─────────────────── */
/* Built by cine.js on every cinematic page; the burger only exists below
   640px, where the nav links are hidden. Overlay sits under the nav bar
   (z 99 < 100) so the wordmark and the burger-turned-X stay on top. */
.cn-burger { display: none; width: 40px; height: 40px; border-radius: 999px;
  border: 1px solid rgba(240,244,251,.18); background: rgba(22,34,58,.55);
  position: relative; padding: 0; cursor: pointer;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.cn-burger i { position: absolute; left: 12px; right: 12px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .3s cubic-bezier(.22,1,.36,1), top .3s cubic-bezier(.22,1,.36,1); }
.cn-burger i:first-child { top: 15px; }
.cn-burger i:last-child { top: 23px; }
.cn-burger.open i:first-child { top: 19px; transform: rotate(45deg); }
.cn-burger.open i:last-child { top: 19px; transform: rotate(-45deg); }
@media (max-width: 640px) { .cn-burger { display: block; } }

.cn-menu { position: fixed; inset: 0; z-index: 99; display: flex;
  flex-direction: column; justify-content: center;
  padding: 96px clamp(24px, 8vw, 48px) 48px;
  background: rgba(11,18,32,.94);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .4s ease, visibility 0s linear .4s; }
.cn-menu.open { opacity: 1; visibility: visible; pointer-events: auto;
  transition: opacity .4s ease; }
@media (min-width: 641px) { .cn-menu { display: none; } }
.cn-menu-link { font-family: var(--font-serif); font-weight: 600;
  font-optical-sizing: auto;
  font-size: clamp(2rem, 9vw, 2.75rem); letter-spacing: -.02em; line-height: 1.15;
  color: var(--ink); text-decoration: none; padding: 10px 0;
  transition: color .25s; }
.cn-menu-link:hover, .cn-menu-link:focus-visible, .cn-menu-link:active { color: var(--gold); }
.cn-menu-cta { margin-top: 28px; }
.cn-menu-meta { display: flex; gap: 24px; margin-top: 34px; }
.cn-menu-meta a { font-family: var(--font-label); font-size: 0.875rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
  text-decoration: none; transition: color .25s; }
.cn-menu-meta a:hover, .cn-menu-meta a:focus-visible { color: var(--gold); }
/* Staggered rise — each row lands a beat after the previous. */
.cn-menu > * { opacity: 0; transform: translateY(22px);
  transition: opacity .45s ease, transform .5s cubic-bezier(.22,1,.36,1); }
.cn-menu.open > * { opacity: 1; transform: none; }
.cn-menu.open > :nth-child(1) { transition-delay: .05s; }
.cn-menu.open > :nth-child(2) { transition-delay: .11s; }
.cn-menu.open > :nth-child(3) { transition-delay: .17s; }
.cn-menu.open > :nth-child(4) { transition-delay: .23s; }
.cn-menu.open > :nth-child(5) { transition-delay: .29s; }
.cn-menu.open > :nth-child(6) { transition-delay: .35s; }
html.cn-lock, html.cn-lock body { overflow: hidden; }

/* ── Hero: the statement ────────────────────────────────────────────── */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center;
  overflow: clip; isolation: isolate; }
/* Drifting gradient mesh — vast blobs of the brand's two colours moving
   so slowly the eye reads atmosphere, not animation. */
/* Blur sits on each blob, not the parent: a parent-level filter has to
   re-blur the composited group every frame while the blobs drift, whereas
   per-blob blur is rasterized once and then only transforms. */
.mesh { position: absolute; inset: -20%; z-index: 0; }
.mesh i { position: absolute; border-radius: 50%; display: block; filter: blur(90px); }
.mesh i:nth-child(1) { width: 55vw; height: 55vw; left: 52%; top: -12%;
  background: radial-gradient(circle, rgba(240,180,41,.16), transparent 65%);
  animation: drift-a 26s ease-in-out infinite alternate; }
.mesh i:nth-child(2) { width: 60vw; height: 60vw; left: -14%; bottom: -22%;
  background: radial-gradient(circle, rgba(30,58,138,.30), transparent 65%);
  animation: drift-b 32s ease-in-out infinite alternate; }
.mesh i:nth-child(3) { width: 34vw; height: 34vw; right: -8%; bottom: -6%;
  background: radial-gradient(circle, rgba(217,154,31,.10), transparent 65%);
  animation: drift-a 38s ease-in-out infinite alternate-reverse; }
@keyframes drift-a { from { transform: translate(0,0) scale(1); } to { transform: translate(-6%,5%) scale(1.12); } }
@keyframes drift-b { from { transform: translate(0,0) scale(1); } to { transform: translate(5%,-4%) scale(1.08); } }
/* The beacon: a blade of light crossing the stage. On load it makes one
   bright ignition pass — swinging across the headline as the words land,
   so the type reads as lit by the beam — then settles into the slow
   ambient sweep. */
.beam { position: absolute; z-index: 1; left: 58%; top: -20%; width: 22vw; height: 150%;
  background: linear-gradient(180deg, rgba(240,180,41,.13), rgba(240,180,41,.02) 60%, transparent);
  clip-path: polygon(44% 0, 56% 0, 90% 100%, 10% 100%);
  transform-origin: 50% 0; animation: beam-sweep 13.6s ease-in-out infinite alternate;
  mix-blend-mode: screen; }
.played .beam { animation: beam-ignite 2.08s cubic-bezier(.4,0,.2,1) both,
  beam-sweep 13.6s ease-in-out 2.08s infinite alternate; }
@keyframes beam-ignite {
  0% { transform: rotate(-18deg); filter: brightness(1); }
  55% { filter: brightness(2.1); }
  100% { transform: rotate(-9deg); filter: brightness(1); } }
@keyframes beam-sweep { from { transform: rotate(-9deg); } to { transform: rotate(7deg); } }
/* Ignition flare: a bloom of light behind the statement that swells as the
   last words land, then holds as a faint halo. */
.ignite { position: absolute; z-index: 1; left: 8%; top: 22%; width: 54vw; height: 56vh;
  pointer-events: none; opacity: 0; mix-blend-mode: screen;
  background: radial-gradient(55% 55% at 40% 45%, rgba(240,180,41,.20), rgba(240,180,41,.05) 55%, transparent 75%);
  filter: blur(30px); }
.played .ignite { animation: ignite-bloom 2.2s cubic-bezier(.16,1,.3,1) 1s both; }
@keyframes ignite-bloom { from { opacity: 0; transform: scale(.82); }
  60% { opacity: .55; } to { opacity: .32; transform: scale(1); } }
/* Dust in the light cone — a handful of motes drifting through the beam,
   the detail that makes the light read as physical. */
.motes { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.motes i { position: absolute; display: block; width: 3px; height: 3px; border-radius: 50%;
  background: rgba(255,223,142,.55); filter: blur(.5px); opacity: 0;
  animation: mote-float var(--mt, 14s) linear var(--md, 0s) infinite; }
.motes i:nth-child(1) { left: 60%; top: 18%; --mt: 15s; }
.motes i:nth-child(2) { left: 66%; top: 34%; --mt: 19s; --md: -6s; width: 2px; height: 2px; }
.motes i:nth-child(3) { left: 57%; top: 52%; --mt: 13s; --md: -3s; }
.motes i:nth-child(4) { left: 71%; top: 46%; --mt: 21s; --md: -11s; width: 2px; height: 2px; }
.motes i:nth-child(5) { left: 63%; top: 66%; --mt: 17s; --md: -8s; }
.motes i:nth-child(6) { left: 75%; top: 24%; --mt: 23s; --md: -14s; width: 2px; height: 2px; }
@keyframes mote-float {
  0% { transform: translate(0, 10px); opacity: 0; }
  12% { opacity: .6; }
  55% { opacity: .25; }
  100% { transform: translate(-22px, -46px); opacity: 0; } }
@media (max-width: 780px) { .motes { display: none; } }
/* Horizon: a low gold glow anchoring the base of the stage. */
.horizon { position: absolute; z-index: 1; left: 0; right: 0; bottom: -2px; height: 26vh;
  pointer-events: none; opacity: 0;
  background: radial-gradient(70% 100% at 55% 100%, rgba(240,180,41,.13), transparent 70%); }
.played .horizon { animation: horizon-rise 2s ease-out 1.6s both; }
@keyframes horizon-rise { to { opacity: 1; } }
/* Scroll cue: a thread of light with a falling spark. */
.scroll-cue { position: absolute; z-index: 2; left: 50%; bottom: 26px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-label); font-size: 0.875rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase; color: var(--muted);
  text-decoration: none; opacity: 0; }
.played .scroll-cue { animation: fade-up .8s cubic-bezier(.16,1,.3,1) 1.9s forwards; }
.scroll-cue::after { content: ""; width: 1px; height: 44px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: cue-fall 2.2s cubic-bezier(.4,0,.2,1) infinite; }
@keyframes cue-fall { 0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; } }

.hero-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto;
  padding: 140px clamp(20px, 4vw, 48px) 110px; width: 100%; }
/* Scrolling away is a camera move too: the statement sinks and dims as
   the hero leaves, so the next cut reads as a fade-out, not a hard edit.
   Scroll-driven, transform/opacity only. */
@supports (animation-timeline: view()) {
  .hero-inner { animation: hero-exit linear both;
    animation-timeline: view(); animation-range: exit 0% exit 100%; }
}
@keyframes hero-exit { to { transform: translateY(9vh) scale(.975); opacity: .1; } }
.hero-eyebrow { font-family: var(--font-label); font-size: 0.875rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 12px; margin-bottom: 30px; }
.hero-eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); opacity: .6; }
/* The statement. Fraunces at full display scale, tight, with the emphasised
   clause in gold italic — the house headline device at cinema size. */
.hero h1 { font-family: var(--font-serif); font-weight: 600; font-optical-sizing: auto;
  font-size: clamp(3.1rem, 9.6vw, 8.25rem); line-height: .96; letter-spacing: -.03em;
  margin: 0 0 34px; max-width: 12ch; }
.hero h1 em { font-style: italic; font-weight: 500; color: var(--gold); }
/* Cursor spotlight: the headline carries a radial gold sheen that follows
   the pointer — light falling on type, the beacon reading its own name.
   The clip is armed only after the entrance has finished (JS adds .settled
   and the word animations are cleared). background-clip:text silently
   paints nothing while descendants carry transforms/filters, and
   color:transparent then erases the headline — so the two effects take
   turns instead of coexisting: solid type for the entrance, living light
   after. */
@media (hover: hover) and (pointer: fine) {
  .hero h1.settled span.spot { background:
      radial-gradient(240px 240px at var(--mx, 70%) var(--my, 40%),
        #fff 0%, var(--ink) 34%, rgba(240,244,251,.82) 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent; }
  .hero h1.settled em.spot { background:
      radial-gradient(240px 240px at var(--mx, 70%) var(--my, 40%),
        #ffdf8e 0%, var(--gold) 40%, var(--gold-deep) 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent; }
}
.hero h1.settled .w { animation: none !important; opacity: 1; transform: none; filter: none; }
/* Word-stagger entrance */
.hero h1 .w { display: inline-block; opacity: 0; transform: translateY(.55em) rotate(1.5deg);
  filter: blur(6px); }
.played .hero h1 .w { animation: word-in .8s cubic-bezier(.16,1,.3,1) forwards;
  animation-delay: calc(var(--wi) * 90ms + 150ms); }
@keyframes word-in { to { opacity: 1; transform: none; filter: none; } }
.hero-sub { font-size: clamp(1.0625rem, 1.5vw, 1.25rem); line-height: 1.6;
  color: var(--muted); max-width: 46ch; margin: 0 0 42px; opacity: 0; }
.played .hero-sub { animation: fade-up .8s cubic-bezier(.16,1,.3,1) .75s forwards; }
.hero-cta { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; opacity: 0; }
.played .hero-cta { animation: fade-up .8s cubic-bezier(.16,1,.3,1) .95s forwards; }
@keyframes fade-up { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.btn-gold { position: relative; display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-label); font-size: 0.875rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; text-decoration: none;
  color: var(--on-gold); background: var(--gold); padding: 18px 34px; border-radius: 999px;
  transition: background-color .3s; will-change: transform; }
/* The glow lives on two stacked pseudo layers that crossfade on opacity, so
   hovering never repaints shadows while the magnet is moving the button. */
.btn-gold::before, .btn-gold::after { content: ""; position: absolute; inset: 0;
  z-index: -1; border-radius: inherit; pointer-events: none; transition: opacity .3s; }
.btn-gold::before { box-shadow: 0 0 34px rgba(240,180,41,.35), 0 0 90px rgba(240,180,41,.14); }
.btn-gold::after { opacity: 0; box-shadow: 0 0 44px rgba(240,180,41,.5), 0 0 120px rgba(240,180,41,.2); }
.btn-gold:hover { background: #ffc63d; }
.btn-gold:hover::before { opacity: 0; }
.btn-gold:hover::after { opacity: 1; }
.btn-ghost { display: inline-flex; align-items: center; font-family: var(--font-label);
  font-size: 0.875rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; padding: 18px 30px; border-radius: 999px;
  border: 1px solid var(--line-dim); transition: border-color .3s, color .3s; will-change: transform; }
.btn-ghost:hover { border-color: rgba(240,180,41,.5); color: var(--gold); }
.hero-proof { display: flex; gap: 26px; margin-top: 54px; font-family: var(--font-label);
  font-size: 0.875rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
  flex-wrap: wrap; opacity: 0; }
.played .hero-proof { animation: fade-up .8s cubic-bezier(.16,1,.3,1) 1.15s forwards; }
.hero-proof span { display: flex; align-items: center; gap: 8px; }
.hero-proof i { width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 8px 1px rgba(240,180,41,.7); }
.hero-risk { margin: 22px 0 0; font-size: 0.875rem; color: var(--muted); max-width: 52ch;
  opacity: 0; }
.played .hero-risk { animation: fade-up .8s cubic-bezier(.16,1,.3,1) 1.25s forwards; }

/* ── Marquee ────────────────────────────────────────────────────────── */
.marquee { position: relative; z-index: 2; border-top: 1px solid var(--line-dim);
  border-bottom: 1px solid var(--line-dim); padding: 17px 0; overflow: clip;
  background: rgba(19,28,46,.55); }
.marquee-track { display: flex; gap: 56px; width: max-content;
  animation: marquee 30s linear infinite; }
.marquee span { font-family: var(--font-label); font-size: 0.875rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.marquee span em { font-style: normal; color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Section heads ──────────────────────────────────────────────────── */
.sec-head { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.sec-eyebrow { font-family: var(--font-label); font-size: 0.875rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.sec-eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); opacity: .6; }
.sec-title { font-family: var(--font-serif); font-weight: 600; font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1.04; letter-spacing: -.02em; margin: 0 0 14px; max-width: 18ch; }
.sec-title em { font-style: italic; font-weight: 500; color: var(--gold); }
.sec-note { color: var(--muted); max-width: 52ch; margin: 0; font-size: 1rem; }

/* ── Light-up rows (services / value props): rows sit dim and slide in
      as they cross the centre band of the viewport ───────────────────── */
.services { position: relative; padding: clamp(84px, 11vh, 132px) 0; }
.svc-rows { max-width: 1200px; margin: 66px auto 0; padding: 0 clamp(20px, 4vw, 48px); }
.svc { display: grid; grid-template-columns: 72px 1fr auto; align-items: baseline;
  gap: clamp(16px, 3vw, 40px); padding: clamp(28px, 4.5vh, 44px) 0;
  border-top: 1px solid var(--line-dim); text-decoration: none;
  transition: opacity .5s, transform .7s cubic-bezier(.16,1,.3,1);
  opacity: .32; transform: translateX(-14px); }
.svc:last-child { border-bottom: 1px solid var(--line-dim); }
.svc.on { opacity: 1; transform: none; }
.svc-num { font-family: var(--font-label); font-size: 0.875rem; color: var(--muted);
  letter-spacing: .1em; }
.svc h3 { font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(1.75rem, 4.6vw, 3.4rem); letter-spacing: -.02em; line-height: 1.05;
  margin: 0 0 10px; color: var(--ink); transition: color .4s; }
.svc.on h3 { color: var(--gold); }
.svc p { margin: 0; color: var(--muted); max-width: 52ch; font-size: 1rem; }
.svc-price { font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(1.25rem, 2.4vw, 1.875rem); color: var(--ink); white-space: nowrap;
  font-variant-numeric: tabular-nums; }
.svc-price small { font-family: var(--font-label); font-size: 0.875rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-left: 8px; }
@media (max-width: 640px) {
  .svc { grid-template-columns: 1fr; gap: 8px; }
  .svc-num { display: none; }
}

/* ── Pricing: glass plans under a gold halo ─────────────────────────── */
.pricing { position: relative; padding: clamp(84px, 11vh, 132px) 0; overflow: clip; }
.pricing::before { content: ""; position: absolute; width: 720px; height: 720px;
  left: 50%; top: 46%; transform: translate(-50%,-50%); border-radius: 50%;
  background: radial-gradient(circle, rgba(240,180,41,.10), transparent 65%);
  filter: blur(60px); pointer-events: none; }
.plans { position: relative; max-width: 1200px; margin: 64px auto 0;
  padding: 0 clamp(20px, 4vw, 48px); display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(18px, 2.5vw, 30px);
  align-items: stretch; }
.plan { position: relative; display: flex; flex-direction: column; padding: 34px 30px 30px;
  border-radius: 14px; border: 1px solid var(--line-dim);
  background: linear-gradient(170deg, rgba(22,34,58,.75), rgba(19,28,46,.55));
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.06);
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s, border-color .4s; }
.plan:hover { transform: translateY(-6px); border-color: rgba(240,180,41,.3); }
/* Restore the full hover transition once the entrance has landed — the
   generic .rv transition (opacity/transform only) wins the cascade until
   then, which would leave border/glow snapping on hover. */
.plan.lit { transition: opacity .8s cubic-bezier(.16,1,.3,1),
  transform .5s cubic-bezier(.16,1,.3,1), box-shadow .5s, border-color .5s;
  /* Spring on the hover lift only (0.3s perceptual, settle included) —
     longhands after the shorthand so browsers without linear() reject them
     at parse time and keep the bezier. */
  transition-duration: .8s, 550ms, .5s, .5s;
  transition-timing-function: cubic-bezier(.16,1,.3,1),
    linear(0, 0.1195, 0.3552, 0.5913, 0.7781, 0.9047, 0.9789, 1.0152, 1.0275, 1.0271, 1.0212, 1.0142, 1.0083, 1.004, 1.0013, 0.9999, 1, 1),
    ease, ease; }
.plan.star { border-color: rgba(240,180,41,.55);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.08),
    0 0 0 1px rgba(240,180,41,.2), 0 24px 70px rgba(240,180,41,.13); }
/* One specular pass across each card as it arrives — light catching the
   glass, keynote-style. The JS deal stagger spaces the sweeps naturally;
   the starred card catches a brighter pass. */
.plan::before { content: ""; position: absolute; inset: 0; z-index: 0;
  border-radius: inherit; pointer-events: none;
  background: linear-gradient(105deg, transparent 42%, rgba(255,223,142,.07) 50%, transparent 58%);
  background-size: 260% 100%; background-position: 132% 0; background-repeat: no-repeat; }
.plan.star::before {
  background-image: linear-gradient(105deg, transparent 42%, rgba(255,223,142,.12) 50%, transparent 58%); }
.plan.lit::before { animation: plan-sweep 1.5s cubic-bezier(.4,0,.2,1) .55s both; }
@keyframes plan-sweep { from { background-position: 132% 0; } to { background-position: -32% 0; } }
@media (min-width: 1000px) { .plan.star { transform: translateY(-14px) scale(1.02); }
  .plan.star:hover { transform: translateY(-20px) scale(1.02); } }
.plan-ribbon { position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-label); font-size: 0.875rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--on-gold);
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
  padding: 6px 16px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 0 24px rgba(240,180,41,.45); }
.plan-kind { font-family: var(--font-label); font-size: 0.875rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin: 0 0 14px; }
.plan-price { font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(2.6rem, 4.6vw, 3.4rem); line-height: 1; letter-spacing: -.02em;
  font-variant-numeric: tabular-nums; margin: 0 0 4px; }
.plan-anchor { font-family: var(--font-label); font-size: 0.875rem; letter-spacing: .08em;
  color: var(--muted); margin: 0 0 20px; min-height: 1.2em; }
.plan-anchor s { color: var(--muted); }
.plan-anchor em { font-style: normal; color: var(--gold); font-weight: 700; }
.plan h3 { font-family: var(--font-display); font-size: 1.125rem; margin: 0 0 8px; }
.plan h3 a { color: inherit; text-decoration: none; }
.plan h3 a:hover { color: var(--gold); }
.plan-desc { color: var(--muted); font-size: 1rem; margin: 0 0 18px; }
/* The plain answer to "what am I getting" — one outcome sentence in a lit
   frame, above the feature list, so the value lands before the details. */
.plan-get { margin: 0 0 18px; padding: 12px 14px; border-radius: 8px;
  background: var(--gold-dim); font-size: 1rem; line-height: 1.5; color: var(--ink); }
.plan-get strong { color: var(--gold); font-family: var(--font-label); font-size: 0.875rem;
  font-weight: 700; letter-spacing: .14em; text-transform: uppercase; display: block;
  margin-bottom: 4px; }
.plan ul { list-style: none; margin: 0 0 26px; padding: 0; flex: 1; }
.plan li { padding: 9px 0 9px 24px; position: relative; font-size: 1rem;
  color: var(--muted); border-top: 1px solid var(--line-dim); }
.plan li:first-child { border-top: 0; }
.plan li::before { content: "→"; position: absolute; left: 0; color: var(--gold);
  font-family: var(--font-label); }
.plan-not { font-size: 0.875rem; color: var(--muted); border-top: 1px solid var(--line-dim);
  padding: 14px 0 18px; margin: 0; }
.plan-not strong { display: block; font-family: var(--font-label); font-size: 0.875rem;
  font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-soft);
  margin-bottom: 6px; }
.plan .btn-gold, .plan .btn-ghost { justify-content: center; width: 100%;
  box-sizing: border-box; text-align: center; }
.pricing-note { text-align: center; margin: 40px auto 0; max-width: 56ch;
  color: var(--muted); font-size: 1rem; padding: 0 24px; }
.pricing-note a { color: var(--gold); }
/* "Every package includes" — the floor of the deal, spelled out once under
   the cards so no tier has to repeat it. */
.inc-band { max-width: 1200px; margin: 56px auto 0; padding: 26px clamp(20px, 4vw, 48px) 0;
  border-top: 1px solid var(--line-dim); display: flex; flex-wrap: wrap;
  gap: 14px 34px; justify-content: center; }
.inc-band .inc-label { flex-basis: 100%; text-align: center; font-family: var(--font-label);
  font-size: 0.875rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 4px; }
.inc-band span { display: flex; align-items: center; gap: 8px; font-size: 1rem;
  color: var(--muted); }
.inc-band span i { width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 8px 1px rgba(240,180,41,.7); }

/* ── Compare table: the tiers side by side, glass-dark ──────────────── */
.cmp { position: relative; padding: clamp(76px, 10vh, 120px) 0; }
.cmp-wrap { max-width: 1000px; margin: 48px auto 0; padding: 0 clamp(20px, 4vw, 48px);
  overflow-x: auto; }
.cmp table { width: 100%; border-collapse: collapse; min-width: 640px;
  font-size: 1rem; color: var(--muted); }
.cmp th, .cmp td { padding: 13px 14px; text-align: left;
  border-bottom: 1px solid var(--line-dim); font-variant-numeric: tabular-nums; }
.cmp thead th { font-family: var(--font-label); font-size: 0.875rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--text-soft); }
.cmp td:first-child { color: var(--ink); }
.cmp td.yes { color: var(--gold); }
/* Monthly-price suffix on a plan price */
.plan-price small { font-family: var(--font-label); font-size: 0.875rem; color: var(--muted); }

/* ── Final CTA ──────────────────────────────────────────────────────── */
.cta { position: relative; padding: clamp(100px, 14vh, 170px) 24px; text-align: center;
  overflow: clip; }
/* Defocused bokeh plate under the mesh — depth behind the closing ask
   without competing with the type (it arrives pre-blurred). */
.cta::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: url("../img/hero/cta-bokeh.webp") center / cover no-repeat;
  opacity: .16; }
.cta .rv { position: relative; z-index: 1; }
.cta .mesh i:nth-child(1) { left: 30%; top: 10%; }
.cta-title { font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(2.4rem, 6.4vw, 5.4rem); line-height: 1.02; letter-spacing: -.025em;
  margin: 0 auto 20px; max-width: 16ch; position: relative; z-index: 1; }
.cta-title em { font-style: italic; font-weight: 500; color: var(--gold); }
.cta-sub { color: var(--muted); margin: 0 auto 44px; max-width: 44ch; position: relative; z-index: 1; }
.cta .btn-gold { font-size: 0.875rem; padding: 22px 44px; }
.cta-under { margin-top: 26px; font-family: var(--font-label); font-size: 0.875rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
  position: relative; z-index: 1; }

/* ── Footer ─────────────────────────────────────────────────────────── */
.cn-footer { border-top: 1px solid var(--line-dim); padding: 34px clamp(20px, 4vw, 48px);
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: 0.875rem; color: var(--muted); }
.cn-footer a { color: var(--muted); text-decoration: none; }
.cn-footer a:hover { color: var(--gold); }
.cn-footer nav { display: flex; gap: 20px; flex-wrap: wrap; }
/* Padding + offsetting negative margin: a ≥40px touch target with zero
   visual change to the footer's layout. */
.cn-footer nav a { display: inline-block; padding: 12px 6px; margin: -12px -6px; }

/* ── Scroll reveals ─────────────────────────────────────────────────── */
.rv { opacity: 0; transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.rv.lit { opacity: 1; transform: none; }

/* Mobile section rhythm: phones are tall, so vh-driven paddings balloon.
   Fixed, tighter gaps keep the page moving on small screens. */
@media (max-width: 780px) {
  .services, .pricing { padding: 64px 0; }
  .cmp { padding: 56px 0; }
  .cta { padding: 96px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .grain, .beam, .motes { display: none; }
  .mesh i { animation: none; }
  .marquee-track { animation: none; }
  .ignite { animation: none !important; opacity: .32; }
  .horizon { animation: none !important; opacity: 1; }
  .scroll-cue { animation: none !important; opacity: 1; }
  .scroll-cue::after { animation: none; }
  .hero h1 .w, .hero-sub, .hero-cta, .hero-proof, .hero-risk { opacity: 1 !important;
    transform: none !important; filter: none !important; animation: none !important; }
  .rv { opacity: 1; transform: none; transition: none; }
  .svc { opacity: 1; transform: none; transition: none; }
  .hero-inner { animation: none; }
  .plan.lit::before { animation: none; }
  .cn-menu { transition: none; }
  .cn-menu > * { opacity: 1; transform: none; transition: none; }
  .cn-burger i { transition: none; }
  .hero h1.settled span.spot, .hero h1.settled em.spot { background: none;
    -webkit-background-clip: initial; background-clip: initial; }
  .hero h1.settled span.spot { color: var(--ink); }
  .hero h1.settled em.spot { color: var(--gold); }
}
