/* ============================================================
   SPARK MARKETING — offer funnel design system
   Ethereal glass on deep black, molten-gold accent.
   ============================================================ */

:root {
  --bg: #050505;
  --bg-raise: #0b0a08;
  --ink: #f7f4ec;
  --muted: rgba(247, 244, 236, 0.6);
  --faint: rgba(247, 244, 236, 0.38);
  --gold: #e8b33c;
  --gold-hi: #f6d27a;
  --ember: #c4841d;
  --danger: #e86a4a;
  --hairline: rgba(255, 255, 255, 0.08);
  --hairline-strong: rgba(255, 255, 255, 0.14);
  --glass: rgba(255, 255, 255, 0.032);
  --glass-hi: rgba(255, 255, 255, 0.06);
  --font-display: "Space Grotesk", "Avenir Next", sans-serif;
  --font-body: "Plus Jakarta Sans", "Avenir Next", sans-serif;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --shell-pad: 0.5rem;
  --r-shell: 1.75rem;                       /* outer card */
  --r-core: calc(var(--r-shell) - var(--shell-pad));   /* concentric inner */
  --gold-grad: linear-gradient(118deg, var(--ember) 0%, var(--gold) 42%, var(--gold-hi) 72%, var(--gold) 100%);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100dvh;
}

::selection { background: rgba(232, 179, 60, 0.28); color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.022em;
  text-wrap: balance;
}

p { text-wrap: pretty; }

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

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

a { color: inherit; }

/* ---------- ambient background ---------- */

.atmos { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }

.atmos::before {              /* dot grid */
  content: "";
  position: absolute; inset: -1px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1.4px);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 8%, #000 0%, transparent 68%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 8%, #000 0%, transparent 68%);
}

.atmos .orb { position: absolute; border-radius: 50%; filter: blur(90px); will-change: transform; }

.atmos .orb-a {
  width: 62vw; height: 62vw; max-width: 900px; max-height: 900px;
  left: 50%; top: -34vw;
  background: radial-gradient(circle, rgba(232, 179, 60, 0.17) 0%, rgba(196, 132, 29, 0.07) 45%, transparent 70%);
  animation: drift-a 26s var(--ease) infinite alternate;
}

.atmos .orb-b {
  width: 44vw; height: 44vw; max-width: 640px; max-height: 640px;
  left: -18vw; top: 42vh;
  background: radial-gradient(circle, rgba(196, 106, 29, 0.1) 0%, transparent 66%);
  animation: drift-b 34s var(--ease) infinite alternate;
}

.atmos .orb-c {
  width: 38vw; height: 38vw; max-width: 560px; max-height: 560px;
  right: -16vw; top: 16vh;
  background: radial-gradient(circle, rgba(246, 210, 122, 0.09) 0%, transparent 64%);
  animation: drift-a 40s var(--ease) infinite alternate-reverse;
}

@keyframes drift-a { from { transform: translate3d(-50%, 0, 0) scale(1); } to { transform: translate3d(-44%, 5%, 0) scale(1.08); } }
@keyframes drift-b { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(6vw, -6vh, 0) scale(1.12); } }

.grain {
  position: fixed; inset: 0; z-index: 60; pointer-events: none; opacity: 0.05;
  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.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

/* ---------- layout primitives ---------- */

.wrap { width: min(1120px, 92vw); margin-inline: auto; }
.wrap-tight { width: min(760px, 92vw); margin-inline: auto; }

.section { padding-block: clamp(4.5rem, 9vw, 7.5rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-hi);
  background: rgba(232, 179, 60, 0.07);
  box-shadow: inset 0 0 0 1px rgba(232, 179, 60, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.eyebrow .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px 1px rgba(232, 179, 60, 0.8);
  animation: pulse 2.4s var(--ease) infinite;
}

@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.45; transform: scale(0.78); } }

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- entrances ---------- */

/* .boot — CSS-only entrance for above-the-fold (no JS dependency, LCP-safe) */
.boot { animation: boot-in 0.9s var(--ease) both; animation-delay: var(--bd, 0ms); }

@keyframes boot-in {
  from { opacity: 0; transform: translateY(26px); filter: blur(7px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* .rv — JS scroll reveal for below-the-fold */
.rv { opacity: 0; transform: translateY(26px); filter: blur(7px); }

.rv.in {
  opacity: 1; transform: translateY(0); filter: blur(0);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
  transition-delay: var(--rv-delay, 0ms);
}

/* ---------- header ---------- */

.top {
  padding-top: clamp(1.6rem, 3.4vw, 2.6rem);
  display: flex; flex-direction: column; align-items: center; gap: 1.1rem;
}

.top .logo { height: clamp(38px, 5vw, 52px); width: auto; filter: drop-shadow(0 4px 22px rgba(232, 179, 60, 0.28)); }

.stars-row { display: inline-flex; align-items: center; gap: 0.55rem; font-size: 0.8rem; color: var(--muted); font-weight: 600; }

.stars { display: inline-flex; gap: 2px; }

.stars svg { width: 13px; height: 13px; fill: var(--gold); filter: drop-shadow(0 0 4px rgba(232, 179, 60, 0.5)); }

/* ---------- hero ---------- */

.hero { text-align: center; padding-top: clamp(2.2rem, 5vw, 3.6rem); }

.hero h1 {
  font-size: clamp(2.35rem, 6vw, 4.35rem);
  margin: 1.25rem auto 0;
  max-width: 21ch;
}

.hero .sub {
  margin: 1.35rem auto 0;
  max-width: 56ch;
  font-size: clamp(1rem, 1.7vw, 1.17rem);
  color: var(--muted);
  font-weight: 500;
}

.hero .sub strong { color: var(--ink); font-weight: 700; }

.hero-trust {
  margin-top: 1.5rem;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.55rem 1.5rem;
  font-size: 0.8rem; font-weight: 600; color: var(--faint);
}

.hero-trust span { display: inline-flex; align-items: center; gap: 0.45rem; }

.hero-trust svg { width: 13px; height: 13px; stroke: var(--gold); }

/* ---------- the form card (double bezel) ---------- */

.card-shell {
  margin: clamp(2.4rem, 5vw, 3.4rem) auto 0;
  width: min(620px, 100%);
  padding: var(--shell-pad);
  border-radius: var(--r-shell);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018) 30%, rgba(255, 255, 255, 0.028));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 30px 80px -20px rgba(0, 0, 0, 0.8),
    0 0 120px -30px rgba(232, 179, 60, 0.14);
  position: relative;
}

.card-shell::before {          /* top ridge glow */
  content: "";
  position: absolute; top: -1px; left: 18%; right: 18%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(246, 210, 122, 0.55), transparent);
}

.card-core {
  border-radius: var(--r-core);
  background: linear-gradient(180deg, #0d0c09 0%, #080807 100%);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
  padding: clamp(1.5rem, 3.6vw, 2.3rem);
  overflow: hidden;
  position: relative;
}

/* progress */

.progress { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.7rem; }

.progress .bars { display: flex; gap: 6px; flex: 1; }

.progress .bar { height: 3px; flex: 1; border-radius: 999px; background: rgba(255, 255, 255, 0.09); position: relative; overflow: hidden; }

.progress .bar::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: var(--gold-grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.7s var(--ease);
}

.progress .bar.done::after { transform: scaleX(1); }

.progress .count {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  color: var(--faint); font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* steps */

.steps { position: relative; }

.step { display: none; }

.step.active { display: block; animation: step-in 0.55s var(--ease) both; }

.step.active.back { animation-name: step-in-back; }

@keyframes step-in { from { opacity: 0; transform: translateX(26px); filter: blur(5px); } to { opacity: 1; transform: translateX(0); filter: blur(0); } }
@keyframes step-in-back { from { opacity: 0; transform: translateX(-26px); filter: blur(5px); } to { opacity: 1; transform: translateX(0); filter: blur(0); } }

.step h2 { font-size: clamp(1.28rem, 2.6vw, 1.62rem); letter-spacing: -0.015em; }

.step .hint { margin-top: 0.4rem; font-size: 0.86rem; color: var(--muted); }

.q-label {
  display: block;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.55rem;
}

/* option pills */

.opts { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-top: 1.35rem; }

.opts.cols-3 { grid-template-columns: 1fr 1fr 1fr; }

.opt {
  --r: 0.95rem;
  position: relative;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 56px;
  padding: 0.85rem 1rem;
  border-radius: var(--r);
  background: var(--glass);
  box-shadow: inset 0 0 0 1px var(--hairline), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), transform 0.35s var(--ease), color 0.35s var(--ease);
  text-align: center;
}

.opt:hover { background: var(--glass-hi); box-shadow: inset 0 0 0 1px var(--hairline-strong), inset 0 1px 0 rgba(255, 255, 255, 0.07); transform: translateY(-1px); }

.opt:active { transform: scale(0.96); }

.opt.picked {
  color: #191204;
  background: var(--gold-grad);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 8px 26px -8px rgba(232, 179, 60, 0.55);
}

.opt .tick {
  position: absolute; top: 8px; right: 8px;
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(0, 0, 0, 0.22);
  display: grid; place-items: center;
  opacity: 0; transform: scale(0.25); filter: blur(4px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), filter 0.3s var(--ease);
}

.opt .tick svg { width: 9px; height: 9px; stroke: #fff; stroke-width: 3; fill: none; }

.opt.picked .tick { opacity: 1; transform: scale(1); filter: blur(0); }

/* inputs */

.fields { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; margin-top: 1.4rem; }

.field { grid-column: span 2; }

.field.half { grid-column: span 1; }

.field label {
  display: block;
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 0.42rem;
}

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

.field input {
  width: 100%;
  min-height: 52px;
  padding: 0.8rem 1rem;
  border: 0; outline: 0;
  border-radius: 0.9rem;
  background: var(--glass);
  box-shadow: inset 0 0 0 1px var(--hairline), inset 0 1px 2px rgba(0, 0, 0, 0.35);
  color: var(--ink);
  font: inherit; font-weight: 600; font-size: 0.98rem;
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  -webkit-appearance: none; appearance: none;
}

.field input::placeholder { color: rgba(247, 244, 236, 0.26); font-weight: 500; }

.field input:focus {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px rgba(232, 179, 60, 0.6), 0 0 0 4px rgba(232, 179, 60, 0.1);
}

.field.error input { box-shadow: inset 0 0 0 1px rgba(232, 106, 74, 0.65), 0 0 0 4px rgba(232, 106, 74, 0.08); }

.field .err {
  display: none;
  margin-top: 0.36rem; font-size: 0.74rem; font-weight: 600; color: var(--danger);
}

.field.error .err { display: block; }

/* CTA buttons (button-in-button) */

.cta-row { display: flex; align-items: center; gap: 0.9rem; margin-top: 1.6rem; }

.btn-back {
  width: 46px; height: 46px; flex: none;
  border-radius: 50%;
  background: var(--glass);
  box-shadow: inset 0 0 0 1px var(--hairline);
  display: grid; place-items: center;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.btn-back:hover { background: var(--glass-hi); box-shadow: inset 0 0 0 1px var(--hairline-strong); }

.btn-back:active { transform: scale(0.96); }

.btn-back svg { width: 15px; height: 15px; stroke: var(--muted); stroke-width: 2.4; fill: none; }

.btn {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.85rem;
  min-height: 58px;
  padding: 0.55rem 0.55rem 0.55rem 1.6rem;
  border-radius: 999px;
  background: var(--gold-grad);
  background-size: 160% 100%; background-position: 0% 0;
  color: #191204;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.02rem; letter-spacing: 0.01em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55), 0 14px 40px -10px rgba(232, 179, 60, 0.5);
  transition: background-position 0.6s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.btn:hover { background-position: 60% 0; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55), 0 18px 50px -12px rgba(232, 179, 60, 0.62); }

.btn:active { transform: scale(0.96); }

.btn .cap {
  width: 44px; height: 44px; flex: none;
  border-radius: 50%;
  background: rgba(12, 9, 2, 0.82);
  display: grid; place-items: center;
  transition: transform 0.4s var(--ease);
}

.btn:hover .cap { transform: translate(3px, -1px) scale(1.05); }

.btn .cap svg { width: 16px; height: 16px; stroke: var(--gold-hi); stroke-width: 2.4; fill: none; }

.btn[disabled] { opacity: 0.6; pointer-events: none; }

.btn.ghost {
  background: var(--glass);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--hairline-strong);
}

.btn.ghost .cap { background: rgba(255, 255, 255, 0.08); }

.secure-note {
  margin-top: 1.15rem;
  display: flex; align-items: center; justify-content: center; gap: 0.45rem;
  font-size: 0.74rem; font-weight: 600; color: var(--faint);
}

.secure-note svg { width: 12px; height: 12px; stroke: var(--faint); fill: none; stroke-width: 2; }

/* calendar step */

.cal-frame-wrap {
  margin-top: 1.2rem;
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  min-height: 620px;
}

.cal-frame-wrap iframe { width: 100%; border: 0; min-height: 620px; display: block; }

.cal-fallback { margin-top: 0.9rem; text-align: center; font-size: 0.8rem; color: var(--faint); }

.cal-fallback a { color: var(--gold); font-weight: 700; }

/* ---------- marquee ---------- */

.marquee-band {
  margin-top: clamp(3.6rem, 7vw, 5.5rem);
  padding-block: 1.15rem;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee { display: flex; width: max-content; animation: marquee 46s linear infinite; }

.marquee-band:hover .marquee { animation-play-state: paused; }

.marquee span {
  display: inline-flex; align-items: center; gap: 2.2rem;
  padding-right: 2.2rem;
  font-family: var(--font-display);
  font-size: 0.86rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--faint);
  white-space: nowrap;
}

.marquee i { font-style: normal; color: var(--gold); opacity: 0.7; font-size: 0.7rem; }

@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- deliverables strip ---------- */

.deliver-grid {
  margin-top: clamp(2.2rem, 4.5vw, 3rem);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.85rem;
}

.deliver {
  padding: 0.45rem;
  border-radius: 1.35rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), inset 0 0 0 1px rgba(255, 255, 255, 0.045);
}

.deliver .inner {
  border-radius: 0.9rem;
  background: rgba(8, 8, 7, 0.72);
  padding: 1.35rem 1.25rem;
  height: 100%;
}

.deliver .n {
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
  color: var(--gold);
}

.deliver h3 { margin-top: 0.55rem; font-size: 1.02rem; letter-spacing: -0.01em; }

.deliver p { margin-top: 0.45rem; font-size: 0.85rem; color: var(--muted); line-height: 1.55; }

/* ---------- section headers ---------- */

.sec-head { text-align: center; }

.sec-head h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); margin-top: 1.1rem; }

.sec-head .sub { margin: 1rem auto 0; max-width: 52ch; color: var(--muted); font-size: clamp(0.95rem, 1.5vw, 1.05rem); }

/* ---------- featured result cards ---------- */

.feat-grid {
  margin-top: clamp(2.4rem, 5vw, 3.4rem);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem;
}

.vcard {
  --vr: 1.35rem;
  position: relative;
  border-radius: var(--vr);
  overflow: hidden;
  background: var(--bg-raise);
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
  box-shadow: 0 18px 50px -18px rgba(0, 0, 0, 0.75);
  cursor: pointer;
  transform: translateZ(0);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  break-inside: avoid;
}

.vcard:hover { transform: translateY(-4px); box-shadow: 0 26px 64px -20px rgba(0, 0, 0, 0.85), 0 0 60px -18px rgba(232, 179, 60, 0.2); }

.vcard:active { transform: scale(0.98); }

.vcard .media { position: relative; width: 100%; aspect-ratio: var(--ar, 9 / 16); background: #0c0b09; }

.vcard .media img,
.vcard .media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.vcard .shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0) 44%, rgba(5, 5, 5, 0.86) 100%);
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.vcard.playing .shade { opacity: 0; }

.vcard .play {
  position: absolute; inset: 0; margin: auto;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(10, 9, 6, 0.55);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22), 0 10px 30px -8px rgba(0, 0, 0, 0.6);
  display: grid; place-items: center;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease), filter 0.4s var(--ease);
}

.vcard:hover .play { transform: scale(1.08); }

.vcard.playing .play { opacity: 0; transform: scale(0.25); filter: blur(4px); pointer-events: none; }

.vcard .play svg { width: 19px; height: 19px; fill: var(--gold-hi); margin-left: 3px; }  /* optical center */

.vcard .meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0.95rem 1rem;
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.vcard.playing .meta { opacity: 0; transform: translateY(8px); }

.vcard .meta .stat {
  font-family: var(--font-display);
  font-size: 1.28rem; font-weight: 700; letter-spacing: -0.01em;
  color: var(--gold-hi);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

.vcard .meta .who { margin-top: 0.15rem; font-size: 0.78rem; font-weight: 700; color: var(--ink); }

.vcard .meta .quote { margin-top: 0.2rem; font-size: 0.74rem; color: var(--muted); line-height: 1.45; }

.vcard .mute-hint {
  position: absolute; top: 10px; right: 10px;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: rgba(10, 9, 6, 0.6);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink);
  opacity: 0; transition: opacity 0.3s var(--ease);
  pointer-events: none;
}

.vcard.playing .mute-hint { opacity: 1; }

/* masonry wall */

.wall {
  margin-top: 1.1rem;
  columns: 4 240px;
  column-gap: 0.9rem;
}

.wall .vcard { margin-bottom: 0.9rem; }

.wall-note { margin-top: 1.6rem; text-align: center; font-size: 0.8rem; color: var(--faint); font-weight: 600; }

/* ---------- final cta ---------- */

.final { text-align: center; }

.final .card-shell { width: min(560px, 100%); }

.final .card-core { padding: clamp(2rem, 5vw, 2.8rem); }

.final h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); }

.final p { margin: 0.9rem auto 0; max-width: 40ch; color: var(--muted); font-size: 0.95rem; }

.final .btn { margin-top: 1.5rem; width: 100%; }

/* ---------- sticky mobile cta ---------- */

.sticky-cta {
  position: fixed; left: 50%; bottom: max(14px, env(safe-area-inset-bottom));
  transform: translate(-50%, 140%);
  z-index: 40;
  width: min(420px, calc(100vw - 28px));
  transition: transform 0.6s var(--ease);
}

.sticky-cta.show { transform: translate(-50%, 0); }

.sticky-cta .btn { width: 100%; min-height: 54px; box-shadow: inset 0 1px 0 rgba(255,255,255,.55), 0 16px 44px -8px rgba(0,0,0,.7), 0 10px 34px -10px rgba(232,179,60,.55); }

/* ---------- thank-you page ---------- */

.alert-band {
  background: var(--gold-grad);
  color: #1a1204;
  text-align: center;
  padding: 0.62rem 1rem;
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
}

.ty-hero { text-align: center; padding-top: clamp(2.4rem, 5vw, 3.6rem); }

.ty-hero h1 { font-size: clamp(2.1rem, 5.2vw, 3.7rem); margin: 1.2rem auto 0; max-width: 22ch; }

.ty-hero .sub { margin: 1.3rem auto 0; max-width: 54ch; font-size: clamp(0.98rem, 1.6vw, 1.12rem); color: var(--muted); font-weight: 500; }

.value-tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-top: 1.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: var(--glass);
  box-shadow: inset 0 0 0 1px var(--hairline-strong);
  font-size: 0.82rem; font-weight: 700;
}

.value-tag s { color: var(--faint); }

.value-tag b { color: var(--gold-hi); }

/* roadmap success */

.rm-done { text-align: center; padding: 1rem 0 0.4rem; }

.rm-done .badge-ok {
  width: 64px; height: 64px; margin: 0 auto;
  border-radius: 50%;
  background: var(--gold-grad);
  display: grid; place-items: center;
  box-shadow: 0 14px 44px -10px rgba(232, 179, 60, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  animation: pop-in 0.7s var(--ease) both;
}

.rm-done .badge-ok svg { width: 26px; height: 26px; stroke: #191204; stroke-width: 3; fill: none; }

@keyframes pop-in { from { opacity: 0; transform: scale(0.25); filter: blur(4px); } to { opacity: 1; transform: scale(1); filter: blur(0); } }

.rm-done h3 { margin-top: 1.2rem; font-size: 1.45rem; }

.rm-done p { margin: 0.7rem auto 0; max-width: 44ch; color: var(--muted); font-size: 0.92rem; }

.rm-done p b { color: var(--ink); }

.rm-preview {
  margin: 1.6rem auto 0;
  width: min(360px, 88%);
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #14110a, #0a0906);
  box-shadow: inset 0 0 0 1px var(--hairline-strong), 0 20px 60px -18px rgba(0, 0, 0, 0.8);
  padding: 1.3rem;
  text-align: left;
}

.rm-preview .rm-line { height: 9px; border-radius: 999px; background: rgba(255, 255, 255, 0.1); margin-bottom: 0.65rem; }

.rm-preview .rm-line.g { background: linear-gradient(90deg, rgba(232, 179, 60, 0.6), rgba(232, 179, 60, 0.15)); }

.rm-preview .blurred { filter: blur(5px); }

.rm-preview .lock-tag {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.55));
}

.rm-preview .lock-tag span {
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  background: rgba(10, 9, 6, 0.78);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgba(232, 179, 60, 0.4);
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em;
  color: var(--gold-hi);
  display: inline-flex; align-items: center; gap: 0.45rem;
}

.rm-preview .lock-tag svg { width: 12px; height: 12px; stroke: var(--gold-hi); fill: none; stroke-width: 2.2; }

/* roadmap loading sequence */

.rm-loading { text-align: center; padding: 1.1rem 0 0.5rem; }

.rm-loading h3 { font-size: clamp(1.25rem, 2.6vw, 1.55rem); margin-top: 0.5rem; }

.load-track {
  height: 6px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  overflow: hidden;
  margin: 1.5rem auto 1.7rem;
  max-width: 420px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.4);
}

.load-fill {
  height: 100%; border-radius: inherit;
  background: var(--gold-grad);
  transform: scaleX(0); transform-origin: left;
  box-shadow: 0 0 14px rgba(232, 179, 60, 0.55);
}

.load-fill.go { animation: load-fill var(--load-ms, 5000ms) cubic-bezier(0.25, 0.6, 0.35, 1) forwards; }

@keyframes load-fill { to { transform: scaleX(1); } }

.load-steps { display: grid; gap: 0.6rem; max-width: 400px; margin: 0 auto; text-align: left; }

.load-step {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.9rem; font-weight: 600;
  color: var(--faint);
  transition: color 0.4s var(--ease);
}

.load-step .ind {
  position: relative; flex: none;
  width: 22px; height: 22px; border-radius: 50%;
  box-shadow: inset 0 0 0 1.5px var(--hairline-strong);
  display: grid; place-items: center;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.load-step .ind svg { width: 11px; height: 11px; stroke: #191204; stroke-width: 3.2; fill: none; opacity: 0; transform: scale(0.25); filter: blur(4px); transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), filter 0.3s var(--ease); }

.load-step.active { color: var(--ink); }

.load-step.active .ind { box-shadow: inset 0 0 0 1.5px rgba(232, 179, 60, 0.25); }

.load-step.active .ind::before {
  content: "";
  position: absolute; inset: -1.5px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--gold);
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.load-step.done { color: var(--muted); }

.load-step.done .ind { background: var(--gold-grad); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5); }

.load-step.done .ind svg { opacity: 1; transform: scale(1); filter: blur(0); }

/* thank-you VSL */

.vsl-wrap { margin: 2rem auto 0; width: min(680px, 100%); }

.vcard.vsl {
  border-radius: var(--r-core);
  outline: none;
  box-shadow: none;
}

.vcard.vsl .play { width: 74px; height: 74px; }

.vcard.vsl .play svg { width: 25px; height: 25px; margin-left: 4px; }

.vcard.vsl:hover { transform: none; box-shadow: none; }

.vsl-wrap .card-shell { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 30px 80px -20px rgba(0, 0, 0, 0.8), 0 0 90px -20px rgba(232, 179, 60, 0.22); }

/* thank-you "almost done" progress */

.ty-progress { margin: 1.7rem auto 0; max-width: 460px; width: 100%; }

.ty-progress .row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 0.55rem;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
}

.ty-progress .row .lab { color: var(--gold-hi); }

.ty-progress .row .pct { color: var(--muted); font-variant-numeric: tabular-nums; }

.ty-progress .load-track { margin: 0; max-width: none; }

.ty-fill { animation: ty-fill 1.7s var(--ease) 0.5s forwards; }

@keyframes ty-fill { to { transform: scaleX(0.85); } }

/* price drop reveal */

.price-drop {
  margin: 1.5rem auto 0;
  display: flex; align-items: center; justify-content: center;
  gap: 0.4rem 1.1rem; flex-wrap: wrap;
}

.price-old {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.6vw, 2.1rem);
  color: var(--faint);
  position: relative;
  padding: 0 0.15em;
  font-variant-numeric: tabular-nums;
}

.price-old::after {
  content: "";
  position: absolute; left: -5%; right: -5%; top: 50%;
  height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--ember), var(--gold-hi));
  transform: scaleX(0) rotate(-6deg); transform-origin: left;
  box-shadow: 0 0 10px rgba(232, 179, 60, 0.5);
}

.revealed .price-old::after { animation: strike 0.5s var(--ease) 0.35s forwards; }

@keyframes strike { to { transform: scaleX(1) rotate(-6deg); } }

.price-arrow svg { width: 26px; height: 26px; stroke: var(--gold); stroke-width: 2.2; fill: none; opacity: 0.8; }

.price-free {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.8rem, 8vw, 3.8rem);
  line-height: 1; letter-spacing: -0.02em;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 6px 26px rgba(232, 179, 60, 0.35));
  opacity: 0; transform: scale(0.6);
}

.revealed .price-free { animation: free-pop 0.65s var(--ease) 0.75s forwards; }

@keyframes free-pop { to { opacity: 1; transform: scale(1); } }

.price-note { margin-top: 0.65rem; font-size: 0.86rem; color: var(--muted); font-weight: 600; }

.price-note b { color: var(--gold-hi); }

/* checklist */

.checklist { margin-top: clamp(2.2rem, 4.5vw, 3rem); display: grid; gap: 0.85rem; }

.check-item {
  display: flex; gap: 1.1rem; align-items: flex-start;
  padding: 0.45rem;
  border-radius: 1.35rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), inset 0 0 0 1px rgba(255, 255, 255, 0.045);
}

.check-item .inner {
  flex: 1;
  display: flex; gap: 1.1rem; align-items: flex-start;
  border-radius: 0.9rem;
  background: rgba(8, 8, 7, 0.72);
  padding: 1.25rem 1.3rem;
}

.check-item .num {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(232, 179, 60, 0.1);
  box-shadow: inset 0 0 0 1px rgba(232, 179, 60, 0.3);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1rem; color: var(--gold-hi);
  font-variant-numeric: tabular-nums;
}

.check-item h3 { font-size: 1.05rem; letter-spacing: -0.01em; }

.check-item p { margin-top: 0.35rem; font-size: 0.88rem; color: var(--muted); }

.check-item p a { color: var(--gold); font-weight: 700; text-decoration: none; }

/* FAQ */

.faq { margin-top: clamp(2.2rem, 4.5vw, 3rem); display: grid; gap: 0.65rem; }

.faq-item {
  border-radius: 1.1rem;
  background: var(--glass);
  box-shadow: inset 0 0 0 1px var(--hairline);
  overflow: hidden;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.faq-item.open { background: rgba(255, 255, 255, 0.045); box-shadow: inset 0 0 0 1px var(--hairline-strong); }

.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.05rem 1.25rem;
  text-align: left;
  font-weight: 700; font-size: 0.96rem;
  min-height: 44px;
}

.faq-q .chev {
  flex: none;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: grid; place-items: center;
  transition: transform 0.45s var(--ease), background 0.45s var(--ease);
}

.faq-item.open .chev { transform: rotate(45deg); background: rgba(232, 179, 60, 0.16); }

.faq-q .chev svg { width: 12px; height: 12px; stroke: var(--gold-hi); stroke-width: 2.4; fill: none; }

.faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease);
}

.faq-item.open .faq-a { grid-template-rows: 1fr; }

.faq-a > div { overflow: hidden; }

.faq-a p { padding: 0 1.25rem 1.15rem; font-size: 0.88rem; color: var(--muted); }

/* ---------- footer ---------- */

footer {
  margin-top: clamp(3rem, 7vw, 5rem);
  border-top: 1px solid var(--hairline);
  padding: clamp(2.4rem, 5vw, 3.4rem) 0 2.6rem;
  text-align: center;
}

footer .foot-logo { height: 40px; width: auto; margin: 0 auto 1.3rem; opacity: 0.85; mix-blend-mode: screen; }

footer .links { display: flex; justify-content: center; gap: 1.6rem; font-size: 0.8rem; font-weight: 600; color: var(--muted); }

footer .links a { text-decoration: none; transition: color 0.3s var(--ease); }

footer .links a:hover { color: var(--gold-hi); }

footer .fine {
  margin: 1.6rem auto 0;
  max-width: 74ch;
  font-size: 0.68rem; line-height: 1.7; color: rgba(247, 244, 236, 0.3);
}

footer .fine + .fine { margin-top: 0.8rem; }

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .deliver-grid { grid-template-columns: 1fr; }
  .wall { columns: 2 170px; column-gap: 0.7rem; }
  .wall .vcard { margin-bottom: 0.7rem; }
}

@media (max-width: 560px) {
  .opts, .opts.cols-3 { grid-template-columns: 1fr 1fr; }
  .fields { grid-template-columns: 1fr; }
  .field.half { grid-column: span 2; }
  .feat-grid { grid-template-columns: 1fr 1fr; gap: 0.7rem; }
  .cta-row { flex-wrap: wrap; }
  .btn { min-height: 56px; }
  .check-item .inner { flex-direction: row; }
  .section { padding-block: 3.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .atmos .orb, .marquee, .eyebrow .dot, .boot, .load-step.active .ind::before { animation: none !important; }
  .rv { opacity: 1; transform: none; filter: none; }
  .rv.in { transition: none; }
  .step.active { animation: none; }
  .revealed .price-old::after { animation: none; transform: scaleX(1) rotate(-6deg); }
  .revealed .price-free { animation: none; opacity: 1; transform: scale(1); }
  .ty-fill { animation: none; transform: scaleX(0.85); }
}
