:root{
  --bg: #F5F6FA;
  --panel: #FFFFFF;
  --ink: #0B0E1A;
  --blue: #0266FF;
  --blue-deep: #051C4D;
  --blue-deep2: #081F52;
  --blue-soft: #EAF1FF;
  --muted: #5C6478;
  --line: #DEE2EC;
  --line-on-dark: rgba(255,255,255,0.14);
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--bg);
  color:var(--ink);
  font-family:'Inter', sans-serif;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3,.wordmark{
  font-family:'Space Grotesk', sans-serif;
  letter-spacing:-0.02em;
}
a{color:inherit; text-decoration:none;}
img{display:block; max-width:100%;}
.wrap{
  max-width:1180px;
  margin:0 auto;
  padding:0 40px;
}
section{position:relative;}

/* ---------- NAV ---------- */
header{
  position:sticky; top:0; z-index:50;
  background:rgba(245,246,250,0.86);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
nav.wrap{
  display:flex; align-items:center; justify-content:space-between;
  height:78px;
}
.brand{display:flex; align-items:center; gap:12px;}
.brand img{height:30px; width:auto;}
.brand span{font-size:20px; font-weight:600; color:var(--ink);}
.navlinks{display:flex; align-items:center; gap:36px; font-size:15px; font-weight:500; color:var(--ink);}
.navlinks a{position:relative; padding:4px 0; color:var(--ink); opacity:0.75; transition:opacity .2s ease;}
.navlinks a:hover{opacity:1;}
.navcta{
  background:var(--ink); color:#fff; padding:10px 20px; border-radius:2px;
  font-size:14px; font-weight:600;
}
.navcta:hover{background:var(--blue);}
.navtoggle{display:none;}

/* ---------- HERO ---------- */
.hero{
  background: linear-gradient(155deg, var(--blue-deep) 0%, var(--blue-deep2) 55%, #0A2E77 100%);
  color:#fff;
  padding:96px 0 120px;
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap:40px;
  align-items:center;
  position:relative;
}
.badge{
  display:inline-flex; align-items:center; gap:10px;
  border:1px solid var(--line-on-dark);
  padding:7px 14px 7px 8px;
  border-radius:2px;
  font-size:13px; font-weight:500;
  color:#CFE0FF;
  margin-bottom:28px;
}
.badge .dot{width:7px; height:7px; background:#4C8CFF; border-radius:50%; flex:none;}
.hero h1{
  font-size:56px; line-height:1.06; font-weight:600;
  color:#fff;
  max-width:640px;
}
.hero h1 em{
  font-style:normal; color:#7FB0FF;
}
.hero p.lead{
  margin-top:26px;
  font-size:18px; line-height:1.6;
  color:#C6D3EC;
  max-width:480px;
}
.hero-actions{
  margin-top:40px;
  display:flex; gap:16px; flex-wrap:wrap;
}
.btn{
  display:inline-block;
  padding:15px 26px;
  font-size:15px; font-weight:600;
  border-radius:2px;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn-primary{background:#fff; color:var(--blue-deep);}
.btn-primary:hover{background:#7FB0FF; color:#04123B;}
.btn-ghost{border:1px solid var(--line-on-dark); color:#fff;}
.btn-ghost:hover{border-color:#fff;}
.btn-dark{background:var(--ink); color:#fff;}
.btn-dark:hover{background:var(--blue);}

.hero-art{
  position:relative;
  display:flex; align-items:center; justify-content:center;
  height:420px;
}
.hero-art img{
  width:105%;
  max-width:640px;
  filter: drop-shadow(0 30px 60px rgba(0,10,40,0.45));
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty{
  0%,100%{ transform: translateY(0px); }
  50%{ transform: translateY(-14px); }
}

.hero-founders{
  margin-top:56px;
  padding-top:28px;
  border-top:1px solid var(--line-on-dark);
  display:flex; gap:48px; flex-wrap:wrap;
}
.hero-founders .stat b{
  display:block; font-family:'Space Grotesk',sans-serif; font-size:26px; font-weight:600; color:#fff;
}
.hero-founders .stat span{
  font-size:13px; color:#9FB4DB;
}

/* zigzag divider */
.zig{
  display:block; width:100%; height:26px;
}

/* ---------- ABOUT ---------- */
.about{
  padding:120px 0;
}
.about-grid{
  display:grid;
  grid-template-columns: 0.62fr 0.38fr;
  gap:80px;
}
.eyebrow-row{
  display:flex; align-items:center; gap:14px;
  margin-bottom:22px;
}
.eyebrow-mark{
  width:20px; height:14px;
}
.eyebrow-row span{
  font-size:14px; font-weight:600; color:var(--blue);
}
.about h2{
  font-size:36px; font-weight:600; line-height:1.15; max-width:520px;
}
.about p{
  margin-top:24px; font-size:16.5px; line-height:1.75; color:var(--muted); max-width:520px;
}
.about p + p{margin-top:16px;}
.about-stats{
  display:flex; flex-direction:column; gap:0;
  border-top:1px solid var(--line);
}
.about-stats .row{
  display:flex; justify-content:space-between; align-items:baseline;
  padding:22px 0; border-bottom:1px solid var(--line);
}
.about-stats .row b{
  font-family:'Space Grotesk', sans-serif; font-size:30px; font-weight:600;
}
.about-stats .row span{
  font-size:14px; color:var(--muted); text-align:right; max-width:220px;
}

/* ---------- SERVICES ---------- */
.services{
  background:var(--ink);
  color:#fff;
  padding:120px 0;
}
.services-head{
  display:flex; justify-content:space-between; align-items:flex-end; gap:40px;
  margin-bottom:64px;
  flex-wrap:wrap;
}
.services .eyebrow-row span{color:#7FB0FF;}
.services h2{
  font-size:36px; font-weight:600; color:#fff; max-width:460px;
}
.services-head p{
  color:#9AA3B8; font-size:16px; max-width:340px; line-height:1.6;
}
.service-list{
  border-top:1px solid rgba(255,255,255,0.12);
}
.service-row{
  display:grid;
  grid-template-columns: 70px 1fr 1.1fr;
  gap:32px;
  align-items:start;
  padding:36px 0;
  border-bottom:1px solid rgba(255,255,255,0.12);
  transition:background .2s ease;
}
.service-row:hover{background:rgba(255,255,255,0.03);}
.service-num{
  font-family:'Space Grotesk',sans-serif; font-size:14px; color:#5A6785; padding-top:6px;
}
.service-row h3{
  font-size:23px; font-weight:600; color:#fff;
}
.service-row p{
  font-size:15.5px; line-height:1.7; color:#A7AFC4;
}

/* ---------- WHY ---------- */
.why{
  padding:120px 0;
}
.why-head{max-width:600px; margin-bottom:64px;}
.why-head h2{font-size:36px; font-weight:600; line-height:1.15;}
.why-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:0;
  border-top:1px solid var(--line);
}
.why-col{
  padding:36px 32px 36px 0;
  border-right:1px solid var(--line);
}
.why-col:last-child{border-right:none;}
.why-col .num{
  font-family:'Space Grotesk',sans-serif; color:var(--blue); font-size:14px; font-weight:600;
}
.why-col h3{
  margin-top:18px; font-size:19px; font-weight:600;
}
.why-col p{
  margin-top:12px; font-size:15px; line-height:1.7; color:var(--muted);
}

/* ---------- CONTACT ---------- */
.contact{
  background: linear-gradient(155deg, var(--blue-deep2) 0%, var(--blue-deep) 100%);
  color:#fff;
  padding:130px 0 90px;
  position:relative;
  overflow:hidden;
}
.contact-grid{
  display:grid; grid-template-columns:1.2fr 0.8fr; gap:60px; align-items:end;
}
.contact h2{
  font-size:44px; font-weight:600; line-height:1.12; max-width:560px;
}
.contact p{
  margin-top:22px; font-size:17px; color:#C6D3EC; max-width:440px; line-height:1.6;
}
.contact-email{
  display:inline-block; margin-top:34px;
  font-family:'Space Grotesk',sans-serif;
  font-size:28px; font-weight:600; color:#fff;
  border-bottom:2px solid var(--blue);
  padding-bottom:4px;
}
.contact-email:hover{color:#7FB0FF;}
.contact-side{
  border-left:1px solid var(--line-on-dark);
  padding-left:44px;
}
.contact-side .item{margin-bottom:26px;}
.contact-side .item:last-child{margin-bottom:0;}
.contact-side .item span{display:block; font-size:12.5px; color:#8FA3CC; margin-bottom:6px;}
.contact-side .item b{font-size:16px; font-weight:500; color:#fff;}

footer{
  background:var(--blue-deep2);
  color:#7C89AD;
  padding:26px 0;
  border-top:1px solid var(--line-on-dark);
}
.foot-row{
  display:flex; justify-content:space-between; align-items:center;
  font-size:13px; flex-wrap:wrap; gap:10px;
}
.foot-row .brand img{height:18px;}
.foot-row a{opacity:0.85;}
.foot-row a:hover{opacity:1;}

@media (prefers-reduced-motion: reduce){
  .hero-art img{animation:none;}
  html{scroll-behavior:auto;}
}

@media (max-width: 860px){
  .wrap{padding:0 22px;}
  .navlinks{display:none;}
  .hero{padding:64px 0 80px;}
  .hero-grid{grid-template-columns:1fr; gap:56px;}
  .hero h1{font-size:38px;}
  .hero-art{order:-1; height:220px;}
  .hero-founders{gap:28px;}
  .about-grid{grid-template-columns:1fr; gap:48px;}
  .about h2, .services h2, .why-head h2, .contact h2{font-size:28px;}
  .services-head{flex-direction:column; align-items:flex-start;}
  .service-row{grid-template-columns:1fr; gap:10px;}
  .why-grid{grid-template-columns:1fr;}
  .why-col{border-right:none; border-bottom:1px solid var(--line); padding:28px 0;}
  .contact-grid{grid-template-columns:1fr; gap:44px;}
  .contact-side{border-left:none; padding-left:0; border-top:1px solid var(--line-on-dark); padding-top:30px;}
  .contact-email{font-size:22px;}
}
