﻿:root {
  --bg: #04101b;
  --bg-soft: #09192a;
  --panel: rgba(10, 22, 37, 0.72);
  --panel-strong: rgba(9, 19, 33, 0.88);
  --line: rgba(165, 205, 255, 0.2);
  --text: #edf4ff;
  --muted: #adc2dc;
  --accent: #75b8ff;
  --accent-strong: #a7ddff;
  --accent-warm: #ffc57a;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(85, 130, 189, 0.24), transparent 35%),
    linear-gradient(180deg, #020812 0%, #06111b 38%, #091522 100%);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

img,
video {
  display: block;
  width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  overflow: clip;
}

.hero,
.story,
.proof,
.sponsor,
.donate {
  position: relative;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 32px 0 40px;
}

.hero__backdrop {
  position: absolute;
  inset: 12px 0 0;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(2, 8, 18, 0.15), rgba(2, 8, 18, 0.78)),
    linear-gradient(90deg, rgba(2, 8, 18, 0.85), rgba(2, 8, 18, 0.2)),
    url("assets/hero/hero-real.jpg") center 24%/cover no-repeat;
  box-shadow: var(--shadow);
  transform: translateY(calc(var(--parallax, 0) * 1px));
}

.hero__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(5, 18, 31, 0.1), rgba(5, 18, 31, 0.82)),
    radial-gradient(circle at 72% 36%, rgba(117, 184, 255, 0.22), transparent 18%),
    radial-gradient(circle at 82% 24%, rgba(255, 197, 122, 0.12), transparent 16%);
}

.hero__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.55;
}

.hero__glow--left {
  width: 220px;
  height: 220px;
  left: -40px;
  bottom: 160px;
  background: rgba(79, 126, 201, 0.24);
}

.hero__glow--right {
  width: 260px;
  height: 260px;
  right: -30px;
  top: 70px;
  background: rgba(255, 187, 114, 0.15);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 32px 24px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-strong);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  line-height: 1;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  max-width: 14ch;
  line-height: 0.95;
  hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
}

h2 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  max-width: 14ch;
}

h3 {
  font-size: 1.5rem;
}

.hero__lead,
.story__copy p,
.featured-card__caption p,
.video-card p,
.donate__panel h2,
.footer p,
.footer a,
.footer span,
.sponsor__note,
.form-embed__note {
  line-height: 1.7;
}

.hero__lead {
  max-width: 60ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.hero__actions,
.footer__links,
.donate__panel,
.proof__featured,
.sponsor__grid,
.video-grid {
  display: flex;
  gap: 16px;
}

.hero__actions {
  margin-top: 28px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
  font-weight: 700;
}

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

.button--primary {
  background: linear-gradient(135deg, #7ac0ff, #3f88ff);
  color: #02101d;
}

.button--secondary {
  background: rgba(4, 12, 20, 0.42);
  border-color: rgba(255, 255, 255, 0.18);
}

.button--accent {
  background: linear-gradient(135deg, #ffd089, #f7aa53);
  color: #14100b;
}

.button--full {
  width: 100%;
}

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

.hero__stats div,
.glass-card {
  backdrop-filter: blur(18px);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero__stats div {
  padding: 18px;
  border-radius: 20px;
}

.hero__stats dt {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  color: var(--accent-strong);
}

.hero__stats dd {
  margin: 8px 0 0;
  color: var(--muted);
}

.story,
.proof,
.sponsor,
.donate {
  padding: 90px 0 0;
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.story__grid,
.proof__featured,
.sponsor__grid {
  align-items: stretch;
}

.story__grid {
  display: grid;
  gap: 20px;
}

.story__copy,
.benefit,
.video-card,
.featured-card__caption,
.sponsor__pitch,
.form-embed,
.donate__panel {
  border-radius: var(--radius);
}

.story__copy {
  padding: 28px;
}

.story__benefits {
  display: grid;
  gap: 16px;
}

.benefit {
  padding: 22px;
}

.benefit span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent-strong);
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
}

.benefit p,
.sponsor__pitch li,
.footer,
.form-embed__note {
  color: var(--muted);
}

.proof__featured,
.video-grid,
.sponsor__grid {
  flex-direction: column;
}

.featured-card {
  overflow: hidden;
  border-radius: 28px;
  background: var(--panel-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.featured-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.featured-card--large img {
  aspect-ratio: 16 / 9;
}

.featured-card__caption {
  padding: 20px 22px 24px;
}

.featured-card__caption strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.gallery {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.gallery__item {
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
  cursor: pointer;
}

.gallery__item img {
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 250ms ease;
}

.gallery__item:hover img,
.gallery__item:focus-visible img {
  transform: scale(1.04);
}

.gallery__item--portrait img {
  object-position: top;
}

.video-grid {
  margin-top: 20px;
}

.video-card {
  padding: 16px;
}

.video-card__embed {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.video-card__embed iframe,
.video-card__embed video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #000;
}

.video-grid--local {
  display: grid;
  gap: 16px;
}

.sponsor__pitch,
.form-embed {
  padding: 24px;
}

.sponsor__pitch ul {
  padding-left: 18px;
}

.form-embed iframe {
  display: block;
  width: 100%;
  min-height: 780px;
  border: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
}

.donate {
  padding-bottom: 90px;
}

.donate__panel {
  justify-content: space-between;
  align-items: center;
  padding: 30px;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 8, 18, 0.78);
}

.footer__content {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 0 36px;
}

.lightbox {
  width: min(96vw, 1100px);
  padding: 0;
  border: 0;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(1, 7, 14, 0.82);
  backdrop-filter: blur(10px);
}

.lightbox figure {
  margin: 0;
}

.lightbox img {
  border-radius: 24px;
  max-height: 82vh;
  object-fit: contain;
}

.lightbox figcaption {
  padding: 12px 8px 0;
  color: var(--muted);
  text-align: center;
}

.lightbox__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(4, 12, 20, 0.75);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .hero__content {
    padding: 48px;
  }

  .story__grid {
    grid-template-columns: 1.2fr 0.9fr;
  }

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

  .gallery__item:nth-child(1) {
    grid-column: span 2;
  }

  .gallery__item--portrait {
    grid-row: span 2;
  }

  .proof__featured,
  .sponsor__grid,
  .sponsor__grid--form-embed {
    flex-direction: row;
  }

  .proof__featured > *,
  .sponsor__grid > * {
    flex: 1;
  }

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

  .footer__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 767px) {
  h1 {
    max-width: 11ch;
  }

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

  .donate__panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-embed iframe {
    min-height: 680px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .button,
  .gallery__item img,
  .hero__backdrop {
    transition: none;
  }
}

.section-head--tight h2 {
  max-width: 12ch;
}

.proof__summary {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
  padding: 18px;
  border-radius: 22px;
}

.proof__summary div {
  display: grid;
  gap: 4px;
}

.proof__summary strong {
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  color: var(--accent-strong);
  text-transform: uppercase;
}

.proof__summary span {
  color: var(--muted);
  line-height: 1.6;
}

.gallery--curated {
  margin-top: 0;
}

.gallery__item--wide img {
  min-height: 260px;
}

@media (min-width: 768px) {
  .proof__summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }

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

  .gallery--curated .gallery__item--wide {
    grid-column: span 2;
  }
}


.form-embed__intro {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-embed__intro h3 {
  margin: 0;
}

.form-embed__intro p {
  margin: 0;
  color: var(--muted);
}



@media (max-width: 480px) {
  h1 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
    max-width: 18ch;
  }
}

