:root {
  --bg: #070b16;
  --panel: rgba(255,255,255,.075);
  --panel-strong: rgba(255,255,255,.12);
  --text: #f6f7fb;
  --muted: #a8b0c3;
  --line: rgba(255,255,255,.14);
  --gold: #f4c96b;
  --blue: #79a7ff;
  --green: #8cf0c3;
}
* { 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 left, #16233f 0, transparent 34rem), var(--bg);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
.page { min-height: 100vh; overflow: hidden; }
.hero { position: relative; padding: 28px clamp(20px, 4vw, 64px) 72px; }
.glow { position: absolute; border-radius: 999px; filter: blur(16px); opacity: .65; pointer-events: none; }
.glow-one { width: 420px; height: 420px; background: rgba(121,167,255,.22); right: -120px; top: 70px; }
.glow-two { width: 360px; height: 360px; background: rgba(244,201,107,.16); left: -130px; bottom: -120px; }
.nav { position: relative; z-index: 2; display:flex; align-items:center; justify-content:space-between; max-width: 1180px; margin: 0 auto 72px; }
.brand { width: 48px; height:48px; display:grid; place-items:center; border: 1px solid var(--line); border-radius: 16px; background: var(--panel); font-weight:800; letter-spacing:-.04em; }
.nav-links { display:flex; gap: 22px; color: var(--muted); font-size:14px; font-weight:600; }
.nav-links a:hover { color: var(--text); }
.hero-grid { position: relative; z-index: 2; max-width:1180px; margin:0 auto; display:grid; grid-template-columns: minmax(0, 1.14fr) minmax(320px, .62fr); gap: clamp(28px,5vw,72px); align-items:center; }
.eyebrow { color: var(--green); text-transform: uppercase; letter-spacing: .16em; font-size: 13px; font-weight: 800; margin: 0 0 18px; }
h1 { font-size: clamp(48px, 7vw, 92px); line-height: .93; letter-spacing: -0.075em; max-width: 880px; margin: 0; }
.lede { color: var(--muted); font-size: clamp(18px,2.2vw,23px); line-height:1.55; max-width: 690px; margin: 28px 0 0; }
.actions { display:flex; flex-wrap:wrap; gap:14px; margin-top: 34px; }
.button { display:inline-flex; align-items:center; justify-content:center; min-height: 50px; padding: 0 20px; border-radius:999px; font-weight:800; border:1px solid var(--line); }
.primary { background: linear-gradient(135deg, var(--gold), #fff0b2); color:#171102; border:0; box-shadow: 0 16px 44px rgba(244,201,107,.2); }
.secondary { background: rgba(255,255,255,.05); color: var(--text); }
.card { border:1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.055)); border-radius: 30px; padding: 30px; box-shadow: 0 30px 90px rgba(0,0,0,.26); backdrop-filter: blur(18px); }
.status { display:inline-flex; margin:0 0 20px; padding: 8px 12px; border-radius:999px; background: rgba(140,240,195,.1); color: var(--green); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing:.12em; }
.card h2 { margin: 0 0 18px; font-size: 28px; letter-spacing: -.04em; }
ul { margin:0; padding-left: 18px; color: var(--muted); line-height:1.65; }
li + li { margin-top: 12px; }
.principles { position: relative; z-index: 2; max-width:1180px; margin:0 auto; padding: 0 clamp(20px, 4vw, 64px) 56px; display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; }
.principles article { min-height: 210px; border:1px solid var(--line); background: rgba(255,255,255,.055); border-radius: 24px; padding: 24px; }
.principles span { color: var(--gold); font-size: 13px; font-weight: 900; letter-spacing:.16em; }
.principles h3 { font-size: 24px; letter-spacing:-.045em; margin: 34px 0 10px; }
.principles p { color: var(--muted); line-height:1.55; margin:0; }
@media (max-width: 860px) {
  .hero { padding-bottom: 44px; }
  .nav { margin-bottom: 48px; }
  .hero-grid, .principles { grid-template-columns: 1fr; }
  h1 { font-size: clamp(44px, 14vw, 70px); }
  .card { padding: 24px; }
}
