:root{
  --bg: #0b0f17;
  --panel: rgba(255,255,255,0.03);
  --panel2: rgba(255,255,255,0.04);
  --text: #e8eefc;
  --muted: #b8c2da;
  --accent: #6aa6ff;
  --good: #34d399;
  --warn: #fbbf24;
  --border: rgba(255,255,255,0.12);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 900px at 20% 10%, rgba(106,166,255,0.18), transparent 55%),
    radial-gradient(900px 700px at 90% 30%, rgba(52,211,153,0.12), transparent 60%),
    var(--bg);
  color:var(--text);
}

.wrap{ max-width:1100px; margin:0 auto; padding:18px; }

.header{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  position: sticky; top: 0;
  background: linear-gradient(to bottom, rgba(11,15,23,0.92), rgba(11,15,23,0.55));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 20;
}

.brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none; color:var(--text);
}
.brand__logo{
  width:44px; height:44px; object-fit:contain;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  border:1px solid var(--border);
}
.brand__title{ font-weight:900; font-size:16px; letter-spacing:0.2px; line-height:1; }
.brand__sub{ color:var(--muted); font-size:12px; margin-top:2px; }

.status{ display:flex; flex-direction:column; align-items:flex-end; gap:6px; }
.pill{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 6px 10px; border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  font-size: 12px; letter-spacing: 0.5px;
}
.countdown{ font-variant-numeric: tabular-nums; color: var(--muted); font-size: 13px; }

.hero{
  display:grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 18px;
  margin-top: 16px;
}

.hero__media{
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow:hidden;
}
.hero__media img{
  width:100%;
  height: 520px;
  object-fit: cover;
  display:block;
  background: #0a0d14;
}
.hero__controls{
  display:flex; align-items:center; justify-content:space-between;
  padding: 10px;
  border-top: 1px solid var(--border);
  background: rgba(18,26,39,0.7);
}
.meta{ text-align:center; }
.meta__line{ font-size: 13px; color: var(--muted); }
.meta__small{ font-size: 12px; opacity: 0.9; }

.hero__copy{
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
}
.hero__copy h1{ margin: 0 0 10px; font-size: 30px; line-height: 1.1; }
.lead{ margin:0 0 14px; color:var(--muted); font-size:15px; line-height:1.5; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  text-decoration:none;
  cursor:pointer;
  user-select:none;
}
.btn--primary{
  background: linear-gradient(135deg, rgba(106,166,255,0.95), rgba(52,211,153,0.70));
  border:none;
  font-weight: 800;
}
.btn--ghost:hover{ background: rgba(255,255,255,0.07); }

.cta{ display:flex; flex-direction:column; gap:8px; margin-top: 12px; }
.cta__note{ color: var(--muted); font-size: 13px; }

.trust-row{ display:flex; flex-wrap:wrap; gap:8px; margin-top: 14px; }
.trust-chip{
  font-size:12px; color:var(--text);
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,0.03);
}
.smallprint{ margin-top: 14px; color: var(--muted); font-size: 12px; line-height:1.4; }

.section{ margin-top: 18px; }
.section h2{ margin: 0 0 10px; font-size: 18px; letter-spacing: 0.2px; }
.section h3{ margin: 0 0 8px; font-size: 14px; }

.card{
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
}
.muted{ color: var(--muted); }

.grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.bullets{ margin:10px 0 0; padding-left: 18px; }
.bullets li{ margin: 6px 0; }
.bullets--muted li{ color: var(--muted); }

.callout{
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(251,191,36,0.35);
  background: rgba(251,191,36,0.08);
  color: var(--text);
}

.steps{ margin: 0; padding-left: 18px; }
.steps li{ margin: 8px 0; }
.steps strong{ color: var(--text); }

.footer{
  display:flex; justify-content:space-between; align-items:center;
  border-top: 1px solid var(--border);
  margin-top: 22px;
  color: var(--muted);
  font-size: 12px;
  padding-top: 14px;
}
.footer__right{ text-align:right; }

.live-only{ display:none; }

@media (max-width: 920px){
  .hero{ grid-template-columns: 1fr; }
  .hero__media img{ height: 420px; }
  .grid-2{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .status{ align-items:flex-start; }
}
