: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;
  --navy:#101a33;
  --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(1200px 700px at 70% -10%, rgba(247,200,90,.22), transparent 55%),
    radial-gradient(900px 600px at 10% 10%, rgba(20,50,130,.35), transparent 55%),
    linear-gradient(180deg, #060913, #0b1020 40%, #070b16);
  line-height:1.55;
}

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 + Nav */
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;
  gap:16px;
  padding:16px 0;
}

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

.brand-mark{
  width:44px; height:44px;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 30%, rgba(247,200,90,.55), rgba(247,200,90,.10)),
              linear-gradient(180deg, rgba(255,255,255,.08), rgba(0,0,0,.15));
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  display:grid;
  place-items:center;
  font-weight:900;
  color:#120f08;
  letter-spacing:.5px;
}

.brand-title{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand-title small{
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.9px;
  font-weight:800;
  font-size:12px;
}
.brand-title strong{
  font-size:16px;
  font-weight:900;
}

/* Hamburger button */
.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;
  box-shadow: 0 10px 26px rgba(0,0,0,.25);
}
.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 -> X */
.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); }

/* Slide-over */
.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{
  position:fixed;
  top:0; right:0;
  height:100%;
  width:min(360px, 88vw);
  background: rgba(10,16,34,.92);
  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;
  backdrop-filter: blur(14px);
}
.drawer.open{ transform: translateX(0); }

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

.drawer-title{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.drawer-title strong{ font-weight:900; }
.drawer-title small{ color:var(--muted); font-weight:800; letter-spacing:.8px; text-transform:uppercase; font-size:12px; }

.drawer a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding: 14px 12px;
  border-radius: 14px;
  border:1px solid transparent;
  color: var(--text);
  background: rgba(255,255,255,.04);
  margin-top: 10px;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.drawer a:hover{
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.14);
  transform: translateX(-2px);
}
.drawer a .hint{ color:var(--muted); font-size:12px; }

.drawer .cta{
  margin-top:auto;
  display:block;
  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);
  border: 0;
}

/* Page */
.hero{ padding: 68px 0 18px; }

.grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items:start;
}
@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;
  letter-spacing:.8px;
  text-transform:uppercase;
  font-size:12px;
}
.dot{
  width:10px; height:10px;
  border-radius:999px;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(247,200,90,.14);
}

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

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

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

.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;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 16px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  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;
}
.feature strong{ display:block; }
.feature p{ margin:4px 0 0; }

.small{
  font-size: 13px;
  color: var(--muted);
}

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

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

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