:root {
  --blue-900: #083b8a;
  --blue-700: #0b5ed7;
  --blue-600: #1f6fe5;
  --blue-100: #eaf3ff;
  --blue-050: #f6faff;
  --text: #123;
  --muted: #5e6c84;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(8, 59, 138, 0.14);
  --radius: 20px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--blue-050) 0%, #ffffff 22%, var(--blue-050) 100%);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--blue-700);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.logo {
  height: 124px;
  width: auto;
  display: block;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  padding: 0.5rem 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(11, 94, 215, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 110px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  font-weight: 800;
  color: var(--blue-900);
  letter-spacing: 0.2px;
}

.brand::before,
.brand::after {
  content: none !important;
  display: none !important;
}

.brand-text {
  font-weight: 800;
  color: var(--blue-900);
  font-size: 1.1rem;
  line-height: 1;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--text);
  font-weight: 600;
  opacity: 0.88;
  line-height: 1;
}

.nav-links .highlight,
.nav-links a[aria-current="page"] {
  color: var(--blue-700);
  font-weight: 800;
  opacity: 1;
}

.button,
button:not(.nav-toggle):not(#navToggle) {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: var(--white);
  padding: 0.95rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(11, 94, 215, 0.22);
}

.button.secondary {
  background: var(--white);
  color: var(--blue-900);
  border: 1px solid rgba(11, 94, 215, 0.16);
  box-shadow: none;
}

.button:hover,
button:not(.nav-toggle):not(#navToggle):hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(11, 94, 215, 0.24);
  text-decoration: none;
}

.button.secondary:hover {
  background: var(--blue-050);
}

#navToggle,
button#navToggle,
.nav-toggle,
button.nav-toggle {
  display: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 48px;
  height: 48px;
  padding: 0 !important;
  margin: 0 !important;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  color: var(--blue-900);
  cursor: pointer;
  flex-shrink: 0;
  text-decoration: none !important;
  transform: none !important;
}

#navToggle:hover,
button#navToggle:hover,
.nav-toggle:hover,
button.nav-toggle:hover,
#navToggle:focus,
button#navToggle:focus,
.nav-toggle:focus,
button.nav-toggle:focus,
#navToggle:active,
button#navToggle:active,
.nav-toggle:active,
button.nav-toggle:active {
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  text-decoration: none !important;
  transform: none !important;
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding: 5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-900);
  font-weight: 700;
  font-size: 0.95rem;
}

h1,
h2,
h3 {
  line-height: 1.1;
  margin: 0 0 1rem;
  color: var(--blue-900);
}

h1 {
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.7rem);
}

h3 {
  font-size: 1.15rem;
}

.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  color: var(--muted);
  max-width: 62ch;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.hero-card {
  background: var(--white);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(11, 94, 215, 0.08);
}

.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.section {
  padding: 3.25rem 0;
}

.section-head {
  max-width: 70ch;
  margin-bottom: 1.4rem;
}

.section-head.full-width,
.section-head.full-width .lead {
  max-width: none;
}

#history .section-head,
#history .lead,
#countdown .section-head,
#countdown .lead {
  max-width: none;
}

.hashtag-head {
  margin-top: 1.25rem;
  margin-bottom: 0.85rem;
}

.hashtag-head h3 {
  color: var(--blue-900);
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 1.2rem;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid rgba(11, 94, 215, 0.08);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(8, 59, 138, 0.16);
  border-color: rgba(11, 94, 215, 0.14);
}

.card p,
.card li {
  color: var(--muted);
}

.stat {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-700);
  margin-bottom: 0.35rem;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  align-items: center;
}

.image-stack {
  display: grid;
  gap: 1rem;
}

.image-stack img,
.panel-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(11, 94, 215, 0.08);
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  border: 1px solid rgba(11, 94, 215, 0.08);
  box-shadow: var(--shadow);
}

.timeline-year {
  font-weight: 800;
  color: var(--blue-700);
  background: var(--blue-100);
  border-radius: 14px;
  padding: 0.7rem 0.9rem;
  text-align: center;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-top: 1.1rem;
}

.count-box {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border: 1px solid rgba(11, 94, 215, 0.08);
  border-radius: 18px;
  padding: 1rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.count-box strong {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--blue-900);
  line-height: 1;
}

.count-box span {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.share-box {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--blue-100);
  color: var(--blue-900);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: transform 0.18s ease, opacity 0.18s ease, background-color 0.18s ease;
}

.tag:hover {
  transform: translateY(-1px);
  opacity: 0.92;
  background: #dfeeff;
  text-decoration: none;
}

.cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: var(--white);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 22px 55px rgba(8, 59, 138, 0.25);
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.cta h2,
.cta p,
.cta a {
  color: var(--white);
}

.cta .button.secondary {
  border-color: rgba(255, 255, 255, 0.25);
}

.faq details {
  background: var(--white);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(11, 94, 215, 0.08);
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.faq details+details {
  margin-top: 0.8rem;
}

.faq details:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 42px rgba(8, 59, 138, 0.14);
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--blue-900);
}

.site-footer {
  padding: 2rem 0 3rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.credits {
  display: grid;
  gap: 0.35rem;
  margin-top: 1rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 9999;
  display: flex;
  justify-content: center;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__content {
  width: min(100%, 760px);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(11, 94, 215, 0.12);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(8, 59, 138, 0.16);
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner__content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Supporters Page */
.supporters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.supporter-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 170px;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid rgba(11, 94, 215, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  text-decoration: none;
}

.supporter-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(8, 59, 138, 0.16);
  text-decoration: none;
}

.supporter-card img {
  display: block;
  width: auto !important;
  height: 48px !important;
  max-width: 140px !important;
  max-height: 48px !important;
  object-fit: contain !important;
  object-position: center !important;
  margin: 0 auto !important;
  flex: 0 0 48px;
}

.supporter-card span {
  font-weight: 700;
  color: var(--blue-900);
  text-align: center;
}

@media (max-width: 980px) {

  .hero-grid,
  .split,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-card img {
    min-height: 320px;
  }

  .countdown {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 641px) {

  #navToggle,
  .nav-toggle {
    display: none !important;
  }
}

@media (max-width: 640px) {

  #navToggle,
  .nav-toggle {
    display: inline-flex !important;
  }

  .logo {
    height: 70px;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .nav {
    position: relative;
    min-height: 80px;
    padding: 0.5rem 0;
  }

  .nav-toggle {
    margin-left: auto;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(11, 94, 215, 0.1);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(8, 59, 138, 0.16);
    backdrop-filter: blur(12px);
    z-index: 30;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    min-height: 44px;
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    justify-content: flex-start;
  }

  .nav-links a:hover,
  .nav-links a[aria-current="page"] {
    background: var(--blue-050);
    text-decoration: none;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .countdown {
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions,
  .share-box {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  button:not(.nav-toggle):not(#navToggle) {
    width: 100%;
    text-align: center;
  }

  .cookie-banner__content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__actions {
    flex-direction: column;
  }
}