:root {
  color-scheme: dark;
  --bg: #080912;
  --panel: rgba(17, 20, 34, .78);
  --panel-strong: #15192b;
  --line: rgba(255,255,255,.1);
  --text: #f4f6ff;
  --muted: #aeb5cc;
  --blue: #8194ff;
  --violet: #b77aff;
  --cyan: #73e6e0;
  --pink: #ff7ccf;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 15% 0%, rgba(129,148,255,.16), transparent 32rem),
    radial-gradient(circle at 90% 15%, rgba(183,122,255,.12), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.nav { display: flex; justify-content: space-between; align-items: center; padding: 28px 0; }
.brand { display: inline-flex; gap: 11px; align-items: center; font-weight: 800; letter-spacing: .16em; }
.brand-mark { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(129,148,255,.55); border-radius: 11px; background: linear-gradient(135deg, #26315e, #17182b); box-shadow: 0 0 30px rgba(129,148,255,.18); }
.brand-mark::after { content: "✦"; color: var(--cyan); font-size: 16px; }
.nav-links { display: flex; gap: 18px; align-items: center; }
.nav-link { color: var(--muted); font-size: 14px; }
.nav-link:hover { color: var(--text); }
.hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; min-height: 640px; padding: 64px 0 90px; }
.eyebrow { display: inline-flex; gap: 8px; align-items: center; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.04); color: var(--cyan); font-size: 12px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
h1 { max-width: 760px; margin: 22px 0 18px; font-size: clamp(42px, 7vw, 76px); line-height: .98; letter-spacing: -.055em; }
h1 span { color: var(--blue); }
.lead { max-width: 610px; color: var(--muted); font-size: 18px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 18px; border-radius: 13px; border: 1px solid var(--line); background: rgba(255,255,255,.05); font-size: 14px; font-weight: 750; transition: transform .2s, border-color .2s, background .2s; }
.btn:hover { transform: translateY(-2px); border-color: rgba(129,148,255,.7); background: rgba(129,148,255,.12); }
.btn.primary { border-color: transparent; background: linear-gradient(135deg, var(--blue), var(--violet)); color: #080912; }
.orb { position: relative; min-height: 380px; display: grid; place-items: center; }
.orb::before, .orb::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(129,148,255,.35); }
.orb::before { width: 280px; height: 280px; box-shadow: 0 0 100px rgba(129,148,255,.2), inset 0 0 70px rgba(183,122,255,.14); }
.orb::after { width: 190px; height: 190px; border-color: rgba(115,230,224,.35); transform: rotate(22deg); }
.orb-core { position: relative; z-index: 1; width: 150px; height: 150px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 42px; background: linear-gradient(145deg, rgba(129,148,255,.3), rgba(183,122,255,.15)); box-shadow: 0 20px 70px rgba(0,0,0,.35); font-size: 62px; }
.orb-label { position: absolute; z-index: 2; right: 2%; bottom: 5%; padding: 13px 16px; border: 1px solid var(--line); border-radius: 14px; background: rgba(14,16,28,.82); color: var(--muted); font-size: 13px; backdrop-filter: blur(12px); }
.orb-label b { display: block; color: var(--text); font-size: 15px; }
.section { padding: 20px 0 90px; }
.section-title { margin: 0 0 24px; font-size: 28px; letter-spacing: -.03em; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(150deg, rgba(255,255,255,.065), rgba(255,255,255,.025)); }
.card-icon { font-size: 26px; }
.card h3 { margin: 16px 0 7px; font-size: 17px; }
.card p { margin: 0; color: var(--muted); font-size: 14px; }
.status { display: inline-flex; gap: 8px; align-items: center; color: var(--muted); font-size: 13px; }
.status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 14px var(--cyan); }
.status.soon::before { background: var(--pink); box-shadow: 0 0 14px var(--pink); }
.footer { display: flex; justify-content: space-between; gap: 20px; padding: 26px 0 34px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.footer a { color: var(--text); }
.notice { margin-top: 24px; padding: 16px 18px; border-left: 3px solid var(--cyan); border-radius: 12px; background: rgba(115,230,224,.07); color: var(--muted); font-size: 14px; }

@media (max-width: 780px) {
  .wrap { width: min(100% - 28px, 620px); }
  .hero { grid-template-columns: 1fr; gap: 18px; min-height: auto; padding: 52px 0 60px; }
  .orb { min-height: 260px; }
  .orb::before { width: 220px; height: 220px; }
  .orb::after { width: 150px; height: 150px; }
  .orb-core { width: 115px; height: 115px; border-radius: 32px; font-size: 48px; }
  .grid { grid-template-columns: 1fr; }
  .footer { flex-direction: column; }
  .nav-links { gap: 10px; }
}
