:root{
  --bg:#0b0f14;
  --panel:#0f1620;
  --soft:#0d131c;
  --text:#e8eef7;
  --muted:#aab6c6;
  --brand:#7ddc6f;
  --brand2:#39b7ff;
  --ring: rgba(125,220,111,.35);
  --border: rgba(255,255,255,.10);
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 10% -10%, rgba(57,183,255,.18), transparent 60%),
    radial-gradient(900px 500px at 90% 0%, rgba(125,220,111,.14), transparent 55%),
    var(--bg);
  line-height:1.5;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.95}
img{max-width:100%; height:auto}

.container{
  width:min(1120px, calc(100% - 40px));
  margin-inline:auto;
}

.muted{color:var(--muted)}
.accent{color:var(--brand)}
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); border:0;
}
.skip-link{
  position:absolute; left:-999px; top:10px;
  background:#fff; color:#000; padding:10px 12px; border-radius:10px;
}
.skip-link:focus{left:10px; z-index:9999}

.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(11,15,20,.55);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}

.brand{display:flex; align-items:center; gap:10px}
.brand-mark{
  width:36px; height:36px; border-radius:10px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 10px 30px rgba(57,183,255,.20);
}
.brand-text{font-weight:700; letter-spacing:.2px}
.brand-text .muted{font-weight:600}

.nav{display:flex; align-items:center}
.nav-toggle{
  display:none;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
}
.hamburger{
  display:block; width:20px; height:2px; background:var(--text);
  position:relative;
}
.hamburger::before,.hamburger::after{
  content:""; position:absolute; left:0; width:20px; height:2px; background:var(--text);
}
.hamburger::before{top:-6px}
.hamburger::after{top:6px}

.nav-menu{display:flex; align-items:center; gap:18px}
.nav-link{
  color:var(--muted);
  padding:10px 10px;
  border-radius:12px;
}
.nav-link:hover{color:var(--text); background:rgba(255,255,255,.04)}
.nav-link.is-active{color:var(--text); background:rgba(125,220,111,.10); box-shadow: 0 0 0 4px var(--ring) inset}

.nav-cta{
  padding:10px 14px;
  border-radius:12px;
  border:1px solid rgba(125,220,111,.35);
  background: rgba(125,220,111,.10);
  font-weight:600;
}

.hero{
  padding:64px 0 34px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:28px;
  align-items:stretch;
}
.pill{
  display:inline-flex;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  margin:0 0 14px;
}
.hero h1{
  font-size: clamp(34px, 4.2vw, 56px);
  line-height:1.05;
  margin:0 0 12px;
  letter-spacing:-.8px;
}
.lead{
  font-size: 1.1rem;
  margin:0 0 18px;
}

.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin:12px 0 18px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  font-weight:600;
}
.btn-primary{
  border-color: rgba(125,220,111,.45);
  background: linear-gradient(135deg, rgba(125,220,111,.22), rgba(57,183,255,.14));
  box-shadow: 0 16px 55px rgba(125,220,111,.10);
}
.btn-ghost:hover{background:rgba(255,255,255,.06)}

.trust{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
.trust-item{
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  border-radius:16px;
  padding:12px;
}
.trust-kicker{font-weight:700; margin-bottom:4px}

.hero-media{
  display:flex;
  align-items:stretch;
}
.hero-card{
  width:100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(125,220,111,.12), transparent 55%),
    rgba(255,255,255,.03);
  padding:18px;
  box-shadow: var(--shadow);
}
.hero-card-title{font-weight:800; margin:0 0 10px; letter-spacing:-.3px}
.checklist{margin:0; padding-left:18px; color:var(--muted)}
.checklist li{margin:8px 0}

.section{padding:44px 0}
.section.soft{background: rgba(255,255,255,.02); border-top:1px solid var(--border); border-bottom:1px solid var(--border)}
.section-head{display:flex; align-items:flex-end; justify-content:space-between; gap:18px; margin-bottom:16px}
.section-head h2{margin:0; font-size:1.7rem}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 10px 35px rgba(0,0,0,.25);
}
.card:hover{transform: translateY(-2px); transition: transform .12s ease}
.card-icon{font-size:1.6rem; margin-bottom:10px}
.card h3{margin:0 0 6px}
.card-link{display:inline-block; margin-top:10px; color:var(--muted)}

.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:start;
}
.inline-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:12px}

.callout{
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:16px;
}
.callout-title{font-weight:800; margin-bottom:10px}
.callout-list{margin:0; padding-left:18px; color:var(--muted)}
.callout-list li{margin:8px 0}

.page-hero{
  padding:44px 0 18px;
  border-bottom:1px solid var(--border);
  background: rgba(255,255,255,.02);
}
.page-hero h1{margin:0 0 10px; font-size: clamp(30px, 3.3vw, 44px)}

.feature-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.feature{
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:16px;
}
.feature h3{margin:0 0 8px}

.cta-bar{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  border:1px solid rgba(125,220,111,.25);
  background: rgba(125,220,111,.08);
  border-radius: var(--radius);
  padding:16px;
}
.cta-title{font-weight:900}

.site-footer{
  padding:34px 0 22px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap:16px;
  border-top:1px solid var(--border);
  padding-top:22px;
}
.footer-title{font-weight:800; margin-bottom:8px}
.footer-list{list-style:none; padding:0; margin:0; color:var(--muted)}
.footer-list li{margin:8px 0}
.footer-bottom{
  display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap;
  padding-top:14px;
}

@media (max-width: 920px){
  .hero-grid{grid-template-columns: 1fr}
  .trust{grid-template-columns: 1fr; }
  .cards{grid-template-columns: 1fr}
  .split{grid-template-columns: 1fr}
  .feature-grid{grid-template-columns: 1fr}
  .footer-grid{grid-template-columns: 1fr}
  .nav-toggle{display:inline-flex}
  .nav-menu{
    position:absolute;
    right:20px; top:64px;
    width:min(320px, calc(100vw - 40px));
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    padding:12px;
    border:1px solid var(--border);
    background: rgba(15,22,32,.92);
    border-radius:16px;
    box-shadow: var(--shadow);
    display:none;
  }
  .nav-menu.is-open{display:flex}
  .nav-cta{text-align:center}
}

.logo {
  height: 64px;   /* desktop */
}
@media (max-width: 768px) {
  .logo {
    height: 40px; /* mobile */
  }
}
/* Footer social icons */
.site-footer .social-icons{
  display:flex;
  gap:12px;
  align-items:center;
  margin-top:12px;
}

.site-footer .social-icons a{
  width:36px;
  height:36px;
  display:inline-flex;
  align-items:center;
  justify-content:center;

  border-radius:12px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: var(--muted);

  line-height:1;
  padding:0;
  flex:0 0 auto;
}

.site-footer .social-icons a:hover{
  color: var(--text);
  background: rgba(255,255,255,.06);
}

.site-footer .social-icons svg{
  width:18px;
  height:18px;
  display:block;
}
