:root{
  --bg:#070b16;
  --panel:#0b1020;
  --panel2:#0e1630;
  --text:#e9edf7;
  --muted:#a9b1c7;
  --line:rgba(255,255,255,.10);
  --gold:#f6c55f;
  --blue:#4aa3ff;
  --good:#2dd4bf;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  overflow-x:hidden;
}

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

.bg{ position:fixed; inset:0; z-index:-2; }
.grid{
  position:absolute; inset:-2px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity:.12;
  filter: blur(.2px);
}
.glow{
  position:absolute; width:520px; height:520px; border-radius:50%;
  filter: blur(60px);
  opacity:.35;
}
.glow-a{ background: rgba(74,163,255,.55); left:-140px; top:-120px; }
.glow-b{ background: rgba(246,197,95,.55); right:-160px; bottom:-160px; }

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

.brand{ display:flex; align-items:center; gap:12px; }
.logo{
  width:44px; height:44px;
  border:1px solid var(--line);
  border-radius:14px;
  display:grid; place-items:center;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  color: var(--gold);
}
.brand-name{ font-weight:800; letter-spacing:.2px; }
.brand-sub{ color:var(--muted); font-size:12px; margin-top:2px; }

.nav{ display:flex; gap:14px; align-items:center; flex-wrap:wrap; justify-content:flex-end; }
.nav a{
  color:var(--muted);
  text-decoration:none;
  font-weight:600;
  font-size:13px;
  padding:10px 10px;
  border-radius:12px;
}
.nav a:hover{ color:var(--text); background:rgba(255,255,255,.05); }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:14px;
  padding:12px 16px;
  font-weight:800;
  letter-spacing:.2px;
  text-decoration:none;
  border:1px solid transparent;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{
  background: linear-gradient(135deg, rgba(246,197,95,1), rgba(74,163,255,1));
  color:#0b1020;
}
.btn-secondary{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  color:var(--text);
}
.btn-ghost{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.10);
  color:var(--text);
}

.hero{
  display:grid;
  grid-template-columns: 1.25fr .95fr;
  gap:22px;
  padding:18px 0 10px;
}
@media (max-width: 980px){
  .hero{ grid-template-columns:1fr; }
  .nav{ display:none; }
}

.pill{
  display:inline-flex; gap:10px; align-items:center;
  padding:10px 12px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:999px;
  background: rgba(255,255,255,.04);
  color:var(--muted);
  font-weight:700;
  font-size:12px;
}
.dot{
  width:10px; height:10px; border-radius:50%;
  background: var(--good);
  box-shadow: 0 0 20px rgba(45,212,191,.65);
}

h1{
  margin:18px 0 12px;
  font-size: clamp(34px, 4vw, 54px);
  line-height:1.05;
  letter-spacing:-.7px;
}
.accent{
  background: linear-gradient(135deg, var(--gold), var(--blue));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.lead{
  margin:0;
  max-width: 58ch;
  color: var(--muted);
  font-size: 15px;
  line-height:1.7;
}

.cta-row{ display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 10px; }

.mini-cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:14px;
}
@media (max-width: 700px){
  .mini-cards{ grid-template-columns:1fr; }
}
.mini-card{
  padding:14px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.mini-title{ font-weight:900; }
.mini-text{ color:var(--muted); font-size:13px; margin-top:6px; line-height:1.5; }

.card{
  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  padding:18px;
}
.card-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
}
.card-title{ font-weight:900; font-size:15px; }
.card-sub{ color:var(--muted); font-size:12px; margin-top:4px; }
.badge{
  background: rgba(45,212,191,.12);
  color: #b9fff2;
  border:1px solid rgba(45,212,191,.22);
  font-weight:900;
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
}

.progress{ margin-top:16px; }
.progress-top{
  display:flex;
  justify-content:space-between;
  color:var(--muted);
  font-weight:800;
  font-size:12px;
  margin-bottom:10px;
}
.bar{
  height:10px;
  border-radius:999px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  overflow:hidden;
}
.bar-fill{
  height:100%;
  border-radius:999px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
}
.progress-note{
  margin-top:10px;
  color:var(--muted);
  font-size:12px;
  line-height:1.5;
}

.divider{
  height:1px;
  background: rgba(255,255,255,.10);
  margin:16px 0;
}

.count-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:var(--muted);
  font-weight:800;
  font-size:12px;
  margin-bottom:10px;
}
.link{
  border:none;
  background:none;
  color: var(--blue);
  font-weight:900;
  cursor:pointer;
}
.timer{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:10px;
}
.tbox{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding:14px 10px;
  text-align:center;
}
.tn{ font-weight:900; font-size:22px; letter-spacing:.5px; }
.tl{ color:var(--muted); font-size:12px; margin-top:4px; font-weight:800; }
.count-foot{ margin-top:10px; color:var(--muted); font-size:12px; }
.hidden{ display:none; }

.quick{ display:grid; gap:10px; }
.qbtn{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color:var(--text);
  text-decoration:none;
  font-weight:900;
}
.qbtn span{ color:var(--muted); font-weight:900; }

.section{ padding:34px 0 8px; }
.section h2{
  margin:0 0 10px;
  font-size: 22px;
  letter-spacing:-.3px;
}
.section-lead{ margin:0; color:var(--muted); line-height:1.7; max-width: 80ch; }

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:16px;
}
@media (max-width: 900px){
  .grid-3{ grid-template-columns:1fr; }
}
.feature{
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.icon{ font-size:18px; }
.ftitle{ font-weight:900; margin-top:10px; }
.ftext{ color:var(--muted); font-size:13px; margin-top:6px; line-height:1.5; }

.notice{
  border-radius:18px;
  border:1px solid rgba(246,197,95,.22);
  background: rgba(246,197,95,.06);
  padding:16px;
}
.notice-title{ font-weight:1000; }
.notice p{ color:var(--muted); line-height:1.7; margin:10px 0 0; }
.notice-foot{ color:var(--muted); font-weight:900; }

.form-wrap{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:14px;
  margin-top:16px;
}
@media (max-width: 900px){
  .form-wrap{ grid-template-columns:1fr; }
}
.form{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding:16px;
}
.row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
@media (max-width: 700px){
  .row{ grid-template-columns:1fr; }
}
label{ display:grid; gap:8px; font-weight:800; font-size:12px; color:var(--muted); }
input{
  width:100%;
  border-radius:14px;
  padding:12px 12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(11,16,32,.65);
  color:var(--text);
  outline:none;
}
input:focus{
  border-color: rgba(74,163,255,.55);
  box-shadow: 0 0 0 4px rgba(74,163,255,.12);
}
.check{
  grid-template-columns: auto 1fr;
  align-items:center;
  gap:10px;
  margin:10px 0 14px;
}
.check input{ width:18px; height:18px; }
.form-note{ color:var(--muted); font-size:12px; margin-top:10px; line-height:1.6; }

.side{ display:grid; gap:12px; }
.side-card{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding:16px;
}
.side-title{ font-weight:1000; }
.side-text{ color:var(--muted); font-size:13px; margin-top:10px; line-height:1.6; }

.footer{
  margin:30px 0 40px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.10);
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  color:var(--muted);
  font-weight:800;
  font-size:12px;
}
.footer a{ color:var(--muted); text-decoration:none; }
.footer a:hover{ color:var(--text); }
.footer-links{ display:flex; gap:12px; }
