:root{
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --muted2: rgba(255,255,255,.55);
  --brand: #8a2be2;
  --brand2:#5cffc4;
  --stroke: rgba(255,255,255,.12);
  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1120px;
}
*{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 600px at 12% 10%, rgba(138,43,226,.40), transparent 55%),
    radial-gradient(1000px 500px at 88% 14%, rgba(92,255,196,.22), transparent 50%),
    radial-gradient(900px 500px at 50% 95%, rgba(138,43,226,.20), transparent 60%),
    linear-gradient(180deg, #07060c 0%, #0b0a12 45%, #07060c 100%);
}
a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(11,10,18,.65);
  border-bottom:1px solid var(--stroke);
}
.nav{display:flex; align-items:center; justify-content:space-between; padding:14px 0;}
.brand{display:flex; align-items:center; gap:10px; font-weight:900;}
.brand img{height:34px; border-radius:10px}
.navlinks{display:flex; gap:10px; align-items:center}
.navlinks a{color: var(--muted); font-weight:750; padding:10px 10px; border-radius:12px;}
.navlinks a:hover{background: rgba(255,255,255,.06); color: var(--text)}
.cta{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px; border-radius:14px;
  background: linear-gradient(135deg, rgba(138,43,226,.95), rgba(92,255,196,.55));
  color:#0b0a12; font-weight:900;
  border:1px solid rgba(255,255,255,.22);
}
.ghost{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px; border-radius:14px;
  background: rgba(255,255,255,.06);
  border:1px solid var(--stroke);
  color: var(--text); font-weight:850;
}
.hamburger{display:none; width:42px; height:42px; border-radius:14px; border:1px solid var(--stroke); background: rgba(255,255,255,.06); color: var(--text)}
.hamburger svg{width:22px; height:22px}
.mobile-menu{display:none; padding:0 0 14px}
.mobile-menu a{display:block; padding:12px 10px; border-radius:14px; color: var(--muted); font-weight:800}
.mobile-menu a:hover{background: rgba(255,255,255,.06); color: var(--text)}
.hero{padding:72px 0 26px}
.kicker{display:inline-flex; gap:8px; align-items:center; padding:8px 12px; border:1px solid var(--stroke); background: rgba(255,255,255,.05); border-radius:999px; color: var(--muted); font-weight:800; font-size:13px}
.kicker .dot{width:10px; height:10px; border-radius:50%; background: linear-gradient(135deg, var(--brand), var(--brand2)); box-shadow: 0 0 0 4px rgba(138,43,226,.18)}
.hero-grid{display:grid; grid-template-columns: 1.15fr .85fr; gap: 26px; align-items:start; padding-top:16px}
h1{margin:14px 0; font-size:52px; line-height:1.05; letter-spacing:-1.2px}
.lead{margin:0 0 18px; color: var(--muted); font-size:18px; line-height:1.6; max-width:56ch}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap}
.hero-card{border-radius: var(--radius); border:1px solid var(--stroke); background: rgba(255,255,255,.05); box-shadow: var(--shadow); overflow:hidden}
.hero-card-inner{padding:18px}
.small{color: var(--muted2); font-size:13px; line-height:1.5}
.form{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
.input{flex:1 1 220px; border-radius:14px; border:1px solid var(--stroke); background: rgba(255,255,255,.06); color: var(--text); padding:12px; font-size:14px; outline:none}
.btn{border-radius:14px; border:1px solid rgba(255,255,255,.20); padding:12px 14px; font-weight:900; cursor:pointer}
.btn.primary{background: linear-gradient(135deg, rgba(138,43,226,.95), rgba(92,255,196,.55)); color:#0b0a12}
.notice{margin-top:10px; color: var(--muted2); font-size:12px}
.cards{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; padding:20px 0 10px}
.card{border-radius: var(--radius); border:1px solid var(--stroke); background: rgba(255,255,255,.05); padding:18px}
.card h4{margin:0 0 8px; font-size:16px}
.card p{margin:0; color: var(--muted); line-height:1.55; font-size:14px}
.icon{width:38px; height:38px; border-radius:14px; display:grid; place-items:center; margin-bottom:12px; border:1px solid rgba(255,255,255,.18); background: radial-gradient(circle at 25% 20%, rgba(92,255,196,.20), rgba(138,43,226,.18))}
.section{padding:34px 0}
.section h2{margin:0 0 12px; font-size:28px; letter-spacing:-.4px}
.section p{color: var(--muted); line-height:1.65; margin:0}
.steps{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; margin-top:16px}
.step{padding:18px; border-radius: var(--radius); border:1px solid var(--stroke); background: rgba(255,255,255,.04)}
.badge{display:inline-flex; width:30px; height:30px; border-radius:12px; align-items:center; justify-content:center; font-weight:900; color:#0b0a12; background: linear-gradient(135deg, rgba(92,255,196,.80), rgba(138,43,226,.75)); margin-bottom:10px}
.split{display:grid; grid-template-columns: 1fr 1fr; gap:18px}
.panel{padding:18px; border-radius: var(--radius); border:1px solid var(--stroke); background: rgba(255,255,255,.04)}
.list{margin:0; padding-left:18px; color: var(--muted); line-height:1.7}
.footer{border-top:1px solid var(--stroke); margin-top:40px; padding:26px 0 34px; color: var(--muted2); font-size:13px}
.footergrid{display:grid; grid-template-columns: 1.2fr .8fr; gap:16px}
.pillrow{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}
.pill{display:inline-flex; padding:8px 10px; border-radius:999px; border:1px solid var(--stroke); background: rgba(255,255,255,.04); color: var(--muted); font-weight:800}
.pagehead{padding:44px 0 6px}
.pagehead h1{font-size:40px}
.minihero{padding:20px 0 0; color: var(--muted); line-height:1.7}
.table{width:100%; border-collapse:separate; border-spacing:0; border-radius: var(--radius); border:1px solid var(--stroke); background: rgba(255,255,255,.04); overflow:hidden}
.table th,.table td{padding:14px; border-bottom:1px solid rgba(255,255,255,.08); text-align:left}
.table th{font-weight:900}
.table td{color: var(--muted)}
.table tr:last-child td{border-bottom:none}
.callout{border:1px solid rgba(92,255,196,.22); background: radial-gradient(circle at 15% 20%, rgba(92,255,196,.16), rgba(255,255,255,.03)); padding:16px; border-radius: var(--radius)}
@media (max-width:980px){
  .hero-grid{grid-template-columns:1fr}
  h1{font-size:44px}
  .cards{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .navlinks{display:none}
  .hamburger{display:inline-flex; align-items:center; justify-content:center}
  .mobile-menu{display:block}
}
