:root {
  --cyan: #00FFEF;
  --cyan-dim: #00c8ba;
  --cyan-subtle: rgba(0,255,239,0.06);
  --black: #000;
  --surface: #0a0a0a;
  --surface2: #111;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.15);
  --text: #d4d4d4;
  --text-muted: rgba(212,212,212,0.4);
  --text-soft: rgba(212,212,212,0.65);
  --accent: #00FFEF;
  --font-display: 'Rajdhani', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-display);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; height: 58px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  z-index: 100;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text); text-decoration: none;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none;
  padding: 6px 14px; border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.btn-primary {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--black); background: var(--accent);
  border: none; border-radius: 4px; padding: 8px 20px;
  cursor: pointer; transition: opacity 0.2s; text-decoration: none;
}
.btn-primary:hover { opacity: 0.85; }
.btn-ghost {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-soft); background: transparent;
  border: 1px solid var(--border-hover); border-radius: 4px;
  padding: 8px 20px; cursor: pointer; transition: all 0.2s; text-decoration: none;
}
.btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.25); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 120px 48px 80px;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 28px;
}
.hero h1 {
  font-size: 72px; font-weight: 700;
  letter-spacing: 0.03em; line-height: 0.95;
  text-transform: uppercase; margin-bottom: 28px;
  color: var(--text);
}
.hero h1 .accent { color: var(--accent); }
.hero-sub {
  font-family: var(--font-mono);
  font-size: 13px; color: var(--text-muted);
  max-width: 480px; line-height: 1.9;
  margin: 0 auto 44px;
}
.hero-ctas { display: flex; gap: 12px; justify-content: center; margin-bottom: 80px; }
.hero-divider {
  width: 1px; height: 48px; background: var(--border);
  margin: 0 auto 32px;
}
.hero-stats {
  display: flex; gap: 64px; justify-content: center;
}
.hero-stat-num {
  font-size: 28px; font-weight: 700; color: var(--text);
  letter-spacing: 0.04em; margin-bottom: 6px;
}
.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.15em;
  color: var(--text-muted); text-transform: uppercase;
}

/* BAND */
.band { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 18px 0; }
.band-track { display: flex; gap: 12px; animation: slide 28s linear infinite; }
.band-pill {
  display: flex; align-items: center; gap: 10px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 4px; padding: 10px 18px;
  white-space: nowrap; flex-shrink: 0;
  transition: border-color 0.2s;
}
.band-pill:hover { border-color: var(--border-hover); }
.band-pill-num { font-family: var(--font-mono); font-size: 10px; color: var(--text-muted); }
.band-pill-name { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); }
.band-tag { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; padding: 2px 7px; border-radius: 3px; }
.tag-live { color: var(--accent); border: 1px solid rgba(0,255,239,0.2); background: rgba(0,255,239,0.05); }
.tag-beta { color: #7c6fff; border: 1px solid rgba(124,111,255,0.2); background: rgba(124,111,255,0.05); }
.tag-soon { color: var(--text-muted); border: 1px solid var(--border); }
@keyframes slide { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* SECTION BASE */
.section { padding: 96px 48px; max-width: 1080px; margin: 0 auto; }
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 16px;
}
.section-title {
  font-size: 44px; font-weight: 700;
  letter-spacing: 0.03em; text-transform: uppercase;
  line-height: 1; margin-bottom: 16px; color: var(--text);
}
.section-title .accent { color: var(--accent); }
.section-desc {
  font-family: var(--font-mono);
  font-size: 12px; color: var(--text-muted);
  line-height: 1.9; max-width: 480px;
}
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* GET STARTED */
.getstarted-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start; margin-top: 56px;
}
.steps { display: flex; flex-direction: column; }
.step {
  display: flex; gap: 20px;
  padding: 24px 0; border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-mono);
  font-size: 11px; color: var(--text-muted);
  letter-spacing: 0.1em; min-width: 28px; padding-top: 2px;
  transition: color 0.25s;
}
.step:hover .step-num { color: var(--accent); }
.step-title {
  font-size: 15px; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  margin-bottom: 6px; color: var(--text);
}
.step-desc {
  font-family: var(--font-mono);
  font-size: 11px; color: var(--text-muted); line-height: 1.8;
}

/* CODE BOX */
.code-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
  position: sticky; top: 76px;
}
.code-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 18px; border-bottom: 1px solid var(--border);
}
.code-dots { display: flex; gap: 5px; }
.code-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); }
.code-filename { font-family: var(--font-mono); font-size: 10px; color: var(--text-muted); letter-spacing: 0.1em; }
.code-body { padding: 22px; font-family: var(--font-mono); font-size: 11px; line-height: 2.1; }
.c-comment { color: rgba(255,255,255,0.2); }
.c-key { color: #7c6fff; }
.c-str { color: var(--accent); opacity: 0.8; }
.c-val { color: var(--text); }
.c-ok { color: var(--accent); opacity: 0.7; }

/* MODULES GRID */
.modules-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 8px;
  overflow: hidden; margin-top: 56px;
}
.mod-card {
  background: var(--black);
  padding: 28px; transition: background 0.2s; cursor: default;
}
.mod-card:hover { background: var(--surface); }
.mod-id {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 12px;
}
.mod-name {
  font-size: 20px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text); margin-bottom: 10px;
}
.mod-desc {
  font-family: var(--font-mono);
  font-size: 11px; color: var(--text-muted); line-height: 1.8;
  margin-bottom: 18px;
}
.mod-features { display: flex; flex-direction: column; gap: 7px; }
.mod-feat {
  font-family: var(--font-mono);
  font-size: 10px; color: var(--text-muted);
  display: flex; align-items: center; gap: 8px;
}
.mod-feat::before {
  content: ''; width: 3px; height: 3px;
  border-radius: 50%; background: var(--text-muted); flex-shrink: 0;
}

/* STATUS */
.status-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 56px; align-items: start; }
.status-list { display: flex; flex-direction: column; gap: 0; }
.status-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.status-item:last-child { border-bottom: none; }
.status-name { font-size: 14px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--text); }
.status-sub { font-family: var(--font-mono); font-size: 10px; color: var(--text-muted); margin-top: 3px; }
.pill { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 10px; border-radius: 3px; }
.pill-on { color: var(--accent); border: 1px solid rgba(0,255,239,0.2); background: rgba(0,255,239,0.05); }
.pill-beta { color: #7c6fff; border: 1px solid rgba(124,111,255,0.2); background: rgba(124,111,255,0.05); }
.pill-off { color: var(--text-muted); border: 1px solid var(--border); }

/* TERMINAL */
.terminal { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.terminal-header { padding: 12px 18px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 6px; }
.t-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); }
.terminal-label { font-family: var(--font-mono); font-size: 10px; color: var(--text-muted); letter-spacing: 0.1em; margin-left: 6px; }
.terminal-body { padding: 20px; font-family: var(--font-mono); font-size: 11px; line-height: 2.2; }
.t-p { color: var(--accent); margin-right: 8px; opacity: 0.7; }
.t-c { color: var(--accent); opacity: 0.6; }
.t-m { color: var(--text-muted); }
.t-v { color: #7c6fff; }

/* CTA */
.cta-wrap { padding: 100px 48px; text-align: center; }
.cta-wrap h2 { font-size: 52px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; line-height: 1; color: var(--text); margin-bottom: 16px; }
.cta-wrap h2 .accent { color: var(--accent); }
.cta-sub { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); margin-bottom: 36px; letter-spacing: 0.08em; }
.cta-btns { display: flex; gap: 12px; justify-content: center; }

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 48px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo { font-family: var(--font-display); font-size: 14px; font-weight: 700; letter-spacing: 0.22em; color: var(--text-muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-family: var(--font-mono); font-size: 10px; color: var(--text-muted); letter-spacing: 0.08em; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }

@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hero h1 { font-size: 40px; }
  .hero-stats { gap: 32px; }
  .getstarted-grid, .status-grid { grid-template-columns: 1fr; gap: 40px; }
  .section { padding: 64px 24px; }
  .cta-wrap { padding: 64px 24px; }
  footer { flex-direction: column; gap: 20px; text-align: center; }
}
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-thumb { background: var(--border); }