/* =============================================================
   Aibitrage — "Arbitrage Terminal" pre-launch design system
   Deep near-black green-tint base · emerald/spread-green accents ·
   gold signal · restrained rose sell-side · heavy mono data readouts
   ============================================================= */

:root {
  /* base */
  --bg-0: #080d0b;      /* page base */
  --bg-1: #0c1512;
  --bg-2: #111d18;
  --surface: rgba(255,255,255,0.03);
  --surface-2: rgba(255,255,255,0.05);
  --glass: rgba(12,21,18,0.62);

  /* lines */
  --line-0: rgba(120,200,170,0.12);
  --line-1: rgba(52,211,153,0.22);
  --line-glow: rgba(52,211,153,0.45);

  /* text */
  --text-0: #eaf5f0;
  --text-1: #cfe3da;
  --text-2: #8ba69b;
  --text-mute: #5f7a70;

  /* accent — emerald / spread-green (token names kept for compatibility) */
  --cyan: #34d399;          /* primary emerald accent */
  --cyan-bright: #6ee7b7;
  --cyan-deep: #10b981;
  --blue: #2dd4bf;          /* teal (grad end) */
  --blue-deep: #0d9488;     /* deep teal */
  --cyan-faint: rgba(52,211,153,0.10);
  --cyan-glow: rgba(52,211,153,0.30);

  /* semantic aliases */
  --accent: #34d399;
  --accent-deep: #10b981;
  --gold: #fbbf24;          /* gold/amber signal */
  --rose: #fb7185;          /* sell / high side of a spread only */

  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  --radius-1: 8px;
  --radius-2: 16px;
  --radius-3: 24px;
  --wrap: 1200px;
  --transition: 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--text-1);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: var(--cyan); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--cyan-bright); }
::selection { background: var(--cyan); color: #04140d; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2rem); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.mono { font-family: var(--font-mono); }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--cyan); color: #04140d; padding: 10px 18px; border-radius: 8px;
  font-weight: 700; transition: top var(--transition);
}
.skip-link:focus { top: 12px; }

/* ---------- background FX ---------- */
.fx { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.fx-grid {
  position: absolute; inset: -2px;
  background-image:
    linear-gradient(rgba(52,211,153,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52,211,153,0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 78%);
}
.fx-orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; animation: orb 12s ease-in-out infinite; }
.fx-orb--cyan { width: 46vw; height: 46vw; max-width: 620px; max-height: 620px; top: -14vw; left: -10vw;
  background: radial-gradient(circle, rgba(52,211,153,0.28), transparent 62%); }
.fx-orb--blue { width: 42vw; height: 42vw; max-width: 560px; max-height: 560px; bottom: -12vw; right: -8vw;
  background: radial-gradient(circle, rgba(13,148,136,0.34), transparent 62%); animation-delay: -6s; }
.fx-scan {
  position: absolute; left: 0; right: 0; height: 240px; top: 0;
  background: linear-gradient(180deg, transparent, rgba(52,211,153,0.05), transparent);
  animation: scan 9s linear infinite; opacity: 0.5;
}
@keyframes orb { 0%,100% { transform: translateY(0) scale(1); opacity: 0.42; } 50% { transform: translateY(4%) scale(1.08); opacity: 0.6; } }
@keyframes scan { 0% { transform: translateY(-260px); } 100% { transform: translateY(100vh); } }

/* ---------- launch bar ---------- */
.launchbar {
  position: relative; z-index: 20;
  background: linear-gradient(90deg, rgba(16,185,129,0.10), rgba(13,148,136,0.10));
  border-bottom: 1px solid var(--line-0);
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.02em;
}
.launchbar__inner { display: flex; align-items: center; gap: 0.7rem; padding: 0.55rem 0; justify-content: center; flex-wrap: wrap; color: var(--text-2); }
.launchbar__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); animation: blink 2s ease-in-out infinite; }
.launchbar__cta { color: var(--cyan); font-weight: 600; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }

/* ---------- header / nav ---------- */
.site-header { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(14px);
  background: rgba(8,13,11,0.72); border-bottom: 1px solid var(--line-0); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 0.85rem 0; }

.brand { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--text-0); }
.brand__mark svg { filter: drop-shadow(0 0 10px rgba(52,211,153,0.4)); }
.brand__word { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; letter-spacing: -0.02em; }
.brand__sub { font-family: var(--font-mono); font-size: 0.56rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyan); margin-top: 3px; }

.nav { display: flex; align-items: center; }
.nav__list { list-style: none; display: flex; align-items: center; gap: 0.35rem; }
.nav__list a { display: inline-flex; align-items: center; padding: 0.5rem 0.9rem; border-radius: 8px;
  font-size: 0.9rem; font-weight: 500; color: var(--text-1); }
.nav__list a:not(.nav__cta):hover { color: var(--text-0); background: var(--surface); }
.nav__list a.is-active { color: var(--cyan); }
.nav__toggle { display: none; width: 44px; height: 44px; background: transparent; border: 1px solid var(--line-1);
  border-radius: 10px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; }
.nav__bar { width: 20px; height: 2px; background: var(--text-0); border-radius: 2px; transition: var(--transition); }

/* ---------- ticker tape (signature motif) ---------- */
.ticker { position: relative; z-index: 15; overflow: hidden; border-bottom: 1px solid var(--line-0);
  background: rgba(8,13,11,0.85); }
.ticker__track { display: inline-flex; gap: 2.2rem; white-space: nowrap; padding: 0.5rem 0;
  animation: ticker 46s linear infinite; will-change: transform; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item { display: inline-flex; align-items: center; gap: 0.45rem; font-family: var(--font-mono);
  font-size: 0.74rem; color: var(--text-2); letter-spacing: 0.01em; }
.ticker__item strong { font-weight: 600; color: var(--text-0); }
.ticker__item--up strong { color: var(--accent); }
.ticker__item--down strong { color: var(--rose); }
.ticker__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); }
.ticker__item--down .ticker__dot { background: var(--rose); box-shadow: 0 0 8px var(--rose); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem; justify-content: center;
  padding: 0.9rem 1.6rem; border-radius: 10px; font-family: var(--font-body);
  font-weight: 700; font-size: 0.95rem; cursor: pointer; border: 1px solid transparent;
  transition: var(--transition); letter-spacing: 0.01em; white-space: nowrap;
}
.btn--sm { padding: 0.55rem 1rem; font-size: 0.85rem; }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.02rem; }
.btn--full { width: 100%; }
.btn .arrow { transition: transform var(--transition); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--glow { background: linear-gradient(135deg, var(--cyan-deep), var(--cyan)); color: #04140d;
  box-shadow: 0 6px 22px rgba(52,211,153,0.28); }
.btn--glow:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(52,211,153,0.42); color: #04140d; }
.btn--ghost { background: var(--surface); border-color: var(--line-1); color: var(--text-0); }
.btn--ghost:hover { border-color: var(--cyan); background: var(--cyan-faint); color: var(--text-0); }
.btn--outline { background: transparent; border-color: var(--line-1); color: var(--text-0); }
.btn--outline:hover { border-color: var(--cyan); background: var(--cyan-faint); color: var(--text-0); }

/* ---------- typography / sections ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--font-mono);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyan);
}
.eyebrow::before { content: ''; width: 24px; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan)); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ''; width: 24px; height: 1px; background: linear-gradient(90deg, var(--cyan), transparent); }

h1, h2, h3 { font-family: var(--font-display); color: var(--text-0); line-height: 1.12; letter-spacing: -0.02em; font-weight: 700; }
.grad { background: linear-gradient(120deg, var(--cyan-bright), var(--blue) 55%, #a3e635); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.section { padding: clamp(3.5rem, 8vw, 7rem) 0; position: relative; z-index: 10; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section--alt { background: linear-gradient(180deg, transparent, rgba(17,29,24,0.6), transparent); }
.section__head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 0.8rem 0 0.6rem; }
.section__head p { color: var(--text-2); font-size: 1.05rem; }
.lede { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--text-1); font-weight: 300; line-height: 1.75; }

/* ---------- hero ---------- */
.hero { position: relative; z-index: 10; padding: clamp(3rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem); }
.hero__inner { max-width: 880px; margin: 0 auto; text-align: center; }
.hero__tag {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 1rem; margin-bottom: 1.6rem;
  background: var(--cyan-faint); border: 1px solid var(--line-1); border-radius: 50px;
  font-family: var(--font-mono); font-size: 0.75rem; color: var(--cyan);
}
.hero h1 { font-size: clamp(2.6rem, 7vw, 5rem); }
.hero__lede { margin: 1.5rem auto 2.4rem; max-width: 660px; }
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__note { margin-top: 1.3rem; font-family: var(--font-mono); font-size: 0.76rem; color: var(--text-mute); }

/* inline hero waitlist */
.hero__form { max-width: 480px; margin: 2rem auto 0; }

/* ---------- signup form ---------- */
.signup__row { display: flex; gap: 0.6rem; }
.signup input[type=email] {
  flex: 1; min-width: 0; padding: 0.95rem 1.1rem; background: var(--bg-1);
  border: 1px solid var(--line-1); border-radius: 10px; color: var(--text-0);
  font-family: var(--font-body); font-size: 1rem; outline: none; transition: var(--transition);
}
.signup input[type=email]:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px var(--cyan-faint); background: var(--bg-2); }
.signup input::placeholder { color: var(--text-mute); }
.signup__fine { margin-top: 0.8rem; font-size: 0.76rem; color: var(--text-mute); }
.form-status { margin-top: 0.7rem; font-size: 0.9rem; min-height: 1.2em; }
.form-status.is-ok { color: var(--cyan-bright); }
.form-status.is-err { color: #fca5a5; }

/* generic form fields (contact + interests) */
.field { padding: 0.9rem 1.1rem; background: var(--bg-1); border: 1px solid var(--line-1); border-radius: 10px;
  color: var(--text-0); font-family: var(--font-body); font-size: 1rem; outline: none; transition: var(--transition); width: 100%; }
.field:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px var(--cyan-faint); background: var(--bg-2); }
textarea.field { resize: vertical; }
.form-grid { display: grid; gap: 0.7rem; }

/* interest checkboxes */
.checks { display: grid; gap: 0.5rem; margin: 0.4rem 0 0.2rem; }
.check { display: flex; align-items: flex-start; gap: 0.6rem; padding: 0.6rem 0.8rem; border: 1px solid var(--line-0);
  border-radius: 10px; background: var(--surface); cursor: pointer; transition: var(--transition); }
.check:hover { border-color: var(--line-1); }
.check input { margin-top: 0.2rem; accent-color: var(--cyan); width: 16px; height: 16px; }
.check span { font-size: 0.9rem; color: var(--text-1); }
.check span b { color: var(--text-0); font-weight: 600; display: block; font-size: 0.92rem; }
.check span small { color: var(--text-2); font-size: 0.78rem; }

/* ---------- cards / grids ---------- */
.grid { display: grid; gap: 1.1rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--glass); backdrop-filter: blur(8px);
  border: 1px solid var(--line-0); border-radius: var(--radius-2); padding: 1.6rem;
  transition: var(--transition); position: relative; overflow: hidden;
}
.card::after { content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(400px circle at var(--mx,50%) var(--my,0%), rgba(52,211,153,0.10), transparent 45%); opacity: 0; transition: opacity var(--transition); }
.card:hover { border-color: var(--line-1); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.35); }
.card:hover::after { opacity: 1; }
.card--accent-left { border-left: 3px solid var(--cyan); }
.card__icon { width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px; background: var(--cyan-faint); border: 1px solid var(--line-1); color: var(--cyan);
  font-size: 1.35rem; margin-bottom: 1rem; }
.card__icon svg { width: 24px; height: 24px; }
.card__num { font-family: var(--font-mono); font-size: 0.78rem; color: var(--cyan); letter-spacing: 0.12em; }
.card h3 { font-size: 1.2rem; margin: 0.3rem 0 0.5rem; }
.card p { color: var(--text-2); font-size: 0.94rem; }

/* feature row */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.feature + .feature { margin-top: clamp(3rem, 7vw, 6rem); }
.feature--reverse > :first-child { order: 2; }
.feature__body h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin-bottom: 1rem; }
.feature__body > p { color: var(--text-1); }
.feature__visual {
  border: 1px solid var(--line-1); border-radius: var(--radius-3); padding: 1.4rem; background: var(--glass);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35); position: relative;
}

/* checklist */
.checklist { list-style: none; display: grid; gap: 0.85rem; margin-top: 1.4rem; }
.checklist li { position: relative; padding-left: 30px; color: var(--text-1); font-size: 0.98rem; }
.checklist li::before {
  content: ''; position: absolute; left: 0; top: 4px; width: 18px; height: 18px; border-radius: 5px;
  background: var(--cyan-faint); border: 1px solid var(--line-1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2334d399' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}
.checklist li strong { color: var(--text-0); }

/* spec / terminal panel (repurposed as signal feed / trace) */
.terminal {
  font-family: var(--font-mono); font-size: 0.86rem; background: #050c09;
  border: 1px solid var(--line-1); border-radius: var(--radius-2); overflow: hidden;
}
.terminal__bar { display: flex; align-items: center; gap: 0.5rem; padding: 0.7rem 1rem; border-bottom: 1px solid var(--line-0); color: var(--text-mute); }
.terminal__dot { width: 10px; height: 10px; border-radius: 50%; background: #23372e; }
.terminal__dot--live { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.terminal__body { padding: 1.2rem 1.3rem; display: grid; gap: 0.5rem; }
.terminal__line { color: var(--text-2); }
.terminal__line b { color: var(--cyan); font-weight: 600; }
.terminal__line .ok { color: var(--cyan-bright); }
.terminal__line .sell { color: var(--rose); }
.terminal__line .gold { color: var(--gold); }

/* spread / opportunity card (buy@ / sell@ / +Δ) */
.spread { font-family: var(--font-mono); background: linear-gradient(180deg, rgba(17,29,24,0.9), rgba(8,13,11,0.92));
  border: 1px solid var(--line-1); border-radius: var(--radius-2); padding: 1.2rem 1.3rem; }
.spread__title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.7rem; }
.spread__pair { color: var(--text-0); font-weight: 600; font-size: 0.95rem; }
.spread__tag { font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan);
  border: 1px solid var(--line-1); border-radius: 50px; padding: 0.18rem 0.55rem; }
.spread__row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: 0.42rem 0; border-bottom: 1px dashed var(--line-0); }
.spread__row:last-child { border-bottom: 0; }
.spread__k { color: var(--text-2); font-size: 0.76rem; }
.spread__v { font-size: 0.95rem; color: var(--text-0); }
.spread__v--buy { color: var(--accent); }
.spread__v--sell { color: var(--rose); }
.spread__v--delta { color: var(--gold); font-weight: 600; }
.spread__foot { margin-top: 0.7rem; font-size: 0.64rem; color: var(--text-mute); }

/* steps */
.steps { display: grid; gap: 1.1rem; counter-reset: step; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start;
  background: var(--glass); border: 1px solid var(--line-0); border-radius: var(--radius-2); padding: 1.4rem 1.5rem; }
.step__num { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  font-family: var(--font-mono); font-weight: 600; color: #04140d; background: linear-gradient(135deg, var(--cyan), var(--blue)); }
.step h3 { font-size: 1.12rem; margin-bottom: 0.35rem; }
.step p { color: var(--text-2); font-size: 0.94rem; }

/* stat strip */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-0);
  border: 1px solid var(--line-0); border-radius: var(--radius-2); overflow: hidden; }
.stat { background: var(--bg-1); padding: 1.8rem 1.2rem; text-align: center; }
.stat__num { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; color: var(--text-0); }
.stat__num .grad { display: inline; }
.stat__label { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-2); margin-top: 0.5rem; }

/* panel */
.panel { background: var(--glass); border: 1px solid var(--line-0); border-radius: var(--radius-2); padding: clamp(1.5rem, 3vw, 2.4rem); }
.panel--accent { border-left: 3px solid var(--cyan); }

/* notice / illustrative callout */
.notice { display: flex; gap: 1rem; align-items: flex-start; background: rgba(251,191,36,0.06);
  border: 1px solid rgba(251,191,36,0.28); border-radius: var(--radius-2); padding: 1.2rem 1.4rem; }
.notice__dot { flex: 0 0 auto; width: 10px; height: 10px; border-radius: 50%; margin-top: 0.35rem;
  background: var(--gold); box-shadow: 0 0 10px var(--gold); }
.notice__title { font-family: var(--font-display); font-weight: 600; color: var(--text-0); margin-bottom: 0.25rem; }
.notice p { color: var(--text-2); font-size: 0.9rem; }

/* pill row */
.pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.2rem; }
.pill { font-family: var(--font-mono); font-size: 0.76rem; padding: 0.4rem 0.85rem; border-radius: 50px;
  background: var(--surface); border: 1px solid var(--line-0); color: var(--text-2); }

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; align-items: stretch; }
.price { display: flex; flex-direction: column; background: var(--glass); border: 1px solid var(--line-0);
  border-radius: var(--radius-2); padding: 1.8rem 1.6rem; position: relative; transition: var(--transition); }
.price:hover { border-color: var(--line-1); transform: translateY(-4px); }
.price--featured { border-color: var(--line-glow); box-shadow: 0 0 0 1px var(--line-1), 0 20px 50px rgba(0,0,0,0.4); }
.price__badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--cyan-deep), var(--cyan)); color: #04140d; font-size: 0.64rem;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.32rem 0.85rem; border-radius: 50px; white-space: nowrap; }
.price__label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan); }
.price__name { font-family: var(--font-display); font-size: 1.4rem; margin: 0.25rem 0 0.6rem; color: var(--text-0); }
.price__amt { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--text-0); line-height: 1; }
.price__amt small { font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-2); font-weight: 400; }
.price__planned { font-family: var(--font-mono); font-size: 0.66rem; color: var(--gold); margin-top: 0.4rem; letter-spacing: 0.04em; }
.price__desc { color: var(--text-2); font-size: 0.9rem; margin: 0.7rem 0 0; }
.price__list { list-style: none; display: grid; gap: 0.55rem; margin: 1.3rem 0; }
.price__list li { padding-left: 1.7rem; position: relative; color: var(--text-1); font-size: 0.9rem; }
.price__list li::before { content: '✓'; position: absolute; left: 0; color: var(--cyan); font-weight: 700; }
.price__list li.no { color: var(--text-mute); }
.price__list li.no::before { content: '–'; color: var(--text-mute); }
.price .btn { margin-top: auto; }

/* faq */
.faq { display: grid; gap: 0.7rem; max-width: 820px; margin: 0 auto; }
.faq__item { border: 1px solid var(--line-0); border-radius: var(--radius-1); background: var(--glass); overflow: hidden; }
.faq__item summary { cursor: pointer; list-style: none; padding: 1.1rem 1.3rem; font-family: var(--font-display);
  font-weight: 600; color: var(--text-0); font-size: 1.02rem; position: relative; padding-right: 3rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; position: absolute; right: 1.2rem; top: 50%; transform: translateY(-50%);
  color: var(--cyan); font-size: 1.4rem; font-weight: 300; }
.faq__item[open] summary::after { content: '\2212'; }
.faq__item .faq__a { padding: 0 1.3rem 1.2rem; color: var(--text-2); }

/* preflaunch band */
.preflaunch { position: relative; z-index: 10; border-top: 1px solid var(--line-0); border-bottom: 1px solid var(--line-0);
  background: linear-gradient(180deg, rgba(17,29,24,0.5), rgba(8,13,11,0.5)); padding: clamp(3rem, 6vw, 5rem) 0; }
.preflaunch__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.preflaunch__copy h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin: 0.6rem 0 0.7rem; }
.preflaunch__copy p { color: var(--text-2); }

/* ---------- footer ---------- */
.site-footer { position: relative; z-index: 10; background: var(--bg-1); border-top: 1px solid var(--line-0); padding-top: clamp(2.5rem, 5vw, 4rem); }
.site-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; }
.site-footer__tag { color: var(--text-2); font-size: 0.9rem; margin: 1rem 0; max-width: 46ch; }
.statusline { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-mute); }
.statusline__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.site-footer__col h3 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cyan); margin-bottom: 1rem; }
.site-footer__col ul { list-style: none; display: grid; gap: 0.55rem; }
.site-footer__col a { color: var(--text-2); font-size: 0.92rem; }
.site-footer__col a:hover { color: var(--cyan); }
.site-footer__disclaimer { padding: 1.4rem 0; border-top: 1px solid var(--line-0); }
.site-footer__disclaimer p { font-size: 0.78rem; color: var(--text-mute); max-width: 100ch; }
.site-footer__base { border-top: 1px solid var(--line-0); }
.site-footer__base-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem;
  padding: 1.2rem 0; font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-mute); }

/* ---------- crumbs / page head ---------- */
.page-head { padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2.5rem); position: relative; z-index: 10; }
.crumbs { font-family: var(--font-mono); font-size: 0.76rem; color: var(--text-mute); margin-bottom: 1.2rem; }
.crumbs a { color: var(--text-2); }
.crumbs .sep { margin: 0 0.5rem; opacity: 0.5; }
.page-head h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin: 0.7rem 0; }
.page-head__lede { max-width: 680px; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .fx-orb, .fx-scan, .launchbar__dot, .ticker__track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .feature, .preflaunch__inner { grid-template-columns: 1fr; gap: 2.2rem; }
  .feature--reverse > :first-child { order: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .nav__toggle { display: flex; }
  .nav__list {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0.2rem;
    background: rgba(8,13,11,0.97); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line-1);
    padding: 0.8rem 1.1rem 1.2rem; transform: translateY(-8px); opacity: 0; visibility: hidden; transition: var(--transition);
  }
  .nav__list.open { transform: none; opacity: 1; visibility: visible; }
  .nav__list a { padding: 0.8rem 0.9rem; }
  .nav__cta { justify-content: center; margin-top: 0.4rem; }
}
@media (max-width: 560px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .signup__row { flex-direction: column; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
}
