:root {
  --bg: #071122;
  --bg-2: #06101f;
  --text: #f5f7fb;
  --muted: #97a6c4;
  --line: rgba(255,255,255,.08);
  --accent-soft: rgba(255,90,103,.14);
  --green-soft: rgba(49,194,108,.14);
  --yellow-soft: rgba(246,194,74,.14);
  --blue-soft: rgba(29,86,200,.16);
  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --container: 1240px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(30, 77, 170, .18), transparent 28%),
    linear-gradient(180deg, #050b19 0%, var(--bg) 38%, var(--bg-2) 100%);
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.topbar {
  position: sticky; top: 0; z-index: 20; backdrop-filter: blur(14px);
  background: rgba(5, 11, 25, .78); border-bottom: 1px solid var(--line);
}
.topbar-inner {
  min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.55rem; letter-spacing: -.03em; }
.brand small { display: block; margin-top: 2px; font-size: .72rem; color: var(--muted); font-weight: 600; letter-spacing: .04em; }
.brand-mark {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,90,103,.18), rgba(214,156,49,.22));
  border: 1px solid rgba(255,255,255,.1);
}
.nav { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.nav a {
  padding: 10px 14px; border-radius: 999px; color: var(--muted); font-weight: 700; transition: .25s ease;
}
.nav a:hover, .nav a.active { color: var(--text); background: rgba(255,255,255,.04); }
.launch-pill {
  padding: 12px 16px; border-radius: 999px; border: 1px solid rgba(255,90,103,.35);
  background: var(--accent-soft); color: #ffb1b7; font-weight: 800; white-space: nowrap;
}
.section { padding: 40px 0 72px; }
.section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,.015), rgba(255,255,255,0));
  border-top: 1px solid rgba(255,255,255,.03); border-bottom: 1px solid rgba(255,255,255,.03);
}
.section-head {
  display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 24px;
}
.section-head h2 { margin: 6px 0 0; font-size: clamp(1.8rem, 3vw, 2.7rem); letter-spacing: -.04em; }
.section-head p { max-width: 470px; margin: 0; color: var(--muted); line-height: 1.6; }
.section-kicker { color: #ffb9be; text-transform: uppercase; letter-spacing: .06em; font-size: .84rem; font-weight: 800; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-width: 160px;
  padding: 16px 18px; border-radius: 16px; font-weight: 900; border: 1px solid rgba(255,255,255,.08);
}
.button-primary { background: linear-gradient(135deg, #1d2944, #2a3b60); color: var(--text); }
.button-secondary { background: transparent; color: var(--muted); }
.site-footer { border-top: 1px solid rgba(255,255,255,.04); padding: 24px 0 46px; color: var(--muted); }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
