/* ==========================================================================
   NOVA Protocol — "MOLTEN" design system  (index.html only)
   Concept: the brand logo is liquid metal — a molten Bitcoin pouring into
   Polymarket blue. The page is a vertical POUR: an obsidian furnace glowing
   molten-orange up top, cooling to electric blue at the base. Gooey metaballs,
   rising embers, chrome gloss, drip dividers, oversized kinetic type.
   This file fully owns the look; it does not depend on Tailwind tokens being
   correct, and it overrides the color utilities the markup still uses.
   ========================================================================== */

:root {
  /* base furnace */
  --bg: #07070c;
  --bg-2: #0b0b14;
  --ink: #eef1fb; /* primary text */
  --slate: rgba(238, 241, 251, 0.66);
  --mute: rgba(238, 241, 251, 0.46);
  --faint: rgba(238, 241, 251, 0.32);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);

  /* molten palette */
  --btc: #f7931a;
  --btc-hot: #ff7a18;
  --btc-glow: #ffb24d;
  --pm: #1e5bff;
  --pm-bright: #4d82ff;
  --violet: #8b6be6;
  --green: #2bd17e;
  --danger: #ff5a6e;

  /* glass surfaces */
  --glass: rgba(255, 255, 255, 0.04);
  --glass-2: rgba(255, 255, 255, 0.06);
  --glass-line: rgba(255, 255, 255, 0.1);

  /* signature gradients */
  --molten: linear-gradient(105deg, #ffc06a 0%, #ff8a1e 26%, #f7931a 52%, #1e5bff 56%, #4d82ff 82%, #1e5bff 100%);
  --molten-soft: linear-gradient(
    135deg,
    rgba(247, 147, 26, 0.24) 0%,
    rgba(247, 147, 26, 0.12) 52%,
    rgba(30, 91, 255, 0.18) 58%,
    rgba(30, 91, 255, 0.24) 100%
  );
  --chrome: linear-gradient(180deg, #ffffff 0%, #dfe5f4 26%, #9aa4bd 50%, #dfe5f4 74%, #ffffff 100%);

  /* shadows + gloss */
  --gloss-top: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  --gloss-edge: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  --shadow-card: 0 34px 70px -38px rgba(0, 0, 0, 0.92);
  --shadow-sm: 0 14px 30px -22px rgba(0, 0, 0, 0.9);
  --glow-btc: 0 14px 50px -14px rgba(255, 122, 24, 0.6);
  --glow-pm: 0 14px 50px -14px rgba(30, 91, 255, 0.55);

  --radius: 20px;
  --radius-lg: 30px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family:
    "General Sans",
    system-ui,
    -apple-system,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
main {
  overflow-x: clip;
  position: relative;
  z-index: 1;
}
::selection {
  background: rgba(255, 122, 24, 0.32);
  color: #fff;
}

/* The furnace POUR — fixed full-page molten→cool field behind everything. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(62% 46% at 50% -8%, rgba(255, 122, 24, 0.32), transparent 62%),
    radial-gradient(40% 30% at 84% 6%, rgba(247, 147, 26, 0.2), transparent 60%),
    radial-gradient(46% 36% at 14% 30%, rgba(255, 122, 24, 0.1), transparent 62%),
    radial-gradient(80% 60% at 50% 116%, rgba(30, 91, 255, 0.3), transparent 60%),
    linear-gradient(180deg, #0a0a14 0%, #08080f 46%, #070710 100%);
}
/* faint chrome-grid sheen */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(70% 60% at 50% 30%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000 0%, transparent 78%);
}
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.grid-overlay {
  display: none;
}

/* ---- color-utility overrides (markup still uses Tailwind classes) -------- */
.font-sans {
  font-family:
    "General Sans",
    system-ui,
    -apple-system,
    sans-serif !important;
}
.font-mono {
  font-family: "JetBrains Mono", ui-monospace, monospace !important;
}
.bg-ink {
  background-color: transparent !important;
}
.text-white {
  color: var(--ink) !important;
}
.text-white\/70 {
  color: rgba(238, 241, 251, 0.72) !important;
}
.text-white\/60 {
  color: rgba(238, 241, 251, 0.62) !important;
}
.text-white\/55 {
  color: rgba(238, 241, 251, 0.56) !important;
}
.text-white\/50 {
  color: rgba(238, 241, 251, 0.5) !important;
}
.text-white\/45 {
  color: rgba(238, 241, 251, 0.46) !important;
}
.text-white\/40 {
  color: var(--mute) !important;
}
.text-white\/35 {
  color: rgba(238, 241, 251, 0.36) !important;
}
.text-white\/25 {
  color: rgba(238, 241, 251, 0.28) !important;
}
.text-white\/20 {
  color: rgba(238, 241, 251, 0.2) !important;
}
.text-signal {
  color: var(--btc-glow) !important;
}
.text-green {
  color: var(--green) !important;
}
.bg-panel\/40 {
  background-color: rgba(255, 255, 255, 0.025) !important;
}
.bg-panel\/40.backdrop-blur,
.backdrop-blur {
  backdrop-filter: blur(12px);
}
.border-line {
  border-color: var(--line) !important;
}
.border-y {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.border-t {
  border-top: 1px solid var(--line);
}

/* ---- shared type ---------------------------------------------------------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--btc-glow);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 178, 77, 0.28);
  background: rgba(255, 122, 24, 0.07);
  margin-bottom: 1rem;
}
.h2 {
  font-family: "Clash Display", "General Sans", sans-serif;
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-wrap: balance;
}
.sub {
  margin-top: 1.1rem;
  color: var(--slate);
  font-size: 1.06rem;
  max-width: 46rem;
  line-height: 1.62;
}
.section-head {
  max-width: 54rem;
}
section {
  position: relative;
}

/* molten chrome text used for accent words + big numbers */
.gradient-text {
  background: var(--molten);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: sheen 9s ease-in-out infinite;
}
@keyframes sheen {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* ==========================================================================
   NAV
   ========================================================================== */
header {
  transition:
    background 0.3s,
    border-color 0.3s,
    backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
header.scrolled {
  background: rgba(8, 8, 14, 0.72);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom-color: var(--line);
}
.brand-link {
  text-decoration: none;
  color: var(--ink);
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  filter: drop-shadow(0 6px 14px rgba(255, 122, 24, 0.4));
}
img.logo-mark,
.brand-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex: 0 0 auto;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 7px 16px rgba(255, 122, 24, 0.32)) drop-shadow(0 7px 16px rgba(30, 91, 255, 0.16));
  display: block;
}
.brand-text {
  font-family: "Clash Display", sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.brand-dot {
  color: var(--btc);
}
.nav-cta {
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
}

/* ==========================================================================
   BUTTONS — liquid metal
   ========================================================================== */
.btn-primary,
.btn-ghost {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: -0.01em;
  padding: 0.85rem 1.4rem;
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  overflow: hidden;
  transition:
    transform 0.18s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #ffa848, #f7931a 42%, #ef7e0b);
  box-shadow: var(--glow-btc), var(--gloss-top);
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.5) 47%, transparent 64%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 60px -16px rgba(255, 122, 24, 0.7),
    var(--gloss-top);
}
.btn-primary:hover::after {
  transform: translateX(120%);
}
.btn-ghost {
  color: var(--ink);
  background: var(--glass-2);
  border-color: var(--glass-line);
  box-shadow: var(--gloss-edge);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(77, 130, 255, 0.55);
  box-shadow: var(--glow-pm);
  color: #fff;
}
.w-full {
  width: 100%;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero-section {
  padding-top: 7rem;
}
.hero-section > div:not(.hero-liquid) {
  position: relative;
  z-index: 2;
}

/* gooey metaballs — the literal "liquid merge" of the logo */
.hero-liquid {
  position: absolute;
  inset: -10% -6% -22%;
  z-index: 0;
  pointer-events: none;
  filter: url(#nova-goo);
  opacity: 0.9;
}
.hero-liquid .blob {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
  mix-blend-mode: screen;
}
.hero-liquid .blob.b1 {
  width: 32vw;
  height: 32vw;
  left: 4%;
  top: 6%;
  background: radial-gradient(circle at 38% 36%, #ff8a1e, rgba(255, 122, 24, 0) 70%);
  animation: drift1 17s ease-in-out infinite;
}
.hero-liquid .blob.b2 {
  width: 36vw;
  height: 36vw;
  right: 2%;
  top: 0%;
  background: radial-gradient(circle at 60% 40%, #2f6bff, rgba(30, 91, 255, 0) 70%);
  animation: drift2 21s ease-in-out infinite;
}
.hero-liquid .blob.b3 {
  width: 22vw;
  height: 22vw;
  left: 42%;
  top: 34%;
  background: radial-gradient(circle at 50% 45%, rgba(30, 91, 255, 0.85), rgba(30, 91, 255, 0) 70%);
  animation: drift3 24s ease-in-out infinite;
}
@keyframes drift1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(10%, 8%) scale(1.12);
  }
}
@keyframes drift2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-8%, 10%) scale(1.16);
  }
}
@keyframes drift3 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-12%, -8%) scale(0.9);
  }
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--slate);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  box-shadow: var(--gloss-top);
}
.status-pill .dot,
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.hero-title {
  font-family: "Clash Display", "General Sans", sans-serif;
  font-size: clamp(2.9rem, 6.6vw, 5.6rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--ink);
  text-wrap: balance;
}
.hero-title .gradient-text {
  display: block;
}
.hero-subcopy {
  line-height: 1.6;
  color: var(--slate);
  max-width: 36rem;
}
.hero-referral {
  display: inline-flex;
  margin-top: 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pm-bright);
  text-decoration: none;
  border-bottom: 1px solid rgba(77, 130, 255, 0.3);
  padding-bottom: 2px;
}
.hero-referral:hover {
  color: #8fb0ff;
}

.hero-metrics {
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
}
.metric {
  position: relative;
  padding-left: 0.9rem;
}
.metric::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 2px;
  border-radius: 2px;
  background: var(--molten);
}
.metric-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.metric-label {
  font-size: 0.72rem;
  color: var(--mute);
  margin-top: 0.3rem;
  letter-spacing: 0.02em;
}
.risk-strip {
  color: var(--slate);
  border-left: 2px solid var(--btc);
  padding: 0.55rem 0 0.55rem 0.85rem;
  background: linear-gradient(90deg, rgba(255, 122, 24, 0.08), transparent);
  border-radius: 0 8px 8px 0;
}

/* hero right column */
.engine-stack {
  display: grid;
  gap: 1.1rem;
  min-width: 0;
  position: relative;
}

/* molten logo medallion — white chrome ingot with a molten gradient rim so the
   logo art (which ships on a white background) merges into the plate seamlessly */
.hero-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow:
    var(--shadow-card),
    inset 0 2px 0 rgba(255, 255, 255, 0.95),
    inset 0 -28px 52px -26px rgba(30, 91, 255, 0.18),
    0 0 90px -20px rgba(255, 122, 24, 0.6),
    0 30px 70px -30px rgba(30, 91, 255, 0.45);
  perspective: 1000px;
  animation: floaty 7s ease-in-out infinite;
}
.hero-logo-wrap::before {
  /* molten gradient rim hugging the plate */
  content: "";
  position: absolute;
  inset: -1.5px;
  border-radius: inherit;
  padding: 1.5px;
  pointer-events: none;
  background: var(--molten);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.hero-logo {
  position: relative;
  width: clamp(180px, 24vw, 280px);
  height: auto;
  display: block;
  transform-style: preserve-3d;
  transition: transform 0.25s ease-out;
  will-change: transform;
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.2));
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* terminal — the molten furnace readout */
.terminal {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(180deg, #0c0d16, #08090f);
  border: 1px solid var(--glass-line);
  box-shadow: var(--shadow-card), var(--gloss-top);
}
.terminal::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 80px;
  background: linear-gradient(180deg, rgba(255, 122, 24, 0.16), transparent);
  pointer-events: none;
  animation: scan 6s linear infinite;
}
@keyframes scan {
  from {
    transform: translateY(-80px);
    opacity: 0;
  }
  14%,
  74% {
    opacity: 1;
  }
  to {
    transform: translateY(300px);
    opacity: 0;
  }
}
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}
.terminal-bar .text-white\/40 {
  color: rgba(238, 241, 251, 0.5) !important;
}
.tdot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.tdot:nth-child(1) {
  background: #ff5a6e;
}
.tdot:nth-child(2) {
  background: var(--btc);
}
.tdot:nth-child(3) {
  background: var(--green);
}
.terminal-body {
  padding: 1rem;
  min-height: 196px;
  color: rgba(238, 241, 251, 0.86);
}
.terminal-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.1rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}
.terminal-foot .text-white\/40 {
  color: rgba(238, 241, 251, 0.5) !important;
}
.terminal-foot .text-signal {
  color: var(--btc-glow) !important;
}
.terminal-foot .text-green {
  color: var(--green) !important;
}
.t-line {
  opacity: 0;
  transform: translateY(4px);
  animation: tin 0.35s forwards;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@keyframes tin {
  to {
    opacity: 1;
    transform: none;
  }
}
.t-time {
  color: rgba(238, 241, 251, 0.4);
}
.t-buy,
.t-win {
  color: var(--green);
}
.t-sell {
  color: #ff8aa0;
}
.t-skip {
  color: rgba(238, 241, 251, 0.4);
}
.t-info {
  color: var(--btc-glow);
}

.engine-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}
.engine-tile {
  min-width: 0;
  padding: 0.95rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--glass);
  box-shadow: var(--gloss-edge);
}
.engine-tile span,
.engine-tile small {
  display: block;
  color: var(--mute);
  font-size: 0.72rem;
  line-height: 1.45;
}
.engine-tile strong {
  display: block;
  margin: 0.2rem 0;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 600;
}

/* ==========================================================================
   MARQUEE (replaces flat trust strip)
   ========================================================================== */
.marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  padding: 1rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0 1.6rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  white-space: nowrap;
}
.marquee-item::after {
  content: "◆";
  color: var(--btc);
  font-size: 0.6rem;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   MOLTEN DRIP DIVIDER
   ========================================================================== */
.molten-divider {
  position: relative;
  height: 90px;
  margin-top: -1px;
  pointer-events: none;
  line-height: 0;
}
.molten-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   HOW IT WORKS — flow timeline
   ========================================================================== */
.flow {
  position: relative;
  margin-top: 3rem;
  display: grid;
  gap: 1.2rem;
}
.flow::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: var(--molten);
  border-radius: 2px;
  opacity: 0.7;
}
@media (min-width: 768px) {
  .flow {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
  }
  .flow::before {
    left: 6%;
    right: 6%;
    top: 27px;
    bottom: auto;
    width: auto;
    height: 2px;
  }
}
.flow .card {
  position: relative;
  padding: 1.7rem 1.6rem 1.5rem 4.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--glass);
  box-shadow: var(--shadow-sm), var(--gloss-top);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  overflow: hidden;
}
@media (min-width: 768px) {
  .flow .card {
    padding: 3.6rem 1.6rem 1.6rem;
  }
}
.flow .card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 178, 77, 0.4);
  box-shadow: var(--shadow-card), var(--glow-btc);
}
.flow .card::before {
  /* gloss tracking highlight */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(255, 122, 24, 0.14), transparent 45%);
}
.flow .card:hover::before {
  opacity: 1;
}
.step-num {
  position: absolute;
  left: 1.2rem;
  top: 1.5rem;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 0.9rem;
  color: #0a0a12;
  border-radius: 50%;
  background: var(--molten);
  box-shadow:
    0 0 0 5px var(--bg),
    var(--glow-btc);
}
@media (min-width: 768px) {
  .step-num {
    left: 1.6rem;
    top: 9px;
  }
}
.flow .card .ic {
  width: 26px;
  height: 26px;
  color: var(--btc-glow);
  margin-bottom: 0.8rem;
}
.flow .card h3 {
  font-family: "Clash Display", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.4rem;
}
.flow .card p {
  color: var(--slate);
  font-size: 0.93rem;
  line-height: 1.6;
}
.card-link {
  display: inline-flex;
  margin-top: 0.9rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--pm-bright);
  text-decoration: none;
}
.card-link:hover {
  color: #8fb0ff;
}

/* ==========================================================================
   PROOF — oversized editorial numbers
   ========================================================================== */
.stats-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-bottom: 0.3rem;
}
.stats-range-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--btc-glow);
}
.stats-range-note {
  margin: 0;
  max-width: 40rem;
  color: var(--mute);
  font-size: 0.83rem;
  line-height: 1.5;
}
.stats-range-select {
  width: min(100%, 230px);
  min-height: 44px;
  padding: 0.65rem 2.4rem 0.65rem 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: rgba(0, 0, 0, 0.32);
  color: var(--ink);
  font:
    700 0.88rem "JetBrains Mono",
    ui-monospace,
    monospace;
}
.stats-range-select:focus {
  outline: none;
  border-color: var(--btc);
  box-shadow: 0 0 0 3px rgba(247, 147, 26, 0.18);
}
.stats-range-select:disabled {
  color: var(--mute);
  cursor: not-allowed;
}
@media (max-width: 640px) {
  .stats-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
  .stats-range-select {
    width: 100%;
  }
}
.proof-grid {
  display: grid;
  gap: 1.4rem;
  margin-top: 3rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1024px) {
  .proof-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat-card {
  position: relative;
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--glass);
  box-shadow: var(--gloss-top);
}
.stat-card::after {
  content: "";
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.2rem;
  height: 1px;
  background: var(--molten);
  opacity: 0.5;
}
.stat-num {
  font-family: "Clash Display", sans-serif;
  font-size: clamp(3rem, 6vw, 4.6rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.stat-label {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--mute);
}

/* ==========================================================================
   GLASS PANELS shared by calculator / pricing / onboarding
   ========================================================================== */
.calc-panel,
.calc-output,
.price-card,
.onboard,
.beta-interest,
.trust-panel,
.upgrade-preview,
.checkout-summary,
.risk-cap-card,
.secure-note,
.key-guide,
.referral-callout {
  position: relative;
}
.calc-panel,
.calc-output,
.onboard {
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-line);
  background: var(--glass);
  box-shadow: var(--shadow-card), var(--gloss-top);
  backdrop-filter: blur(14px);
}

/* ---- Calculator ---- */
.field {
  margin-bottom: 1.3rem;
}
.field-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.55rem;
}
.field label,
.lbl {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
}
.field-val {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  color: var(--btc-glow);
}
.hint {
  margin-top: 0.45rem;
  font-size: 0.74rem;
  color: var(--mute);
}
.num-input {
  margin-top: 0.6rem;
  width: 100%;
  padding: 0.6rem 0.8rem;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: rgba(0, 0, 0, 0.3);
  color: var(--ink);
  font-family: "JetBrains Mono", monospace;
}
.num-input:focus {
  outline: none;
  border-color: var(--btc);
  box-shadow: 0 0 0 3px rgba(247, 147, 26, 0.2);
}
.link-reset {
  background: none;
  border: none;
  color: var(--mute);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0;
}
.link-reset:hover {
  color: var(--btc-glow);
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--btc) 0%, var(--btc) 52%, var(--pm) 58%, var(--pm) 100%);
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, #cfd6e6 60%, #97a0b8);
  border: 2px solid #fff;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.6),
    var(--glow-btc);
  cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, #cfd6e6 60%, #97a0b8);
  border: 2px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.out-tile {
  padding: 1.1rem 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.out-label {
  font-size: 0.74rem;
  color: var(--mute);
}
.out-num {
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 700;
  color: var(--ink);
  margin-top: 0.3rem;
}
.chart-wrap {
  margin-top: 1.4rem;
  padding: 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.25);
}
.chart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--mute);
  margin-bottom: 0.6rem;
}
#growth-chart {
  width: 100%;
  height: 190px;
  overflow: visible;
}
.calc-warn {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 90, 110, 0.4);
  background: rgba(255, 90, 110, 0.1);
  color: #ff9aa8;
  font-size: 0.84rem;
}
.monthly-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin: 1.4rem 0;
  text-align: center;
}
.monthly-row > div {
  padding: 0.7rem 0.4rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}
.monthly-row .font-mono {
  color: var(--ink);
  font-weight: 700;
  margin-top: 0.2rem;
}

/* ==========================================================================
   PRICING
   ========================================================================== */
.price-card {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.9rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-line);
  background: var(--glass);
  box-shadow: var(--shadow-card), var(--gloss-top);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.price-card:hover {
  transform: translateY(-6px);
}
.price-card.featured {
  background: linear-gradient(180deg, rgba(255, 122, 24, 0.12), rgba(30, 91, 255, 0.08)), var(--glass);
  border: 1px solid transparent;
  background-clip: padding-box;
  box-shadow: var(--shadow-card), var(--glow-btc);
}
.price-card.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  pointer-events: none;
  background: var(--molten);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.ribbon {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0a0a12;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: var(--molten);
  box-shadow: var(--glow-btc);
  white-space: nowrap;
}
.price-name {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}
.price-amt {
  font-family: "Clash Display", sans-serif;
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  margin-top: 0.5rem;
  letter-spacing: -0.03em;
}
.price-amt span {
  font-family: "General Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--mute);
  letter-spacing: 0;
}
.price-note {
  margin-top: 0.4rem;
  font-size: 0.82rem;
  color: var(--green);
  font-family: "JetBrains Mono", monospace;
}
.price-desc {
  margin-top: 1rem;
  color: var(--slate);
  font-size: 0.92rem;
  line-height: 1.55;
}
.lane-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin: 1.3rem 0;
}
.lane-stats > div {
  padding: 0.8rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}
.lane-stats span {
  display: block;
  font-size: 0.7rem;
  color: var(--mute);
}
.lane-stats strong {
  display: block;
  margin-top: 0.2rem;
  color: var(--btc-glow);
  font-family: "JetBrains Mono", monospace;
  font-size: 1.05rem;
}
.price-extra {
  font-size: 0.82rem;
  color: var(--mute);
  line-height: 1.5;
  margin-bottom: 0.8rem;
}
.price-list {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 1.6rem;
  display: grid;
  gap: 0.65rem;
}
.price-list li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 0.9rem;
  color: var(--slate);
}
.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(43, 209, 126, 0.16);
}
.price-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 5px;
  height: 9px;
  border: solid var(--green);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.mt-auto {
  margin-top: auto;
}

/* ==========================================================================
   ONBOARDING
   ========================================================================== */
.steps-track {
  margin-bottom: 1.8rem;
}
.steps-bar {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.steps-bar span {
  display: block;
  height: 100%;
  width: 20%;
  border-radius: 999px;
  background: var(--molten);
  transition: width 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  box-shadow: var(--glow-btc);
}
.steps-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.7rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
}
.steps-labels .active {
  color: var(--btc-glow);
}
.lbl {
  display: block;
  margin: 1.1rem 0 0.45rem;
}
.inp {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: rgba(0, 0, 0, 0.3);
  color: var(--ink);
  font-size: 0.95rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.inp::placeholder {
  color: var(--faint);
}
.inp:focus {
  outline: none;
  border-color: var(--btc);
  box-shadow: 0 0 0 3px rgba(247, 147, 26, 0.18);
}
.inp-prefix {
  display: flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.inp-prefix span {
  padding: 0 0.5rem 0 0.9rem;
  color: var(--mute);
  font-family: "JetBrains Mono", monospace;
}
.inp-prefix .inp {
  border: none;
  background: none;
}
.inp-prefix:focus-within {
  border-color: var(--btc);
  box-shadow: 0 0 0 3px rgba(247, 147, 26, 0.18);
}
.key-textarea {
  min-height: 96px;
  resize: vertical;
  font-size: 0.82rem;
}
.micro {
  font-size: 0.76rem;
  color: var(--mute);
  margin-top: 0.5rem;
  line-height: 1.5;
}
.step-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.7rem;
  margin-top: 1.6rem;
}
.step-actions .btn-ghost[data-prev] {
  margin-right: auto;
}

.beta-anchor {
  scroll-margin-top: 5.5rem;
}
.beta-interest {
  margin: 2.2rem 0 2rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.beta-copy {
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 0.8rem;
}
.beta-done {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(114, 239, 178, 0.35);
  background: rgba(114, 239, 178, 0.1);
  color: var(--green);
  font-size: 0.85rem;
  line-height: 1.45;
}
.advanced-setup {
  margin-top: 1rem;
  scroll-margin-top: 5.5rem;
}
.advanced-setup > summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 700;
}
.advanced-setup-copy {
  margin: 0.7rem 0 1rem;
  color: var(--mute);
  font-size: 0.86rem;
  line-height: 1.55;
}

.secure-note {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(77, 130, 255, 0.28);
  background: rgba(30, 91, 255, 0.08);
  color: var(--slate);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 1rem 0;
}
.secure-note i,
.secure-note svg {
  color: var(--pm-bright);
  flex-shrink: 0;
}
.key-guide {
  margin: 1rem 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0 1rem;
}
.key-guide summary {
  cursor: pointer;
  padding: 0.9rem 0;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
  list-style: none;
}
.key-guide summary::-webkit-details-marker {
  display: none;
}
.key-guide ol {
  color: var(--slate);
  font-size: 0.84rem;
  line-height: 1.6;
  padding-left: 1.2rem;
}
.key-guide a {
  display: block;
  margin: 0.5rem 0 0.9rem;
  color: var(--pm-bright);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
}

.trust-panel {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  margin: 1rem 0;
}
.trust-panel-head {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
}
.trust-panel-head i,
.trust-panel-head svg {
  color: var(--btc-glow);
}
.trust-kicker {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.trust-panel-head h3 {
  font-family: "Clash Display", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0.1rem 0 0;
}
.trust-panel > p {
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.55;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin: 1.1rem 0;
}
.trust-grid strong {
  display: block;
  color: var(--ink);
  font-size: 0.9rem;
}
.trust-grid span {
  display: block;
  color: var(--mute);
  font-size: 0.8rem;
  line-height: 1.45;
  margin-top: 0.2rem;
}
.trust-link,
.upgrade-note,
.checkout-note {
  color: var(--pm-bright);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}

.region-pick,
.venue-pick,
.plan-pick,
.pay-pick,
.account-pick {
  display: grid;
  gap: 0.7rem;
  margin: 0.6rem 0;
}
.venue-pick,
.plan-pick,
.pay-pick,
.account-pick {
  grid-template-columns: 1fr 1fr;
}
.account-pick-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.region-opt,
.venue-opt,
.plan-opt,
.pay-opt,
.account-opt {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  cursor: pointer;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  transition:
    border-color 0.2s,
    background 0.2s;
}
.region-opt span,
.venue-opt span,
.plan-opt span,
.pay-opt span,
.account-opt span {
  min-width: 0;
}
.region-opt:hover,
.venue-opt:hover,
.plan-opt:hover,
.pay-opt:hover,
.account-opt:hover {
  border-color: rgba(255, 178, 77, 0.4);
}
.region-opt:has(input:checked),
.venue-opt:has(input:checked),
.plan-opt:has(input:checked),
.pay-opt:has(input:checked),
.account-opt:has(input:checked) {
  border-color: var(--btc);
  background: rgba(247, 147, 26, 0.08);
}
.venue-opt:has(input:disabled) {
  opacity: 0.5;
  cursor: not-allowed;
}
.account-opt-primary {
  border-color: rgba(255, 178, 77, 0.32);
  background: linear-gradient(135deg, rgba(247, 147, 26, 0.12), rgba(30, 91, 255, 0.06));
}
.region-opt input,
.venue-opt input,
.plan-opt input,
.pay-opt input,
.account-opt input {
  margin-top: 3px;
  accent-color: var(--btc);
  flex: none;
}
.region-opt b,
.venue-opt b,
.plan-opt b,
.pay-opt b,
.account-opt b {
  color: var(--ink);
  font-size: 0.9rem;
}
.region-opt small,
.venue-opt small,
.plan-opt small,
.pay-opt small,
.account-opt small {
  display: block;
  color: var(--mute);
  font-size: 0.76rem;
  margin-top: 0.15rem;
  line-height: 1.45;
}

.signup-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin: 1rem 0;
}
.signup-panel.hidden,
.signup-card.hidden {
  display: none;
}
.signup-card {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(77, 130, 255, 0.28);
  background: rgba(30, 91, 255, 0.08);
}
.signup-card:has(.btn-primary) {
  border-color: rgba(247, 147, 26, 0.38);
  background: linear-gradient(135deg, rgba(247, 147, 26, 0.12), rgba(30, 91, 255, 0.08));
}
.signup-card strong {
  color: var(--ink);
  font-size: 0.9rem;
}
.signup-card span {
  color: var(--slate);
  font-size: 0.8rem;
  line-height: 1.45;
}
.signup-card .btn-ghost {
  justify-content: center;
}
.signup-card .btn-primary,
.signup-card .btn-ghost {
  width: 100%;
  white-space: normal;
}

.referral-callout {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(77, 130, 255, 0.28);
  background: rgba(30, 91, 255, 0.08);
  margin: 1rem 0;
}
.referral-callout strong {
  display: block;
  color: var(--ink);
  font-size: 0.9rem;
}
.referral-callout span {
  display: block;
  color: var(--slate);
  font-size: 0.8rem;
  margin-top: 0.2rem;
}
.venue-fields {
  margin-top: 1rem;
}
.coupon-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
}
.coupon-status {
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid transparent;
}
.coupon-status.is-applied {
  color: var(--green);
  background: rgba(114, 239, 178, 0.08);
  border-color: rgba(114, 239, 178, 0.28);
}
.coupon-status.is-error {
  color: #ff9aa8;
  background: rgba(255, 90, 110, 0.09);
  border-color: rgba(255, 90, 110, 0.32);
}

.upgrade-preview {
  margin: 1.4rem 0;
  padding: 1.3rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.upgrade-kicker {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--btc-glow);
}
.upgrade-head h3 {
  font-family: "Clash Display", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0.2rem 0;
}
.upgrade-head p {
  color: var(--slate);
  font-size: 0.86rem;
  line-height: 1.5;
}
.upgrade-grid {
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0;
}
.upgrade-card {
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}
.upgrade-card.is-current {
  border-color: rgba(247, 147, 26, 0.4);
  background: rgba(247, 147, 26, 0.07);
}
.upgrade-card span {
  font-size: 0.76rem;
  color: var(--mute);
}
.upgrade-card strong {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 1.4rem;
  color: var(--ink);
  margin: 0.2rem 0;
}
.upgrade-card .upgrade-amount {
  color: var(--green);
}
.upgrade-card small {
  font-size: 0.74rem;
  color: var(--mute);
  line-height: 1.45;
}
.upgrade-note {
  color: var(--mute);
  font-size: 0.74rem;
  font-weight: 400;
}

.checkout-summary {
  margin: 1.2rem 0;
  padding: 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.checkout-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--slate);
  padding: 0.3rem 0;
}
.checkout-total {
  display: flex;
  justify-content: space-between;
  margin-top: 0.6rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}
.checkout-total strong {
  font-family: "JetBrains Mono", monospace;
  color: var(--green);
}
.checkout-note {
  display: block;
  margin-top: 0.6rem;
  font-weight: 400;
  color: var(--mute);
  font-size: 0.78rem;
  line-height: 1.45;
}
.risk-cap-card {
  margin: 1rem 0;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(247, 147, 26, 0.3);
  background: linear-gradient(135deg, rgba(247, 147, 26, 0.1), rgba(30, 91, 255, 0.05));
}
.risk-cap-card span {
  display: block;
  color: var(--mute);
  font-size: 0.78rem;
}
.risk-cap-card strong {
  display: block;
  margin-top: 0.2rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 1.7rem;
  color: var(--btc-glow);
}
.risk-cap-card p {
  margin-top: 0.35rem;
  color: var(--mute);
  font-size: 0.78rem;
  line-height: 1.45;
}
.check {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-top: 1.1rem;
  font-size: 0.84rem;
  color: var(--slate);
  line-height: 1.5;
}
.check.hidden {
  display: none;
}
.check input {
  accent-color: var(--btc);
  margin-top: 3px;
}
.form-error {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 90, 110, 0.4);
  background: rgba(255, 90, 110, 0.1);
  color: #ff9aa8;
  font-size: 0.85rem;
}
.onboard-done {
  text-align: center;
  padding: 1.5rem;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}
.onboard-done:not(.hidden) {
  display: flex;
}
.onboard-done h3 {
  font-family: "Clash Display", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink);
}
.onboard-done p {
  color: var(--slate);
  font-size: 0.9rem;
  max-width: 28rem;
  line-height: 1.55;
}
.done-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.faq {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--glass);
  padding: 0 1.3rem;
  box-shadow: var(--gloss-edge);
  transition: border-color 0.2s;
}
.faq[open] {
  border-color: rgba(255, 178, 77, 0.35);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--ink);
  padding: 1.1rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  color: var(--btc-glow);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1;
}
.faq[open] summary::after {
  content: "\2212";
}
.faq p {
  padding-bottom: 1.1rem;
  color: var(--slate);
  font-size: 0.92rem;
  line-height: 1.6;
}
.faq a {
  color: var(--pm-bright);
  font-weight: 600;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: rgba(7, 7, 12, 0.7);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}
footer a {
  text-decoration: none;
}

/* ==========================================================================
   REVEAL + REDUCED MOTION
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
[data-reveal].in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .dot,
  .t-line,
  .btn-primary::after,
  .terminal::after,
  .hero-logo-wrap,
  .hero-liquid .blob,
  .gradient-text,
  .marquee-track {
    animation: none;
  }
  .hero-logo {
    transform: none;
  }
  .terminal::after {
    opacity: 0;
  }
  .hero-liquid {
    opacity: 0.5;
  }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1023px) {
  .hero-section .grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  section.py-24 {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
  .trust-grid,
  .venue-pick,
  .plan-pick,
  .pay-pick,
  .account-pick,
  .account-pick-three,
  .signup-panel,
  .lane-stats {
    grid-template-columns: 1fr;
  }
  .coupon-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .hero-section {
    padding-top: 5.5rem;
  }
  .brand-text {
    font-size: 1rem;
  }
  img.logo-mark,
  .brand-logo-img {
    width: 32px;
    height: 32px;
  }
  .nav-cta {
    display: none;
  }
  .hero-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .monthly-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .step-actions {
    flex-direction: column-reverse;
  }
  .signup-actions {
    flex-direction: column;
  }
  .step-actions .btn-primary,
  .step-actions .btn-ghost {
    width: 100%;
  }
  .step-actions .btn-ghost[data-prev] {
    margin-right: 0;
  }
}
