:root {
  --ink: #2c2c2c;
  --muted: #4f5d70;
  --line: #d7dde6;
  --paper: #f5f7fa;
  --white: #ffffff;
  --blue: #131f39;
  --purple: #7b3ff2;
  --red: #e63946;
  --green: #2ecc71;
  --shadow: 0 18px 45px rgba(19, 31, 57, 0.16);
}

* {
  box-sizing: border-box;
}

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

html.large-text {
  font-size: 112.5%;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

body.high-contrast {
  --ink: #000000;
  --muted: #111111;
  --line: #000000;
  --paper: #ffffff;
  --white: #ffffff;
  --blue: #004ed6;
  --purple: #4c16b8;
  --red: #c90016;
  --green: #087a34;
}

body.high-contrast .card,
body.high-contrast .site-header,
body.high-contrast input,
body.high-contrast select,
body.high-contrast textarea {
  border-width: 2px;
}

body.reduce-motion *,
body.reduce-motion *::before,
body.reduce-motion *::after {
  scroll-behavior: auto !important;
  transition: none !important;
  animation: none !important;
}

body.grayscale {
  filter: grayscale(1);
}

body.negative-contrast {
  filter: invert(1) hue-rotate(180deg);
  background: #000000;
}

body.light-background {
  --ink: #111111;
  --muted: #343434;
  --paper: #ffffff;
  --white: #ffffff;
  background: #ffffff;
}

body.underline-links a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

body.readable-font {
  font-family: Arial, Verdana, sans-serif;
}

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

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(215, 221, 230, 0.92);
  background: rgba(245, 247, 250, 0.94);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid var(--ink);
  object-fit: cover;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(44, 44, 44, 0.12);
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.links {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.links a:hover,
.links a[aria-current="page"],
.dropdown:hover .dropdown-toggle,
.dropdown:focus-within .dropdown-toggle {
  color: var(--blue);
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  padding: 10px 0;
  color: inherit;
  background: transparent;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.dropdown-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 20;
  display: grid;
  min-width: 220px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(44, 44, 44, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink);
  line-height: 1.25;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
  color: var(--blue);
  background: var(--paper);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(19, 31, 57, 0.24);
}

.button:hover {
  background: #0b1428;
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
  box-shadow: none;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(44, 44, 44, 0.88), rgba(19, 31, 57, 0.82)),
    radial-gradient(circle at 82% 18%, rgba(123, 63, 242, 0.42), transparent 32%),
    linear-gradient(135deg, var(--blue), var(--purple) 58%, var(--red));
  color: var(--white);
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 54px;
  min-height: calc(100vh - 74px);
  padding: 72px 0 88px;
}

.page-hero .wrap {
  padding: 76px 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: #ffffff;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 0.97;
  letter-spacing: 0;
}

.page-hero h1 {
  font-size: clamp(42px, 5vw, 64px);
}

h1 .purple {
  color: #d9ceff;
}

h1 .red {
  color: var(--red);
}

.hero-copy,
.page-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.75;
}

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

.hero .actions .button:not(.secondary),
.page-hero .actions .button:not(.secondary) {
  color: var(--blue);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 16px 32px rgba(255, 255, 255, 0.16);
}

.hero .actions .button:not(.secondary):hover,
.page-hero .actions .button:not(.secondary):hover {
  background: #f1f5ff;
}

.hero .actions .button.secondary,
.page-hero .actions .button.secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.72);
}

.impact-panel {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.impact-panel h2 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: 24px;
}

.steps {
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

.step span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
}

section {
  padding: 82px 0;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

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

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-section {
  padding-top: 56px;
}

.gallery-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 16px;
}

.gallery-photo-card {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.gallery-photo-card.wide {
  grid-column: span 2;
}

.gallery-photo-card.tall {
  grid-row: span 2;
  min-height: 536px;
}

.gallery-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-photo-card:hover img {
  transform: scale(1.025);
}

.gallery-photo-card figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 8px 11px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(20, 29, 47, 0.78);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  backdrop-filter: blur(8px);
}

.photo-card {
  min-height: 260px;
  display: grid;
  align-content: end;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(44, 44, 44, 0.18), rgba(44, 44, 44, 0.78)),
    linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow: var(--shadow);
}

.photo-card:nth-child(2) {
  background:
    linear-gradient(160deg, rgba(44, 44, 44, 0.12), rgba(44, 44, 44, 0.78)),
    linear-gradient(135deg, var(--purple), var(--red));
}

.photo-card:nth-child(3) {
  background:
    linear-gradient(160deg, rgba(44, 44, 44, 0.12), rgba(44, 44, 44, 0.78)),
    linear-gradient(135deg, var(--green), var(--blue));
}

.photo-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.photo-card.with-image {
  overflow: hidden;
  min-height: 0;
  padding: 0;
  color: var(--ink);
  background: var(--white);
}

.photo-card.with-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.photo-card.with-image div {
  padding: 22px;
}

.photo-card.with-image p {
  color: var(--muted);
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(46, 28, 16, 0.06);
}

.card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.profile-card {
  overflow: hidden;
  padding: 0;
}

.profile-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  background: var(--white);
}

.profile-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 4 / 5;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--purple));
  font-size: 46px;
  font-weight: 900;
}

.profile-card div {
  padding: 24px;
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  align-items: stretch;
  gap: 18px;
}

.founder-only {
  grid-template-columns: minmax(280px, 420px);
}

.founder-note {
  display: grid;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(19, 31, 57, 0.08), rgba(123, 63, 242, 0.08)),
    var(--white);
}

.founder-note div {
  padding: 0;
}

.program-card {
  display: flex;
  flex-direction: column;
  min-height: 270px;
}

.program-showcase-section {
  padding-top: 70px;
}

.program-showcase {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(19, 31, 57, 0.14);
  border-radius: 8px;
  padding: 58px 44px 64px;
  background:
    linear-gradient(120deg, rgba(19, 31, 57, 0.05), rgba(46, 204, 113, 0.08)),
    var(--white);
  box-shadow: 0 24px 70px rgba(19, 31, 57, 0.08);
}

.program-showcase::before,
.program-showcase::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.32;
}

.program-showcase::before {
  top: 18px;
  right: 24px;
  width: 210px;
  height: 32px;
  border-top: 6px solid var(--green);
  border-bottom: 6px solid var(--red);
  transform: rotate(-6deg);
}

.program-showcase::after {
  left: -36px;
  bottom: 40px;
  width: 150px;
  height: 150px;
  border: 10px solid rgba(123, 63, 242, 0.22);
  transform: rotate(18deg);
}

.program-showcase .section-head {
  position: relative;
  z-index: 1;
}

.program-showcase .section-head h2 {
  color: var(--blue);
}

.program-feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.program-feature-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 290px;
  grid-column: span 2;
  border: 2px solid rgba(19, 31, 57, 0.18);
  border-radius: 8px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 36px rgba(19, 31, 57, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.program-feature-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 0 22px 48px rgba(19, 31, 57, 0.13);
}

.program-feature-card.primary {
  grid-column: span 3;
  color: var(--white);
  background: var(--blue);
}

.program-feature-card:nth-child(2) {
  border-color: rgba(123, 63, 242, 0.42);
}

.program-feature-card:nth-child(3) {
  border-color: rgba(46, 204, 113, 0.44);
}

.program-feature-card:nth-child(4) {
  border-color: rgba(230, 57, 70, 0.44);
}

.program-feature-card:nth-child(5) {
  border-color: rgba(123, 63, 242, 0.42);
}

.program-feature-card:nth-child(6) {
  border-color: rgba(46, 204, 113, 0.44);
}

.program-kicker {
  width: max-content;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--blue);
  background: rgba(19, 31, 57, 0.08);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.program-feature-card.primary .program-kicker {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.program-symbol {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-size: 22px;
  font-weight: 900;
  transform: rotate(-4deg);
}

.program-feature-card.primary .program-symbol {
  color: var(--blue);
  background: var(--white);
}

.program-feature-card:nth-child(2) .program-symbol,
.program-feature-card:nth-child(5) .program-symbol {
  background: var(--purple);
}

.program-feature-card:nth-child(3) .program-symbol,
.program-feature-card:nth-child(6) .program-symbol {
  background: var(--green);
}

.program-feature-card:nth-child(4) .program-symbol {
  background: var(--red);
}

.program-feature-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.12;
}

.program-feature-card p {
  color: var(--muted);
  line-height: 1.65;
}

.program-feature-card.primary p,
.program-feature-card.primary .text-link {
  color: rgba(255, 255, 255, 0.84);
}

.involved-section {
  padding-top: 76px;
  background:
    linear-gradient(180deg, rgba(19, 31, 57, 0.04), transparent 46%),
    var(--paper);
}

.involved-board {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) 1.25fr;
  gap: 22px;
  align-items: stretch;
}

.involved-feature {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: grid;
  align-content: end;
  border-radius: 8px;
  padding: 42px;
  color: var(--white);
  background:
    linear-gradient(150deg, rgba(19, 31, 57, 0.88), rgba(19, 31, 57, 0.68)),
    linear-gradient(135deg, var(--blue), #273b74);
  box-shadow: 0 24px 60px rgba(19, 31, 57, 0.18);
}

.involved-feature::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 30px;
  width: 120px;
  height: 120px;
  border: 16px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.involved-feature::after {
  content: "";
  position: absolute;
  right: -26px;
  top: 70px;
  width: 210px;
  height: 42px;
  background: linear-gradient(90deg, var(--green), var(--purple), var(--red));
  transform: rotate(-9deg);
}

.involved-label {
  position: relative;
  z-index: 1;
  width: max-content;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.involved-feature h2,
.involved-feature p,
.involved-feature .button {
  position: relative;
  z-index: 1;
}

.involved-feature h2 {
  max-width: 520px;
  margin-bottom: 16px;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 0.95;
}

.involved-feature p {
  max-width: 520px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.light-button {
  width: max-content;
  color: var(--blue);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.light-button:hover {
  color: var(--blue);
  background: #eef5ff;
}

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

.involved-action {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  min-height: 248px;
  border: 1px solid rgba(19, 31, 57, 0.16);
  border-radius: 8px;
  padding: 26px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(19, 31, 57, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.involved-action::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 24px;
  width: 68px;
  height: 12px;
  border-radius: 999px;
  background: var(--blue);
}

.involved-action:nth-child(2)::before {
  background: var(--purple);
}

.involved-action:nth-child(3)::before {
  background: var(--green);
}

.involved-action:nth-child(4)::before {
  background: var(--red);
}

.involved-action:nth-child(5) {
  grid-column: span 2;
  min-height: 180px;
}

.involved-action:hover {
  transform: translateY(-6px);
  border-color: rgba(19, 31, 57, 0.32);
  box-shadow: 0 24px 50px rgba(19, 31, 57, 0.13);
}

.involved-action span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.involved-action strong {
  display: block;
  max-width: 420px;
  font-size: 24px;
  line-height: 1.16;
}

.icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-size: 21px;
  font-weight: 900;
}

.program-card:nth-child(2) .icon,
.path-card:nth-child(2) .icon {
  background: var(--purple);
}

.program-card:nth-child(3) .icon,
.path-card:nth-child(3) .icon {
  background: var(--green);
}

.program-card:nth-child(4) .icon,
.path-card:nth-child(4) .icon {
  background: var(--red);
}

.program-card:nth-child(5) .icon {
  background: var(--purple);
}

.program-card:nth-child(6) .icon {
  background: var(--green);
}

.text-link {
  margin-top: auto;
  padding-top: 18px;
  color: var(--blue);
  font-weight: 900;
}

.dark-band {
  color: var(--white);
  background: var(--ink);
}

.dark-band .section-head p,
.dark-band .card p {
  color: rgba(255, 255, 255, 0.72);
}

.dark-band .card {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.event-date {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(19, 31, 57, 0.05), rgba(136, 211, 236, 0.16)),
    var(--paper);
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(19, 31, 57, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(19, 31, 57, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.4), transparent 58%);
}

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.contact-intro h2 {
  max-width: 520px;
  margin: 0 0 14px;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 0.95;
  color: var(--blue);
}

.contact-intro p {
  max-width: 620px;
  margin-top: 0;
  color: var(--muted);
  font-size: 18px;
}

.contact-routes {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-route {
  padding: 16px 0 16px 18px;
  border-left: 5px solid var(--blue);
  background: rgba(255, 255, 255, 0.66);
}

.contact-route:nth-child(2) {
  border-left-color: var(--purple);
}

.contact-route:nth-child(3) {
  border-left-color: var(--green);
}

.contact-route strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 18px;
}

.contact-route span {
  display: block;
  color: var(--muted);
  line-height: 1.55;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  color: var(--muted);
  font-weight: 700;
}

.contact-list span:first-child {
  color: var(--blue);
}

.contact-form {
  position: relative;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(19, 31, 57, 0.16);
  box-shadow: 0 24px 60px rgba(19, 31, 57, 0.13);
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 6px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--blue), var(--purple), var(--green));
}

.form-heading {
  margin-bottom: 6px;
}

.form-heading h3 {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 28px;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
}

form {
  display: grid;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.site-footer {
  padding: 64px 0 34px;
  color: rgba(255, 255, 255, 0.86);
  background: var(--blue);
  font-size: 16px;
  line-height: 1.55;
}

.footer-inner {
  display: grid;
  gap: 34px;
}

.footer-brand-block {
  max-width: 720px;
}

.footer-brand-block strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.2;
}

.footer-brand-block span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  padding-top: 10px;
}

.footer-nav div {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-nav h3 {
  margin: 0 0 4px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.2;
}

.footer-nav a,
.footer-nav span {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.35;
}

.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 5px;
}

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

.footer-social-row > span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  font-weight: 900;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.social-link {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.social-link:hover,
.social-link:focus {
  color: var(--blue);
  background: var(--white);
  transform: translateY(-2px);
}

.social-link span {
  display: block;
}

.report-card {
  display: flex;
  flex-direction: column;
  min-height: 245px;
}

.partners-section {
  padding-top: 0;
}

.partner-steps-section {
  padding-bottom: 58px;
}

.partner-steps-panel {
  border: 1px solid rgba(19, 31, 57, 0.18);
  border-radius: 8px;
  padding: 54px 44px 60px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(234, 247, 255, 0.78));
  box-shadow: 0 24px 70px rgba(19, 31, 57, 0.08);
}

.partner-steps-panel .section-head {
  margin-bottom: 36px;
}

.partner-steps-panel .section-head h2 {
  color: #243c86;
}

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

.partner-step-card {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 230px;
  border: 2px solid rgba(19, 31, 57, 0.28);
  border-radius: 8px;
  padding: 30px 24px;
  background: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.partner-step-card:nth-child(1) {
  border-color: rgba(230, 57, 70, 0.42);
}

.partner-step-card:nth-child(2) {
  border-color: rgba(123, 63, 242, 0.38);
}

.partner-step-card:nth-child(3) {
  border-color: rgba(46, 204, 113, 0.42);
}

.partner-step-card h3 {
  max-width: 260px;
  margin-bottom: 10px;
  color: #243c86;
  font-size: 20px;
  line-height: 1.12;
}

.partner-step-card p {
  max-width: 300px;
  color: #5c6688;
  line-height: 1.55;
}

.partner-slider {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(280px, 560px) 54px;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.partner-logo-card {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(46, 28, 16, 0.06);
  text-align: center;
}

.partner-slider-viewport {
  overflow: hidden;
}

.partner-slider-track {
  display: flex;
  transition: transform 240ms ease;
}

.partner-slider-track .partner-logo-card {
  flex: 0 0 100%;
}

.slider-button {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.slider-button:disabled {
  opacity: 0.42;
  cursor: default;
}

.slider-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
}

.slider-dot.active {
  background: var(--blue);
}

.partner-logo-card img {
  display: block;
  width: min(100%, 330px);
  max-height: 190px;
  object-fit: contain;
}

.partner-logo-card:first-child img {
  max-height: 220px;
}

.partner-logo-card h3 {
  margin: 24px 0 0;
  font-size: 24px;
}

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

.volunteer-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: start;
}

.volunteer-avatar {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--purple));
  font-size: 32px;
  font-weight: 900;
}

.volunteer-card:nth-child(2) .volunteer-avatar {
  background: linear-gradient(135deg, var(--purple), var(--red));
}

.volunteer-card:nth-child(3) .volunteer-avatar {
  background: linear-gradient(135deg, var(--green), var(--blue));
}

.volunteer-card:nth-child(4) .volunteer-avatar {
  background: linear-gradient(135deg, var(--red), var(--blue));
}

.volunteer-card:nth-child(5) .volunteer-avatar {
  background: linear-gradient(135deg, var(--purple), var(--green));
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
  align-items: center;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.footer-bottom .credit {
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0;
}

.accessibility-widget {
  position: fixed;
  right: 0;
  top: 82px;
  z-index: 50;
  display: flex;
  align-items: flex-start;
}

.accessibility-rail {
  display: grid;
  width: 48px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(19, 31, 57, 0.18);
}

.language-toggle,
.rail-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 44px;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.language-toggle {
  color: var(--red);
  font-size: 16px;
}

.rail-button:hover,
.rail-button:focus,
.language-toggle:hover,
.language-toggle:focus {
  background: var(--paper);
}

.search-toggle::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.search-toggle::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 3px;
  left: 27px;
  top: 27px;
  background: currentColor;
  transform: rotate(45deg);
}

.accessibility-toggle::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 8px;
  width: 8px;
  height: 8px;
  background: currentColor;
  border-radius: 50%;
  box-shadow: none;
}

.accessibility-toggle::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 18px;
  width: 14px;
  height: 17px;
  border-left: 3px solid currentColor;
  border-right: 3px solid currentColor;
  border-top: 8px solid currentColor;
  border-radius: 999px 999px 4px 4px;
}

.accessibility-panel {
  display: none;
  width: min(260px, calc(100vw - 62px));
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  padding: 18px 16px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(19, 31, 57, 0.18);
}

.accessibility-panel.open {
  display: grid;
  gap: 14px;
}

.accessibility-panel strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 16px;
}

.accessibility-panel button {
  width: 100%;
  min-height: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.accessibility-panel button[aria-pressed="true"] {
  color: var(--blue);
  font-weight: 900;
}

.accessibility-panel button span:first-child {
  width: 22px;
  color: #111111;
  font-weight: 900;
  text-align: center;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  font-weight: 900;
}

.skip-link:focus {
  transform: translateY(0);
}

@media (max-width: 900px) {
  .links {
    display: none;
  }

  .hero .wrap,
  .contact-layout,
  .founder-layout,
  .involved-board {
    grid-template-columns: 1fr;
  }

  .hero .wrap {
    min-height: auto;
  }

  .involved-feature {
    min-height: 430px;
    padding: 32px 24px;
  }

  .involved-actions {
    grid-template-columns: 1fr;
  }

  .involved-action,
  .involved-action:nth-child(5) {
    grid-column: auto;
    min-height: 190px;
  }

  .involved-action strong {
    font-size: 21px;
  }

  .contact-intro h2 {
    font-size: 40px;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .contact-form::before {
    left: 18px;
    right: 18px;
  }

  .contact-route {
    padding-left: 14px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .gallery-grid,
  .volunteer-grid {
    grid-template-columns: 1fr;
  }

  .program-showcase {
    padding: 42px 20px 48px;
  }

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

  .program-feature-card,
  .program-feature-card.primary {
    grid-column: span 1;
  }

  .partner-steps-panel {
    padding: 38px 20px 42px;
  }

  .partner-steps-grid {
    grid-template-columns: 1fr;
  }

  .partner-slider {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 8px;
  }

  .partner-slider-track .partner-logo-card {
    flex-basis: 100%;
  }

  .slider-button {
    width: 44px;
    height: 44px;
  }

  .volunteer-card {
    grid-template-columns: 1fr;
  }

  .gallery-photo-grid {
    grid-template-columns: 1fr;
  }

  .gallery-photo-card,
  .gallery-photo-card.wide,
  .gallery-photo-card.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 330px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .footer-social-row,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
.contact-page {
  background: #f5f7fb;
  color: #12213d;
}

.contact-hero {
  padding: 90px 20px 60px;
  text-align: center;
  background: #111f3a;
  color: white;
}

.contact-hero h1 {
  font-size: 48px;
  margin: 0 0 16px;
}

.contact-hero p {
  font-size: 20px;
  margin: 0;
}

.contact-layout {
  max-width: 1120px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-card {
  background: white;
  border: 1px solid #d8deea;
  border-radius: 8px;
  padding: 32px;
}

.contact-card h2 {
  margin-top: 0;
  color: #243b8f;
}

.contact-card label {
  display: block;
  margin-bottom: 18px;
  font-weight: 700;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  margin-top: 8px;
  padding: 12px;
  border: 1px solid #c8d0df;
  border-radius: 6px;
  font: inherit;
}

.contact-card button {
  background: #243b8f;
  color: white;
  border: 0;
  border-radius: 6px;
  padding: 14px 22px;
  font-weight: 700;
  cursor: pointer;
}

.contact-card a {
  color: #243b8f;
}

.map-box {
  margin-top: 24px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #d8deea;
}

@media (max-width: 800px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 {
    font-size: 36px;
  }
}