*{box-sizing:border-box}
:root{
  --navy:#0d2c5b;
  --green:#5aa832;
  --teal:#0c9b8c;
  --purple:#71349b;
  --orange:#f28a1a;
  --text:#17345f;
  --muted:#64748b;
  --bg:#ffffff;
}
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:
    radial-gradient(circle at 8% 0%, #eef7ff 0, transparent 28%),
    linear-gradient(#fff,#fff);
}
main{overflow:hidden}
.hero{
  max-width:1200px;
  margin:0 auto;
  padding:72px 28px 34px;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:48px;
  align-items:center;
}
.eyebrow{
  color:#2f8f2a;
  font-weight:700;
  font-size:1.05rem;
  margin:0 0 24px;
}
h1{
  color:var(--navy);
  font-size:clamp(3rem,6vw,5.6rem);
  line-height:.98;
  letter-spacing:-.04em;
  margin:0;
}
.accent-line{
  width:58px;
  height:3px;
  background:var(--green);
  margin:28px 0;
  border-radius:99px;
}
.accent-line.center{margin:12px auto 18px}
.lead{
  font-size:1.14rem;
  line-height:1.7;
  max-width:620px;
}
.hero-logo img{
  width:100%;
  max-width:520px;
  display:block;
  margin:auto;
}
.landscape{
  position:relative;
  height:160px;
  margin-top:10px;
  overflow:hidden;
  background:linear-gradient(to top,#eef9ec 0,#f7fbff 68%,transparent 68%);
}
.hill{
  position:absolute;
  bottom:-80px;
  border-radius:50%;
  filter:blur(.2px);
}
.hill-a{left:-8%;width:54%;height:190px;background:#dff1c9;transform:rotate(-3deg)}
.hill-b{left:30%;width:52%;height:180px;background:#eaf5cf}
.hill-c{right:-10%;width:48%;height:200px;background:#d7efe7}
.path{
  position:absolute;
  width:42%;
  height:70px;
  left:31%;
  bottom:0;
  border-radius:50%;
  border-top:20px solid #fff7c7;
  transform:rotate(-3deg);
}
.purpose{
  position:relative;
  z-index:2;
  background:#fff;
  padding:55px 24px 64px;
  max-width:1200px;
  margin:0 auto;
}
.section-heading{text-align:center;max-width:760px;margin:0 auto 34px}
.section-heading h2{
  color:var(--navy);
  font-size:2.4rem;
  margin:0;
}
.section-heading p{font-size:1.06rem;line-height:1.6}
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.card{
  background:#fff;
  border:1px solid #edf0f4;
  border-radius:20px;
  padding:30px 26px 32px;
  text-align:center;
  box-shadow:0 10px 28px rgba(13,44,91,.08);
}
.card p{line-height:1.65;margin-bottom:0}
.icon{
  width:76px;height:76px;border-radius:50%;
  display:grid;place-items:center;
  margin:0 auto 18px;
  font-size:2rem;
}
.teal{background:#ddf6f2}.purple{background:#efe3f7}.orange{background:#fff0dd}
.teal-text{color:var(--teal)}.purple-text{color:var(--purple)}.orange-text{color:var(--orange)}
.card h3{font-size:1.35rem;margin:0 0 12px}
footer{
  border-top:1px solid #dbe8d6;
  max-width:1200px;
  margin:0 auto;
  padding:30px 28px 24px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:32px;
  align-items:center;
}
.footer-brand img{max-width:250px;width:100%}
footer h4{margin:0 0 8px;color:var(--navy)}
footer a{color:var(--navy);text-decoration:none}
footer a:hover{text-decoration:underline}
.muted{color:var(--muted);margin:0}
.copyright{text-align:center;color:#737d8c;font-size:.92rem;margin:28px 0 0}

@media (max-width:850px){
  .hero{grid-template-columns:1fr;text-align:center;padding-top:48px}
  .hero-logo{order:-1}
  .hero-logo img{max-width:360px}
  .lead{margin-left:auto;margin-right:auto}
  .accent-line{margin-left:auto;margin-right:auto}
  .cards{grid-template-columns:1fr}
  .landscape{height:110px}
  .footer-grid{grid-template-columns:1fr;text-align:center}
  .footer-brand img{margin:auto}
}
