:root {
  --bg: #0D0D0D;
  --surface: #141414;
  --surface2: #1E1E1E;
  --border: #2A2A2A;
  --fg: #F0EDE8;
  --fg-muted: #8A8A8A;
  --accent: #00FF88;
  --accent-dim: rgba(0,255,136,0.12);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Syne', sans-serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 0;
  padding: 80px 80px 80px 80px;
  align-items: center;
}

.hero-eyebrow {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 40px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--accent);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,255,136,0.4); }
  70% { box-shadow: 0 0 0 8px rgba(0,255,136,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,255,136,0); }
}

.hero-content {
  padding-right: 60px;
}

.hero-content h1 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 24px;
}

.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent);
  color: #0D0D0D;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.15s;
}

.btn-primary:hover { opacity: 0.85; }

.btn-ghost {
  background: transparent;
  color: var(--fg-muted);
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.15s, color 0.15s;
}

.btn-ghost:hover { border-color: var(--fg-muted); color: var(--fg); }

/* DASHBOARD CARD */
.hero-dashboard {
  display: flex;
  justify-content: flex-end;
}

.dashboard-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 0 60px rgba(0,255,136,0.06);
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.dash-title {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dash-status {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 20px;
}

.dash-status.running {
  background: var(--accent-dim);
  color: var(--accent);
}

.dash-feed {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.dash-entry {
  display: flex;
  gap: 12px;
  padding: 10px 14px;
  font-size: 12px;
  border-bottom: 1px solid var(--border);
}

.dash-entry:last-child { border-bottom: none; }

.dash-entry.done { opacity: 0.6; }
.dash-entry.active { background: var(--accent-dim); }

.dash-time {
  color: var(--fg-muted);
  font-family: 'DM Sans', monospace;
  white-space: nowrap;
  min-width: 50px;
}

.dash-msg { color: var(--fg); }

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.stat {
  background: var(--surface2);
  padding: 14px 10px;
  text-align: center;
}

.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 10px;
  color: var(--fg-muted);
  margin-top: 2px;
  letter-spacing: 0.05em;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 80px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.manifesto h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 32px;
}

.manifesto p {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* FEATURES */
.features {
  padding: 100px 80px;
}

.features-header {
  margin-bottom: 60px;
}

.features-header h2 {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  margin-bottom: 12px;
}

.features-header p {
  color: var(--fg-muted);
  font-size: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.feature-card {
  background: var(--surface);
  padding: 40px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* HOW IT WORKS */
.howitworks {
  padding: 100px 80px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.howitworks h2 {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  margin-bottom: 60px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.step:last-child { border-bottom: none; }

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
}

.step-body h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-body p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* CLOSING */
.closing {
  padding: 120px 80px;
  text-align: center;
}

.closing h2 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  margin-bottom: 24px;
}

.closing p {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* FOOTER */
footer {
  padding: 40px 80px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 32px;
  }
  .hero-eyebrow { grid-column: 1; }
  .hero-content { padding-right: 0; }
  .hero-dashboard { justify-content: flex-start; }
  .dashboard-card { max-width: 100%; }
  .manifesto { padding: 60px 32px; }
  .features { padding: 60px 32px; }
  .features-grid { grid-template-columns: 1fr; }
  .howitworks { padding: 60px 32px; }
  .closing { padding: 80px 32px; }
  footer { padding: 32px; }
  .footer-inner { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
  .dash-stats { grid-template-columns: repeat(3, 1fr); }
  .step { grid-template-columns: 56px 1fr; }
}