@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Mono:ital,wght@0,400;0,700;1,400&family=Sora:wght@300;400;500;600;700&display=swap');

/* ─── DESIGN TOKENS ───────────────────────────────── */
:root {
  --bg:          #04040A;
  --surface:     #08081280;
  --surface-s:   #0C0C18;
  --border:      rgba(255,255,255,0.07);
  --border-m:    rgba(255,255,255,0.13);

  --accent:      #00E5C8;
  --accent-dim:  rgba(0,229,200,0.12);
  --accent-glow: 0 0 40px rgba(0,229,200,0.3);

  --green:       #00E676;
  --green-dim:   rgba(0,230,118,0.12);

  --red:         #FF3366;
  --red-dim:     rgba(255,51,102,0.12);

  --gold:        #FFB300;
  --gold-dim:    rgba(255,179,0,0.12);

  --text:        #EEEEF5;
  --text-2:      #9999B0;
  --text-3:      #55556A;

  --font-d: 'Bebas Neue', sans-serif;
  --font-m: 'Space Mono', monospace;
  --font-b: 'Sora', sans-serif;

  --max: 1280px;
  --nav-h: 72px;
  --radius: 4px;
  --radius-m: 8px;
}

/* ─── RESET ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; width: 100%; max-width: 100%; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-weight: 400;
  line-height: 1.6;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
main { overflow-x: clip; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ─── TICKER TAPE ─────────────────────────────────── */
.ticker-wrap {
  background: var(--accent);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 200;
}
.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 45s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
  font-family: var(--font-m);
  font-size: 11px;
  font-weight: 700;
  color: var(--bg);
  letter-spacing: 0.05em;
}
.ticker-item .up   { color: #005040; }
.ticker-item .down { color: #800020; }
.ticker-sep { color: #005040; opacity: 0.5; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── NAVBAR ──────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(4,4,10,0.85);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-m);
  font-size: 14px;
  font-weight: 700;
  color: var(--bg);
}
.nav-logo-text {
  font-family: var(--font-d);
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--text);
}
.nav-logo-text span { color: var(--accent); }
.nav-inner, .hero-inner, .page-hero-inner, .footer-grid, .footer-bottom, .footer-standards, .story-spotlight, .pricing-lifetime-card, .bot-step {
  width: 100%;
  min-width: 0;
}
.nav-logo, .nav-cta, .page-hero-copy, .page-hero-visual, .footer-standard-card, .footer-standard-body, .blog-body, .testi-author { min-width: 0; }
.brand-mark {
  display: block;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.brand-mark-nav {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 12px 24px rgba(0,229,200,0.18));
}
.brand-mark-footer {
  width: 46px;
  height: 46px;
  filter: drop-shadow(0 14px 28px rgba(0,229,200,0.14));
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.02em;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); background: var(--accent-dim); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.2s;
  border: none;
}
.btn-outline {
  border: 1px solid var(--border-m);
  color: var(--text-2);
  background: transparent;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-primary {
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
}
.btn-primary:hover {
  background: #fff;
  box-shadow: var(--accent-glow);
  transform: translateY(-1px);
}
.btn-danger {
  background: var(--red);
  color: #fff;
  font-weight: 700;
}
.btn-danger:hover { filter: brightness(1.15); transform: translateY(-1px); }
.btn-gold {
  background: var(--gold);
  color: var(--bg);
  font-weight: 700;
}
.btn-gold:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-lg { padding: 14px 32px; font-size: 15px; }
.btn-sm { padding: 7px 16px; font-size: 12px; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}
.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(4,4,10,0.97);
  backdrop-filter: blur(20px);
  z-index: 99;
  padding: 32px 24px;
  flex-direction: column;
  gap: 8px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-2);
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.nav-mobile a:hover { color: var(--accent); border-color: var(--accent); }
.nav-mobile .btn-primary { margin-top: 8px; justify-content: center; background-color: var(--bg); }

/* ─── SECTION BASICS ──────────────────────────────── */
.section { padding: 96px 24px; }
.section-sm { padding: 64px 24px; }
.container { max-width: var(--max); margin: 0 auto; width: 100%; min-width: 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent);
}
.section-title {
  font-family: var(--font-d);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: 0.04em;
  color: var(--text);
}
.section-title span { color: var(--accent); }
.section-sub {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 600px;
  margin-top: 16px;
}

/* ─── DIVIDER SLASH ───────────────────────────────── */
.slash-divider {
  height: 60px;
  background: linear-gradient(135deg, var(--bg) 49.5%, var(--surface-s) 50%);
}
.slash-divider.rev {
  background: linear-gradient(135deg, var(--surface-s) 49.5%, var(--bg) 50%);
}

/* ─── SIGNAL CARD ─────────────────────────────────── */
.signal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 16px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.signal-card:hover { border-color: var(--border-m); transform: translateY(-2px); }
.signal-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
}
.signal-card.long::before  { background: var(--green); }
.signal-card.short::before { background: var(--red); }

.signal-pair {
  font-family: var(--font-m);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.05em;
}
.signal-direction {
  display: inline-block;
  font-family: var(--font-m);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 2px;
  letter-spacing: 0.08em;
}
.signal-direction.long  { background: var(--green-dim); color: var(--green); }
.signal-direction.short { background: var(--red-dim);   color: var(--red); }

.signal-data {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.signal-data-item label {
  display: block;
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--text-3);
  text-transform: uppercase;
  margin-bottom: 3px;
}
.signal-data-item span {
  font-family: var(--font-m);
  font-size: 13px;
  color: var(--text);
}
.signal-pnl {
  font-family: var(--font-m);
  font-size: 20px;
  font-weight: 700;
}
.signal-pnl.pos { color: var(--green); }
.signal-pnl.neg { color: var(--red); }

.live-dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px var(--green);
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

/* ─── STAT CARD ───────────────────────────────────── */
.stat-num {
  font-family: var(--font-d);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.stat-label {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-3);
  text-transform: uppercase;
  margin-top: 6px;
}

/* ─── GRID HELPERS ────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ─── FEATURE CARD ────────────────────────────────── */
.feat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.feat-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.feat-icon {
  width: 48px; height: 48px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,200,0.2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.feat-title {
  font-family: var(--font-d);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 8px;
}
.feat-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ─── TESTIMONIAL ─────────────────────────────────── */
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testi-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; }
.testi-quote {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-2);
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-dim), var(--red-dim));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-m);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  border: 1px solid var(--border-m);
  flex-shrink: 0;
}
.testi-name { font-size: 13px; font-weight: 600; color: var(--text); }
.testi-role { font-family: var(--font-m); font-size: 10px; color: var(--text-3); letter-spacing: 0.05em; }

/* ─── PRICING CARD ────────────────────────────────── */
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(0,229,200,0.07) 0%, var(--surface) 60%);
}
.price-card.featured::after {
  content: 'MOST POPULAR';
  position: absolute;
  top: 16px; right: -30px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-m);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 40px;
  transform: rotate(45deg);
  transform-origin: center;
}
.price-name {
  font-family: var(--font-d);
  font-size: 28px;
  letter-spacing: 0.08em;
  color: var(--text);
}
.price-amount {
  font-family: var(--font-m);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  margin: 16px 0 4px;
}
.price-amount sup { font-size: 22px; vertical-align: super; }
.price-amount sub { font-size: 16px; color: var(--text-3); vertical-align: baseline; }
.price-desc { font-size: 13px; color: var(--text-3); margin-bottom: 24px; }
.price-features { margin-bottom: 28px; }
.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-2);
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
  content: '✓';
  font-family: var(--font-m);
  font-size: 12px;
  color: var(--accent);
  flex-shrink: 0;
}
.price-features li.no::before { content: '×'; color: var(--text-3); }
.price-features li.no { color: var(--text-3); }

/* ─── BLOG CARD ───────────────────────────────────── */
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.blog-card:hover { border-color: var(--border-m); transform: translateY(-3px); }
.blog-thumb {
  height: 180px;
  background: var(--surface-s);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.blog-thumb-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d);
  font-size: 72px;
  opacity: 0.07;
}
.blog-tag {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--font-m);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 2px;
  text-transform: uppercase;
}
.blog-body { padding: 20px; }
.blog-meta {
  font-family: var(--font-m);
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.blog-title { font-size: 16px; font-weight: 600; color: var(--text); line-height: 1.4; }
.blog-excerpt { font-size: 13px; color: var(--text-2); margin-top: 8px; line-height: 1.6; }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-m);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-top: 14px;
  transition: gap 0.2s;
}
.blog-card:hover .blog-read-more { gap: 10px; }

/* ─── TABLE ───────────────────────────────────────── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-m);
  font-size: 13px;
}
.data-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-3);
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-m);
}
.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(255,255,255,0.02); }

/* ─── BADGE / TAG ─────────────────────────────────── */
.badge {
  display: inline-block;
  font-family: var(--font-m);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 2px;
  text-transform: uppercase;
}
.badge-green { background: var(--green-dim); color: var(--green); }
.badge-red   { background: var(--red-dim);   color: var(--red); }
.badge-gold  { background: var(--gold-dim);  color: var(--gold); }
.badge-accent{ background: var(--accent-dim);color: var(--accent); }

/* ─── FOOTER ──────────────────────────────────────── */
.footer {
  background: var(--surface-s);
  border-top: 1px solid var(--border);
  padding: 64px 24px 32px;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand-name {
  font-family: var(--font-d);
  font-size: 24px;
  letter-spacing: 0.08em;
  margin: 0;
}
.footer-brand-name span { color: var(--accent); }
.footer-brand-desc { font-size: 14px; color: var(--text-3); line-height: 1.7; max-width: 280px; }
.footer-col-title {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--text-3); transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 12px; color: var(--text-3); }
.footer-copy a { color: var(--text-2); }
.footer-disclaimer { font-size: 11px; color: var(--text-3); max-width: 600px; line-height: 1.6; }

.footer-standards {
  max-width: var(--max);
  margin: 40px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.95fr);
  gap: 18px;
}
.footer-overline {
  display: inline-block;
  margin-bottom: 10px;
  font-family: var(--font-m);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.footer-standards-copy h5 {
  font-family: var(--font-d);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 12px;
}
.footer-standards-copy p,
.footer-standards-note {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.75;
}
.footer-standards-note { margin-top: 10px; }
.footer-standards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.footer-standard-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  background: rgba(12, 18, 26, 0.88);
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.footer-standard-card:hover {
  border-color: var(--border-m);
  transform: translateY(-2px);
  background: rgba(16, 23, 32, 0.96);
}
.footer-standard-mark {
  min-width: 54px;
  height: 54px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,229,200,0.16);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(0,229,200,0.14), rgba(0,229,200,0.04));
  font-family: var(--font-m);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  flex-shrink: 0;
}
.footer-standard-body strong {
  display: block;
  font-family: var(--font-m);
  font-size: 12px;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-standard-body span {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.65;
  color: var(--text-3);
}

/* ─── HERO STYLES ─────────────────────────────────── */
.hero {
  min-height: calc(100vh - 108px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 24px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('/assets/illustrations/alpha-home-orbit.svg') right center / 620px auto no-repeat,
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0,229,200,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 30%, rgba(255,51,102,0.04) 0%, transparent 50%);
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  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: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 20px;
  padding: 6px 14px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,200,0.2);
  border-radius: 2px;
}
.hero-title {
  font-family: var(--font-d);
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-title .accent-line { color: var(--accent); display: block; }
.hero-title .stroke-line {
  -webkit-text-stroke: 2px var(--text);
  color: transparent;
  display: block;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-trust-num {
  font-family: var(--font-m);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}
.hero-trust-label {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-3);
  text-transform: uppercase;
}
.hero-trust-divider,
.score-divider {
  width: 1px;
  flex-shrink: 0;
  background: var(--border-m);
}
.hero-trust-divider { height: 40px; }
.score-divider { height: 72px; }

/* ─── SIGNAL PANEL (hero right) ───────────────────── */
.signal-panel {
  background: var(--surface-s);
  border: 1px solid var(--border-m);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.signal-panel-header {
  padding: 14px 18px;
  background: rgba(0,229,200,0.06);
  border-bottom: 1px solid var(--border-m);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.signal-panel-title {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
}
.signal-panel-list { padding: 8px; display: flex; flex-direction: column; gap: 8px; }

/* ─── CTA SECTION ─────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, rgba(0,229,200,0.08) 0%, rgba(255,51,102,0.05) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 24px;
  text-align: center;
}
.cta-section .section-title { font-size: clamp(36px, 5vw, 72px); }

/* ─── REVEAL ANIMATIONS ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ─── UTILITY ─────────────────────────────────────── */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-red    { color: var(--red); }
.text-green  { color: var(--green); }
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--text-2); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.w-full { width: 100%; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

/* ─── HERO STAT ROW ───────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  overflow: hidden;
  background: var(--surface);
}
.stats-row-item {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
}
.stats-row-item:last-child { border-right: none; }

/* ─── PAGE HERO (inner pages) ─────────────────────── */
.page-hero {
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,229,200,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero-title {
  font-family: var(--font-d);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.page-hero-title span { color: var(--accent); }
.page-hero-sub { font-size: 17px; color: var(--text-2); max-width: 560px; line-height: 1.7; }
.page-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 48px;
  align-items: center;
}
.page-hero-copy {
  max-width: 600px;
}
.page-hero-visual {
  width: 100%;
  max-width: 480px;
  justify-self: end;
}
.page-hero-art-frame {
  position: relative;
  padding: 22px;
  border: 1px solid var(--border-m);
  border-radius: var(--radius-m);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 14%, rgba(0,229,200,0.14), transparent 28%),
    radial-gradient(circle at 18% 84%, rgba(255,51,102,0.1), transparent 24%),
    linear-gradient(180deg, rgba(17,17,31,0.98), rgba(12,12,24,0.98));
  box-shadow: 0 24px 56px rgba(0,0,0,0.28);
}
.page-hero-art-frame::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: calc(var(--radius-m) - 2px);
  pointer-events: none;
}
.page-hero-art {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
}
.story-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 220px);
  gap: 24px;
  align-items: center;
  background:
    radial-gradient(circle at 82% 18%, rgba(0,229,200,0.12), transparent 28%),
    linear-gradient(135deg, rgba(0,229,200,0.08), rgba(255,51,102,0.05));
}
.story-spotlight-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
}
.story-spotlight-title {
  font-family: var(--font-d);
  font-size: 26px;
  letter-spacing: 0.06em;
  color: var(--text);
}
.story-spotlight-text {
  margin-top: 10px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.72;
}
.story-spotlight-art {
  width: 100%;
  max-width: 220px;
  justify-self: end;
}
.pricing-lifetime-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(200px, 0.85fr);
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  padding: 36px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,179,0,0.12), transparent 28%),
    linear-gradient(135deg, rgba(255,179,0,0.08), rgba(0,229,200,0.05));
  border: 1px solid rgba(255,179,0,0.3);
  border-radius: var(--radius-m);
}
.pricing-lifetime-copy p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  margin-top: 8px;
  max-width: 500px;
}
.pricing-lifetime-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.pricing-lifetime-art {
  width: 100%;
  max-width: 220px;
}

/* ─── TIMELINE ────────────────────────────────────── */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  top: 0; left: 12px; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--accent), var(--border) 80%);
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-item::before {
  content: '';
  position: absolute;
  top: 6px; left: -34px;
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
}
.timeline-year {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 6px;
}
.timeline-event { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.timeline-desc { font-size: 14px; color: var(--text-2); line-height: 1.65; }

/* ─── COMPARISON TABLE ────────────────────────────── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table th {
  padding: 16px 20px;
  text-align: center;
  font-family: var(--font-d);
  font-size: 18px;
  letter-spacing: 0.06em;
  border-bottom: 2px solid var(--border-m);
}
.compare-table th:first-child { text-align: left; }
.compare-table th.ours { color: var(--accent); border-bottom-color: var(--accent); }
.compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  color: var(--text-2);
  vertical-align: middle;
}
.compare-table td:first-child { text-align: left; font-weight: 500; color: var(--text); }
.compare-table .yes { color: var(--green); font-family: var(--font-m); font-size: 16px; }
.compare-table .no  { color: var(--red);   font-family: var(--font-m); font-size: 16px; }

/* ─── BOT STEP ────────────────────────────────────── */
.bot-step {
  display: flex;
  gap: 24px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  transition: border-color 0.2s;
}
.bot-step:hover { border-color: var(--accent); }
.bot-step-num {
  font-family: var(--font-d);
  font-size: 48px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.3;
  flex-shrink: 0;
  width: 56px;
}
.bot-step-title { font-family: var(--font-d); font-size: 22px; letter-spacing: 0.04em; margin-bottom: 8px; }
.bot-step-desc { font-size: 14px; color: var(--text-2); line-height: 1.65; }

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-bg { background-size: 520px auto, auto, auto; background-position: right -40px center, center center, center center; }
  .signal-panel { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-standards { grid-template-columns: 1fr; gap: 16px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .page-hero-shell,
  .story-spotlight,
  .pricing-lifetime-card { grid-template-columns: 1fr; }
  .page-hero-visual { justify-self: start; max-width: 560px; }
  .story-spotlight-art,
  .pricing-lifetime-art { justify-self: start; }
}
@media (max-width: 768px) {
  .nav-inner { padding: 0 18px; gap: 14px; }
  .nav-links, .nav-cta { display: none; }
  .nav-logo-text { font-size: 18px; letter-spacing: 0.06em; }
  .nav-mobile { padding: 24px 18px 32px; }
  .nav-hamburger { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stats-row-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-standards-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .section, .hero { padding-left: 20px; padding-right: 20px; }
  .hero-bg { background-size: 440px auto, auto, auto; background-position: center 24%, center center, center center; }
  .page-hero { padding-top: 64px; padding-bottom: 44px; }
  .page-hero-visual { max-width: none; }
  .hero-trust { gap: 16px; }
  .hero-trust-item { flex: 1 1 calc(50% - 8px); min-width: 0; }
  .hero-trust-divider,
  .score-divider { display: none; }
}
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 48px; }
  .hero-eyebrow { width: 100%; justify-content: center; text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .hero-trust { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 12px; }
  .hero-trust-num { font-size: 20px; }
}

/* ─── APP HELPERS ─────────────────────────────────── */
.surface-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 28px;
}

.legal-shell,
.auth-shell {
  padding: 72px 24px 96px;
}

.legal-grid,
.auth-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 32px;
  align-items: start;
}

.legal-card,
.auth-card {
  background: var(--surface);
  border: 1px solid var(--border-m);
  border-radius: var(--radius-m);
  padding: 32px;
}

.auth-copy,
.legal-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.auth-heading,
.legal-heading {
  font-family: var(--font-d);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: 0.04em;
}

.auth-heading span,
.legal-heading span {
  color: var(--accent);
}

.auth-copy p,
.legal-copy p {
  color: var(--text-2);
  line-height: 1.75;
  font-size: 15px;
}

.auth-proof-row,
.legal-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.auth-proof-card,
.legal-summary-card {
  padding: 18px 20px;
  background: var(--surface-s);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
}

.auth-proof-card strong,
.legal-summary-card strong {
  display: block;
  font-family: var(--font-d);
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.auth-proof-card span,
.legal-summary-card span {
  display: block;
  margin-top: 8px;
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-3);
  text-transform: uppercase;
}

.auth-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-label {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-3);
  text-transform: uppercase;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 16px;
  border: 1px solid var(--border-m);
  border-radius: var(--radius);
  background: rgba(12, 12, 24, 0.94);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(0, 229, 200, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 229, 200, 0.12);
}

.form-helper,
.auth-inline-note,
.legal-note {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.6;
}

.auth-link,
.legal-link {
  color: var(--accent);
}

.auth-link:hover,
.legal-link:hover {
  color: var(--text);
}

.form-check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
}

.form-check-row input {
  margin-top: 4px;
  accent-color: var(--accent);
}

.form-alert {
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.65;
}

.form-alert.error {
  background: var(--red-dim);
  border: 1px solid rgba(255, 51, 102, 0.24);
  color: #ff9eb7;
}

.form-alert.success {
  background: var(--green-dim);
  border: 1px solid rgba(0, 230, 118, 0.22);
  color: #91f6be;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.legal-list li {
  display: flex;
  gap: 10px;
  color: var(--text-2);
  line-height: 1.75;
  font-size: 14px;
}

.legal-list li::before {
  content: '•';
  color: var(--accent);
}

.article-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 1024px) {
  .legal-grid,
  .auth-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .auth-form-grid,
  .auth-proof-row,
  .legal-summary-grid,
  .article-stack {
    grid-template-columns: 1fr;
  }

  .legal-shell,
  .auth-shell {
    padding: 56px 20px 72px;
  }

  .legal-card,
  .auth-card {
    padding: 24px;
  }
}
