:root{
  --bg:#0b0b12;
  --card:#121224;
  --muted:#a9a9c2;
  --text:#f2f2ff;
  --line: rgba(255,255,255,.10);
  --btn:#ffffff;
  --btnText:#0b0b12;
  --chip: rgba(255,255,255,.10);
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --r: 18px;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: var(--bg);
  color: var(--text);
}
a{color:inherit; text-decoration:none}
.container{max-width:1100px; margin:0 auto; padding:22px}
.topbar{
  position:sticky; top:0; z-index:20;
  background: rgba(11,11,18,.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px;
}
.brand{display:flex; align-items:center; gap:10px; font-weight:800; letter-spacing:.2px}
.badge{
  font-size:12px; color: var(--muted);
  border:1px solid var(--line); padding:6px 10px; border-radius:999px;
}
.navlinks{display:flex; gap:10px; flex-wrap:wrap}
.navlinks a{padding:8px 12px; border-radius:999px; border:1px solid transparent}
.navlinks a:hover{border-color:var(--line); background: rgba(255,255,255,.03)}
.hero{
  border-radius: var(--r);
  overflow:hidden;
  box-shadow: var(--shadow);
  border:1px solid var(--line);
  background:#000;
}
.hero img{width:100%; display:block; height:auto}
.hero-overlay{
  position:relative;
  margin-top:-140px;
  padding: 16px 18px 0;
}
.kicker{color: var(--muted); font-size:13px; letter-spacing:.4px; text-transform:uppercase}
.h1{font-size:34px; margin:6px 0 10px}
.p{color: var(--muted); line-height:1.6; margin:0 0 12px}
.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:16px;
}
.card{
  grid-column: span 12;
  background: rgba(18,18,36,.9);
  border:1px solid var(--line);
  border-radius: var(--r);
  box-shadow: 0 14px 35px rgba(0,0,0,.35);
  overflow:hidden;
}
.card .inner{padding:16px}
@media (min-width: 860px){
  .col6{grid-column: span 6}
  .col4{grid-column: span 4}
  .col8{grid-column: span 8}
}
.cta-row{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: var(--btn);
  color: var(--btnText);
  font-weight: 800;
  border:1px solid rgba(255,255,255,.22);
}
.btn.secondary{
  background: rgba(255,255,255,.08);
  color: var(--text);
}
.btn.ghost{
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.small{font-size:13px; color: var(--muted)}
.chips{display:flex; gap:8px; flex-wrap:wrap; margin-top:10px}
.chip{
  padding:8px 10px; border-radius:999px;
  background: var(--chip); border:1px solid var(--line);
  color: var(--muted); font-size:12px;
}
.section-title{font-size:18px; margin:0 0 8px}
.tiles{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}
@media (min-width: 860px){
  .tiles{grid-template-columns: repeat(4, 1fr);}
}
.tile{
  border-radius: 14px;
  overflow:hidden;
  border:1px solid var(--line);
  background: #0f0f1e;
  position:relative;
}
.tile img{width:100%; display:block; height:auto}
.tile .cap{
  position:absolute; left:10px; right:10px; bottom:10px;
  background: rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding:10px;
  font-size:12px;
  color: rgba(255,255,255,.9);
}
.offer{
  display:flex; gap:12px; align-items:flex-start; justify-content:space-between; flex-wrap:wrap;
  padding:14px 16px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.offer strong{display:block; margin-bottom:4px}
.hr{height:1px; background: var(--line); margin:16px 0}
.footer{
  margin-top:30px;
  padding: 18px 0 30px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.notice{
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
  padding:12px 14px;
  border-radius: 14px;
  color: var(--muted);
  line-height:1.5;
}
.meter{
  margin-top: 14px;
  border:1px dashed rgba(255,255,255,.22);
  border-radius: 16px;
  padding: 14px;
  color: var(--muted);
  background: rgba(0,0,0,.25);
}
.lock{ position:relative; }
.locked-cover{
  position:absolute; inset:0;
  backdrop-filter: blur(10px);
  background: rgba(11,11,18,.70);
  display:flex; align-items:center; justify-content:center;
  padding: 18px;
}
.locked-box{
  max-width: 520px;
  border:1px solid var(--line);
  border-radius: 16px;
  background: rgba(18,18,36,.92);
  padding: 16px;
  box-shadow: var(--shadow);
}
.locked-box .h{font-size:18px; font-weight:900; margin:0 0 6px}
.modal{
  position:fixed; inset:0;
  background: rgba(0,0,0,.65);
  display:none;
  align-items:center; justify-content:center;
  padding: 18px;
  z-index: 99;
}
.modal.show{display:flex}
.modal .box{
  width:min(560px, 100%);
  border:1px solid var(--line);
  border-radius: 16px;
  background: rgba(18,18,36,.95);
  padding: 16px;
  box-shadow: var(--shadow);
}
.modal .box h3{margin:0 0 8px}
.modal .box p{margin:0 0 12px; color: var(--muted); line-height:1.5}
