:root {
  color-scheme: dark;
  --bg: #070a12;
  --panel: #11182a;
  --panel-2: #151f36;
  --text: #f4f7ff;
  --muted: #aebbd6;
  --blue: #4c8dff;
  --cyan: #55d7ff;
  --line: rgba(255, 255, 255, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 15% -10%, rgba(76, 141, 255, 0.25), transparent 32rem),
    radial-gradient(circle at 90% 10%, rgba(85, 215, 255, 0.13), 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.65;
}
a { color: var(--cyan); }
.wrap { width: min(1080px, calc(100% - 32px)); margin: 0 auto; }
header {
  position: sticky;
  top: 0;
  z-index: 4;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 10, 18, 0.82);
  backdrop-filter: blur(16px);
}
nav { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: flex; align-items: center; gap: 11px; color: var(--text); text-decoration: none; font-weight: 800; }
.mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(85, 215, 255, 0.4);
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), #273b88);
  box-shadow: 0 8px 24px rgba(76, 141, 255, 0.25);
}
.links { display: flex; gap: 18px; font-size: 0.92rem; }
.links a { color: var(--muted); text-decoration: none; }
.hero { padding: 100px 0 72px; }
.hero-grid { display: grid; grid-template-columns: 1.35fr 0.65fr; gap: 42px; align-items: center; }
.eyebrow { color: var(--cyan); font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.76rem; }
h1 { margin: 10px 0 20px; max-width: 800px; font-size: clamp(2.6rem, 7vw, 5rem); line-height: 1.02; letter-spacing: -0.055em; }
h2 { margin-top: 0; font-size: clamp(1.6rem, 4vw, 2.35rem); line-height: 1.18; }
h3 { margin-bottom: 4px; }
.lead { max-width: 720px; color: var(--muted); font-size: 1.12rem; }
.pill { display: inline-flex; margin-top: 22px; padding: 10px 15px; border: 1px solid rgba(85, 215, 255, 0.35); border-radius: 999px; color: #dff8ff; background: rgba(85, 215, 255, 0.08); }
.console {
  min-height: 320px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(21, 31, 54, 0.95), rgba(11, 16, 29, 0.96));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}
.disc { width: 116px; aspect-ratio: 1; margin: 8px auto 28px; border-radius: 50%; background: radial-gradient(circle, var(--bg) 0 14%, #8798ff 15% 20%, #263ea2 21% 43%, #6fcaff 44% 46%, #111a38 47%); box-shadow: 0 0 46px rgba(76, 141, 255, 0.36); }
.stat { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-top: 1px solid var(--line); color: var(--muted); }
.stat strong { color: var(--text); }
section { padding: 68px 0; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: rgba(17, 24, 42, 0.76); }
.card p, .copy p, .copy li { color: var(--muted); }
.copy { max-width: 820px; }
.copy h2 { margin-top: 2.2em; }
.copy h2:first-child { margin-top: 0; }
.notice { padding: 18px 20px; border-left: 3px solid var(--cyan); background: rgba(85, 215, 255, 0.08); color: #dff8ff; }
footer { margin-top: 60px; padding: 30px 0 50px; border-top: 1px solid var(--line); color: var(--muted); }
footer .wrap { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
footer a { color: var(--muted); }
@media (max-width: 760px) {
  .hero { padding-top: 68px; }
  .hero-grid, .grid { grid-template-columns: 1fr; }
  .links { display: none; }
}
