:root {
  font-family: 'Manrope', sans-serif;
  color: #12314d;
  background:
    radial-gradient(circle at top left, rgba(14, 103, 173, 0.12), transparent 32%),
    linear-gradient(180deg, #f7fbff 0%, #f9f6f2 100%);
  --page-bg: #f8fbfd;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #16344d;
  --muted: #5d6f82;
  --line: rgba(22, 52, 77, 0.1);
  --blue: #1269ae;
  --blue-deep: #0d4879;
  --red: #c92635;
  --red-deep: #a71c2b;
  --gold: #f2bf63;
  --shadow: 0 24px 80px rgba(18, 65, 104, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--page-bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

code {
  font-family: inherit;
  font-weight: 700;
  color: var(--red-deep);
}

img {
  max-width: 100%;
  display: block;
}

#root {
  width: 100%;
}

.site-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 24px;
}

.topbar,
.story-layout,
.card-grid,
.support-panel,
.footer,
.donate-grid,
.donate-steps,
.impact-grid,
.team-grid {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 0;
}

.topbar--sticky {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 48px), 1280px);
  z-index: 50;
  padding: 14px 18px;
  border: 1px solid rgba(22, 52, 77, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 36px rgba(18, 65, 104, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand-logo {
  object-fit: contain;
}

.brand-logo--desktop {
  width: min(320px, 42vw);
}

.brand-logo--mobile {
  display: none;
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(18, 105, 174, 0.18);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(18, 105, 174, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--blue-deep);
  box-shadow: 0 10px 24px rgba(18, 65, 104, 0.1);
}

.nav-toggle__line {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle--open .nav-toggle__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle--open .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.nav-toggle--open .nav-toggle__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-links__donate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(201, 38, 53, 0.18);
}

.hero,
.donate-hero {
  position: relative;
}

.hero--full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.hero-video-frame,
.hero-card,
.story-panel,
.quote-panel,
.info-card,
.support-panel,
.footer,
.donate-panel,
.impact-card,
.step-card,
.team-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  backdrop-filter: blur(16px);
}

.hero-video-frame {
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(18, 65, 104, 0.14);
}

.hero-video-frame--full {
  width: 100%;
  min-height: min(78vh, 760px);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background: #0d4879;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: transparent;
}

.hero-card,
.story-panel,
.quote-panel,
.info-card,
.support-panel,
.footer,
.donate-panel,
.step-card,
.impact-card,
.team-card {
  padding: 28px;
}

.hero-card--summary {
  margin-top: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 255, 0.92));
}

.hero-card__ribbon {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(201, 38, 53, 0.08);
  color: var(--red-deep);
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-card h2,
.step-card h3,
.impact-card h3,
.team-card h3 {
  margin: 0 0 10px;
}

.hero-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(18, 105, 174, 0.09);
  color: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2,
.footer h2,
.donate-copy h1,
.donate-panel h2 {
  margin: 0;
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.donate-copy h1 {
  max-width: 12ch;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.95;
}

.donate-copy p {
  max-width: 60ch;
  margin: 24px 0 0;
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
  box-shadow: 0 18px 40px rgba(201, 38, 53, 0.24);
}

.button-secondary {
  border: 1px solid rgba(18, 105, 174, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue-deep);
}

.section {
  padding: 88px 6px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.02;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 22px;
}

.story-panel {
  display: grid;
  gap: 18px;
}

.quote-panel {
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(180deg, rgba(18, 105, 174, 0.08), rgba(201, 38, 53, 0.06)),
    var(--surface-strong);
}

.quote-panel p {
  margin: 0;
  font-family: 'Instrument Serif', serif;
  font-size: 2rem;
  line-height: 1.1;
  color: var(--blue-deep);
}

.card-grid,
.impact-grid,
.donate-steps,
.team-grid {
  display: grid;
  gap: 22px;
}

.card-grid,
.impact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--programs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.info-card--program {
  overflow: hidden;
  padding: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.96));
  box-shadow: 0 22px 48px rgba(18, 65, 104, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.info-card--program:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(18, 65, 104, 0.14);
}

.info-card__media {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  background: linear-gradient(135deg, rgba(18, 105, 174, 0.08), rgba(201, 38, 53, 0.06));
}

.info-card__media::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, rgba(10, 20, 32, 0), rgba(10, 20, 32, 0.28));
  pointer-events: none;
}

.info-card__image {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 260ms ease;
}

.info-card--program:hover .info-card__image {
  transform: scale(1.06);
}

.info-card__content {
  display: grid;
  gap: 14px;
  padding: 22px 22px 24px;
}

.team-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.team-card {
  position: relative;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  overflow: hidden;
  padding: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.96));
  box-shadow: 0 24px 50px rgba(18, 65, 104, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(18, 65, 104, 0.14);
}

.team-card__glow {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
}

.team-card--blue .team-card__glow {
  background: linear-gradient(90deg, rgba(18, 105, 174, 0.95), rgba(74, 166, 228, 0.6));
}

.team-card--red .team-card__glow {
  background: linear-gradient(90deg, rgba(201, 38, 53, 0.95), rgba(242, 137, 114, 0.6));
}

.team-card__media {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 26px 20px 22px;
}

.team-card--blue .team-card__media {
  background: linear-gradient(180deg, rgba(18, 105, 174, 0.09), rgba(18, 105, 174, 0.02));
}

.team-card--red .team-card__media {
  background: linear-gradient(180deg, rgba(201, 38, 53, 0.09), rgba(201, 38, 53, 0.02));
}

.team-card__image-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.team-card__image {
  width: min(100%, 150px);
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 32px rgba(18, 65, 104, 0.16);
}

.team-card__highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
}

.team-card__chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(18, 105, 174, 0.12);
  color: var(--blue-deep);
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
}

.team-card__content {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 28px 28px 26px;
}

.team-card__role {
  margin: 0;
  color: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-card__summary {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
}

.team-card__bio {
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.team-card__bio p,
.team-card__details p {
  margin: 0;
  line-height: 1.72;
}

.team-card__details {
  display: grid;
  gap: 12px;
  padding-top: 2px;
}

.team-card__toggle {
  justify-self: start;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(18, 105, 174, 0.14);
  border-radius: 999px;
  background: rgba(18, 105, 174, 0.06);
  color: var(--blue-deep);
  font-weight: 800;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.team-card__toggle:hover {
  background: rgba(18, 105, 174, 0.1);
  transform: translateY(-1px);
}

.team-card h3 {
  margin: 0;
  font-size: 1.55rem;
}

.info-card h3 {
  margin: 0 0 14px;
  font-size: 1.2rem;
}

.focus-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.focus-strip span {
  padding: 12px 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(18, 105, 174, 0.12);
  color: var(--blue-deep);
  font-weight: 700;
}

.support-panel,
.donate-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 28px;
}

.support-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.78)),
    linear-gradient(135deg, rgba(18, 105, 174, 0.08), rgba(242, 191, 99, 0.12));
}

.support-list {
  display: grid;
  gap: 14px;
  align-content: center;
}

.support-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.support-item:last-child {
  border-bottom: 0;
}

.support-item__dot {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--blue));
}

.donate-hero {
  overflow: hidden;
  padding: 32px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)),
    linear-gradient(135deg, rgba(18, 105, 174, 0.08), rgba(201, 38, 53, 0.06));
  box-shadow: var(--shadow);
}

.donate-copy {
  max-width: 780px;
}

.donate-grid {
  margin-top: 28px;
  align-items: start;
}

.donate-panel--form {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 251, 255, 0.96));
}

.donate-panel--details {
  background: linear-gradient(180deg, rgba(18, 105, 174, 0.06), rgba(255, 255, 255, 0.92));
}

.donate-form {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.amount-option {
  display: grid;
}

.amount-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.amount-pill {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 52px;
  padding: 0 12px;
  border: 1px solid rgba(18, 105, 174, 0.16);
  border-radius: 16px;
  background: #fff;
  font-weight: 800;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.amount-option input:checked + .amount-pill {
  border-color: var(--red);
  background: rgba(201, 38, 53, 0.08);
  color: var(--red-deep);
  transform: translateY(-1px);
}

.field,
.field-group {
  display: grid;
  gap: 14px;
}

.field-group {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field label,
.field-group label,
.amount-label {
  font-weight: 800;
  color: var(--blue-deep);
}

.text-input,
.select-input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(18, 105, 174, 0.14);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
}

.donate-submit {
  width: 100%;
}

.config-warning {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(242, 191, 99, 0.18);
  color: #7c5a18;
  font-weight: 700;
}

.footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  margin: 88px 0 32px;
}

.footer h2 {
  font-size: 2rem;
}

.footer-copy {
  max-width: 520px;
  display: grid;
  gap: 12px;
}

@media (max-width: 960px) {
  .story-layout,
  .support-panel,
  .donate-grid,
  .field-group,
  .card-grid,
  .impact-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .topbar,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar--sticky {
    width: min(calc(100% - 32px), 1280px);
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero-video-frame--full {
    min-height: 66vh;
  }

  .amount-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-shell {
    padding: 0 14px 24px;
  }

  .topbar--sticky {
    top: 8px;
    width: calc(100% - 16px);
    padding: 12px 14px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
  }

  .topbar,
  .footer {
    flex-direction: unset;
    align-items: center;
  }

  .hero-video-frame,
  .hero-card,
  .story-panel,
  .quote-panel,
  .info-card,
  .support-panel,
  .footer,
  .donate-panel,
  .impact-card,
  .step-card,
  .team-card,
  .donate-hero {
    border-radius: 24px;
  }

  .hero-video-frame--full {
    min-height: 420px;
    border-radius: 0;
  }

  .brand {
    gap: 12px;
    min-width: 0;
  }

  .brand-logo--desktop {
    display: none;
  }

  .brand-logo--mobile {
    display: block;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding-top: 8px;
  }

  .nav-links--open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--blue-deep);
  }

  .nav-links__donate {
    min-height: 46px;
    padding: 0 14px;
  }

  .quote-panel p {
    font-size: 1.6rem;
  }

  .section {
    padding-top: 64px;
  }

  .team-card__image-wrap {
    min-height: 170px;
    padding-top: 20px;
  }

  .team-card__image {
    width: min(100%, 150px);
    height: 150px;
  }

  .amount-grid {
    grid-template-columns: 1fr 1fr;
  }
}


.footer-status {
  font-feature-settings: 'calt' 0, 'liga' 0;
  font-variant-ligatures: none;
}


.nav-links a.is-active {
  color: var(--blue-deep);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-hero {
  margin-top: 124px;
  padding: 34px 30px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 253, 0.96)),
    linear-gradient(135deg, rgba(18, 105, 174, 0.08), rgba(201, 38, 53, 0.05));
  box-shadow: var(--shadow);
}

.page-hero h1 {
  margin: 0;
  max-width: 12ch;
  font-family: 'Instrument Serif', serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.page-hero__copy {
  max-width: 62ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.section--compact {
  padding-top: 42px;
}

.quick-links__grid,
.doc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.quick-link-card,
.doc-card,
.doc-empty {
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.94));
  box-shadow: 0 18px 42px rgba(18, 65, 104, 0.1);
}

.quick-link-card {
  display: block;
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.quick-link-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 52px rgba(18, 65, 104, 0.14);
}

.quick-link-card h2,
.doc-card h3,
.doc-empty h2 {
  margin: 0 0 10px;
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.quick-link-card p:last-child,
.doc-card p:last-child,
.doc-empty p:last-child {
  margin-bottom: 0;
}

.card-grid--programs .info-card--fly,
.focus-strip span {
  opacity: 0;
  transform: translate3d(0, 32px, 0) scale(0.98);
}

.reveal.is-visible .info-card--fly {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--fly-delay, 80ms);
}

.reveal.is-visible .focus-strip span {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible .focus-strip span:nth-child(1) { transition-delay: 180ms; }
.reveal.is-visible .focus-strip span:nth-child(2) { transition-delay: 240ms; }
.reveal.is-visible .focus-strip span:nth-child(3) { transition-delay: 300ms; }
.reveal.is-visible .focus-strip span:nth-child(4) { transition-delay: 360ms; }
.reveal.is-visible .focus-strip span:nth-child(5) { transition-delay: 420ms; }

.team-section--compact {
  padding-top: 42px;
}

.doc-card {
  padding: 28px;
}



.doc-card__year {
  margin: 0 0 14px;
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--blue-deep);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(18, 105, 174, 0.12);
  box-shadow: 0 10px 24px rgba(18, 65, 104, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 105, 174, 0.28);
  box-shadow: 0 14px 28px rgba(18, 65, 104, 0.12);
}

.social-link img {
  display: block;
  width: 24px;
  min-width: 24px;
  max-width: 24px;
  height: 24px;
  min-height: 24px;
  max-height: 24px;
  object-fit: contain;
}

.text-area {
  min-height: 180px;
  padding: 16px;
  resize: vertical;
}

.contact-grid {
  align-items: start;
}

.contact-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.96));
}

.contact-details-panel {
  background: linear-gradient(180deg, rgba(18, 105, 174, 0.05), rgba(255, 255, 255, 0.96));
}

.contact-details-list {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.contact-detail {
  display: grid;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.contact-detail:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-detail__label {
  color: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}





.team-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.team-card__linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(18, 105, 174, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-deep);
  font-weight: 800;
  transition: background 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.team-card__linkedin:hover {
  background: rgba(18, 105, 174, 0.08);
  transform: translateY(-1px);
  border-color: rgba(18, 105, 174, 0.24);
}

.team-card__linkedin-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}




.team-card__linkedin span {
  display: inline-block;
  margin-left: 18px;
}




.app-preview__panel,
.app-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.94)),
    linear-gradient(135deg, rgba(18, 105, 174, 0.08), rgba(201, 38, 53, 0.05));
  box-shadow: 0 22px 52px rgba(18, 65, 104, 0.1);
}

.app-preview__copy,
.app-detail__copy {
  display: grid;
  align-content: center;
  gap: 16px;
}

.app-preview__panel h2,
.app-detail h2 {
  margin: 0;
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.app-preview__summary {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--blue-deep);
}

.app-preview__list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.app-preview__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.app-preview__media,
.app-detail__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 20px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(18, 105, 174, 0.08), rgba(201, 38, 53, 0.04));
}

.app-preview__image,
.app-detail__image {
  width: min(100%, 320px);
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(18, 65, 104, 0.18));
  transition: transform 220ms ease;
}

.app-preview__panel:hover .app-preview__image,
.app-detail:hover .app-detail__image {
  transform: translateY(-4px) scale(1.02);
}

@media (max-width: 960px) {
  .app-preview__panel,
  .app-detail {
    grid-template-columns: 1fr;
  }

  .app-preview__media,
  .app-detail__media {
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .app-preview__panel,
  .app-detail {
    padding: 22px 20px;
    border-radius: 24px;
  }

  .app-preview__media,
  .app-detail__media {
    min-height: 220px;
    border-radius: 22px;
  }
}

.policy-panel {
  padding: 34px 30px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.96));
  box-shadow: 0 18px 42px rgba(18, 65, 104, 0.1);
}

.policy-panel h2,
.policy-panel h3 {
  margin: 24px 0 12px;
  color: var(--blue-deep);
}

.policy-panel h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.policy-panel h3 {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.policy-panel p,
.policy-panel li {
  color: var(--text);
  line-height: 1.8;
}

.policy-panel ul {
  margin: 0;
  padding-left: 22px;
}

.policy-contact {
  margin-top: 10px;
}

.donate-hero__media {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  margin-bottom: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(18, 105, 174, 0.08), rgba(201, 38, 53, 0.06));
}

.donate-hero__media::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(10, 20, 32, 0), rgba(10, 20, 32, 0.24));
  pointer-events: none;
}

.donate-hero__image {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

@media (max-width: 640px) {
  .donate-hero__media,
  .donate-hero__image {
    min-height: 220px;
    border-radius: 22px;
  }
}

.hero-video--mobile {
  display: none;
}

@media (max-width: 640px) {
  .hero-video--desktop {
    display: none;
  }

  .hero-video--mobile {
    display: block;
  }
}

@media (max-width: 640px) {
  .team-section--compact {
    padding-top: 28px;
  }

  .team-grid {
    gap: 18px;
  }

  .team-card {
    grid-template-columns: 1fr;
  }

  .team-card__media {
    justify-items: center;
    gap: 14px;
    padding: 22px 18px 14px;
  }

  .team-card__image-wrap {
    justify-content: center;
    min-height: auto;
    padding-top: 0;
  }

  .team-card__image {
    width: 124px;
    height: 124px;
    border-width: 3px;
  }

  .team-card__highlights {
    justify-content: center;
    gap: 7px;
  }

  .team-card__chip {
    padding: 7px 10px;
    font-size: 0.74rem;
  }

  .team-card__content {
    gap: 10px;
    padding: 16px 18px 20px;
  }

  .team-card h3 {
    font-size: 1.3rem;
  }

  .team-card__role {
    font-size: 0.76rem;
  }

  .team-card__summary,
  .team-card__bio p,
  .team-card__details p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .team-card__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .team-card__linkedin,
  .team-card__toggle {
    width: 100%;
    justify-content: center;
  }

  .team-card__linkedin span {
    margin-left: 12px;
  }
}





.info-card__image--snn {
  object-fit: contain;
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
}


