:root{
  --bg:#070707;
  --bg2:#0f1012;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.08);
  --text:#f4f4f4;
  --muted:#b7b7b7;
  --line:rgba(255,255,255,.10);
  --gold:#d3b15a;
  --shadow: 0 14px 40px rgba(0,0,0,.45);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background: radial-gradient(1200px 800px at 50% 10%, rgba(211,177,90,.10), transparent 60%),
              radial-gradient(1000px 700px at 15% 40%, rgba(255,255,255,.05), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.9}

.topbar{
  position:sticky; top:0; z-index:50;
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 16px;
  background: rgba(7,7,7,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}

.brand{display:flex; gap:10px; align-items:center}
.brand-mark{
  width:34px;height:34px;display:grid;place-items:center;
  border:1px solid rgba(211,177,90,.35);
  border-radius:10px;
  color:var(--gold);
  background: rgba(211,177,90,.08);
}
.brand-name{font-weight:700; letter-spacing:.2px}

.nav{display:flex; gap:16px; align-items:center}
.nav a{color:var(--muted); font-weight:600; font-size:14px}
.nav a.btn{color:#101010}

.menuBtn{
  display:none;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color:var(--text);
  padding:8px 10px;
  border-radius:12px;
  box-shadow: var(--shadow);
}

.mobileNav{
  display:none;
  position:sticky; top:62px; z-index:49;
  padding:10px 16px;
  border-bottom:1px solid var(--line);
  background: rgba(7,7,7,.78);
  backdrop-filter: blur(10px);
}
.mobileNav a{
  display:block;
  padding:10px 12px;
  margin:6px 0;
  border:1px solid var(--line);
  border-radius:14px;
  color:var(--muted);
  background: rgba(255,255,255,.04);
}

main{max-width:980px; margin:0 auto; padding:26px 16px 80px}

.hero{
  padding:34px 14px 10px;
  text-align:center;
}

.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color:var(--muted);
  margin-bottom:18px;
}

h1{
  margin:0 auto 14px;
  font-size: clamp(34px, 6.2vw, 64px);
  line-height:1.05;
  letter-spacing:-.8px;
}

.muted{color:var(--muted)}
.gold{color:var(--gold)}

.lead{
  max-width:760px;
  margin:0 auto 22px;
  color:var(--muted);
  font-size: clamp(16px, 2.6vw, 18px);
  line-height:1.6;
}

.ctaRow{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 18px;
  border-radius:16px;
  border:1px solid rgba(211,177,90,.35);
  background: var(--gold);
  color:#101010;
  font-weight:800;
  box-shadow: var(--shadow);
  min-width: 200px;
}

.btn-small{
  padding:10px 12px;
  min-width:auto;
  border-radius:14px;
  font-weight:800;
}

.btn-ghost{
  background: rgba(255,255,255,.06);
  color:var(--text);
  border:1px solid var(--line);
  min-width: 160px;
}

.micro{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
  color:rgba(255,255,255,.60);
  font-weight:600;
  font-size:13px;
}

.section{padding:34px 0 0}
.section h2{
  margin:0 0 14px;
  font-size:22px;
  letter-spacing:-.2px;
}

.grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
}

.split{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:12px;
}

.card{
  padding:16px 16px 14px;
  border-radius:18px;
  border:1px solid var(--line);
  background: linear-gradient(180deg, var(--card), rgba(255,255,255,.04));
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.card h3{margin:0 0 6px; font-size:16px}
.card p{margin:0; color:var(--muted); line-height:1.55}

.card-cta{
  padding:22px;
  background: linear-gradient(180deg, rgba(211,177,90,.10), rgba(255,255,255,.04));
  border:1px solid rgba(211,177,90,.22);
}

.fineprint{
  margin:14px 0 0;
  font-size:12px;
  color:rgba(255,255,255,.55);
}

@media (max-width: 860px){
  .grid{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .nav{display:none}
  .menuBtn{display:inline-flex}
}