:root {
  --blue-950: #061a2e;
  --blue-900: #07385f;
  --blue-700: #075fa9;
  --blue-500: #0c82d8;
  --blue-100: #e8f3fb;
  --red-600: #ed2435;
  --red-700: #c91527;
  --gold: #f5c76a;
  --paper: #fbfcff;
  --ink: #101724;
  --muted: #657184;
  --line: rgba(7, 56, 95, 0.14);
  --shadow: 0 30px 90px rgba(6, 26, 46, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 200;
  padding: 10px 14px;
  background: white;
  color: var(--blue-900);
  border-radius: 4px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 64px);
  color: white;
  background: linear-gradient(180deg, rgba(6, 26, 46, 0.86), rgba(6, 26, 46, 0.2));
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 220px;
}

.brand-symbol {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.44);
}

.brand-symbol::before,
.brand-symbol::after,
.brand-symbol span {
  content: "";
  position: absolute;
  background: white;
  border-radius: 999px;
}

.brand-symbol::before {
  width: 17px;
  height: 3px;
  left: 10px;
  top: 18px;
}

.brand-symbol::after {
  width: 3px;
  height: 18px;
  left: 17px;
  top: 9px;
}

.brand-symbol span {
  width: 16px;
  height: 3px;
  left: 17px;
  top: 17px;
  transform: rotate(-28deg);
  transform-origin: left center;
}

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

.brand strong {
  font-size: 0.96rem;
  letter-spacing: 0.01em;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.7vw, 36px);
}

nav a,
.header-action {
  color: white;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 800;
}

.header-action {
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: white;
  background: var(--blue-950);
}

.hero-image,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0.78;
  filter: saturate(1.1) contrast(1.06);
}

.hero-shade {
  background:
    radial-gradient(circle at 76% 26%, rgba(237, 36, 53, 0.32), transparent 31%),
    linear-gradient(90deg, rgba(6, 26, 46, 0.96), rgba(6, 26, 46, 0.72) 42%, rgba(6, 26, 46, 0.18)),
    linear-gradient(0deg, rgba(6, 26, 46, 0.98), rgba(6, 26, 46, 0.03) 52%);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  pointer-events: none;
}

.hero-grid span {
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(32px, 7vw, 92px);
  align-items: end;
  padding: 130px clamp(18px, 5vw, 76px) 110px;
}

.hero-copy {
  max-width: 980px;
}

.overline {
  margin: 0 0 16px;
  color: #ffd4d8;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.overline.blue {
  color: var(--blue-700);
}

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

h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: clamp(4.1rem, 11vw, 12rem);
  line-height: 0.78;
  letter-spacing: 0;
  font-weight: 950;
}

.hero-subtitle {
  max-width: 780px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.9);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.8vw, 2.65rem);
  line-height: 1.13;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}

.button-red {
  color: white;
  background: var(--red-600);
  box-shadow: 0 20px 42px rgba(237, 36, 53, 0.34);
}

.button-glass {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.hero-panel {
  align-self: center;
  padding: 26px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-950);
  box-shadow: var(--shadow);
}

.hero-panel span,
.stat-strip span,
.movement-card span,
.media-note span {
  color: var(--red-600);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-top: 10px;
  font-size: 1.55rem;
  line-height: 1.08;
}

.panel-line {
  height: 1px;
  margin: 24px 0;
  background: var(--line);
}

.mini-facts {
  display: grid;
  gap: 14px;
}

.mini-facts p {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 12px;
  margin: 0;
  color: var(--muted);
  line-height: 1.35;
}

.mini-facts b {
  color: var(--blue-900);
}

.hero-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  gap: 44px;
  overflow: hidden;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.92);
  background: var(--red-600);
  white-space: nowrap;
}

.hero-marquee span {
  min-width: max-content;
  padding-left: 44px;
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: white;
}

.stat-strip article {
  min-height: 190px;
  padding: clamp(24px, 4vw, 42px);
  border-right: 1px solid var(--line);
}

.stat-strip strong {
  display: block;
  max-width: 320px;
  margin-top: 14px;
  color: var(--blue-900);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.08;
}

.section {
  padding: clamp(72px, 9vw, 128px) clamp(18px, 5vw, 76px);
}

.section-copy {
  max-width: 780px;
}

.section-copy.wide {
  max-width: 1040px;
}

h2 {
  margin-bottom: 24px;
  color: var(--blue-950);
  font-size: clamp(2.55rem, 6.4vw, 7rem);
  line-height: 0.88;
  letter-spacing: 0;
  font-weight: 950;
}

.section-copy p:not(.overline),
.manifesto-copy p,
.program-list p,
.pillar-grid p,
.support-grid p,
footer p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.movement {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.72fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(232, 243, 251, 0.78), rgba(255, 255, 255, 0.92)),
    var(--paper);
}

.movement-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.movement-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

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

.movement-card strong {
  display: block;
  margin: 9px 0 8px;
  color: var(--blue-950);
  font-size: 1.45rem;
  line-height: 1.12;
}

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

.manifesto {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.55fr);
  gap: 28px;
  align-items: end;
  overflow: hidden;
  color: white;
  background: var(--blue-700);
}

.manifesto-art {
  position: absolute;
  inset: 0;
  opacity: 0.42;
}

.manifesto-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.manifesto::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 56, 95, 0.96), rgba(7, 56, 95, 0.68) 48%, rgba(7, 56, 95, 0.42)),
    radial-gradient(circle at 80% 30%, rgba(237, 36, 53, 0.24), transparent 36%);
}

.manifesto-copy,
.manifesto-quote {
  position: relative;
  z-index: 1;
}

.manifesto-copy h2,
.manifesto-copy p,
.manifesto-quote p {
  color: white;
}

.manifesto-copy p:not(.overline) {
  max-width: 720px;
}

.manifesto-quote {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.manifesto-quote p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.3vw, 2.3rem);
  line-height: 1.2;
}

.program {
  background: white;
}

.program-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  margin-top: 42px;
}

.date-column {
  position: sticky;
  top: 100px;
  padding: 28px;
  border-radius: var(--radius);
  color: white;
  background: var(--blue-950);
  box-shadow: var(--shadow);
}

.date-column p {
  margin-bottom: 2px;
  font-size: clamp(4rem, 7vw, 6.8rem);
  line-height: 0.9;
  font-weight: 950;
}

.date-column span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.program-list {
  display: grid;
  gap: 16px;
}

.program-list article {
  display: grid;
  grid-template-columns: minmax(170px, 230px) minmax(0, 1fr);
  gap: 28px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.program-list article.featured {
  color: white;
  background:
    linear-gradient(135deg, rgba(237, 36, 53, 0.96), rgba(201, 21, 39, 0.92)),
    var(--red-600);
  box-shadow: 0 22px 70px rgba(237, 36, 53, 0.22);
}

.program-list time {
  color: var(--red-600);
  font-weight: 950;
  line-height: 1.35;
}

.program-list article.featured time,
.program-list article.featured h3,
.program-list article.featured p {
  color: white;
}

.program-list h3,
.pillar-grid h3,
.support-grid h3 {
  margin-bottom: 8px;
  color: var(--blue-950);
  font-size: 1.35rem;
  line-height: 1.16;
}

.program-list p {
  margin-bottom: 0;
}

.image-break {
  position: relative;
  min-height: 76vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(48px, 7vw, 86px) clamp(18px, 5vw, 76px);
  color: white;
  background: var(--blue-950);
}

.image-break img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-break::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(6, 26, 46, 0.9), transparent 62%),
    linear-gradient(90deg, rgba(6, 26, 46, 0.72), transparent 72%);
}

.image-break-copy {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.image-break-copy h2 {
  color: white;
}

.pillars {
  background:
    radial-gradient(circle at 15% 10%, rgba(237, 36, 53, 0.08), transparent 28%),
    linear-gradient(180deg, white, var(--blue-100));
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.pillar-grid article {
  min-height: 330px;
  padding: 26px;
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 18px 48px rgba(6, 26, 46, 0.08);
}

.pillar-grid span {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--red-600);
  font-size: 0.9rem;
  font-weight: 950;
}

.pledge {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  background: var(--red-600);
  color: white;
}

.pledge-image img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
}

.pledge-content {
  display: grid;
  align-content: center;
  padding: clamp(54px, 8vw, 110px) clamp(22px, 7vw, 98px);
}

.pledge-content h2 {
  color: white;
}

.pledge-lines {
  display: grid;
  gap: 13px;
  max-width: 780px;
}

.pledge-lines p {
  margin: 0;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.5;
}

.media-wall {
  background: var(--paper);
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr 0.78fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 38px;
}

.media-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.media-grid img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.wide-photo img {
  object-position: center top;
}

.media-grid figcaption {
  padding: 16px 18px;
  color: var(--blue-950);
  font-weight: 900;
}

.media-note {
  display: grid;
  align-content: center;
  padding: 30px;
  border-radius: var(--radius);
  color: white;
  background: var(--blue-950);
}

.media-note p {
  margin: 9px 0 0;
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  font-weight: 950;
}

.partners {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  background: white;
}

.partner-stack {
  display: grid;
  gap: 12px;
  align-content: start;
}

.partner-stack strong {
  display: block;
  padding: 20px 22px;
  border-radius: var(--radius);
  color: var(--blue-950);
  background: var(--blue-100);
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  line-height: 1.1;
}

.support-grid {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.support-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.closing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(58px, 8vw, 92px) clamp(18px, 5vw, 76px);
  color: white;
  background:
    radial-gradient(circle at 80% 10%, rgba(237, 36, 53, 0.42), transparent 30%),
    var(--blue-950);
}

.closing h2 {
  max-width: 900px;
  margin-bottom: 0;
  color: white;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(18px, 5vw, 76px);
  background: #020d17;
}

footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

@media (max-width: 1120px) {
  .hero-inner,
  .movement,
  .manifesto,
  .program-layout,
  .pledge,
  .partners {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 520px;
    align-self: end;
  }

  .date-column {
    position: relative;
    top: 0;
  }

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

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

  .media-note {
    grid-column: 1 / -1;
  }

  .support-grid {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  nav {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .header-action {
    white-space: nowrap;
  }

  .hero-inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  h1 {
    font-size: clamp(4rem, 20vw, 6.3rem);
  }

  .hero-panel {
    padding: 22px;
  }

  .stat-strip,
  .program-list article,
  .pillar-grid,
  .media-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .stat-strip article {
    min-height: 0;
  }

  .program-list article {
    gap: 10px;
  }

  .image-break {
    min-height: 580px;
  }

  .pledge-image img {
    min-height: 420px;
  }

  .media-grid img {
    height: 390px;
  }

  .closing,
  footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .brand small {
    display: none;
  }

  .brand-symbol {
    width: 34px;
    height: 34px;
  }

  .header-action {
    padding: 9px 11px;
    font-size: 0.78rem;
  }

  .button {
    width: 100%;
  }

  .mini-facts p {
    grid-template-columns: 72px 1fr;
  }

  .section {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* Deployment-ready interaction and accessibility additions */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  color: white;
  background: rgba(255,255,255,.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.button-light {
  color: var(--red-700);
  background: white;
  border: 0;
  cursor: pointer;
}

.button-light.is-complete {
  color: var(--blue-950);
  background: #effbf2;
}

.pledge-action {
  margin-top: 30px;
}

.pledge-status {
  max-width: 620px;
  margin: 12px 0 0;
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  line-height: 1.5;
}

.participate {
  background: linear-gradient(180deg, var(--blue-100), white);
}

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

.action-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 9px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--blue-950);
  text-align: left;
  text-decoration: none;
  background: white;
  box-shadow: 0 16px 44px rgba(6,26,46,.08);
  cursor: pointer;
  font: inherit;
}

.action-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 56px rgba(6,26,46,.13);
}

.action-card span {
  margin-bottom: auto;
  color: var(--red-600);
  font-weight: 950;
}

.action-card strong {
  font-size: 1.35rem;
  line-height: 1.1;
}

.action-card small,
.participation-note {
  color: var(--muted);
  line-height: 1.5;
}

.participation-note {
  margin: 24px 0 0;
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 700;
}

footer strong {
  color: white;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--blue-100);
}

.error-card {
  width: min(760px, 100%);
  padding: clamp(28px, 6vw, 64px);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.error-card h1 {
  margin-bottom: 18px;
  color: var(--blue-950);
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: .88;
}

.hero-marquee span {
  animation: peace-marquee 20s linear infinite;
}

@keyframes peace-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-44px); }
}

@media (max-width: 1120px) {
  .action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    position: fixed;
    align-items: center;
    gap: 10px;
    background: rgba(6,26,46,.92);
  }

  .menu-toggle {
    display: block;
    order: 2;
    margin-left: auto;
  }

  .site-header .header-action {
    order: 3;
  }

  #primary-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 12px;
    background: rgba(6,26,46,.98);
    box-shadow: 0 26px 60px rgba(0,0,0,.26);
  }

  #primary-nav.is-open {
    display: flex;
  }

  #primary-nav a {
    padding: 14px 12px;
    border-radius: 8px;
  }

  #primary-nav a:hover {
    background: rgba(255,255,255,.08);
  }

  .hero-inner {
    padding-top: 118px;
  }

  h1 {
    font-size: clamp(3.35rem, 16vw, 5.8rem);
    line-height: .84;
  }

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

  .action-card {
    min-height: 160px;
  }

  .closing-actions {
    width: 100%;
  }

  .closing-actions .button {
    flex: 1 1 220px;
  }

  footer {
    gap: 14px;
  }
}

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

  .brand strong {
    font-size: .82rem;
  }

  .site-header .header-action {
    display: none;
  }

  .hero-inner {
    padding-top: 102px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
