:root {
  --bg: #07090b;
  --bg-2: #0d1216;
  --card: #11181d;
  --line: #1e2a31;
  --text: #e8f1f4;
  --muted: #7d8f98;
  --accent: #00e5ff;
  --accent-2: #00b3cc;
  --up: #1fd18b;
  --down: #ff3b5c;
  --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(800px 500px at 85% -10%, rgba(0,229,255,.14), transparent 60%),
    radial-gradient(600px 400px at -10% 30%, rgba(0,229,255,.06), transparent 60%);
}
a { color: inherit; text-decoration: none; }
.accent { color: var(--accent); }
.up { color: var(--up); }
.down { color: var(--down); }
.muted { color: var(--muted); }
.small { font-size: 13px; }
.center { text-align: center; margin-top: 32px; }

/* Ticker tape */
.tape {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  white-space: nowrap;
}
.tape-track { display: inline-flex; gap: 40px; padding: 8px 0; animation: tape 40s linear infinite; }
.tape-track span { color: var(--muted); }
.tape-track b { color: var(--text); }
.tape-track i { font-style: normal; margin-left: 6px; }
.tape-track i.up { color: var(--up); }
.tape-track i.down { color: var(--down); }
@keyframes tape { to { transform: translateX(-50%); } }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px max(16px, calc((100vw - 1160px) / 2));
  background: rgba(7,9,11,.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: .08em; }
.nav-links { display: flex; gap: 28px; font-size: 14px; color: var(--muted); }
.nav-links a:hover { color: var(--text); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 24px;
  border-radius: 10px; border: 1px solid transparent;
  font: 700 15px Inter, sans-serif; cursor: pointer;
  transition: transform .15s, background .15s, border-color .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { height: 38px; padding: 0 16px; font-size: 14px; }
.btn-primary { background: var(--accent); color: #001419; }
.btn-primary:hover { background: #5ff0ff; }
.btn-outline { border-color: var(--line); background: var(--card); color: var(--text); }
.btn-outline:hover { border-color: var(--accent); }
.btn-ghost { background: rgba(0,229,255,.1); color: var(--accent); }
.btn-ghost:disabled { opacity: .4; cursor: not-allowed; }
.is-soon { opacity: .45; cursor: not-allowed; pointer-events: none; }

/* Layout */
main { max-width: 1160px; margin: 0 auto; padding: 0 16px; }
.section { padding: 80px 0 0; }
h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 900; letter-spacing: -.02em; margin-bottom: 32px; }
h3 { font-size: 18px; font-weight: 800; margin-bottom: 6px; }

/* Hero */
.hero {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center;
  padding-top: 72px;
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(0,229,255,.08); border: 1px solid rgba(0,229,255,.25);
  color: var(--accent); font-size: 13px; font-weight: 600;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--up); box-shadow: 0 0 10px var(--up); animation: blink 1.6s infinite; }
@keyframes blink { 50% { opacity: .3; } }
h1 {
  font-size: clamp(48px, 8vw, 92px); line-height: .98; font-weight: 900; letter-spacing: -.04em;
  margin: 20px 0;
}
.lead { font-size: 18px; color: var(--muted); max-width: 540px; }
.lead b { color: var(--text); }

.ca-box {
  margin: 28px 0 24px; padding: 14px 16px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  max-width: 560px;
}
.ca-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 6px; }
.ca-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.ca-row code { font-family: "JetBrains Mono", monospace; font-size: 14px; word-break: break-all; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* Status panel */
.panel {
  background: linear-gradient(180deg, var(--card), var(--bg-2));
  border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(0,229,255,.05);
  overflow: hidden;
}
.panel-head, .panel-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px; font-size: 13px; color: var(--muted);
}
.panel-head { border-bottom: 1px solid var(--line); font-weight: 600; }
.panel-foot { border-top: 1px solid var(--line); font-size: 11px; }
.badge-red { color: var(--down); font-weight: 700; font-family: "JetBrains Mono", monospace; font-size: 12px; }
.status { list-style: none; padding: 8px 20px; }
.status li { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; font-size: 14px; border-bottom: 1px dashed var(--line); }
.status li:last-child { border-bottom: 0; }
.status li.sep { padding: 0; border-bottom: 1px solid var(--accent); opacity: .3; margin: 4px 0; }
.status span { color: var(--muted); }
.status b { font-family: "JetBrains Mono", monospace; font-size: 13px; text-align: right; }

/* Cards */
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card {
  padding: 28px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .2s;
}
.card:hover { border-color: rgba(0,229,255,.4); }
.card p, .steps p { color: var(--muted); font-size: 15px; }
.card-num { font-family: "JetBrains Mono", monospace; color: var(--accent); font-size: 13px; margin-bottom: 16px; }

.steps { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.steps li {
  display: flex; gap: 16px; padding: 22px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
}
.steps li > span {
  flex: none; width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(0,229,255,.1); color: var(--accent); font-weight: 800;
}

.stat { padding: 22px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); }
.stat-k { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.stat-v { font-size: 22px; font-weight: 800; margin-top: 4px; }

.disclaimer p {
  font-size: 13px; color: var(--muted);
  padding: 20px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-2);
}
.disclaimer b { color: var(--text); }

/* Footer */
.footer {
  max-width: 1160px; margin: 80px auto 0; padding: 32px 16px 48px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
}
.footer-links { display: flex; gap: 24px; font-size: 14px; color: var(--muted); }
.footer-links a:hover { color: var(--accent); }

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 48px; }
  .grid3 { grid-template-columns: 1fr; }
  .grid4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 480px) {
  .cta-row .btn { flex: 1 1 100%; }
  .section { padding-top: 56px; }
}
