:root {
  --bg: #0f1117;
  --surface: #1a1d27;
  --border: #2a2d3a;
  --text: #e4e6ed;
  --text-muted: #8b8fa3;
  --accent: #3b82f6;
  --accent-dim: #1e3a5f;
  --ok: #22c55e;
  --ok-dim: #14532d;
  --error: #ef4444;
  --error-dim: #7f1d1d;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

.landing {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 24px;
}

.landing-header {
  margin-bottom: 48px;
}

.landing-header h1 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.subtitle {
  color: var(--text-muted);
  margin-top: 8px;
  font-size: 1.1rem;
}

.status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 48px;
}

.status-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.status-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-ok .status-indicator { background: var(--ok); box-shadow: 0 0 8px var(--ok); }
.status-error .status-indicator { background: var(--error); box-shadow: 0 0 8px var(--error); }

.status-info h3 {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.status-info p {
  font-size: 0.95rem;
  margin-top: 2px;
}

.roadmap h2 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.phases {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.phase {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-left: 2px solid var(--border);
  padding-left: 24px;
  position: relative;
}

.phase:last-child { border-left-color: transparent; }

.phase-marker {
  position: absolute;
  left: -15px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.phase-current .phase-marker {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.phase-content h3 {
  font-size: 1rem;
  font-weight: 500;
}

.phase-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 2px;
}

@media (max-width: 480px) {
  .status-grid { grid-template-columns: 1fr; }
  .landing { padding: 40px 16px; }
}
