:root{
  --bg:#07130d;
  --bg2:#0b1b12;
  --panel:#0f2519;
  --text:#eaf2ec;
  --muted:#b9c8be;
  --line:rgba(255,255,255,.12);
  --accent:#a6f0c6;
  --accent2:#b6d7ff;
  --shadow: 0 14px 40px rgba(0,0,0,.35);
  --radius: 20px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: radial-gradient(1000px 600px at 20% 10%, rgba(166,240,198,.12), transparent 60%),
              radial-gradient(900px 600px at 80% 0%, rgba(182,215,255,.10), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
}

a{color:inherit}
.container{width:min(1120px, 92vw); margin:0 auto}

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{left:16px; top:16px; width:auto; height:auto; padding:10px 12px; background:#fff; color:#000; border-radius:10px; z-index:999}

.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(7,19,13,.65);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}

.brand{display:flex; gap:12px; align-items:center; text-decoration:none}
.brand-text{display:flex; flex-direction:column; line-height:1.05}
.brand-sub{font-size:.86rem; color:var(--muted)}

.brand-logo{
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.45));
}

.site-nav{display:flex; gap:18px; align-items:center}
.site-nav a{
  text-decoration:none;
  padding:10px 12px;
  border-radius:12px;
  color:var(--muted);
}
.site-nav a:hover{background:rgba(255,255,255,.06); color:var(--text)}
.nav-cta{
  border:1px solid var(--line);
  color:var(--text) !important;
}
.open-static{display:flex}

.nav-toggle{
  display:none;
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
  color:var(--text);
  border-radius:14px;
  padding:10px 12px;
}
.burger{
  display:inline-block; width:20px; height:2px; background:var(--text);
  position:relative;
}
.burger::before,.burger::after{
  content:""; position:absolute; left:0; width:20px; height:2px; background:var(--text);
}
.burger::before{top:-6px}
.burger::after{top:6px}

.hero{
  position:relative;
  padding:68px 0 42px;
  border-bottom: 1px solid var(--line);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:28px;
  align-items:start;
}
.hero-sheen{
  position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(900px 280px at 30% 0%, rgba(166,240,198,.12), transparent 60%);
}
.hero-logo{
  width: 92px;
  height: auto;
  margin-bottom: 14px;
  opacity: .95;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,.35));
}

.eyebrow{
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted);
  font-size:.84rem;
  margin:0 0 10px;
}
h1{
  font-size: clamp(2rem, 3.3vw, 3rem);
  line-height:1.05;
  margin:0 0 14px;
}
.lead{
  color:var(--muted);
  font-size:1.08rem;
  line-height:1.6;
  margin:0 0 18px;
}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin: 14px 0 18px}
.hero-points{
  margin:16px 0 0;
  padding:0 0 0 18px;
  color:var(--muted);
}
.hero-points li{margin:8px 0}

.section{padding:58px 0}
.section.alt{background: rgba(255,255,255,.03); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line)}
.section-head{max-width: 72ch}
.section-head h2{margin:0 0 10px; font-size: clamp(1.6rem, 2.2vw, 2rem)}
.section-head p{margin:0; color:var(--muted); line-height:1.6}

.grid-3{
  margin-top:22px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.panel{
  border: 1px solid var(--line);
  background: rgba(15,37,25,.55);
  border-radius: var(--radius);
  padding:18px 18px 16px;
  box-shadow: var(--shadow);
}
.panel h3{margin:0 0 8px}
.panel p{margin:0; color:var(--muted); line-height:1.6}

.cards{
  margin-top:22px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.card{
  border: 1px solid var(--line);
  background: rgba(15,37,25,.55);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.card h2,.card h3{margin:0 0 10px}
.bullets{margin:10px 0 0; padding:0 0 0 18px; color:var(--muted)}
.bullets li{margin:8px 0}

.stat{display:flex; justify-content:space-between; gap:12px; padding:10px 0; border-bottom:1px dashed rgba(255,255,255,.14)}
.stat:last-of-type{border-bottom:none}
.stat-label{color:var(--muted)}
.stat-value{font-weight:600}

.card-actions{display:flex; gap:10px; margin-top:14px; flex-wrap:wrap}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius: 14px;
  padding: 12px 14px;
  text-decoration:none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  color: var(--text);
}
.btn:hover{background: rgba(255,255,255,.08)}
.btn.primary{
  background: linear-gradient(135deg, rgba(166,240,198,.22), rgba(182,215,255,.18));
  border-color: rgba(255,255,255,.18);
}
.btn.secondary{
  background: rgba(182,215,255,.10);
}
.btn.ghost{
  background: transparent;
}
.btn.small{padding:10px 12px; border-radius: 12px}

.newsletter{
  margin-top:20px;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
  display:grid;
  grid-template-columns: 1fr auto;
  gap:14px;
  align-items:center;
  background: rgba(255,255,255,.03);
}
.form{display:flex; gap:10px; align-items:center; justify-content:flex-end; flex-wrap:wrap}
input[type="email"]{
  width:min(340px, 80vw);
  padding:12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.25);
  color: var(--text);
}
input::placeholder{color: rgba(234,242,236,.55)}
.fine{color:var(--muted); font-size:.92rem; line-height:1.5}
.muted{opacity:.8}

.updates{
  margin-top:22px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.update{
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
  background: rgba(15,37,25,.40);
  box-shadow: var(--shadow);
}
.update h3{margin:0 0 6px}
.update p{margin:0; color:var(--muted); line-height:1.6}
.update .fine{margin: 0 0 10px}

.contact-grid{
  margin-top:22px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}
.link-list{margin:10px 0 0; padding:0 0 0 18px; color:var(--muted)}
.link-list li{margin:8px 0}

.site-footer{
  border-top: 1px solid var(--line);
  padding: 26px 0;
  background: rgba(0,0,0,.20);
}
.footer-inner{
  display:flex;
  gap:18px;
  justify-content:space-between;
  flex-wrap:wrap;
}
.footer-meta{max-width: 72ch; text-align:right}

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); border:0;
}

/* Legal page */
.legal{
  margin-top: 18px;
}
.legal h2{
  margin: 18px 0 8px;
  font-size: 1.1rem;
}
.legal ul{
  margin: 10px 0 0;
  padding: 0 0 0 18px;
  color: var(--muted);
}
.legal li{margin:8px 0}
.privacy-title{
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 2.6vw, 2.2rem);
}

/* Responsive */
@media (max-width: 900px){
  .hero-grid{grid-template-columns: 1fr}
  .grid-3,.cards,.updates{grid-template-columns: 1fr}
  .contact-grid{grid-template-columns: 1fr}
  .footer-meta{text-align:left}

  .nav-toggle{display:inline-flex}
  .site-nav{
    position:absolute;
    right: 4vw;
    top: 64px;
    display:none;
    flex-direction:column;
    width: min(320px, 92vw);
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(7,19,13,.95);
    box-shadow: var(--shadow);
  }
  .site-nav.open{display:flex}
  .open-static{
    position: static;
    display:flex;
    flex-direction:row;
    border: none;
    background: transparent;
    box-shadow: none;
    width: auto;
    padding: 0;
  }
}

