:root {
  --bg: #0a0a0a;
  --bg-card: #111111;
  --bg-card-hover: #161616;
  --fg: #f0ede6;
  --fg-muted: #8a8780;
  --fg-faint: #4a4a48;
  --accent: #f59e0b;
  --accent-dim: rgba(245,158,11,0.12);
  --accent-border: rgba(245,158,11,0.25);
  --terminal-bg: #0d0d0d;
  --terminal-border: #222222;
  --row-faded: rgba(240,237,230,0.04);
  --font-serif: 'IBM Plex Serif', Georgia, serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-serif);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 clamp(24px, 5vw, 80px);
  height: 60px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--terminal-border);
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.nav-brand {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: 0.08em;
}
.nav-tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}
.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-link {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--fg); }
.nav-subscribe-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--bg);
  background: var(--accent);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}
.nav-subscribe-btn:hover { opacity: 0.85; }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding-top: 60px;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 0;
  right: 50%;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(245,158,11,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-eyebrow {
  grid-column: 1;
  padding: clamp(80px, 12vh, 140px) clamp(24px, 5vw, 80px) 0;
}
.mono-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  border: 1px solid var(--accent-border);
  padding: 5px 10px;
  display: inline-block;
}
.hero-headline {
  grid-column: 1;
  padding: 28px clamp(24px, 5vw, 80px) 0;
  font-size: clamp(56px, 8vw, 108px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-right {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: clamp(80px, 12vh, 140px) clamp(24px, 5vw, 80px) 0 40px;
  justify-content: center;
}
.hero-sub {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.hero-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* TERMINAL */
.terminal-block {
  background: var(--terminal-bg);
  border: 1px solid var(--terminal-border);
  border-radius: 8px;
  overflow: hidden;
}
.terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--terminal-border);
  background: rgba(255,255,255,0.02);
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red { background: #3a1a1a; }
.dot-amber { background: #2a2200; }
.dot-green { background: #1a2a1a; }
.terminal-title {
  font-size: 10px;
  color: var(--fg-faint);
  letter-spacing: 0.08em;
  margin-left: 4px;
}
.terminal-body {
  padding: 12px 0;
}
.tl-row {
  display: grid;
  grid-template-columns: 46px 88px 1fr 110px 52px;
  gap: 8px;
  align-items: center;
  padding: 7px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.tl-row:last-child { border-bottom: none; }
.tl-row--faded { opacity: 0.45; }
.tl-time { color: var(--fg-faint); }
.tl-wallet { color: var(--fg-muted); font-size: 10px; }
.tl-market { color: var(--fg); font-size: 10px; }
.tl-pos { color: var(--accent); font-size: 10px; }
.pnl-pos { color: #4ade80; }
.pnl-neg { color: #f87171; }
.terminal-footer {
  padding: 8px 14px;
  font-size: 10px;
  color: var(--fg-faint);
  border-top: 1px solid var(--terminal-border);
  background: rgba(255,255,255,0.02);
}

/* MANIFESTO */
.manifesto {
  padding: clamp(80px, 10vh, 120px) clamp(24px, 5vw, 80px);
  border-top: 1px solid var(--terminal-border);
  border-bottom: 1px solid var(--terminal-border);
  background: linear-gradient(180deg, var(--bg) 0%, #0d0d0d 100%);
}
.manifesto-inner {
  max-width: 760px;
}
.manifesto-text {
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.65;
  color: var(--fg-muted);
  font-weight: 300;
  margin-bottom: 28px;
}
.manifesto-text:last-child { margin-bottom: 0; }

/* FEATURES */
.features {
  padding: clamp(80px, 10vh, 120px) clamp(24px, 5vw, 80px);
  background: var(--bg);
}
.section-title {
  font-size: clamp(11px, 1.2vw, 13px);
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 52px;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border: 1px solid var(--terminal-border);
}
.feature-card {
  padding: 36px 32px;
  background: var(--bg-card);
  border: 1px solid var(--terminal-border);
  transition: background 0.2s;
}
.feature-card:hover { background: var(--bg-card-hover); }
.feature-icon {
  margin-bottom: 20px;
}
.feature-title {
  font-size: 17px;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feature-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* HOW */
.how {
  padding: clamp(80px, 10vh, 120px) clamp(24px, 5vw, 80px);
  background: #0d0d0d;
  border-top: 1px solid var(--terminal-border);
  border-bottom: 1px solid var(--terminal-border);
}
.steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-top: 0;
}
.step { }
.step-num {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 16px;
}
.step-title {
  font-size: 18px;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 12px;
}
.step-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* CLOSING */
.closing {
  padding: clamp(100px, 14vh, 160px) clamp(24px, 5vw, 80px);
  background: var(--bg);
  text-align: center;
}
.closing-inner { max-width: 680px; margin: 0 auto; }
.closing-statement {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.3;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.closing-sub {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 36px;
}
.closing-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}
.cta-btn {
  font-family: var(--font-mono);
  font-size: 12px;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
  display: inline-block;
}
.cta-btn:hover { opacity: 0.85; }
.cta-btn--primary {
  background: var(--accent);
  color: var(--bg);
}
.cta-btn--secondary {
  border: 1px solid var(--accent-border);
  color: var(--fg-muted);
}
.closing-note {
  font-size: 11px;
  color: var(--fg-faint);
}

/* FOOTER */
.footer {
  padding: 28px clamp(24px, 5vw, 80px);
  border-top: 1px solid var(--terminal-border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
}
.footer-copy {
  font-size: 11px;
  color: var(--fg-faint);
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-link {
  font-size: 11px;
  color: var(--fg-faint);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--fg-muted); }

/* UTILITY */
.mono-text { font-family: var(--font-mono); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; }
  .hero-headline { grid-column: 1; font-size: clamp(44px, 12vw, 72px); }
  .hero-right { grid-column: 1; padding: 0 clamp(24px, 5vw, 80px); }
  .hero-eyebrow { padding-top: 100px; }
  .hero::before { right: 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .tl-row { grid-template-columns: 40px 70px 1fr 90px 40px; font-size: 10px; }
  .footer-inner { flex-direction: column; gap: 12px; align-items: flex-start; }
  .footer-links { gap: 16px; }
  .nav-actions { gap: 12px; }
  .closing-actions { flex-direction: column; }
}