:root {
  --bg: #0f0f1a;
  --bg-surface: #1a1a2e;
  --bg-elevated: #232340;
  --accent: #ff6b6b;
  --accent-dim: rgba(255, 107, 107, 0.12);
  --text: #f0ede8;
  --text-muted: rgba(240, 237, 232, 0.5);
  --text-dim: rgba(240, 237, 232, 0.3);
  --border: rgba(255, 255, 255, 0.08);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 15, 26, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--text);
  letter-spacing: -0.5px;
}
nav { display: flex; gap: 32px; }
nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover { color: var(--text); }

/* HERO */
.hero {
  padding: 80px 24px 64px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-lede {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 40px;
}
.hero-stat-row {
  display: flex;
  gap: 40px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-val {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-display);
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* TERMINAL */
.terminal-window {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.terminal-bar {
  background: var(--bg-elevated);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }
.terminal-title {
  font-size: 12px;
  color: var(--text-dim);
  margin-left: 8px;
  font-family: 'Courier New', monospace;
}
.terminal-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 240px;
}
.t-line {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: var(--text-muted);
}
.t-dim { color: var(--text-dim); }
.t-success { color: #28c840; }
.cursor-line { display: flex; }
.cursor { color: var(--accent); animation: blink 1s step-end infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* MANIFESTO */
.manifesto {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 24px;
}
.manifesto-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.manifesto-text {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.8;
}
.manifesto-text strong { color: var(--text); }

/* SECTIONS */
.section-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}

/* FEATURES */
.features { padding: 80px 24px; }
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-card {
  background: var(--bg-surface);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--bg-elevated); }
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.feature-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
}
.feature-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* PROOF */
.proof {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 80px 24px;
}
.proof-inner { max-width: 1100px; margin: 0 auto; }
.proof-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.proof-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  display: inline-block;
}
.proof-label-human { color: var(--text-dim); }
.proof-label-velox { color: var(--accent); }
.proof-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.proof-list li {
  font-size: 15px;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.proof-list li::before {
  content: '—';
  position: absolute;
  left: 0;
}
.proof-list-human li { color: var(--text-dim); }
.proof-list-velox li { color: var(--text-muted); }
.proof-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 0 48px;
}

/* CLOSING */
.closing {
  padding: 96px 24px;
  text-align: center;
}
.closing-inner { max-width: 640px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.closing-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-wordmark {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  display: block;
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--text-dim);
}
.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-headline { font-size: 32px; }
  .hero-stat-row { gap: 24px; }
  .stat-val { font-size: 22px; }
  .features-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; gap: 32px; }
  .proof-divider { display: none; }
  nav { display: none; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
  .closing { padding: 64px 24px; }
}