:root{
  --bg:#070a14;
  --panel:rgba(255,255,255,.06);
  --panel2:rgba(255,255,255,.10);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.72);
  --line:rgba(255,255,255,.14);
  --shadow:0 18px 50px rgba(0,0,0,.45);
  --radius:18px;
  --max:1100px;

  --gold:#f7c85a;
  --gold2:#ff9a3a;
  --focus:rgba(247,200,90,.45);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  color:var(--text);
  background:
    radial-gradient(900px 520px at 12% 18%, rgba(247,200,90,.16), transparent 58%),
    radial-gradient(800px 520px at 82% 10%, rgba(20,50,130,.32), transparent 60%),
    radial-gradient(700px 520px at 55% 78%, rgba(255,154,58,.10), transparent 62%),
    linear-gradient(180deg, #060913, #0b1020 40%, #070b16);
  line-height:1.55;
}

body.menu-open{
  overflow: hidden;
}

a{ color:inherit; text-decoration:none; }

a:focus, button:focus{
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 12px;
}

.container{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
}

/* ================= HEADER ================= */

header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(6,9,19,0.65);
  border-bottom: 1px solid var(--line);
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.brand-logo{
  width:52px;
  height:52px;
  object-fit:contain;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
}

.brand-title{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}

.brand-title small{
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.8px;
  font-weight:800;
  font-size:12px;
}

.brand-title strong{
  font-size:16px;
  font-weight:900;
}

/* ================= HAMBURGER ================= */

.menu-btn{
  width:48px; height:48px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  display:grid;
  place-items:center;
  cursor:pointer;
}

.menu-btn:hover{
  background: rgba(255,255,255,.09);
}

.burger{ width:22px; height:16px; position:relative; }

.burger span{
  position:absolute;
  left:0; right:0;
  height:2px;
  border-radius:999px;
  background: rgba(255,255,255,.92);
  transition: transform .25s ease, top .25s ease, opacity .2s ease;
}

.burger span:nth-child(1){ top:0; }
.burger span:nth-child(2){ top:7px; }
.burger span:nth-child(3){ top:14px; }

.menu-open .burger span:nth-child(1){ top:7px; transform: rotate(45deg); }
.menu-open .burger span:nth-child(2){ opacity:0; }
.menu-open .burger span:nth-child(3){ top:7px; transform: rotate(-45deg); }

/* ================= BACKDROP ================= */

.backdrop{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.55);
  opacity:0;
  pointer-events:none;
  transition: opacity .25s ease;
  z-index:60;
}

.backdrop.open{
  opacity:1;
  pointer-events:auto;
}

/* ================= DRAWER ================= */

.drawer{
  position:fixed;
  top:0; right:0;
  height:100%;
  width:min(360px, 88vw);
  background: rgba(10,16,34,.95);
  border-left:1px solid rgba(255,255,255,.14);
  box-shadow: -20px 0 60px rgba(0,0,0,.5);
  transform: translateX(105%);
  transition: transform .28s ease;
  z-index:70;
  display:flex;
  flex-direction:column;
  padding:18px;
  overflow-y:auto;
}

.drawer.open{ transform: translateX(0); }

.drawer-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-bottom:12px;
  border-bottom:1px solid rgba(255,255,255,.12);
  margin-bottom:12px;
}

.drawer-title small{
  color:var(--muted);
  font-weight:800;
  text-transform:uppercase;
  font-size:12px;
}

.drawer a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 12px;
  border-radius:14px;
  border:1px solid transparent;
  background: rgba(255,255,255,.04);
  margin-top:10px;
  transition: background .18s ease, border-color .18s ease;
}

.drawer a:hover{
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.14);
}

.drawer .hint{
  color:var(--muted);
  font-size:12px;
}

.drawer .cta{
  margin-top:22px;
  position:sticky;
  bottom:18px;
  text-align:center;
  padding:14px 16px;
  border-radius:999px;
  font-weight:900;
  color:#120f08;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  box-shadow: var(--shadow);
}

/* ================= PAGE ================= */

.hero{ padding: 68px 0 18px; }

.grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
}

@media (max-width:900px){
  .grid{ grid-template-columns:1fr; }
}

.card{
  background: var(--panel);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:22px;
  box-shadow: var(--shadow);
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color: var(--muted);
  font-weight:900;
  text-transform:uppercase;
  font-size:12px;
}

.dot{
  width:10px; height:10px;
  border-radius:999px;
  background: var(--gold);
}

h1{
  margin:12px 0 8px;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height:1.06;
}

h2{
  margin:0 0 10px;
  font-size:22px;
}

p{ margin:10px 0; color:var(--muted); }
.lead{ color:var(--text); font-size:18px; }

.pill-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}

.pill{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  font-size:12px;
  color:var(--muted);
  font-weight:800;
}

.actions{
  display:flex;
  gap:10px;
  margin-top:16px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  font-weight:900;
  color: var(--text);
  cursor:pointer;
}

.btn:hover{ background: rgba(255,255,255,.09); }

.btn-primary{
  border:0;
  color:#120f08;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  box-shadow: var(--shadow);
}

.feature{
  display:flex;
  gap:12px;
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  margin-top:12px;
}

.notice{
  margin-top:14px;
  padding:14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  font-size:13px;
  color:var(--muted);
}

.footer{
  border-top:1px solid var(--line);
  margin-top:36px;
  padding:26px 0 40px;
  color:var(--muted);
  text-align:center;
}

.footer-links{
  display:flex;
  gap:14px;
  justify-content:center;
  margin-bottom:10px;
}