* { box-sizing: border-box; }

:root {
  --navy: #123b80;
  --blue: #2a73d9;
  --sky: #eaf4ff;
  --red: #ee3f59;
  --yellow: #ffca3a;
  --green: #34a853;
  --teal: #14a38b;
  --ink: #15233b;
  --muted: #5f6c7d;
  --cream: #fffaf0;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(20, 49, 93, 0.12);
  --radius: 24px;
}

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }

a { color: inherit; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: #000;
  color: #fff;
  padding: 10px 14px;
  z-index: 1000;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(18,59,128,0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  text-decoration: none;
  color: var(--navy);
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--yellow), var(--green), var(--blue));
  box-shadow: 0 8px 20px rgba(18,59,128,0.18);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
  font-size: 0.96rem;
}

.site-nav a {
  text-decoration: none;
  color: #26364f;
}

.site-nav a:hover { color: var(--blue); }

.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 11px 16px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--sky);
  color: var(--navy);
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 12px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 72px;
  background:
    radial-gradient(circle at 0% 0%, rgba(238,63,89,0.10), transparent 34%),
    radial-gradient(circle at 100% 15%, rgba(255,202,58,0.18), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.hero-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.25;
}
.hero-shape-1 { width: 280px; height: 280px; background: var(--green); right: -120px; top: 190px; }
.hero-shape-2 { width: 220px; height: 220px; background: var(--blue); left: -100px; bottom: -80px; }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--blue);
  margin-bottom: 14px;
}

.eyebrow.light { color: rgba(255,255,255,0.85); }

h1, h2, h3 {
  font-family: "Baloo 2", sans-serif;
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: clamp(3.4rem, 7vw, 6.2rem);
  color: var(--navy);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  color: var(--navy);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.55rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.hero-lead {
  font-size: 1.16rem;
  color: var(--muted);
  max-width: 640px;
  margin: 22px 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--red), #ff6e48);
  color: #fff;
  box-shadow: 0 12px 26px rgba(238,63,89,0.24);
}

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

.btn-light {
  background: #fff;
  color: var(--navy);
}

.hero-note {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
  color: #40506a;
}

.heart { color: var(--red); font-size: 1.4rem; }

.hero-card {
  background: #fff;
  border-radius: 34px;
  padding: 16px;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
}

.hero-card-caption {
  text-align: center;
  font-family: "Baloo 2", sans-serif;
  color: var(--navy);
  font-weight: 800;
  padding: 14px 8px 2px;
}

.section { padding: 88px 0; }
.section-soft { background: var(--cream); }

.section-heading { max-width: 760px; margin-bottom: 38px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading p { color: var(--muted); font-size: 1.05rem; }

.two-card-grid,
.needs-grid,
.action-grid,
.contact-grid {
  display: grid;
  gap: 24px;
}

.two-card-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }

.info-card {
  position: relative;
  padding: 34px;
  border-radius: var(--radius);
  min-height: 290px;
  box-shadow: 0 14px 40px rgba(25,53,92,0.08);
}

.mission-card { background: linear-gradient(145deg, #fff0f2, #ffffff); }
.goal-card { background: linear-gradient(145deg, #eef9f0, #ffffff); }

.icon-circle {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.mission-card .icon-circle { background: var(--red); }
.goal-card .icon-circle { background: var(--green); }

.info-card p,
.need-card li,
.action-card p,
.contact-grid p { color: var(--muted); }

.needs-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }

.need-card {
  background: #fff;
  padding: 34px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(18,59,128,0.06);
}

.need-icon {
  font-size: 2.6rem;
  margin-bottom: 14px;
}

.need-card ul {
  padding-left: 20px;
  margin: 14px 0 0;
}

.need-card li { margin: 8px 0; }

.action-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }

.action-card {
  padding: 28px;
  border-radius: 22px;
  background: #f8fbff;
  border-top: 5px solid var(--blue);
}

.action-card:nth-child(2) { border-top-color: var(--red); }
.action-card:nth-child(3) { border-top-color: var(--green); }
.action-card:nth-child(4) { border-top-color: var(--yellow); }

.number {
  display: inline-block;
  color: var(--blue);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.partner-band {
  padding: 66px 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(18,59,128,0.97), rgba(42,115,217,0.97)),
    radial-gradient(circle at 20% 10%, var(--yellow), transparent 30%);
}

.partner-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}

.partner-band h2,
.cta-footer h2 { color: #fff; }
.partner-band p { max-width: 760px; color: rgba(255,255,255,0.86); }

.contact-grid {
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
}

.contact-card {
  background: var(--navy);
  border-radius: 26px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.contact-card a {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  margin: 8px 0;
}

.contact-card a:hover { background: rgba(255,255,255,0.14); }

.contact-label {
  display: block;
  color: rgba(255,255,255,0.68);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 3px;
}

.cta-footer {
  padding: 58px 0;
  color: #fff;
  background: linear-gradient(90deg, var(--red), #ff8a3d 28%, var(--green) 58%, var(--blue));
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.site-footer {
  background: #0d2347;
  color: rgba(255,255,255,0.85);
  padding: 30px 0;
  font-size: 0.92rem;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-wrap > div:first-child {
  display: flex;
  flex-direction: column;
}

.footer-wrap strong { color: #fff; }

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

  .action-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 20px;
    left: 20px;
    padding: 18px;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.open { display: flex; }
  .menu-toggle { display: inline-block; }
  .partner-grid { text-align: left; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1120px); }
  .hero { padding-top: 56px; }
  .hero-grid { gap: 34px; }
  .two-card-grid,
  .needs-grid,
  .action-grid { grid-template-columns: 1fr; }
  .section { padding: 68px 0; }
  .cta-inner,
  .footer-wrap { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; }
  h1 { font-size: clamp(3rem, 17vw, 4.8rem); }
}
