:root {
  --bg: #060910;
  --bg-soft: #0c121f;
  --panel: #0f1727;
  --text: #eef2ff;
  --muted: #a9b4ce;
  --accent: #2dd4bf;
  --accent-2: #fbbf24;
  --border: rgba(255,255,255,0.08);
  --shadow: 0 25px 80px rgba(0,0,0,0.55);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(45,212,191,0.08), transparent 30%),
              radial-gradient(circle at 80% 10%, rgba(251,191,36,0.08), transparent 28%),
              var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.page { max-width: 1200px; margin: 0 auto; padding: 40px 20px 96px; }
header { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 48px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: 0.5px; }
.logo {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(45,212,191,0.9), rgba(59,130,246,0.6));
  display: grid; place-items: center; font-weight: 800; color: #041016;
  box-shadow: 0 12px 40px rgba(45,212,191,0.35);
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--muted); font-size: 13px;
}
.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: center;
  margin-bottom: 64px;
}
.hero h1 {
  font-size: clamp(32px, 6vw, 52px);
  line-height: 1.1;
  margin: 12px 0 16px;
}
.hero p { color: var(--muted); max-width: 580px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.btn {
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: linear-gradient(120deg, rgba(45,212,191,0.15), rgba(59,130,246,0.08));
  color: var(--text); font-weight: 600; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  box-shadow: 0 12px 30px rgba(45,212,191,0.25);
}
.btn:hover { transform: translateY(-1px); border-color: rgba(255,255,255,0.12); }
.btn.secondary {
  background: rgba(255,255,255,0.04);
  box-shadow: none;
}
.panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}
.label { color: var(--accent); font-weight: 600; letter-spacing: 0.4px; text-transform: uppercase; font-size: 12px; }
.muted { color: var(--muted); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.chip {
  padding: 6px 10px; border-radius: 999px;
  border: 1px solid var(--border); background: rgba(255,255,255,0.03);
  color: var(--muted); font-size: 13px;
}
.section { margin: 64px 0; }
.timeline { display: grid; gap: 12px; }
.step {
  display: grid; grid-template-columns: 48px 1fr; gap: 12px; align-items: start;
  background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 14px; padding: 14px 16px;
}
.badge {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center; font-weight: 700; color: #041016;
  background: linear-gradient(135deg, rgba(45,212,191,0.9), rgba(251,191,36,0.9));
}
.highlight { color: var(--accent-2); font-weight: 600; }
@media (max-width: 640px) {
  header { flex-direction: column; align-items: flex-start; }
  .step { grid-template-columns: 1fr; }
  .badge { width: 36px; height: 36px; }
}
