/* Base */
:root{
  --bg:#f8fafc;
  --surface:#ffffff;
  --surface-alt:#eef2f7;
  --text:#0f172a;
  --muted:#475569;
  --line:#dbe3ee;
  --accent:#0f766e;
  --accent-strong:#115e59;
  --shadow:0 12px 28px rgba(15, 23, 42, 0.08);
  --radius:18px;
  --container:1120px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#fbfdff 0%,#f8fafc 100%);
  line-height:1.6;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
p{margin:0 0 1rem}
h1,h2,h3{margin:0 0 1rem;line-height:1.15;letter-spacing:-0.02em}
h1{font-size:clamp(2.4rem,5vw,4.3rem)}
h2{font-size:clamp(1.9rem,3.6vw,2.8rem)}
h3{font-size:1.15rem}
.container{width:min(100% - 2rem,var(--container));margin-inline:auto}
.section{padding:4.5rem 0}
.section-alt{background:var(--surface-alt)}
.eyebrow{
  margin-bottom:.75rem;
  color:var(--accent);
  font-size:.82rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.lead{font-size:1.1rem;color:var(--muted);max-width:62ch}
.grid{display:grid;gap:1.25rem}
.cards-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.cards-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:1.4rem;
  box-shadow:var(--shadow);
}
.section-heading{margin-bottom:2rem;max-width:54rem}
.section-heading p:last-child{color:var(--muted)}
.split{
  display:grid;
  gap:1.5rem;
  grid-template-columns:1.25fr .9fr;
  align-items:start;
}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:.8rem 1.15rem;
  border-radius:999px;
  font-weight:600;
  transition:transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.button:hover{transform:translateY(-1px)}
.button-primary{background:var(--accent);color:#fff;box-shadow:0 10px 20px rgba(15,118,110,.22)}
.button-primary:hover{background:var(--accent-strong)}
.button-secondary{background:#fff;border:1px solid var(--line)}
.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;overflow:hidden;
  clip:rect(0,0,0,0);white-space:nowrap;border:0
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter:blur(12px);
  background:rgba(248,250,252,.82);
  border-bottom:1px solid rgba(219,227,238,.9);
}
.nav{
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:.7rem;
  font-weight:700;
}
.brand span{white-space:nowrap}
.site-nav{
  display:flex;
  align-items:center;
  gap:1.2rem;
  color:var(--muted);
}
.site-nav a:hover,.mobile-menu a:hover, .site-footer a:hover{color:var(--accent)}
.menu-toggle{
  display:none;
  border:1px solid var(--line);
  background:#fff;
  border-radius:12px;
  width:44px;height:44px;
  align-items:center;justify-content:center;
}
.menu-toggle svg{width:20px;height:20px;stroke:currentColor;fill:none;stroke-width:2}
.mobile-menu{
  padding:0 0 1rem;
  display:grid;
  gap:.8rem;
}
.mobile-menu a{
  display:block;
  padding:.85rem 1rem;
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
}

/* Hero */
.hero{padding:5rem 0 4rem}
.hero-grid{
  display:grid;
  gap:2rem;
  grid-template-columns:1.15fr .85fr;
  align-items:center;
}
.hero-copy h1{max-width:11ch}
.hero-actions{
  display:flex;
  gap:.9rem;
  flex-wrap:wrap;
  margin:1.5rem 0 1.75rem;
}
.stats{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1rem;
  list-style:none;
  padding:0;margin:0;
}
.stats li{
  padding:1rem;
  background:rgba(255,255,255,.75);
  border:1px solid var(--line);
  border-radius:16px;
}
.stats strong{display:block;font-size:1.35rem}
.stats span{display:block;color:var(--muted);font-size:.94rem}
.hero-visual{
  padding:1rem;
  min-height:100%;
  display:flex;
  align-items:center;
}

/* Content */
.logos{
  display:flex;
  gap:1rem;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
}
.logos p{margin:0;color:var(--muted)}
.logos ul{
  display:flex;
  flex-wrap:wrap;
  gap:.7rem;
  list-style:none;
  padding:0;margin:0;
}
.logos li{
  padding:.55rem .85rem;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--muted);
}
.check-list{
  padding-left:1.1rem;
  margin:0;
}
.check-list li + li{margin-top:.5rem}
.contact-card dl{margin:0}
.contact-card div + div{
  margin-top:1rem;
  padding-top:1rem;
  border-top:1px solid var(--line);
}
.contact-card dt{font-size:.85rem;text-transform:uppercase;letter-spacing:.08em;color:var(--muted);margin-bottom:.25rem}
.contact-card dd{margin:0}
.info-card{position:sticky;top:100px}

/* Footer */
.site-footer{
  padding:2rem 0 3rem;
  border-top:1px solid var(--line);
  background:#fff;
}
.footer-grid{
  display:flex;
  gap:1rem;
  align-items:flex-start;
  justify-content:space-between;
}
.footer-grid nav{
  display:flex;
  gap:1rem;
  flex-wrap:wrap;
}
.footer-grid p{color:var(--muted);max-width:48ch}
.footer-brand{margin-bottom:.65rem}

/* Utility pages */
.simple-page{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:2rem 0;
}
.simple-page .card{
  max-width:720px;
  text-align:center;
}
.simple-page h1{margin-bottom:.75rem}
.simple-page p{color:var(--muted)}
.inline-links{
  display:flex;gap:.75rem;justify-content:center;flex-wrap:wrap;margin-top:1.25rem
}

/* Responsive */
@media (max-width: 920px){
  .hero-grid,.split,.cards-3,.cards-2{grid-template-columns:1fr}
  .info-card{position:static}
}
@media (max-width: 760px){
  .site-nav{display:none}
  .menu-toggle{display:inline-flex}
  .nav{min-height:68px}
  .hero{padding-top:3.5rem}
  .stats{grid-template-columns:1fr}
  .footer-grid{flex-direction:column}
}
