:root{
  --bg:#0D1117; --bg2:#111827; --card:#0f1623;
  --text:#F3EFE0; --muted:rgba(243,239,224,.75);
  --gold:#C5A059; --line:rgba(243,239,224,.12);
  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --radius:16px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0; font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: radial-gradient(1000px 700px at 20% -10%, rgba(197,160,89,.18), transparent 55%),
              radial-gradient(900px 600px at 90% 10%, rgba(197,160,89,.10), transparent 55%),
              var(--bg);
  color:var(--text);
}
a{color:var(--text); text-decoration:none}
a:hover{opacity:.9}
.container{width:min(1100px, 92%); margin:0 auto}

.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(13,17,23,.85);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.topbar__inner{display:flex; align-items:center; justify-content:space-between; padding:12px 0}
.brand{display:flex; gap:10px; align-items:center}
.logo{
  width:38px; height:38px; border-radius:12px;
  display:grid; place-items:center;
  background: linear-gradient(180deg, rgba(197,160,89,.24), rgba(197,160,89,.06));
  border:1px solid rgba(197,160,89,.35);
  color:var(--gold); font-weight:800;
}
.brand__name{font-weight:800; letter-spacing:.2px}
.brand__sub{font-size:12px; color:var(--muted)}
.nav{display:flex; gap:16px; align-items:center}
.hamburger{display:none; background:none; border:none; color:var(--text); font-size:22px}
.mobileNav{
  display:none; padding:10px 0 14px;
  border-top:1px solid var(--line);
}
.mobileNav a{display:block; padding:10px 0; color:var(--muted)}
.mobileNav a:hover{color:var(--text)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:12px;
  border:1px solid rgba(197,160,89,.5);
  background: rgba(197,160,89,.14);
  color:var(--text); font-weight:700;
}
.btn--ghost{
  background: transparent;
  border:1px solid var(--line);
  color:var(--muted);
}
.btn:hover{transform: translateY(-1px)}

.hero{padding:56px 0 24px}
.hero__grid{display:grid; grid-template-columns: 1.2fr .8fr; gap:22px; align-items:stretch}
.pill{
  display:inline-flex; padding:6px 10px; border-radius:999px;
  border:1px solid rgba(197,160,89,.35);
  color:var(--gold); background: rgba(197,160,89,.08);
  font-weight:700; font-size:12px;
}
h1{font-size:42px; line-height:1.05; margin:14px 0 10px}
.lead{color:var(--muted); font-size:16px; line-height:1.6}
.cta{display:flex; gap:10px; margin:18px 0 10px; flex-wrap:wrap}
.meta{display:flex; gap:10px; align-items:center; color:var(--muted); font-size:13px; flex-wrap:wrap}

.section{padding:54px 0; border-top:1px solid var(--line)}
.section.alt{background: linear-gradient(180deg, transparent, rgba(255,255,255,.02), transparent)}
h2{font-size:28px; margin:0 0 14px}
h3{margin:0 0 8px}
.small{color:var(--muted); font-size:12px; line-height:1.5}

.card{
  background: rgba(17,24,39,.35);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.card--hero{align-self:stretch}
.card__title{font-weight:800; margin-bottom:10px}
.card__note{margin-top:12px; color:var(--muted); font-size:12px}

.grid2{display:grid; grid-template-columns:1fr 1fr; gap:14px}
.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}

.checklist{margin:0; padding-left:18px; color:var(--muted); line-height:1.7}
.bullets{margin:0; padding-left:18px; color:var(--muted); line-height:1.7}

.timeline{display:grid; gap:14px; margin-top:12px}
.step{display:grid; grid-template-columns: 18px 1fr; gap:12px; align-items:flex-start}
.step__dot{
  width:14px; height:14px; border-radius:99px;
  border:2px solid rgba(197,160,89,.7);
  margin-top:4px;
  background: rgba(197,160,89,.12);
}
.step__content p{margin:6px 0 0; color:var(--muted); line-height:1.6}

.form{max-width:720px}
label{display:block; font-weight:700; margin:10px 0 6px}
input, select{
  width:100%; padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(15,22,35,.8);
  color: var(--text);
  outline:none;
}
input::placeholder{color: rgba(243,239,224,.45)}
.consent{display:flex; gap:10px; align-items:flex-start; color:var(--muted); font-weight:500; margin:12px 0}
.consent input{width:auto; margin-top:3px}
.alert{padding:12px 14px; border-radius:12px; margin:12px 0}
.alert--success{border:1px solid rgba(34,197,94,.35); background: rgba(34,197,94,.08)}
.alert--error{border:1px solid rgba(239,68,68,.35); background: rgba(239,68,68,.08)}

.footer{padding:18px 0; border-top:1px solid var(--line)}
.footer__inner{display:flex; justify-content:space-between; align-items:center; gap:10px; color:var(--muted); font-size:13px; flex-wrap:wrap}
.footer__links{display:flex; gap:12px}

@media (max-width: 900px){
  .hero__grid{grid-template-columns:1fr}
  h1{font-size:34px}
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .nav{display:none}
  .hamburger{display:block}
}
