:root{
  --bg:#070707;
  --bg2:#0f0a0c;
  --panel: rgba(255,255,255,.05);
  --panel2: rgba(255,255,255,.03);
  --text:#ffffff;
  --muted: rgba(255,255,255,.72);
  --border: rgba(255, 35, 74, .28);
  --accent:#ff234a;
  --accent2:#8a0016;
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --radius: 16px;
}
*{box-sizing:border-box; min-width:0;}
html,body{height:100%; width:100%; overflow-x:hidden;}
body{
  margin:0;
  color:var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.6;
  background:
    radial-gradient(1200px 700px at 70% -10%, rgba(255,35,74,.25), transparent 60%),
    radial-gradient(900px 600px at 10% 20%, rgba(138,0,22,.22), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}
a{color:inherit}
.wrap{max-width:1100px; margin:0 auto; padding:0 16px;}
.topbar{
  position:sticky; top:0; z-index:10;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
  gap:12px;
  flex-wrap:wrap;
}
.brand{display:flex; align-items:center; gap:10px; text-decoration:none;}
.brand img{height:40px; width:auto; display:block;}
.nav{display:flex; gap:14px; flex-wrap:wrap; align-items:center;}
.nav a{font-weight:650; font-size:14px; text-decoration:none; color:rgba(255,255,255,.86); padding:6px 8px; border-radius:10px;}
.nav a:hover{background: rgba(255,255,255,.06); color:#fff;}
.actions{display:flex; gap:10px; flex-wrap:wrap; align-items:center;}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color:#fff; text-decoration:none; font-weight:750; font-size:14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.btn:hover{border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.06);}
.btn--primary{
  border-color: rgba(255,35,74,.45);
  background: linear-gradient(135deg, var(--accent2), var(--accent));
}
.btn--primary:hover{filter: brightness(1.05);}

.hero{
  margin-top:18px;
  background: url('/assets/hero.svg') center/cover no-repeat;
  border:1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero__inner{
  padding:28px 20px;
  display:grid;
  grid-template-columns: 1.3fr .7fr;
  gap:18px;
  align-items:center;
  background: linear-gradient(90deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.25) 50%, rgba(0,0,0,.55) 100%);
}
.hero h1{margin:0 0 8px; font-size:32px; line-height:1.15;}
.hero p{margin:0 0 14px; color:var(--muted); max-width:62ch;}
.hero__cta{display:flex; gap:10px; flex-wrap:wrap;}
.hero__stats{
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding:14px;
}
.stat{display:flex; justify-content:space-between; gap:10px; padding:8px 0; border-bottom:1px solid rgba(255,255,255,.06);}
.stat:last-child{border-bottom:none;}
.stat b{color:#fff;}
.stat span{color:var(--muted);}

.grid{
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap:18px;
  margin-top:18px;
  align-items:start;
}
.card{
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  box-shadow: 0 12px 44px rgba(0,0,0,.35);
  padding:18px 18px 18px;
  overflow:hidden;
}
.card h2{margin:0 0 10px; font-size:20px;}
.card h3{margin:18px 0 8px; font-size:16px; color:rgba(255,255,255,.95);}
.card p{margin:10px 0; color:rgba(255,255,255,.86);}
.card ul{margin:10px 0 0; padding-left:18px;}
.card li{margin:6px 0; color:rgba(255,255,255,.84);}
.note{
  margin-top:12px;
  padding:12px 14px;
  border-left:4px solid var(--accent);
  background: var(--panel2);
  border-radius: 12px;
  color: rgba(255,255,255,.84);
}
.table-wrap{margin-top:12px;}
table.spec-table{width:100%; border-collapse:collapse; table-layout:fixed;}
.spec-table td{
  padding:12px 12px;
  border-bottom:1px solid rgba(255,255,255,.08);
  vertical-align:top;
  overflow-wrap:anywhere;
  word-break:break-word;
}
.spec-table tr:last-child td{border-bottom:none;}
.spec-table td:first-child{
  color:rgba(255,255,255,.92);
  font-weight:750;
  width: 42%;
}
.spec-table td:last-child{color:rgba(255,255,255,.84);}

.faq details{
  border:1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding:12px 14px;
  background: rgba(0,0,0,.25);
  margin:10px 0;
}
.faq summary{cursor:pointer; font-weight:800;}
.faq p{margin:10px 0 0; color:rgba(255,255,255,.84);}

.media-slot{
  margin:14px 0;
  border-radius: 14px;
  height: 220px;
  background: url('/assets/hero.svg') center/cover no-repeat;
  border: 1px dashed rgba(255,255,255,.18);
  opacity: .95;
}
@media (max-width: 640px){
  .media-slot{height: 160px;}
}

footer{
  margin-top:26px;
  padding:20px 0;
  border-top:1px solid rgba(255,255,255,.06);
  color:rgba(255,255,255,.62);
  font-size:13px;
}
.footer__inner{display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap;}
.footer__inner a{color:rgba(255,255,255,.72); text-decoration:none;}
.footer__inner a:hover{text-decoration:underline;}

@media (max-width: 860px){
  .hero__inner{grid-template-columns: 1fr; }
  .grid{grid-template-columns: 1fr;}
}
@media (max-width: 640px){
  .hero h1{font-size:26px;}
  .btn{width:auto}
  table.spec-table, .spec-table tbody, .spec-table tr, .spec-table td{display:block; width:100%;}
  .spec-table tr{
    border:1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    overflow:hidden;
    margin:12px 0;
    background: rgba(0,0,0,.22);
  }
  .spec-table td{border-bottom:none;}
  .spec-table td:first-child{
    width:100%;
    background: rgba(255,35,74,.12);
  }
  .spec-table td:last-child{
    background: rgba(0,0,0,.18);
  }
}