:root {
  --blue: #2e5598;
  --cream: #fff6f2;
  --coral: #ff5757;
  --charcoal: #3d3d4e;
  --black: #1e2433;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(15, 22, 40, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Proxima Nova", "Archivo", "Avenir Next", sans-serif;
  color: var(--charcoal);
  background: radial-gradient(circle at top left, #f8fbff 0%, #fff6f2 35%, #ffe5e0 65%, #f1f6ff 100%);
  background-attachment: fixed;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(46, 85, 152, 0.1);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 7vw;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Cormorant Garamond", serif;
  text-decoration: none;
  color: inherit;
}

.logo img {
  display: block;
  height: 62px;
  width: auto;
}

.logo-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--black);
  text-transform: none;
}

.footer-logo img {
  width: 62px;
}

.footer-logo .logo-text {
  color: var(--white);
}

.logo-mark {
  background: var(--blue);
  color: var(--white);
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo-type {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
}

.nav-links a:not(.nav-cta) {
  position: relative;
  padding: 6px 12px;
  border-radius: 6px;
  overflow: hidden;
  isolation: isolate;
}

.nav-links a:not(.nav-cta)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--blue);
  border-radius: 6px;
  z-index: -1;
  transition: width 0.35s ease;
}

.nav-links a:not(.nav-cta):hover {
  color: var(--white);
}

.nav-links a:not(.nav-cta):hover::before {
  width: 100%;
}

.nav-links a:not(.nav-cta):active::before {
  background: #1e3f6e;
  width: 100%;
}

.nav-cta {
  padding: 10px 18px;
  background: var(--coral);
  color: var(--white);
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(255, 87, 87, 0.25);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  padding: 80px 7vw 60px;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  left: -10%;
  bottom: -35%;
  width: 120%;
  height: 85%;
  background: radial-gradient(circle at 30% 40%, rgba(46, 85, 152, 0.35), transparent 60%),
    radial-gradient(circle at 70% 55%, rgba(255, 87, 87, 0.25), transparent 62%);
  transform: rotate(-6deg);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--black);
  margin: 12px 0 18px;
}

.eyebrow {
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  font-size: 0.85rem;
}

.hero-lede {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 28px 0 32px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  border: 2px solid transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn.primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(255, 87, 87, 0.3);
}

.btn.primary:hover {
  box-shadow: 0 14px 32px rgba(255, 87, 87, 0.4);
}

.btn.ghost {
  border-color: var(--blue);
  color: var(--blue);
  background: transparent;
}

.btn.ghost:hover {
  background: rgba(46, 85, 152, 0.08);
}

.btn.outline {
  border-color: var(--blue);
  color: var(--blue);
  background: transparent;
}

.btn.outline:hover {
  background: rgba(46, 85, 152, 0.08);
}

.btn.dark {
  background: var(--charcoal);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(48, 34, 38, 0.2);
}

.btn.dark:hover {
  box-shadow: 0 14px 32px rgba(48, 34, 38, 0.3);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.stat-value {
  display: block;
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: var(--coral);
  line-height: 1.1;
}

.stat-label {
  display: block;
  font-size: 1rem;
  color: var(--charcoal);
  margin-top: 4px;
}

.hero-visual {
  display: grid;
  gap: 20px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-illustration {
  width: 100%;
  height: auto;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.badge {
  padding: 18px 22px;
  background: var(--blue);
  color: var(--white);
  border-radius: 16px;
  font-size: 1rem;
  box-shadow: var(--shadow);
}

.poster {
  background: var(--cream);
  border: 2px solid rgba(46, 85, 152, 0.2);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.poster::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: var(--coral);
  opacity: 0.15;
  border-radius: 50%;
  top: -60px;
  right: -60px;
}

.poster-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  color: var(--black);
  margin: 0 0 10px;
}

.poster-sub {
  font-family: "IBM Plex Sans Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin: 0 0 20px;
  color: var(--blue);
}

.poster-lines {
  display: grid;
  gap: 10px;
  font-weight: 600;
}

section {
  padding: 70px 7vw;
  scroll-margin-top: 80px;
}

.section-header {
  max-width: 720px;
  margin-bottom: 32px;
}

.section-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 12px 0 14px;
  color: var(--black);
}

.section-lede {
  font-size: 1.1rem;
  line-height: 1.7;
}

.mission {
  background: transparent;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.mission-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 16px 30px rgba(46, 85, 152, 0.08);
}

.mission-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin: 0 0 10px;
  color: var(--black);
}

.act {
  background: transparent;
}

.act-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.act-left {
  display: grid;
  gap: 24px;
}

.act-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.act-list li {
  background: var(--cream);
  padding: 24px 28px;
  border-radius: 20px;
  border-left: 4px solid var(--coral);
  font-size: 1.08rem;
  line-height: 1.6;
  box-shadow: 0 16px 30px rgba(46, 85, 152, 0.08);
}

.act-map-wrapper {
  display: grid;
  gap: 12px;
  padding-top: 24px;
}

.map-caption {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--charcoal);
  margin: 0;
}

.map-disclaimer {
  font-size: 0.75rem;
  color: rgba(48, 34, 38, 0.5);
  margin: 0;
  font-style: italic;
}

.act-map {
  width: 100%;
  position: relative;
}

.act-map svg {
  width: 100%;
  height: auto;
}

.map-state {
  transition: fill 0.2s ease, stroke-width 0.2s ease;
}

.map-state.highlighted {
  cursor: pointer;
}

.map-tooltip {
  position: absolute;
  background: var(--blue);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 8px;
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
  transition: opacity 0.15s ease;
  white-space: nowrap;
}

.act-callout {
  background: var(--blue);
  color: var(--white);
  border-radius: 20px;
  padding: 28px;
  display: grid;
  gap: 16px;
}

.values {
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.value {
  background: var(--cream);
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(46, 85, 152, 0.15);
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.slogan-divider {
  padding: 52px 7vw;
  text-align: center;
  background: var(--coral);
  overflow: hidden;
}

.slogan-divider.accent {
  background: var(--blue);
}

.slogan-text {
  display: inline-block;
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--white);
  max-width: 100%;
}

.slogan-divider.accent .slogan-text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.join {
  text-align: left;
  padding-bottom: 20px;
}

.join-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 16px;
  color: var(--black);
}

.join-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 540px;
}

.action-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 24px 7vw 40px;
  background: transparent;
  border-top: none;
  border-bottom: none;
}


.footer {
  padding: 40px 7vw;
  background: #1e3f6e;
  color: var(--white);
  display: grid;
  gap: 12px;
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  position: relative;
  padding: 6px 12px;
  border-radius: 6px;
  overflow: hidden;
  isolation: isolate;
}

.footer-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--coral);
  border-radius: 6px;
  z-index: -1;
  transition: width 0.35s ease;
}

.footer-links a:hover::before {
  width: 100%;
}

.footer-links a:active::before {
  background: #d94545;
  width: 100%;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.footer-social a {
  color: var(--white);
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-social a:hover {
  opacity: 1;
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    gap: 14px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .act-layout {
    grid-template-columns: 1fr;
  }

  .act-map {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  section,
  .hero,
  .action-bar,
  .footer {
    padding-left: max(5vw, 20px);
    padding-right: max(5vw, 20px);
  }

  .nav {
    padding-left: max(5vw, 20px);
    padding-right: max(5vw, 20px);
  }

  .hero {
    padding-top: 60px;
  }

  .nav-links {
    font-size: 0.75rem;
    gap: 12px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-lede {
    margin: 0 auto;
  }

  .slogan-divider {
    padding: 36px max(5vw, 20px);
  }

  .slogan-text {
    letter-spacing: 0.1em;
    font-size: clamp(0.9rem, 4vw, 1.2rem);
  }

  .slogan-divider.accent .slogan-text {
    font-size: clamp(1.1rem, 5vw, 1.6rem);
  }

  .section-header h2 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .join-content h2 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .act-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .act-map {
    max-width: 100%;
  }

  .act-list li {
    padding: 18px 20px;
    font-size: 0.95rem;
  }

  .action-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .action-bar .btn {
    text-align: center;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat-value {
    font-size: 2.4rem;
  }
}
