* {
  box-sizing: border-box;
}

:root {
  --bg: #0b0b0c;
  --bg-soft: #111214;
  --surface: #161719;
  --surface-2: #1b1c1f;
  --text: #f5f5f5;
  --muted: #a3a3a8;
  --line: rgba(255,255,255,.10);
  --red: #e31d2b;
  --red-dark: #b51620;
  --max: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: rgba(10,10,11,.90);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 66px;
  height: 66px;
  object-fit: cover;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: .91rem;
  font-weight: 600;
}

.nav-links a {
  color: #c7c7ca;
  transition: color .2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-cta {
  padding: 10px 15px;
  border: 1px solid rgba(227,29,43,.55);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  padding: 92px 0 78px;
  background:
    radial-gradient(circle at 75% 25%, rgba(227,29,43,.12), transparent 27%),
    linear-gradient(180deg, #0b0b0c 0%, #0e0f10 100%);
}

.hero-grid,
.story-layout,
.events-grid,
.countdown-hero {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 80px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #d5d5d7;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .2em;
}

.hero h1,
.countdown-copy h1 {
  margin: 0;
  font-size: clamp(3.8rem, 8.4vw, 7.9rem);
  line-height: .92;
  letter-spacing: -.06em;
}

.hero h1 span,
.countdown-copy h1 span,
.closing-section h2 span {
  color: var(--red);
}

.hero-lead,
.countdown-lead {
  max-width: 690px;
  margin: 28px 0 0;
  color: #b8b8bc;
  font-size: clamp(1rem, 1.6vw, 1.16rem);
}

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

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 9px;
  font-size: .9rem;
  font-weight: 700;
  transition: transform .18s ease, opacity .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--red);
  color: white;
}

.btn-primary:hover {
  background: #f02634;
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}

.btn-light {
  background: #fff;
  color: #111;
}

.hero-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #f1f1f1;
  box-shadow: 0 32px 100px rgba(0,0,0,.32);
}

.hero-logo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.hero-card-copy {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  color: #181818;
}

.hero-card-copy span {
  color: #6b6b6b;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .13em;
}

.hero-card-copy strong {
  text-align: right;
  font-size: .86rem;
}

.stats-strip {
  width: min(var(--max), calc(100% - 32px));
  margin: -1px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #101113;
}

.stat {
  padding: 25px 24px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: none;
}

.stat strong {
  display: block;
  font-size: 1.65rem;
  letter-spacing: -.03em;
}

.stat span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: .79rem;
}

.section {
  padding: 110px 0;
}

.section-heading {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 48px;
}

.section-heading.centered {
  max-width: 760px;
  text-align: center;
}

.section-heading h2,
.events-copy h2,
.rally-content h2,
.closing-section h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4.5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -.045em;
}

.section-heading > p:last-child,
.events-copy > p,
.rally-content > p,
.closing-section > p:last-child {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
}

.story-section {
  background: #0e0f10;
}

.story-layout {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 70px;
}

.story-main {
  color: #c2c2c6;
  font-size: 1.03rem;
}

.story-main p {
  margin: 0 0 22px;
}

.story-main strong {
  color: #fff;
}

.quote-card {
  align-self: start;
  padding: 30px;
  border-top: 3px solid var(--red);
  background: #17181b;
}

.quote-mark {
  display: block;
  color: var(--red);
  font-size: 4rem;
  line-height: .8;
}

.quote-card blockquote {
  margin: 20px 0;
  color: #f1f1f1;
  font-size: 1.16rem;
  font-weight: 600;
}

.quote-card p {
  margin: 0;
  color: var(--muted);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.values-section {
  background: #0b0b0c;
}

.values-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.value-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, #151619, #101113);
}

.value-number {
  color: var(--red);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.value-card h3 {
  margin: 56px 0 10px;
  font-size: 1.55rem;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: .93rem;
}

.events-section {
  background: #111214;
}

.events-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 76px;
  align-items: start;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.event-tags span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d0d0d0;
  font-size: .78rem;
}

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

.charity-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 8px 20px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #17181b;
}

.charity-year {
  color: var(--red);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.charity-card h3 {
  margin: 4px 0 0;
  font-size: 1.12rem;
}

.charity-card > strong {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  font-size: 2rem;
  letter-spacing: -.04em;
}

.raised {
  grid-column: 2;
  text-align: right;
  color: var(--muted);
  font-size: .69rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.rally-banner {
  width: min(var(--max), calc(100% - 32px));
  margin: 90px auto;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  border-radius: 18px;
  background:
    linear-gradient(115deg, rgba(227,29,43,.98), rgba(145,16,24,.94));
  overflow: hidden;
}

.rally-content > p {
  color: rgba(255,255,255,.82);
}

.rally-content .eyebrow {
  color: rgba(255,255,255,.72);
}

.rally-date {
  min-width: 190px;
  padding-left: 40px;
  border-left: 1px solid rgba(255,255,255,.35);
  text-align: center;
}

.rally-date span {
  display: block;
  font-size: 5rem;
  font-weight: 800;
  line-height: .9;
}

.rally-date strong,
.rally-date small {
  display: block;
  letter-spacing: .15em;
}

.rally-date strong {
  margin-top: 10px;
  font-size: 1.2rem;
}

.rally-date small {
  margin-top: 4px;
  opacity: .75;
}

.closing-section {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 100px 0 120px;
  text-align: center;
}

.closing-section > p:last-child {
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #080809;
}

.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  min-height: 170px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

.footer-brand img {
  width: 72px;
  border-radius: 8px;
}

.footer-brand p,
.copyright {
  margin: 10px 0 0;
  color: #717176;
  font-size: .7rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: #aaaab0;
  font-size: .78rem;
}

/* Countdown page */
.countdown-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 70% 20%, rgba(227,29,43,.16), transparent 25%),
    linear-gradient(150deg, #09090a 0%, #0d0e10 60%, #080809 100%);
}

.countdown-main {
  min-height: calc(100vh - 78px);
}

.countdown-hero {
  min-height: calc(100vh - 78px);
  padding: 70px 0 90px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 70px;
}

.countdown-copy h1 span {
  -webkit-text-stroke: 1px rgba(255,255,255,.42);
  color: transparent;
}

.countdown-grid {
  max-width: 720px;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.countdown-grid article {
  padding: 24px 14px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.035);
}

.countdown-grid strong {
  display: block;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -.06em;
}

.countdown-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.countdown-status {
  margin-top: 22px;
  color: #77777c;
  font-size: .8rem;
}

.back-link {
  display: inline-block;
  margin-top: 28px;
  color: #d7d7da;
  font-size: .86rem;
  font-weight: 700;
}

.countdown-art {
  position: relative;
  min-height: 520px;
}

.countdown-logo-wrap {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: min(320px, 70%);
  padding: 16px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 28px 90px rgba(0,0,0,.38);
}

.countdown-logo-wrap img {
  width: 100%;
  border-radius: 8px;
}

.road-card {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 78%;
  height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(90deg, #101115 0 14%, #1a1b1f 14% 86%, #101115 86% 100%);
  transform: perspective(700px) rotateX(4deg) rotateZ(-4deg);
  box-shadow: 0 35px 100px rgba(0,0,0,.42);
}

.road-card::before,
.road-card::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,.16);
}

.road-card::before { left: 16%; }
.road-card::after { right: 16%; }

.road-line {
  position: absolute;
  left: 50%;
  width: 5px;
  height: 92px;
  border-radius: 5px;
  background: rgba(255,255,255,.8);
  transform: translateX(-50%);
  animation: road 2.2s linear infinite;
}

.line-a { top: -70px; }
.line-b { top: 120px; animation-delay: -.75s; }
.line-c { top: 310px; animation-delay: -1.5s; }

.destination {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 7px;
  background: rgba(0,0,0,.38);
  color: #d9d9db;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.compact-footer .footer-inner {
  min-height: 80px;
  display: flex;
  justify-content: center;
}

.compact-footer .copyright {
  margin: 0;
}

@keyframes road {
  from { transform: translate(-50%, -150px); }
  to { transform: translate(-50%, 510px); }
}

@media (max-width: 900px) {
  .hero-grid,
  .story-layout,
  .events-grid,
  .countdown-hero {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .countdown-hero {
    gap: 44px;
  }

  .hero-card {
    max-width: 540px;
  }

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

  .stat:nth-child(2) {
    border-right: none;
  }

  .stat:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .rally-banner {
    grid-template-columns: 1fr;
  }

  .rally-date {
    padding: 28px 0 0;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,.35);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 34px 0;
    text-align: center;
  }

  .footer-brand img {
    margin: 0 auto;
  }

  .countdown-art {
    min-height: 430px;
  }
}

@media (max-width: 700px) {
  .nav-wrap {
    min-height: 68px;
  }

  .brand img {
    width: 54px;
    height: 54px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 18px;
    border-bottom: 1px solid var(--line);
    background: #0b0b0c;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 4px;
  }

  .nav-cta {
    margin-top: 4px;
    text-align: center;
  }

  .hero {
    padding-top: 58px;
  }

  .hero h1,
  .countdown-copy h1 {
    font-size: clamp(3.5rem, 18vw, 5.4rem);
  }

  .stats-strip,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: none;
  }

  .section {
    padding: 78px 0;
  }

  .story-layout,
  .events-grid {
    gap: 36px;
  }

  .values-grid {
    gap: 12px;
  }

  .rally-banner {
    margin: 50px auto;
    padding: 30px 22px;
  }

  .rally-date span {
    font-size: 4rem;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .countdown-hero {
    padding-top: 48px;
  }

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

  .countdown-art {
    min-height: 360px;
  }

  .countdown-logo-wrap {
    width: 230px;
  }

  .road-card {
    width: 78%;
    height: 280px;
  }
}
