:root{
  --page:#ffffff;
  --ink:#0f172a;
  --muted:#5b6b7f;
  --line:#e8eef6;
  --soft:#f7fafc;
  --card:#ffffff;
  --aqua:#22c3b6;
  --blue:#4f7cff;
  --pink:#ff5b9a;
  --yellow:#fff15a;
  --shadow:0 24px 60px rgba(2,6,23,.10);
  --shadow-soft:0 12px 30px rgba(2,6,23,.07);
  --radius:18px;
  --nav-h:76px;
  --wrap:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Manrope",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:var(--page);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit}

.container{
  width:min(var(--wrap), calc(100% - 40px));
  margin-inline:auto;
}
.section{
  padding:84px 0;
  position:relative;
}
.section-tight{padding:48px 0}
.section::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:1px;
  background:linear-gradient(90deg, rgba(34,195,182,0), rgba(34,195,182,.35), rgba(79,124,255,.22), rgba(255,91,154,.22), rgba(255,241,90,.28), rgba(34,195,182,0));
}

h1,h2,h3{margin:0 0 12px;letter-spacing:-.02em}
h1{font-size:clamp(34px,5.5vw,68px);line-height:1.05;font-weight:800}
h2{font-size:clamp(28px,3vw,42px);line-height:1.1;font-weight:800}
h3{font-size:clamp(18px,1.6vw,24px);line-height:1.2;font-weight:800}
p{margin:0;color:var(--muted);line-height:1.6}
.lede{font-size:clamp(16px,1.45vw,20px);color:#233246}
.muted{color:var(--muted)}

.section-head{display:grid;gap:12px;margin-bottom:26px}
.section-head-inline{display:flex;align-items:flex-start;justify-content:space-between;gap:18px;flex-wrap:wrap}
.section-divider{
  height:2px;
  width:min(1120px, calc(100% - 40px));
  margin:26px auto 0;
  border-radius:999px;
  background:linear-gradient(90deg,
    rgba(34,195,182,0) 0%,
    rgba(34,195,182,.55) 18%,
    rgba(79,124,255,.4) 42%,
    rgba(255,91,154,.38) 64%,
    rgba(255,241,90,.5) 86%,
    rgba(34,195,182,0) 100%);
}
.section-divider.thin{margin:0 0 22px;width:100%}

.site-nav{
  position:sticky;
  top:0;
  z-index:1000;
  height:var(--nav-h);
  background:rgba(255,255,255,.92);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(12px) saturate(160%);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  height:100%;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  color:var(--ink);
}
.brand-mark{
  width:30px;
  height:30px;
  border-radius:10px;
  background:conic-gradient(from 35deg,var(--aqua),var(--blue),var(--pink),var(--aqua));
  box-shadow:0 8px 18px rgba(15,23,42,.12);
}
.nav-menu{
  display:flex;
  align-items:center;
  gap:8px;
}
.nav-menu a{
  padding:10px 14px;
  border-radius:12px;
  font-weight:700;
  color:#183247;
}
.nav-menu a:hover{background:var(--soft)}
.nav-cta{
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
}
.menu-btn{
  display:none;
  width:48px;
  height:48px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}
.menu-btn span{
  width:18px;
  height:2px;
  border-radius:999px;
  background:#0f172a;
  transition:transform .2s ease, opacity .2s ease;
}
.menu-btn.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.menu-btn.is-open span:nth-child(2){opacity:0}
.menu-btn.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.hero{
  padding-top:calc(var(--nav-h) + 32px);
  overflow:hidden;
}
.hero-copy{display:grid;gap:18px}
.hi{
  display:inline;
  padding:0 .18em .06em;
  box-decoration-break:clone;
  -webkit-box-decoration-break:clone;
  background:linear-gradient(90deg,var(--aqua),var(--blue),var(--pink),var(--yellow)) 0 88% / 100% .62em no-repeat;
  border-radius:.25em;
}
.cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
}
.cta-row.compact{margin-top:16px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid transparent;
  font-weight:800;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  cursor:pointer;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  background:linear-gradient(90deg,var(--aqua),var(--blue));
  color:#fff;
  box-shadow:0 14px 28px rgba(79,124,255,.18);
}
.btn-secondary{
  background:#fff;
  border-color:var(--line);
  color:var(--ink);
}

.callout-wrap{margin-top:18px}
.callout-block{display:grid;gap:8px}
.callout-title{
  font-size:clamp(24px,2.3vw,34px);
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.callout-title span:last-child{color:#0a2540}
.callout-sub{font-weight:700;color:var(--muted)}

.segment-bubble-wrap{margin-top:18px}
.segment-bubble{
  width:min(1120px, calc(100% - 40px));
  margin:0 auto;
  padding:14px;
  border-radius:22px;
  background:linear-gradient(#fff,#fff) padding-box,
             conic-gradient(from 180deg,var(--aqua),var(--blue),var(--pink),var(--yellow),var(--aqua)) border-box;
  border:1px solid transparent;
  box-shadow:var(--shadow-soft);
}
.chip-row{
  display:flex;
  gap:10px;
  overflow-x:auto;
  overflow-y:hidden;
  scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
  padding:6px 4px;
}
.chip-row::-webkit-scrollbar{display:none}
.chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  white-space:nowrap;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:0 2px 10px rgba(2,6,23,.05);
  font-weight:800;
  color:#15324b;
}

.hero-rail{
  margin-top:24px;
  width:100%;
  background:#000;
}
.hero-rail-track{
  position:relative;
  height:clamp(360px,70vh,760px);
  width:100%;
  overflow:hidden;
}
.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity .45s ease;
}
.hero-slide.is-active{opacity:1}
.hero-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-slide::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(2,6,23,.06), rgba(2,6,23,.28));
}
.hero-rail-caption{
  position:absolute;
  left:min(24px,4vw);
  bottom:min(18px,4vw);
  z-index:4;
  display:inline-flex;
  align-items:center;
  max-width:min(860px, calc(100% - 48px));
  padding:10px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.96);
  border:1px solid var(--line);
  box-shadow:0 10px 24px rgba(2,6,23,.14);
  color:#0b1f33;
  font-weight:800;
}

.affiliation-band{
  display:flex;
  align-items:center;
  gap:16px;
  padding:18px 20px;
  border:1px solid var(--line);
  border-radius:20px;
  background:linear-gradient(180deg,#fff,#f7fafc);
  box-shadow:var(--shadow-soft);
}
.affiliation-logo{
  width:58px;
  height:58px;
  flex:0 0 58px;
  border-radius:14px;
  overflow:hidden;
  background:#fff;
  border:1px solid var(--line);
}
.eyebrow{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(0,163,108,.22);
  background:rgba(0,163,108,.08);
  font-size:13px;
  font-weight:800;
  color:#0a7b45;
}
.affiliation-title{font-size:clamp(22px,2vw,28px);margin-top:10px}
.affiliation-sub{margin-top:6px}

.vision-grid,
.sector-grid,
.stack-grid,
.profile-grid,
.partner-grid,
.three-up{
  display:grid;
  gap:18px;
}
.vision-grid{grid-template-columns:repeat(3,1fr)}
.feature-card,
.sector-card,
.stack-card,
.profile-card,
.partner-card,
.card,
.panel,
.kpi-banner{
  border:1px solid var(--line);
  border-radius:18px;
  background:linear-gradient(180deg,#fff,#fbfdff);
  box-shadow:var(--shadow-soft);
}
.feature-card,.stack-card,.partner-card,.card,.panel{padding:18px}
.sector-card{padding:18px}
.feature-card{position:relative;overflow:hidden}
.feature-card::before,
.sector-card::before,
.stack-card::before,
.profile-card::before,
.partner-card::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:4px;
  background:linear-gradient(90deg,var(--pink),var(--aqua),var(--blue),var(--yellow));
}
.vision-lede strong{color:var(--ink)}
.plain-explainer{padding:22px}

.sector-grid{grid-template-columns:repeat(3,1fr)}
.sector-head{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:10px;
}
.sector-rank{
  width:30px;height:30px;border-radius:999px;
  display:grid;place-items:center;
  font-weight:900;color:#fff;
  background:linear-gradient(135deg,var(--aqua),var(--blue));
}
.sector-pill{
  margin-left:auto;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:0 8px 18px rgba(2,6,23,.05);
  font-size:13px;
  font-weight:800;
  color:#15324b;
}

.calc-layout{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:20px;
}
.calc-col{display:grid;gap:18px}
.card h3{margin-bottom:10px}
.card-muted{background:#fbfdff}
.form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
.form-grid label,
.join-form label{
  display:grid;
  gap:7px;
  color:#183247;
  font-weight:700;
  font-size:14px;
}
input,select,textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:12px;
  padding:12px 14px;
  background:#fff;
  color:var(--ink);
  outline:none;
}
input:focus,select:focus,textarea:focus{
  border-color:var(--blue);
  box-shadow:0 0 0 4px rgba(79,124,255,.10);
}
textarea{min-height:130px;resize:vertical}
.benchmark-grid,
.kpi-grid,
.insight-grid{
  display:grid;
  gap:12px;
}
.benchmark-grid{grid-template-columns:repeat(3,1fr)}
.kpi-grid{grid-template-columns:repeat(3,1fr);margin-top:14px}
.insight-grid{grid-template-columns:repeat(3,1fr);margin-top:14px}
.benchmark-card,
.kpi-card,
.insight-card{
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  padding:14px;
}
.benchmark-card strong{display:block;font-size:20px;color:var(--ink)}
.benchmark-card span{font-size:13px;color:var(--muted)}
.kpi-card{text-align:center}
.kpi-value{display:block;font-size:28px;font-weight:800;color:var(--ink)}
.kpi-label{display:block;font-size:13px;color:var(--muted);margin-top:6px}
.subhead{margin-top:18px}
.chip-cluster{display:flex;gap:8px;flex-wrap:wrap;margin-top:14px}
.mini-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid #dbe7f6;
  background:#f5f9ff;
  color:#12314f;
  font-size:12px;
  font-weight:800;
}
.mini-chip.dark{
  background:#0f172a;
  border-color:#0f172a;
  color:#fff;
}
.insight-card h4{margin:0 0 6px;font-size:16px}
.insight-card p{font-size:14px}

.tech-hero{
  margin:0;
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  background:#0b1220;
  box-shadow:var(--shadow-soft);
}
.tech-hero img{width:100%;aspect-ratio:16/8;object-fit:cover}
.tech-hero figcaption{
  padding:14px 16px;
  color:#0b1f33;
  font-weight:700;
  background:#fff;
}
.split-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:20px;
  margin-top:20px;
}
.steps-list{display:grid;gap:14px}
.step-card{
  position:relative;
  padding:18px 18px 18px 22px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow:var(--shadow-soft);
}
.step-card::before{
  content:"";
  position:absolute;
  left:0;
  top:18px;
  bottom:18px;
  width:4px;
  border-radius:999px;
  background:linear-gradient(180deg,var(--aqua),var(--blue),var(--pink));
}
.clean-list{margin:12px 0 0;padding-left:18px;color:#233246}
.clean-list li+li{margin-top:8px}
.stack-grid{grid-template-columns:repeat(3,1fr);margin-top:20px}
.three-up{grid-template-columns:repeat(3,1fr)}
.kpi-banner{
  padding:22px;
  text-align:center;
}
.kpi-banner strong{display:block;font-size:34px;color:var(--ink)}
.kpi-banner span{display:block;color:var(--muted);margin-top:6px}

.profile-grid{grid-template-columns:repeat(3,1fr);margin-bottom:18px}
.profile-card{
  position:relative;
  display:grid;
  grid-template-columns:58px 1fr;
  gap:14px;
  padding:22px 18px 18px;
}
.avatar{
  width:58px;
  height:58px;
  border-radius:14px;
  display:grid;
  place-items:center;
  font-weight:900;
  color:var(--blue);
  background:#eef3ff;
  border:1px solid #dbe6ff;
}
.partner-grid{grid-template-columns:repeat(3,1fr)}

.join-form{
  display:grid;
  gap:16px;
  padding:22px;
  border:1px solid var(--line);
  border-radius:20px;
  background:linear-gradient(180deg,#fff,#fbfdff);
  box-shadow:var(--shadow-soft);
}
.join-form .full-width{grid-column:1/-1}
.check-row{
  display:flex !important;
  align-items:flex-start;
  gap:10px;
}
.check-row input{width:18px;height:18px;margin-top:2px;padding:0}
.form-status{min-height:22px;font-weight:700}
.form-status.is-error{color:#b42318}
.form-status.is-success{color:#0a7b45}
.hp-field{position:absolute;left:-9999px;opacity:0}
.anchor-offset{position:relative;top:-96px}

.site-footer{
  border-top:1px solid var(--line);
  background:#fff;
  margin-top:52px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.05fr 1.95fr;
  gap:24px;
  padding:28px 0 20px;
}
.footer-brand{
  padding:18px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow:var(--shadow-soft);
}
.footer-brand p{margin-top:10px}
.footer-cols{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.footer-cols > div{
  padding:18px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
}
.footer-cols h3{font-size:14px;text-transform:uppercase;letter-spacing:.08em;margin-bottom:12px}
.footer-cols ul{margin:0;padding:0;list-style:none;display:grid;gap:8px}
.footer-cols li a{font-weight:700;color:#183247}
.footer-btn{width:100%;margin-bottom:10px}
.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:16px 0 26px;
  color:var(--muted);
  font-size:14px;
}
.footer-bottom-links{display:flex;gap:14px;flex-wrap:wrap}
.to-top{
  width:38px;height:38px;border-radius:12px;border:1px solid var(--line);background:#fff;font-weight:900;cursor:pointer;
}

.modal-scrim{
  position:fixed;
  inset:0;
  display:none;
  place-items:center;
  background:rgba(2,6,23,.58);
  z-index:1200;
  padding:20px;
}
.modal-scrim.is-open{display:grid}
.modal{
  width:min(820px,100%);
  max-height:84vh;
  overflow:auto;
  background:#fff;
  border-radius:20px;
  box-shadow:0 30px 80px rgba(2,6,23,.28);
  padding:22px;
}
.modal-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}
.modal-close{
  border:0;
  background:transparent;
  font-size:22px;
  cursor:pointer;
  width:40px;height:40px;border-radius:12px;
}
.modal-close:hover{background:#f3f4f6}
.modal-body{display:grid;gap:12px;color:#334155}
.modal-body ul{margin:0;padding-left:18px}
.modal-body p,.modal-body li{line-height:1.6}

@media (max-width: 1100px){
  .vision-grid,
  .sector-grid,
  .stack-grid,
  .profile-grid,
  .partner-grid,
  .three-up,
  .footer-cols,
  .kpi-grid,
  .insight-grid,
  .benchmark-grid{grid-template-columns:repeat(2,1fr)}
  .calc-layout,
  .split-grid,
  .footer-grid{grid-template-columns:1fr}
}

@media (max-width: 860px){
  :root{--nav-h:70px}
  .menu-btn{display:inline-flex}
  .nav-menu{
    position:absolute;
    top:calc(var(--nav-h) + 8px);
    left:20px;
    right:20px;
    display:grid;
    gap:6px;
    padding:12px;
    border:1px solid var(--line);
    border-radius:18px;
    background:rgba(255,255,255,.98);
    box-shadow:var(--shadow);
    opacity:0;
    transform:translateY(-8px);
    pointer-events:none;
    transition:opacity .2s ease, transform .2s ease;
  }
  .nav-menu.is-open{
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
  }
}

@media (max-width: 720px){
  .container{width:min(var(--wrap), calc(100% - 28px))}
  .section{padding:60px 0}
  .hero{padding-top:calc(var(--nav-h) + 18px)}
  .hero-rail-track{height:min(60vh,420px)}
  .hero-rail-caption{
    left:50%;
    transform:translateX(-50%);
    bottom:12px;
    width:min(92vw, 640px);
    max-width:none;
    text-align:center;
  }
  .affiliation-band{align-items:flex-start}
  .vision-grid,
  .sector-grid,
  .stack-grid,
  .profile-grid,
  .partner-grid,
  .three-up,
  .footer-cols,
  .form-grid,
  .kpi-grid,
  .insight-grid,
  .benchmark-grid{grid-template-columns:1fr}
  .footer-bottom{flex-wrap:wrap}
}
