:root{
  --bg:#070a0f;
  --panel:#0d121a;
  --panel2:#111926;
  --text:#f5f7fb;
  --muted:#aab4c3;
  --line:#223044;
  --accent:#ff9d24;
  --accent2:#ffc66d;
  --max:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:
    radial-gradient(circle at 75% 10%, rgba(255,157,36,.09), transparent 30%),
    linear-gradient(180deg,#06090e 0%,#090d14 100%);
  color:var(--text);
  font-family:Inter,Segoe UI,Arial,sans-serif;
  line-height:1.6;
}
a{color:inherit}
.nav{
  height:78px;
  max-width:var(--max);
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 28px;
  border-bottom:1px solid rgba(255,255,255,.07);
}
.brand{display:flex;align-items:center;gap:12px;text-decoration:none;font-size:13px;font-weight:800;letter-spacing:.14em}
.mark{
  width:38px;height:38px;border:1px solid var(--accent);display:grid;place-items:center;
  color:var(--accent);font-weight:900;letter-spacing:-.06em;
}
nav{display:flex;gap:24px}
nav a,.footer-links a{color:var(--muted);text-decoration:none;font-size:14px}
nav a:hover,.footer-links a:hover{color:var(--accent2)}
.hero{
  max-width:var(--max);
  margin:auto;
  min-height:690px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:80px 28px;
  border-bottom:1px solid rgba(255,255,255,.07);
}
.eyebrow,.section-kicker{color:var(--accent);font-size:12px;font-weight:800;letter-spacing:.22em;margin-bottom:18px}
h1{font-size:clamp(48px,8vw,96px);line-height:.95;letter-spacing:-.045em;margin:0 0 30px;max-width:900px}
h1 span{color:var(--accent)}
.lead{font-size:21px;color:var(--muted);max-width:720px;margin:0 0 34px}
.lead.small{font-size:18px}
.actions{display:flex;gap:12px;flex-wrap:wrap}
.button{
  text-decoration:none;
  display:inline-flex;align-items:center;justify-content:center;
  min-height:50px;padding:0 22px;border:1px solid var(--line);
  font-weight:750;font-size:14px;
}
.primary{background:var(--accent);border-color:var(--accent);color:#111}
.primary:hover{background:var(--accent2)}
.secondary{background:rgba(255,255,255,.025)}
.status{margin-top:28px;color:#728096;font-size:13px}
.section{
  max-width:var(--max);
  margin:auto;
  padding:110px 28px;
  border-bottom:1px solid rgba(255,255,255,.07);
}
.section h2,.cta h2,.legal h1{font-size:clamp(34px,5vw,58px);line-height:1.05;letter-spacing:-.035em;margin:0 0 38px}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.card{background:linear-gradient(180deg,var(--panel2),var(--panel));border:1px solid var(--line);padding:30px;min-height:260px}
.number{color:#59677a;font-size:12px;font-weight:800;letter-spacing:.16em}
.card h3{font-size:24px;margin:55px 0 10px}
.card p,.statement p,.cta p,.legal p{color:var(--muted)}
.split{display:grid;grid-template-columns:1.1fr .9fr;gap:80px}
.statement{font-size:20px;padding-top:32px}
.statement .accent{color:var(--accent2);font-weight:800}
.cta{
  max-width:var(--max);margin:80px auto;padding:55px 28px;
  display:flex;align-items:center;justify-content:space-between;gap:30px;
  background:linear-gradient(110deg,#111a27,#0b1018);border:1px solid var(--line);
}
.cta h2{margin-bottom:12px}
footer{
  max-width:var(--max);margin:auto;padding:36px 28px 55px;display:flex;
  justify-content:space-between;gap:20px;color:#68758a;font-size:13px;
}
.footer-links{display:flex;gap:22px}
.legal{max-width:900px;margin:auto;padding:100px 28px 120px;min-height:70vh}
.legal h1{margin-bottom:8px}
.legal h2{font-size:22px;margin:44px 0 10px}
.updated{color:#68758a!important;font-size:13px}
.support-box{border-top:1px solid var(--line);padding:28px 0}
.support-box h2{margin-top:0}
@media(max-width:780px){
  nav{gap:12px}.nav nav a:nth-child(1),.nav nav a:nth-child(2){display:none}
  .cards{grid-template-columns:1fr}.split{grid-template-columns:1fr;gap:10px}
  .hero{min-height:610px}.cta{margin:30px 16px;flex-direction:column;align-items:flex-start}
}
