:root{
  --bg:#f6f8fb;
  --surface:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --brand:#0f766e;
  --brand-dark:#0b5f58;
  --border:#dbe4ee;
  --shadow:0 18px 45px rgba(15,23,42,.08);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

a{
  color:inherit;
}

.container{
  width:min(1120px,92%);
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:10;
  background:rgba(246,248,251,.88);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:1rem 0;
  gap:1rem;
}

.brand{
  font-weight:800;
  text-decoration:none;
  font-size:1.1rem;
  letter-spacing:-.02em;
}

.nav a{
  text-decoration:none;
  color:var(--muted);
  margin-left:1rem;
}

.hero{
  display:grid;
  grid-template-columns:1.4fr .9fr;
  gap:2rem;
  padding:4.5rem 0;
  align-items:center;
}

.eyebrow,
.section-kicker{
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.78rem;
  color:var(--brand);
  font-weight:800;
  margin:0 0 .75rem;
}

.hero h1{
  font-size:clamp(2.3rem,5vw,4.5rem);
  line-height:1.05;
  margin:0 0 1rem;
  letter-spacing:-.04em;
}

.lead{
  font-size:1.08rem;
  color:var(--muted);
  max-width:60ch;
  margin:0;
}

.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
  margin-top:1.6rem;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.95rem 1.3rem;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  border:1px solid transparent;
  transition:.2s ease;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn-primary{
  background:var(--brand);
  color:#fff;
}

.btn-primary:hover{
  background:var(--brand-dark);
}

.btn-secondary{
  background:#fff;
  border-color:var(--border);
}

.hero-card,
.card,
.contact-card,
.section{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:22px;
  box-shadow:var(--shadow);
}

.hero-card{
  padding:1.5rem;
}

.hero-card h2,
.section h2{
  margin-top:0;
  letter-spacing:-.03em;
}

.hero-card ul{
  margin:0;
  padding-left:1.2rem;
  color:var(--muted);
}

.section{
  padding:2rem;
  margin-bottom:1.5rem;
}

.section-head{
  max-width:760px;
  margin-bottom:1.25rem;
}

.section h2{
  font-size:1.9rem;
  margin-bottom:.5rem;
}

.section p,
.card p,
.contact-card p{
  color:var(--muted);
}

.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1rem;
}

.card{
  padding:1.3rem;
}

.card h3{
  margin-top:0;
}

.pill-row{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
}

.pill{
  padding:.7rem 1rem;
  border-radius:999px;
  background:#e9f5f3;
  color:#0f766e;
  font-weight:700;
}

.contact-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1rem;
}

.contact-card{
  padding:1.25rem;
}

.contact-card a{
  text-decoration:none;
  font-weight:700;
}

.site-footer{
  padding:1.5rem 0 3rem;
  color:var(--muted);
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
  border-top:1px solid var(--border);
  padding-top:1rem;
}

@media (max-width:900px){
  .hero,
  .grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .nav{
    flex-wrap:wrap;
  }

  .nav a{
    margin-left:0;
    margin-right:1rem;
  }
}