
:root{
  --bg:#07080a;
  --panel:#0d0f14;
  --panel2:#10131b;
  --text:#f2f4f8;
  --muted:#aab3c2;
  --line:rgba(255,255,255,.08);
  --red:#e60000;
  --red2:#ff2c2c;
  --green:#34d399;
  --shadow: 0 24px 60px rgba(0,0,0,.55);
  --radius:20px;
  --radius2:28px;
  --max:1180px;
}

*{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, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 70% 30%, rgba(230,0,0,.18), transparent 60%),
    radial-gradient(900px 550px at 20% 10%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(180deg, #050607, #0a0b0f 45%, #06070a);
  overflow-x:hidden;
}

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(12px);
  background: rgba(7,8,10,.72);
  border-bottom: 1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{
  display:flex; align-items:center; gap:10px; min-width:180px;
}
.brand .name{font-weight:800; letter-spacing:.3px}
.brand .tag{font-size:12px; color:var(--muted); margin-top:2px}

.logoImg{
  width:34px; height:34px;
  border-radius:12px;
  box-shadow: 0 10px 24px rgba(230,0,0,.25);
  display:block;
}


.navlinks{
  display:flex; gap:14px; flex-wrap:wrap; justify-content:center;
}
.navlinks a{
  font-size:13px; color:var(--muted);
  padding:10px 10px; border-radius:12px;
  border:1px solid transparent;
}
.navlinks a:hover{
  color:var(--text);
  border-color: var(--line);
  background: rgba(255,255,255,.03);
}

.navcta{
  display:flex; align-items:center; gap:10px; min-width:220px; justify-content:flex-end;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px; border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color:var(--text);
  font-weight:700; font-size:13px;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14)}
.btn.red{
  background: linear-gradient(135deg, var(--red), var(--red2));
  border-color: rgba(255,255,255,.1);
  box-shadow: 0 18px 40px rgba(230,0,0,.25);
}
.btn.red:hover{background: linear-gradient(135deg, #ff1b1b, #ff4444)}
.btn.small{padding:10px 12px; font-weight:800}
.btn.icon{gap:8px}
.pill{
  font-size:12px; color:var(--muted);
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  padding:8px 10px; border-radius:999px;
}

.hamburger{display:none}

.hero{
  padding:64px 0 20px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:26px;
  align-items:stretch;
}
.heroCard{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-radius: var(--radius2);
  padding:26px;
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}
.heroCard:before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(520px 320px at 75% 40%, rgba(230,0,0,.28), transparent 55%),
    radial-gradient(420px 280px at 10% 20%, rgba(255,255,255,.10), transparent 55%);
  opacity:.9;
  pointer-events:none;
}
.heroCard > *{position:relative}

.kicker{
  display:flex; gap:10px; flex-wrap:wrap; align-items:center; margin-bottom:14px;
}
.kicker .badge{
  font-weight:900; letter-spacing:.3px;
  background: rgba(230,0,0,.14);
  border: 1px solid rgba(230,0,0,.25);
  color:#ffd7d7;
  padding:8px 10px; border-radius:999px; font-size:12px;
}
.kicker .note{font-size:12px; color:var(--muted)}
h1{
  margin:0 0 10px;
  font-size:44px;
  line-height:1.05;
  letter-spacing:-.6px;
}
.lead{margin:0 0 18px; color:rgba(242,244,248,.86); font-size:16px; line-height:1.5}
.heroActions{display:flex; gap:12px; flex-wrap:wrap; align-items:center}
.heroActions .btn{padding:12px 16px}

.quickTiles{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}
.tile{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:14px;
  display:flex; gap:12px;
  align-items:center;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.tile:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.14);
}
.ico{
  width:40px; height:40px; border-radius:14px;
  background: rgba(230,0,0,.14);
  border:1px solid rgba(230,0,0,.25);
  display:grid; place-items:center;
}
.ico svg{width:20px; height:20px; fill:#ffd7d7}
.tile .tTitle{font-weight:900}
.tile .tSub{font-size:12px; color:var(--muted); margin-top:2px}

.section{padding:28px 0}
.sectionTitle{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:18px; margin-bottom:14px;
}
.sectionTitle h2{margin:0; font-size:22px; letter-spacing:-.2px}
.sectionTitle p{margin:0; color:var(--muted); font-size:13px}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius2);
  padding:18px;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  overflow:hidden;
}
.card h3{margin:0 0 6px; font-size:16px}
.card p{margin:0; color:var(--muted); font-size:13px; line-height:1.45}
.card .meta{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
.chip{
  font-size:12px; color:#eaeef6;
  padding:8px 10px; border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}

.productGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.product{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius2);
  overflow:hidden;
  position:relative;
}
.prodTop{
  padding:16px;
  display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
}
.prodName{font-weight:900}
.prodSpec{font-size:12px; color:var(--muted); margin-top:4px}
.price{
  font-weight:1000;
  font-size:20px;
  color:#fff;
}
.smallmuted{font-size:12px; color:var(--muted)}
.prodBody{padding:0 16px 16px}
.prodBadges{display:flex; gap:8px; flex-wrap:wrap; margin:10px 0 12px}
.badge{
  font-size:12px; font-weight:800;
  padding:7px 9px; border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.badge.green{border-color: rgba(52,211,153,.28); background: rgba(52,211,153,.12)}
.badge.red{border-color: rgba(230,0,0,.26); background: rgba(230,0,0,.12)}
.prodActions{display:flex; gap:10px; flex-wrap:wrap}
.prodActions .btn{flex:1}

.footer{
  border-top:1px solid var(--line);
  background: rgba(0,0,0,.25);
  padding:26px 0 40px;
}
.footerGrid{
  display:grid;
  grid-template-columns: 1.3fr .7fr .7fr;
  gap:18px;
}
.footTitle{font-weight:900; margin:0 0 6px}
.footText{margin:0; color:var(--muted); font-size:13px; line-height:1.55}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--text)}
.footLinks{display:grid; gap:8px; font-size:13px}
.disclaimer{
  margin-top:14px;
  padding:12px 14px;
  border-radius: var(--radius);
  border:1px solid rgba(230,0,0,.22);
  background: rgba(230,0,0,.08);
  color: rgba(255,235,235,.92);
  font-size:12px;
  line-height:1.45;
}

/* Scroll reveal */
.reveal{
  opacity:0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: transform, opacity;
}
.reveal.in{
  opacity:1;
  transform:none;
}

/* Responsive */
@media (max-width: 980px){
  .heroGrid{grid-template-columns: 1fr; }
  h1{font-size:38px}
  .grid3{grid-template-columns: 1fr}
  .productGrid{grid-template-columns: 1fr}
  .footerGrid{grid-template-columns: 1fr}
  .navlinks{display:none}
  .hamburger{display:inline-flex}
}
