:root{
  --navy:#083A9E;
  --blue:#0E5AC0;
  --teal:#0E88A0;
  --cyan:#0ED2C8;
  --ink:#0a1224;
  --dark-bg:#050b18;
  --dark-bg-2:#081226;
  --light-bg:#fafaf8;
  --light-bg-2:#f1f6f6;
  --text-dark:#0d1526;
  --text-muted:#5b6b7a;
  --grad: linear-gradient(90deg, var(--navy), var(--teal), var(--cyan));
  --radius: 14px;
  --maxw: 1180px;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0; font-family:'Poppins', -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  color:var(--text-dark); background:var(--light-bg); line-height:1.6;
}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
.wrap{max-width:var(--maxw); margin:0 auto; padding:0 28px;}

/* ---------- Nav ---------- */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:rgba(5,11,24,0.72); backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.nav .wrap{display:flex; align-items:center; justify-content:space-between; height:74px;}
.nav .brand img{height:34px; width:auto;}
.nav .links{display:flex; gap:36px; align-items:center;}
.nav .links a{
  color:rgba(255,255,255,0.82); font-size:14.5px; font-weight:500; letter-spacing:0.2px;
  transition:color 0.2s;
}
.nav .links a:hover{color:#fff;}
.nav .cta{
  background:var(--grad); color:#fff !important; padding:10px 22px; border-radius:999px;
  font-weight:600; font-size:14px; letter-spacing:0.2px;
}
.nav .menu-btn{display:none; background:none; border:none; cursor:pointer; padding:6px;}
.nav .menu-btn span{display:block; width:22px; height:2px; background:#fff; margin:5px 0; border-radius:2px;}

@media (max-width:880px){
  .nav .links{
    position:fixed; top:74px; left:0; right:0; background:var(--dark-bg);
    flex-direction:column; align-items:flex-start; gap:0; padding:8px 28px 20px;
    border-bottom:1px solid rgba(255,255,255,0.08);
    transform:translateY(-130%); transition:transform 0.25s ease; opacity:0;
  }
  .nav .links.open{ transform:translateY(0); opacity:1; }
  .nav .links a{ padding:14px 0; width:100%; border-bottom:1px solid rgba(255,255,255,0.06); }
  .nav .cta{ margin-top:10px; }
  .nav .menu-btn{display:block;}
}

/* ---------- Hero (shared) ---------- */
.hero{ position:relative; height:100vh; min-height:640px; overflow:hidden; background:var(--dark-bg); }
.hero canvas{ position:absolute; inset:0; width:100%; height:100%; display:block; }
.hero-content{
  position:relative; z-index:2; height:100%; display:flex; flex-direction:column; justify-content:center;
  max-width:640px; padding:0 28px 4vh; margin:0 auto 0 0; margin-left:max(28px, calc((100vw - var(--maxw))/2 + 28px));
}
.hero .eyebrow{
  color:#7fd8d0; font-size:13px; letter-spacing:3px; text-transform:uppercase; font-weight:600;
  opacity:0; animation:riseIn 0.9s ease-out 0.15s forwards;
}
.hero h1{
  color:#fff; font-size:clamp(34px,5.2vw,58px); font-weight:800; line-height:1.08; margin:0.4em 0 0.35em;
  opacity:0; animation:riseIn 1s ease-out 0.35s forwards;
}
.hero h1 .accent{
  background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero p.lead{
  color:#cfe6e6; font-size:17px; max-width:520px; opacity:0; font-weight:400;
  animation:riseIn 1s ease-out 0.55s forwards;
}
.hero .actions{ display:flex; gap:16px; margin-top:2em; opacity:0; animation:riseIn 1s ease-out 0.75s forwards; }
.btn-primary{
  background:var(--grad); color:#fff; padding:14px 28px; border-radius:999px; font-weight:600; font-size:15px;
  display:inline-block; box-shadow:0 8px 24px rgba(14,136,160,0.35);
}
.btn-ghost{
  border:1px solid rgba(255,255,255,0.25); color:#fff; padding:14px 26px; border-radius:999px;
  font-weight:600; font-size:15px; display:inline-block;
}
@keyframes riseIn{ from{opacity:0; transform:translateY(16px);} to{opacity:1; transform:translateY(0);} }
@media (prefers-reduced-motion:reduce){
  .hero .eyebrow,.hero h1,.hero p.lead,.hero .actions{ animation:none !important; opacity:1 !important; transform:none !important; }
}
@media (max-width:880px){
  .hero-content{ margin-left:auto; padding-top:100px; max-width:100%; text-align:left; }
}

/* ---------- Sections ---------- */
section.pad{ padding:96px 0; }
section.pad.tight{ padding:72px 0; }
.section-light{ background:var(--light-bg); }
.section-light-2{ background:var(--light-bg-2); }
.section-dark{ background:var(--dark-bg-2); color:#e8f1f1; }

.kicker{ color:var(--teal); font-weight:700; font-size:13px; letter-spacing:2.5px; text-transform:uppercase; margin-bottom:14px; }
h2.section-title{ font-size:clamp(26px,3.4vw,38px); font-weight:800; margin:0 0 18px; line-height:1.18; max-width:720px; }
p.section-desc{ color:var(--text-muted); font-size:16.5px; max-width:640px; margin:0 0 40px; }
.section-dark .section-desc{ color:#a9c2c2; }

.grid{ display:grid; gap:24px; }
.grid-2{ grid-template-columns:repeat(2,1fr); }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-4{ grid-template-columns:repeat(4,1fr); }
@media (max-width:880px){ .grid-2,.grid-3,.grid-4{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .grid-2,.grid-3,.grid-4{ grid-template-columns:1fr; } }

.card{
  background:#fff; border:1px solid #eaeef0; border-radius:var(--radius); padding:30px;
  transition:transform 0.2s, box-shadow 0.2s;
}
.card:hover{ transform:translateY(-4px); box-shadow:0 16px 40px rgba(10,20,40,0.08); }
.section-dark .card{ background:rgba(255,255,255,0.04); border-color:rgba(255,255,255,0.08); }
.card .icon-dot{
  width:44px; height:44px; border-radius:12px; background:var(--grad);
  display:flex; align-items:center; justify-content:center; color:#fff; font-weight:800; margin-bottom:18px;
  font-size:16px;
}
.card h3{ font-size:18px; margin:0 0 10px; font-weight:700; }
.card p{ color:var(--text-muted); font-size:14.5px; margin:0; }
.section-dark .card p{ color:#a9c2c2; }

.pill-list{ display:flex; flex-wrap:wrap; gap:12px; }
.pill{
  border:1px solid #e2e8ea; background:#fff; padding:10px 18px; border-radius:999px;
  font-size:14px; font-weight:600; color:var(--text-dark);
}
.section-dark .pill{ background:rgba(255,255,255,0.05); border-color:rgba(255,255,255,0.12); color:#e8f1f1; }

.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
@media (max-width:880px){ .two-col{ grid-template-columns:1fr; gap:32px; } }

.stat{ text-align:left; }
.stat .num{ font-size:clamp(28px,3.4vw,42px); font-weight:800;
  background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent; }
.stat .lbl{ color:var(--text-muted); font-size:13.5px; margin-top:4px; }

.cta-band{
  background:radial-gradient(circle at 30% 30%, #0c2f8c, #071a4a 60%);
  color:#fff; border-radius:24px; padding:60px 48px; text-align:center;
}
.cta-band h2{ font-size:clamp(24px,3.2vw,34px); margin:0 0 16px; font-weight:800; }
.cta-band p{ color:#cfe0e0; max-width:520px; margin:0 auto 28px; }

/* ---------- Footer (minimal placeholder) ---------- */
footer.site-footer{
  background:var(--dark-bg); color:#8ea0a8; padding:48px 0 28px; font-size:13.5px;
}
footer.site-footer .top{ display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:20px; padding-bottom:28px; border-bottom:1px solid rgba(255,255,255,0.08); }
footer.site-footer .brand img{ height:26px; }
footer.site-footer .links{ display:flex; gap:24px; }
footer.site-footer .bottom{ padding-top:22px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; }
footer.site-footer .note{ opacity:0.6; }

.section-title-wrap{ display:flex; align-items:flex-end; justify-content:space-between; flex-wrap:wrap; gap:20px; }
