:root{
  --bg:#05080f;
  --panel:#0a111b;
  --panel2:#0d1622;
  --line:#1a2a3c;
  --text:#f6f8fd;
  --muted:#91a0b6;
  --cyan:#20d9ff;
  --purple:#a44cff;
  --green:#36df9d;
  --radius:16px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  min-height:100vh;
  background:
    radial-gradient(circle at 85% 5%,rgba(32,217,255,.11),transparent 30%),
    radial-gradient(circle at 12% 28%,rgba(164,76,255,.11),transparent 32%),
    linear-gradient(180deg,#05080f 0%,#07101a 55%,#05080f 100%);
  color:var(--text);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.65;
}
a{color:inherit;text-decoration:none}

.launch-topbar{
  position:sticky;
  top:0;
  z-index:50;
  border-bottom:1px solid #152235;
  background:rgba(4,8,14,.94);
  backdrop-filter:blur(16px);
}
.launch-topbar-inner{
  width:min(1120px,calc(100% - 36px));
  height:74px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.launch-brand img{display:block;width:190px;height:50px;object-fit:cover}
.launch-home{
  border:1px solid #22364f;
  border-radius:999px;
  padding:8px 13px;
  color:#cbd7e8;
  font-size:12px;
  font-weight:800;
}
.launch-home:hover{border-color:var(--cyan);color:#e8fcff}

.launch-shell{width:min(920px,calc(100% - 36px));margin:54px auto 80px}
.launch-hero{margin-bottom:24px}
.launch-kicker{
  display:inline-flex;
  border:1px solid rgba(32,217,255,.26);
  border-radius:999px;
  padding:5px 9px;
  background:rgba(32,217,255,.08);
  color:#69e9ff;
  font-size:10px;
  font-weight:900;
  letter-spacing:.15em;
}
.launch-hero h1{
  max-width:820px;
  margin:14px 0 12px;
  font-size:clamp(38px,7vw,72px);
  line-height:.96;
  letter-spacing:-.045em;
}
.launch-hero>p{max-width:760px;margin:0;color:#b8c5d6;font-size:17px}
.launch-updated{display:block;margin-top:14px;color:#71839b;font-size:11px;text-transform:uppercase;letter-spacing:.08em}

.launch-card{
  margin-top:16px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:linear-gradient(180deg,rgba(13,22,34,.95),rgba(8,15,24,.97));
  box-shadow:0 18px 60px rgba(0,0,0,.28);
  padding:26px;
}
.launch-card h2{margin:0 0 8px;font-size:22px;letter-spacing:-.02em}
.launch-card h3{margin:24px 0 7px;font-size:16px;color:#dce7f5}
.launch-card p{margin:8px 0;color:#aebbd0}
.launch-card ul{margin:10px 0 0;padding-left:20px;color:#aebbd0}
.launch-card li+li{margin-top:7px}
.launch-card a{color:#63e6ff;text-decoration:underline;text-decoration-color:rgba(99,230,255,.35);text-underline-offset:3px}
.launch-card strong{color:#eff7ff}

.launch-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin-top:18px}
.launch-grid .launch-card{margin-top:0}
.launch-stat{display:flex;flex-direction:column;gap:5px}
.launch-stat span{color:#6f8198;font-size:10px;font-weight:900;letter-spacing:.12em}
.launch-stat strong{font-size:17px}

.launch-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:22px}
.launch-actions a{
  display:inline-flex;
  align-items:center;
  border:1px solid var(--cyan);
  border-radius:999px;
  padding:10px 15px;
  color:#defaff;
  font-size:12px;
  font-weight:900;
  text-decoration:none;
  background:rgba(32,217,255,.07);
}
.launch-actions a.secondary{border-color:#2a3b53;color:#c3cfdf;background:#0a121d}

.launch-footer{
  width:min(920px,calc(100% - 36px));
  margin:0 auto 34px;
  padding-top:18px;
  border-top:1px solid #152235;
  display:flex;
  justify-content:space-between;
  gap:18px;
  color:#75869c;
  font-size:11px;
}
.launch-footer nav{display:flex;gap:14px;flex-wrap:wrap}
.launch-footer a:hover{color:var(--cyan)}

.error-shell{min-height:calc(100vh - 108px);display:grid;place-items:center;padding:50px 18px}
.error-card{width:min(720px,100%);text-align:center;border:1px solid var(--line);border-radius:24px;padding:42px 24px;background:rgba(8,15,24,.92);box-shadow:0 24px 80px rgba(0,0,0,.35)}
.error-code{font-size:clamp(72px,18vw,150px);line-height:.8;font-weight:950;letter-spacing:-.08em;background:linear-gradient(100deg,var(--cyan),#6d9dff,var(--purple));-webkit-background-clip:text;background-clip:text;color:transparent}
.error-card h1{font-size:clamp(27px,5vw,42px);margin:24px 0 8px}
.error-card p{max-width:540px;margin:0 auto;color:#a9b7c9}
.error-card .launch-actions{justify-content:center}

@media (max-width:700px){
  .launch-shell{margin-top:38px}
  .launch-grid{grid-template-columns:1fr}
  .launch-card{padding:21px}
  .launch-footer{flex-direction:column}
  .launch-brand img{width:165px;height:46px}
}
