:root {
  color-scheme: dark;
  --bg: #071e13;
  --bg-deep: #041109;
  --panel: rgba(8, 33, 20, 0.82);
  --panel-strong: rgba(4, 17, 9, 0.92);
  --line: rgba(214, 233, 205, 0.24);
  --line-bright: rgba(95, 240, 160, 0.38);
  --text: #f1ebdf;
  --muted: #c8d3c4;
  --green: #5ff0a0;
  --green-deep: #17a867;
  --gold: #d8bd74;
  --shadow: rgba(0, 0, 0, 0.32);
  --max: 1420px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 22% 20%, rgba(95, 240, 160, 0.12), transparent 34rem),
    linear-gradient(115deg, #071e13 0%, #0c2818 46%, #041109 100%);
  color: var(--text);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.48), transparent);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 96px;
  padding: 18px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 30, 19, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid var(--line-bright);
  border-radius: 18px;
  background: rgba(95, 240, 160, 0.06);
  box-shadow: inset 0 0 20px rgba(95, 240, 160, 0.12);
}

.brand-mark svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--green);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kicker,
.section-label,
.brand-card figcaption {
  display: block;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.brand-name {
  display: block;
  margin-top: 3px;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 760;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a,
.mobile-menu a {
  min-height: 44px;
  padding: 12px 15px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.mobile-menu a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.menu-button {
  display: none;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.mobile-menu {
  position: sticky;
  top: 96px;
  z-index: 19;
  padding: 12px 20px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(4, 17, 9, 0.96);
}

.mobile-menu a {
  display: block;
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: clamp(28px, 5vw, 84px);
  width: min(100%, var(--max));
  min-height: calc(100vh - 96px);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 112px) clamp(20px, 4vw, 64px);
}

.pill {
  display: inline-flex;
  max-width: 100%;
  min-height: 44px;
  align-items: center;
  padding: 0 22px;
  border: 1px solid var(--line-bright);
  border-radius: 999px;
  background: rgba(95, 240, 160, 0.1);
  color: var(--green);
  font-weight: 800;
  box-shadow: inset 0 0 18px rgba(95, 240, 160, 0.1);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 960px;
  margin-bottom: 32px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 7.2vw, 8.5rem);
  font-weight: 400;
  line-height: 0.94;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.6rem);
  font-weight: 760;
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.hero-text,
.mission-band p,
.section-copy p,
.join-section p,
.action-band p,
.support-section p {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.5rem);
  line-height: 1.55;
}

.hero-text {
  max-width: 860px;
  margin-bottom: 40px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button.primary,
.button.secondary {
  background: var(--green);
  color: #062012;
  box-shadow: 0 18px 38px rgba(95, 240, 160, 0.18);
}

.button.secondary {
  background: #63eea5;
}

.button.outline {
  border-color: var(--line-bright);
  background: rgba(255, 255, 255, 0.05);
}

.brand-card {
  margin: 0;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid var(--line-bright);
  border-radius: 8px;
  background: var(--panel-strong);
  box-shadow: 0 30px 80px var(--shadow), inset 0 0 70px rgba(95, 240, 160, 0.04);
}

.brand-card figcaption {
  margin-bottom: 26px;
  text-align: center;
}

.brand-card img {
  display: block;
  width: 100%;
  height: auto;
  border: 2px solid rgba(241, 235, 223, 0.82);
  background: #e4dac8;
}

.mission-band,
.split-section,
.join-section,
.support-section,
.action-band,
.metrics {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 96px) clamp(20px, 4vw, 64px);
}

.mission-band {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.metrics,
.program-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.metrics article,
.program-grid article,
.support-grid article {
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.metrics strong,
.program-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 850;
  text-transform: uppercase;
}

.metrics span,
.program-grid p,
.support-grid p,
.site-footer {
  color: var(--muted);
  line-height: 1.55;
}

.split-section,
.join-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
}

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

.join-section {
  border-top: 1px solid var(--line);
}

.interest-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line-bright);
  border-radius: 8px;
  background: rgba(4, 17, 9, 0.76);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 760;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  font: inherit;
  padding: 12px 14px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.button:focus-visible,
.menu-button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(95, 240, 160, 0.55);
  outline-offset: 3px;
}

.action-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.action-band div {
  max-width: 820px;
}

.support-section {
  text-align: center;
}

.support-section > p,
.support-section h2 {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.support-grid {
  margin: 34px 0;
  text-align: left;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 4vw, 64px);
  border-top: 1px solid var(--line);
  background: var(--bg-deep);
}

.site-footer a {
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 82px;
  }

  .nav-links {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
  }

  .mobile-menu {
    top: 82px;
  }

  .hero,
  .mission-band,
  .split-section,
  .join-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .brand-card {
    max-width: 680px;
  }

  .metrics,
  .support-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    gap: 12px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .kicker {
    font-size: 0.66rem;
  }

  .brand-name {
    font-size: 1.18rem;
  }

  h1 {
    font-size: clamp(3.15rem, 16vw, 4.4rem);
  }

  .hero-actions,
  .action-band,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .wide {
    width: 100%;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
