:root{
  --bg:#0b1220;
  --panel:#0f1a2e;
  --card:#0f1a2e;
  --text:#e6edf7;
  --muted:#a7b3c7;
  --line:rgba(255,255,255,.10);
  --brand:#6ee7b7;
  --brand2:#60a5fa;
  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --radius:18px;
  --radius2:24px;
  --container: 1120px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(96,165,250,.22), transparent 60%),
    radial-gradient(900px 500px at 80% 10%, rgba(110,231,183,.18), transparent 60%),
    var(--bg);
  color: var(--text);
  line-height:1.5;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.55);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}

.brand{ display:flex; align-items:center; gap:12px; }
.brand-mark{
  width:40px; height:40px;
  display:grid; place-items:center;
  border-radius:12px;
  background: linear-gradient(135deg, rgba(110,231,183,.22), rgba(96,165,250,.22));
  border:1px solid var(--line);
}
.brand-text strong{ display:block; font-size:14px; letter-spacing:.2px; }
.brand-text small{ display:block; font-size:12px; color:var(--muted); margin-top:-2px; }

.site-nav{
  display:flex; align-items:center; gap:18px;
}
.site-nav a{
  font-size:14px;
  color: var(--muted);
  padding:10px 10px;
  border-radius:12px;
}
.site-nav a:hover{ color:var(--text); background:rgba(255,255,255,.05); }
.site-nav a.active{ color:var(--text); background:rgba(255,255,255,.06); }

.nav-toggle{
  display:none;
  background:transparent; border:0; cursor:pointer;
  width:42px; height:42px; border-radius:12px;
  border:1px solid var(--line);
}
.nav-toggle span{
  display:block; height:2px; margin:7px 10px;
  background: var(--text);
  opacity:.85;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  background: linear-gradient(135deg, rgba(110,231,183,.85), rgba(96,165,250,.85));
  color:#07101c;
  font-weight:700;
  border:1px solid rgba(255,255,255,.15);
  box-shadow: var(--shadow);
}
.btn:hover{ filter: brightness(1.03); transform: translateY(-1px); }
.btn:active{ transform: translateY(0px); }

.btn-small{ padding:10px 12px; border-radius:12px; font-weight:700; }
.btn-ghost{
  background: rgba(255,255,255,.06);
  color: var(--text);
  box-shadow:none;
  border: 1px solid var(--line);
}
.btn-ghost:hover{ background: rgba(255,255,255,.09); }

.hero{
  padding:56px 0 22px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.35fr .75fr;
  gap:22px;
  align-items:stretch;
}
.pill{
  display:inline-flex;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background: rgba(255,255,255,.05);
  color: var(--muted);
  font-size:13px;
  margin:0 0 14px;
}
.hero h1{
  font-size: clamp(32px, 4vw, 52px);
  line-height:1.06;
  margin:0 0 12px;
  letter-spacing:-.6px;
}
.lead{ font-size:16.5px; color: var(--muted); margin:0 0 18px; }
.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin: 18px 0 22px; }

.trust{
  display:grid; grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.trust-item{
  padding:14px 14px;
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
}
.trust-item strong{ display:block; font-size:13px; }
.trust-item span{ display:block; font-size:12px; color:var(--muted); margin-top:2px; }

.hero-card{
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}
.hero-card-inner{ padding:18px; }
.badge{
  display:inline-flex;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(110,231,183,.18);
  border:1px solid rgba(110,231,183,.28);
  color: var(--text);
  margin-bottom:10px;
}
.hero-card h3{ margin:0 0 6px; }
.hero-card p{ margin:0 0 12px; color:var(--muted); }

.section{ padding: 42px 0; }
.section-alt{
  background: rgba(255,255,255,.03);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:18px;
  margin-bottom:18px;
}
.section-head h2{ margin:0; font-size:28px; letter-spacing:-.3px; }
.section-head p{ margin:0; color:var(--muted); max-width:560px; }

.grid{ display:grid; gap:16px; }
.products-grid{
  grid-template-columns: repeat(4, 1fr);
}

.card{
  border:1px solid var(--line);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.04);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
  overflow:hidden;
}
.card-body{ padding:16px; }
.media{
  aspect-ratio: 16/10;
  background: rgba(255,255,255,.03);
  border-bottom:1px solid var(--line);
}
.media img{ width:100%; height:100%; object-fit:cover; }

.product h3{ margin: 0 0 8px; }
.product p{ margin: 0 0 12px; color:var(--muted); }

.tags{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:12px; }
.tag{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color:var(--muted);
}

.link{ font-weight:700; color: var(--text); }
.link:hover{ text-decoration: underline; }

.split{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:start;
}
.info-cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin: 16px 0 18px;
}
.mini-card{
  padding:14px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.mini-card h4{ margin:0 0 6px; font-size:14px; }
.mini-card p{ margin:0; color:var(--muted); font-size:13px; }

.quote-card{
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  padding:16px;
}

.checklist{ list-style:none; padding:0; margin: 10px 0 14px; }
.checklist li{
  padding-left:26px;
  position:relative;
  color:var(--muted);
  margin: 8px 0;
}
.checklist li::before{
  content:"✓";
  position:absolute; left:0; top:0;
  color: var(--brand);
  font-weight:900;
}

.cta{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px;
  padding:18px;
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: linear-gradient(135deg, rgba(96,165,250,.10), rgba(110,231,183,.10));
}

.site-footer{
  padding: 28px 0 18px;
  border-top:1px solid var(--line);
  background: rgba(0,0,0,.10);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.5fr .7fr .8fr;
  gap:16px;
  padding-bottom:14px;
}
.site-footer h5{ margin:0 0 10px; font-size:13px; color:var(--text); }
.site-footer a{ display:block; color:var(--muted); margin: 6px 0; }
.site-footer a:hover{ color:var(--text); }

.footer-bottom{
  border-top:1px solid var(--line);
  padding-top:12px;
  display:flex; align-items:center; justify-content:space-between;
}

.muted{ color:var(--muted); }
.small{ font-size:13px; }

.hr{ border:0; border-top:1px solid var(--line); margin:16px 0; }

.page-head{ padding-top:34px; padding-bottom:10px; }
.page-head h1{ margin:0 0 8px; font-size:40px; letter-spacing:-.5px; }
.page-head .lead{ margin:0; }

.contact-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:16px;
}
.form{ margin-top:12px; }
.field{ margin-bottom:12px; }
label{ display:block; font-weight:600; font-size:13px; margin-bottom:6px; color:var(--text); }
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(96,165,250,.55);
  box-shadow: 0 0 0 4px rgba(96,165,250,.12);
}
.honeypot{ position:absolute; left:-9999px; width:1px; height:1px; opacity:0; }

.notice{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  margin-bottom:12px;
  font-weight:600;
}
.notice.success{
  background: rgba(110,231,183,.10);
  border-color: rgba(110,231,183,.28);
}
.notice.error{
  background: rgba(248,113,113,.08);
  border-color: rgba(248,113,113,.22);
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .products-grid{ grid-template-columns: repeat(2, 1fr); }
  .split{ grid-template-columns: 1fr; }
  .info-cards{ grid-template-columns: 1fr; }
  .trust{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 720px){
  .nav-toggle{ display:inline-block; }
  .site-nav{
    position:absolute;
    right:20px; top:66px;
    display:none;
    flex-direction:column;
    padding:12px;
    border-radius:16px;
    border:1px solid var(--line);
    background: rgba(11,18,32,.92);
    min-width: 220px;
  }
  .site-nav.open{ display:flex; }
  .products-grid{ grid-template-columns: 1fr; }
  .cta{ flex-direction:column; align-items:flex-start; }
}
