:root {
  color-scheme: light;
  --cream: #f6f1e7;
  --paper: #fffdf8;
  --ink: #172326;
  --muted: #5e6b70;
  --line: #ddd5c8;
  --green: #064d2e;
  --green-strong: #03361f;
  --green-soft: #dceee9;
  --gold: #c99b3f;
  --red: #b54536;
  --shadow: 0 20px 55px rgba(23, 35, 38, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--cream);
  color: var(--ink);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 54px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(221, 213, 200, 0.75);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 950;
}

.brand-logo {
  width: 56px;
  height: 56px;
  display: block;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.primary-nav,
.nav-actions {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 22px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

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

.nav-actions {
  justify-content: flex-end;
  gap: 10px;
}

.primary-nav a:hover,
.nav-login:hover,
.site-footer a:hover {
  color: var(--green);
}

.primary-nav a[aria-current="page"],
.nav-login[aria-current="page"] {
  color: var(--ink);
}

.nav-login {
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--green);
  border-radius: 7px;
  color: var(--green);
}

.nav-cta {
  min-height: 38px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  border-radius: 7px;
  background: var(--green);
  color: #fff !important;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--green-strong);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 33, 30, 0.92) 0%, rgba(7, 33, 30, 0.76) 38%, rgba(7, 33, 30, 0.2) 78%),
    linear-gradient(0deg, rgba(7, 33, 30, 0.48), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(32px, 6vw, 72px) 0;
  color: #fff;
}

.zgtn-hero {
  min-height: 390px;
}

.zgtn-hero .hero-content {
  padding: clamp(22px, 3.5vw, 44px) 0;
}

.zgtn-hero .hero-media {
  object-position: center top;
}

.zgtn-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 6, 12, 0.94) 0%, rgba(0, 9, 15, 0.83) 38%, rgba(0, 9, 15, 0.22) 78%),
    linear-gradient(0deg, rgba(0, 18, 14, 0.48), transparent 45%);
}

.hero-logo {
  width: min(92px, 30vw);
  height: auto;
  margin: 0 0 10px;
  display: block;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
}

.zgtn-hero h1 {
  max-width: 365px;
  font-size: clamp(1.15rem, 1.85vw, 1.9rem);
  line-height: 1.14;
}

.zgtn-hero h1::first-line {
  color: #fff;
}

.page-hero {
  min-height: 440px;
  padding: clamp(82px, 12vw, 142px) 0 clamp(54px, 8vw, 92px);
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(7, 33, 30, 0.92), rgba(7, 33, 30, 0.62)),
    url("assets/hero-network.png") center / cover;
  color: #fff;
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(7, 33, 30, 0.92), rgba(7, 33, 30, 0.7)),
    url("assets/zim-partnerships.jpg") center / cover;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(7, 33, 30, 0.92), rgba(7, 33, 30, 0.66)),
    url("assets/zim-trade-invest.png") center / cover;
}

.signup-hero {
  background:
    linear-gradient(90deg, rgba(7, 33, 30, 0.92), rgba(7, 33, 30, 0.66)),
    url("assets/zgtn-partnership-ui.png") center / cover;
}

.events-hero {
  background:
    linear-gradient(90deg, rgba(7, 33, 30, 0.92), rgba(7, 33, 30, 0.68)),
    url("assets/zim-partnerships.jpg") center / cover;
}

.news-hero {
  background:
    linear-gradient(90deg, rgba(7, 33, 30, 0.92), rgba(7, 33, 30, 0.64)),
    url("assets/hero-network.png") center / cover;
}

.login-hero {
  background:
    linear-gradient(90deg, rgba(7, 33, 30, 0.92), rgba(7, 33, 30, 0.64)),
    url("assets/zim-trade-invest.png") center / cover;
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(2.5rem, 6vw, 5.8rem);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(3rem, 7vw, 7.2rem);
  line-height: 0.9;
  font-weight: 950;
}

h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  font-weight: 930;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-copy,
.section-copy {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.65;
}

.hero-copy {
  max-width: 410px;
  margin: 8px 0 0;
  font-size: clamp(0.78rem, 1.1vw, 0.92rem);
  line-height: 1.42;
}

.hero-actions {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.zgtn-hero .button {
  min-height: 38px;
  padding: 0 13px;
  font-size: 0.78rem;
}

.button,
button {
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 7px;
  background: var(--gold);
  color: #1d211b;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button:hover,
button:hover {
  background: #d9ad56;
}

.button.secondary,
button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
}

button.secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

button.secondary:hover,
.button.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

button.secondary:hover {
  background: #f5efe4;
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.quick-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: linear-gradient(90deg, #073f39, #0c5b52);
  color: #fff;
}

.quick-band a {
  min-height: 56px;
  padding: 10px clamp(12px, 1.8vw, 18px);
  display: grid;
  align-content: center;
  gap: 6px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.quick-band a:hover,
.quick-band a.active {
  background: rgba(255, 255, 255, 0.1);
}

.quick-band strong {
  font-size: 0.76rem;
  text-transform: uppercase;
}

.quick-band span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
  line-height: 1.35;
}

.section {
  padding: clamp(54px, 8vw, 104px) 0;
}

.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.mission-band {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.mission-band .section-copy,
.join-heading .section-copy {
  color: var(--muted);
}

.copy-stack {
  display: grid;
  gap: 16px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.copy-stack p {
  margin: 0;
}

.home-feature {
  width: min(1360px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1.65fr) minmax(150px, 0.32fr);
  gap: 16px;
  align-items: center;
}

.home-feature > img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 768 / 475;
  align-self: center;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 30px rgba(23, 35, 38, 0.07);
}

.feature-copy,
.vision-card,
.detail-panel,
.newsletter {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(23, 35, 38, 0.07);
}

.feature-copy {
  display: grid;
  align-content: center;
  gap: 14px;
}

.home-feature .feature-copy h2 {
  max-width: 340px;
  font-size: clamp(1.15rem, 1.5vw, 1.65rem);
  line-height: 1.16;
}

.home-feature .feature-copy > p {
  font-size: 0.88rem;
  line-height: 1.5;
}

.home-feature .feature-copy,
.home-feature .vision-card {
  padding: clamp(16px, 2vw, 24px);
}

.home-feature .text-link {
  font-size: 0.78rem;
}

.home-feature .vision-card {
  gap: 12px;
}

.home-feature .vision-card span {
  font-size: 1.05rem;
}

.home-feature .vision-card p {
  font-size: 0.88rem;
  line-height: 1.48;
}

.feature-copy p,
.vision-card p,
.detail-panel p,
.newsletter p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.text-link {
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
}

.vision-card {
  display: grid;
  align-content: center;
  gap: 18px;
}

.vision-card span {
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 930;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

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

.pathway {
  min-height: 260px;
  padding: 24px;
  display: grid;
  align-content: space-between;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(23, 35, 38, 0.07);
}

.pathway span {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 950;
}

.pathway p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.vision-section {
  background: var(--cream);
}

.interactive-section {
  background: #fff;
}

.opportunity-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 18px;
  align-items: start;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.opportunity-card {
  min-height: 310px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 118px auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(23, 35, 38, 0.08);
}

.opportunity-card:hover,
.opportunity-card.active,
.impact-tile-grid a:hover,
.impact-tile-grid a.active {
  border-color: var(--green);
  box-shadow: 0 12px 32px rgba(12, 91, 82, 0.14);
}

.opportunity-card img {
  width: 100%;
  height: 118px;
  display: block;
  object-fit: cover;
}

.opportunity-card strong,
.opportunity-card span,
.opportunity-card em {
  margin-inline: 18px;
}

.opportunity-card strong {
  margin-top: 18px;
  font-size: 1.02rem;
}

.opportunity-card span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.opportunity-card em {
  margin-top: auto;
  margin-bottom: 18px;
  color: var(--green);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.detail-panel {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 16px;
}

.detail-panel h3 {
  font-size: clamp(1.45rem, 3vw, 2.4rem);
}

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

.image-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(23, 35, 38, 0.08);
}

.image-card img {
  width: 100%;
  height: 210px;
  display: block;
  object-fit: cover;
}

.image-card div {
  padding: 20px;
}

.image-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.source-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.source-note a {
  color: var(--green);
  font-weight: 850;
}

.impact-tile-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.impact-tile-grid a {
  min-height: 104px;
  padding: 18px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--green-strong);
  text-align: center;
  font-weight: 900;
  line-height: 1.22;
}

.impact-band {
  background: var(--green);
  color: #fff;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.impact-grid div {
  min-height: 150px;
  padding: 26px;
  display: grid;
  align-content: center;
  background: var(--green);
}

.impact-grid strong {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.9;
}

.impact-grid span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.stats-strip {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(54px, 8vw, 104px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(23, 35, 38, 0.07);
}

.stats-strip div {
  min-height: 118px;
  padding: 22px;
  display: grid;
  place-items: center;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stats-strip div:last-child {
  border-right: 0;
}

.stats-strip strong {
  color: var(--green);
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  line-height: 0.95;
}

.stats-strip span {
  color: var(--muted);
  font-weight: 850;
}

.closing-cta {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(54px, 8vw, 104px);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(3, 20, 17, 0.9), rgba(3, 20, 17, 0.45)),
    url("assets/zgtn-partnership-ui.png") center / cover;
  color: #fff;
}

.closing-cta > div {
  padding: clamp(28px, 5vw, 46px);
  display: grid;
  gap: 18px;
}

.closing-cta h2 {
  max-width: 650px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.closing-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.newsletter {
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: rgba(7, 21, 19, 0.84);
  box-shadow: none;
}

.newsletter label {
  margin-top: 12px;
}

.newsletter label > span {
  color: #fff;
}

.join-section {
  background: #efe7d8;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 18px;
  align-items: start;
}

.contact-panel {
  padding: clamp(20px, 4vw, 34px);
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-aside {
  align-content: start;
}

.contact-aside img {
  max-width: 170px;
  height: auto;
}

.contact-aside p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.join-heading {
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 24px;
  align-items: end;
}

.progress-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(23, 35, 38, 0.08);
}

.progress-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

#progress-label {
  color: var(--ink);
  font-weight: 900;
}

.progress-track {
  height: 10px;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 999px;
  background: #e0d6c5;
}

.progress-bar {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transition: width 180ms ease;
}

.form-panel {
  padding: clamp(20px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: var(--shadow);
}

.wizard-form {
  display: grid;
  gap: 26px;
  scroll-margin-top: 96px;
}

.wizard-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.wizard-step {
  min-height: 94px;
  padding: 16px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: var(--muted);
  text-align: left;
}

.wizard-step:last-child {
  border-right: 0;
}

.wizard-step:hover,
.wizard-step.active {
  background: var(--green-soft);
  color: var(--ink);
}

.wizard-step.active {
  box-shadow: inset 0 -4px 0 var(--gold);
}

.wizard-step-number {
  width: 34px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--green);
  font-weight: 950;
}

.wizard-step.active .wizard-step-number {
  background: var(--green);
  color: #fff;
}

.wizard-step-text {
  display: grid;
  gap: 4px;
}

.wizard-step-text strong {
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.15;
}

.wizard-step-text small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.32;
}

.wizard-panel[hidden] {
  display: none;
}

.wizard-panel {
  display: grid;
  gap: 26px;
  scroll-margin-top: 96px;
}

.wizard-panel-heading {
  padding: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(6, 77, 46, 0.08), rgba(201, 155, 63, 0.08)),
    #fff;
}

.wizard-panel-heading h3 {
  font-size: clamp(1.55rem, 3vw, 2.5rem);
}

.wizard-step-summary {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.wizard-required-count {
  flex: 0 0 auto;
  min-height: 32px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
}

fieldset {
  margin: 0;
  padding: 0 0 30px;
  border: 0;
  display: grid;
  gap: 18px;
}

fieldset + fieldset {
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

legend {
  margin-bottom: 18px;
  font-size: 1.1rem;
  font-weight: 900;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

label,
.choice-group {
  display: grid;
  gap: 8px;
}

.field {
  min-width: 0;
}

.field.full-width,
.choice-group {
  grid-column: 1 / -1;
}

.field > span,
.group-label {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.3;
}

.required-mark {
  color: var(--red);
}

.note {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 500;
}

input,
select {
  min-height: 46px;
  padding: 0 13px;
}

textarea {
  resize: vertical;
  min-height: 132px;
  padding: 13px;
  line-height: 1.45;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(12, 91, 82, 0.18);
  border-color: var(--green);
}

.choice-group {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.group-label {
  grid-column: 1 / -1;
}

.choice,
.toggle {
  min-height: 48px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  cursor: pointer;
}

.choice span,
.toggle span {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.choice input,
.toggle input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--green);
}

.choice:has(input:checked),
.toggle:has(input:checked) {
  border-color: var(--green);
  background: var(--green-soft);
}

.error {
  display: none;
  color: var(--red);
  font-size: 0.84rem;
  font-weight: 800;
}

.invalid .error {
  display: block;
}

.invalid input,
.invalid select,
.invalid textarea {
  border-color: var(--red);
}

.actions,
.review-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.wizard-actions {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.wizard-nav-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.save-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.save-status.success {
  color: var(--green-strong);
}

.save-status.error {
  color: var(--red);
}

.review-section {
  background: var(--paper);
}

dl {
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: minmax(160px, 280px) minmax(0, 1fr);
  border-top: 1px solid var(--line);
}

dt,
dd {
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-weight: 850;
}

dd {
  line-height: 1.5;
}

.site-footer {
  min-height: 76px;
  padding: 20px clamp(18px, 4vw, 54px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
  font-weight: 800;
}

.site-footer nav {
  flex-wrap: wrap;
}

@media (max-width: 1050px) {
  .home-feature {
    grid-template-columns: 1fr;
  }

  .home-feature > img {
    width: min(100%, 720px);
    justify-self: center;
  }
}

@media (max-width: 900px) {
  .split,
  .pathway-grid,
  .image-card-grid,
  .impact-grid,
  .join-heading,
  .contact-layout,
  .home-feature,
  .opportunity-layout,
  .closing-cta {
    grid-template-columns: 1fr;
  }

  .quick-band,
  .opportunity-grid,
  .impact-tile-grid,
  .stats-strip,
  .wizard-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-panel {
    position: static;
  }

  .hero {
    min-height: 760px;
  }
}

@media (max-width: 760px) {
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    grid-template-columns: 1fr;
  }

  .primary-nav,
  .nav-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero-content,
  .section-inner {
    width: min(100% - 20px, 1180px);
  }

  .hero {
    min-height: 720px;
  }

  .zgtn-hero {
    min-height: 430px;
  }

  .page-hero {
    min-height: 520px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 33, 30, 0.92), rgba(7, 33, 30, 0.65) 64%, rgba(7, 33, 30, 0.36));
  }

  .hero-actions,
  .progress-top,
  .actions,
  .review-header,
  .wizard-panel-heading,
  .wizard-nav-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .field-grid,
  .choice-group,
  dl,
  .quick-band,
  .opportunity-grid,
  .impact-tile-grid,
  .stats-strip,
  .wizard-steps {
    grid-template-columns: 1fr;
  }

  .wizard-step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .wizard-step:last-child {
    border-bottom: 0;
  }

  .stats-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats-strip div:last-child {
    border-bottom: 0;
  }

  .button,
  button {
    width: 100%;
  }

  dt {
    padding-bottom: 4px;
    border-bottom: 0;
  }

  dd {
    padding-top: 0;
  }
}
