:root {
  --ink: #090a0b;
  --ink-soft: #111315;
  --paper: #f4f1eb;
  --white: #ffffff;
  --red: #c52d32;
  --red-bright: #e03a3e;
  --line-dark: rgba(255, 255, 255, 0.13);
  --line-light: rgba(9, 10, 11, 0.15);
  --muted-dark: #a5a7aa;
  --muted-light: #5e6064;
  --shell: min(1180px, calc(100% - 40px));
  --display: "Arial Narrow", "Helvetica Neue Condensed", "Roboto Condensed", Impact, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 4px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--red-bright);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(9, 10, 11, 0.92);
  border-color: var(--line-dark);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  font-family: var(--display);
  font-size: 0.93rem;
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.brand img {
  width: 36px;
  height: 42px;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 38px);
}

.site-nav a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--white);
}

.site-nav .nav-cta {
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.site-nav .nav-cta:hover {
  background: var(--white);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 160ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 70% 32%, rgba(197, 45, 50, 0.2), transparent 32%),
    var(--ink);
  color: var(--white);
  isolation: isolate;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.34;
  background-image:
    linear-gradient(var(--line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 93%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  width: min(62vw, 900px);
  aspect-ratio: 1;
  right: -22vw;
  top: -17vw;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  box-shadow:
    0 0 0 120px rgba(255, 255, 255, 0.015),
    0 0 0 240px rgba(255, 255, 255, 0.01);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
}

.hero-glow-one {
  width: 360px;
  height: 360px;
  right: 12%;
  top: 24%;
  background: var(--red);
}

.hero-glow-two {
  width: 240px;
  height: 240px;
  left: -8%;
  bottom: 2%;
  background: var(--red);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.76fr);
  align-items: center;
  gap: clamp(56px, 7vw, 110px);
  padding-top: 150px;
  padding-bottom: 120px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 0 6px rgba(224, 58, 62, 0.13);
}

.hero h1,
.section h2,
.connect h2 {
  font-family: var(--display);
  font-stretch: condensed;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(4.2rem, 9vw, 8.8rem);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 0.8;
}

.hero h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.62);
}

.hero-lede {
  max-width: 625px;
  margin: 34px 0 0;
  color: #c8c9cb;
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

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

.button-primary:hover {
  background: var(--red-bright);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.button-outline:hover {
  background: var(--white);
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
  text-decoration: none;
  font-size: 0.77rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--red-bright);
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 430px;
  justify-self: end;
}

.index-card {
  position: relative;
  overflow: hidden;
  min-height: 575px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.01)),
    rgba(14, 15, 17, 0.84);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(8px);
}

.index-card::before,
.index-card::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  border-color: var(--red);
}

.index-card::before {
  inset: -7px auto auto -7px;
  border-left: 3px solid var(--red);
  border-top: 3px solid var(--red);
}

.index-card::after {
  inset: auto -7px -7px auto;
  border-right: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
}

.index-card-topline,
.index-card-footer {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #8e9094;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.8);
}

.hero-photo-stage,
.hero-action-picture,
.hero-action-picture img,
.hero-photo-overlay {
  position: absolute;
  inset: 0;
}

.hero-action-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 51%;
  transform: scale(1.015);
  transition: transform 600ms ease;
}

.index-card:hover .hero-action-picture img {
  transform: scale(1.045);
}

.hero-photo-overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(9, 10, 11, 0.58) 0%, transparent 30%, rgba(9, 10, 11, 0.12) 52%, rgba(9, 10, 11, 0.95) 100%),
    linear-gradient(90deg, rgba(9, 10, 11, 0.22), transparent 58%);
}

.hero-focus-ring {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 48%;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 58px rgba(255, 255, 255, 0.035);
}

.hero-crest-badge {
  position: absolute;
  z-index: 4;
  right: 24px;
  bottom: 67px;
  width: 72px;
  height: auto;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.62));
}

.index-card-footer p {
  margin: 0;
  color: var(--white);
}

.side-note {
  position: absolute;
  right: -73px;
  bottom: 82px;
  margin: 0;
  color: #717377;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: rotate(90deg);
}

.signal-strip {
  position: absolute;
  inset: auto 0 0;
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  background: rgba(9, 10, 11, 0.8);
}

.signal-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 15px 0;
  color: #9b9da1;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  animation: ticker 30s linear infinite;
}

.signal-track span:nth-child(even) {
  color: var(--red-bright);
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: clamp(88px, 10vw, 150px) 0;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  align-self: start;
  color: var(--muted-light);
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-kicker span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line-light);
  color: var(--red);
}

.section-kicker p {
  margin: 0;
}

.mission-layout {
  display: grid;
  grid-template-columns: 0.4fr 1.6fr;
  gap: 50px;
}

.mission-rail {
  min-width: 0;
}

.mission-photo {
  position: relative;
  max-width: 220px;
  margin: 42px 0 0;
  padding: 0;
  background: var(--ink);
}

.mission-photo::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: -7px auto auto -7px;
  width: 34px;
  height: 34px;
  border-top: 3px solid var(--red);
  border-left: 3px solid var(--red);
  pointer-events: none;
}

.mission-photo picture {
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
}

.mission-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 55%;
  filter: saturate(0.82) contrast(1.06);
}

.mission-photo figcaption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.57rem;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mission-photo figcaption span:last-child {
  color: var(--red-bright);
}

.mission-copy h2 {
  max-width: 970px;
  margin: 0;
  font-size: clamp(3.3rem, 7vw, 7.2rem);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 0.86;
}

.mission-copy h2 span {
  display: block;
  color: var(--red);
}

.mission-body {
  max-width: 730px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin: 48px 0 0 auto;
  color: var(--muted-light);
  font-size: 0.98rem;
  line-height: 1.75;
}

.mission-body p {
  margin: 0;
}

.state-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(58px, 8vw, 100px);
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.state-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  background: var(--white);
}

.state-card > :not(.state-map) {
  position: relative;
  z-index: 2;
}

.state-map {
  position: absolute;
  z-index: 1;
  top: 24px;
  right: 22px;
  width: min(72%, 270px);
  height: auto;
  pointer-events: none;
  user-select: none;
}

.state-map-sc {
  width: min(52%, 190px);
}

.state-map-us {
  top: 14px;
  right: 12px;
  width: min(92%, 365px);
}

.state-card-red {
  background: var(--red);
  color: var(--white);
}

.state-card-outline {
  background: var(--ink);
  color: var(--white);
}

.state-code {
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(4.4rem, 8vw, 7rem);
  font-weight: 950;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.state-card-red .state-code {
  color: rgba(255, 255, 255, 0.35);
}

.state-card-outline .state-code {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
}

.card-label {
  margin: 0 0 7px;
  color: currentColor;
  opacity: 0.58;
  font-size: 0.66rem;
  font-weight: 830;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.state-card h3 {
  max-width: 250px;
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.25;
}

.coverage {
  background: var(--ink);
  color: var(--white);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 60px;
  margin-bottom: 62px;
}

.section-kicker-light {
  color: var(--muted-dark);
}

.section-kicker-light span {
  border-color: var(--line-dark);
}

.section-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 5.6vw, 5.8rem);
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 0.9;
  text-align: right;
}

.section-heading h2 span {
  color: var(--red-bright);
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1.18fr 1fr 1fr;
  border: 1px solid var(--line-dark);
}

.coverage-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-right: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.015);
}

.coverage-card:last-child {
  border-right: 0;
}

.coverage-card-photo::before,
.coverage-card-photo::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.coverage-card-photo::before {
  background:
    linear-gradient(180deg, rgba(9, 10, 11, 0.46) 0%, rgba(9, 10, 11, 0.05) 35%, rgba(9, 10, 11, 0.2) 56%, rgba(9, 10, 11, 0.97) 100%),
    linear-gradient(90deg, rgba(9, 10, 11, 0.22), transparent 58%);
}

.coverage-card-featured::after {
  background: linear-gradient(135deg, rgba(197, 45, 50, 0.42), transparent 56%);
}

.coverage-photo,
.coverage-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.coverage-photo {
  z-index: 0;
}

.coverage-photo img {
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 600ms ease, filter 300ms ease;
}

.coverage-card:hover .coverage-photo img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.045);
}

.coverage-card-defending .coverage-photo img {
  object-position: 50% 54%;
}

.coverage-card-celebration .coverage-photo img {
  object-position: 50% 48%;
}

.coverage-card-strike .coverage-photo img {
  object-position: 50% 50%;
}

.coverage-card > :not(.coverage-photo) {
  position: relative;
  z-index: 2;
}

.coverage-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(9, 10, 11, 0.22);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  backdrop-filter: blur(8px);
}

.coverage-card h3 {
  margin: 0 0 13px;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.72);
}

.coverage-card p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.65;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.82);
}

.coverage-card-featured p:last-child {
  color: rgba(255, 255, 255, 0.84);
}

.pathways {
  overflow: hidden;
}

.pathways-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(60px, 9vw, 130px);
}

.pathways-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.pathways-intro h2 {
  margin: 36px 0 24px;
  font-size: clamp(3.2rem, 5.8vw, 6.1rem);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 0.86;
}

.pathways-intro > p {
  max-width: 480px;
  margin: 0;
  color: var(--muted-light);
  line-height: 1.75;
}

.pathway-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.pathway-item {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 25px;
  align-items: start;
  padding: 38px 0;
  border-bottom: 1px solid var(--line-light);
}

.pathway-step {
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.pathway-item h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.pathway-item p {
  max-width: 520px;
  margin: 0;
  color: var(--muted-light);
  font-size: 0.92rem;
  line-height: 1.7;
}

.pathway-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  color: var(--red);
}

.platform-system {
  background: var(--ink);
  color: var(--white);
}

.system-heading h2 {
  max-width: 840px;
}

.system-grid,
.funnel-grid,
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.system-card,
.funnel-card,
.sponsor-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: #121416;
  color: var(--white);
}

.system-card span,
.funnel-card span,
.sponsor-card span {
  color: var(--red-bright);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.system-card h3,
.funnel-card h2,
.sponsor-card h2,
.form-intro h1,
.form-intro h2,
.sponsor-hero h1,
.calendar-hero h1,
.admin-copy h1,
.qr-copy h1 {
  margin: 0;
  font-family: var(--display);
  font-stretch: condensed;
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 0.9;
  text-transform: uppercase;
}

.system-card h3 {
  font-size: 2.35rem;
}

.system-card p,
.funnel-card p,
.sponsor-card p,
.sponsor-card li,
.form-intro p,
.qr-copy p,
.calendar-hero p,
.admin-copy p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.system-card-red,
.sponsor-card-red {
  background: var(--red);
}

.system-card-red span,
.sponsor-card-red span {
  color: rgba(255, 255, 255, 0.72);
}

.mini-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--red);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mini-link:hover {
  color: var(--red-bright);
}

.mini-link-light {
  color: var(--white);
}

.qr-hero,
.form-page,
.sponsor-hero,
.calendar-hero,
.admin-page {
  min-height: 100svh;
  padding: 132px 0 70px;
  background:
    radial-gradient(circle at 78% 12%, rgba(197, 45, 50, 0.26), transparent 32%),
    var(--ink);
  color: var(--white);
}

.qr-layout,
.form-layout,
.calendar-top,
.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.qr-copy h1,
.form-intro h1,
.sponsor-hero h1,
.calendar-hero h1,
.admin-copy h1 {
  max-width: 820px;
  font-size: clamp(4rem, 8vw, 8rem);
}

.qr-copy > p,
.form-intro > p,
.sponsor-hero p,
.calendar-hero p,
.admin-copy > p {
  max-width: 660px;
  margin: 26px 0 0;
  font-size: 1.04rem;
}

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

.qr-card {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 28px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.38);
}

.qr-card img {
  width: min(100%, 280px);
  background: var(--white);
}

.qr-card p {
  max-width: 320px;
  margin: 0;
  color: var(--muted-light);
  text-align: center;
  line-height: 1.55;
}

.qr-card-small {
  align-self: center;
  max-width: 260px;
  justify-self: end;
}

.funnel-section,
.sponsor-section {
  background: var(--paper);
}

.funnel-grid {
  grid-template-columns: repeat(3, 1fr);
  background: var(--line-light);
  border-color: var(--line-light);
}

.funnel-card {
  background: var(--white);
  color: var(--ink);
}

.funnel-card p {
  color: var(--muted-light);
}

.funnel-card h2,
.sponsor-card h2 {
  font-size: 2.25rem;
}

.inline-capture {
  display: grid;
  gap: 12px;
}

.premium-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-dark);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 0;
}

textarea {
  resize: vertical;
}

.inline-capture label {
  color: var(--muted-light);
}

.form-success {
  display: none;
  margin: 0;
  color: #8fe8a8;
  font-size: 0.82rem;
  font-weight: 760;
}

.premium-form.is-submitted .form-success,
.inline-capture.is-submitted .form-success {
  display: block;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
  line-height: 1.55;
}

.qr-download {
  display: grid;
  width: fit-content;
  gap: 14px;
  margin-top: 30px;
  padding: 16px;
  background: var(--white);
}

.qr-download img {
  width: 180px;
}

.sponsor-hero {
  min-height: auto;
  padding-bottom: 96px;
}

.sponsor-hero p {
  color: rgba(255, 255, 255, 0.76);
}

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

.sponsor-card ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin: 20px 0 0;
}

.form-dark {
  background: var(--ink);
  color: var(--white);
}

.calendar-hero {
  min-height: auto;
}

.event-list {
  display: grid;
  gap: 12px;
}

.event-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line-light);
}

.event-date span {
  display: block;
  color: var(--red);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
}

.event-date small,
.event-location {
  color: var(--muted-light);
  font-size: 0.66rem;
  font-weight: 840;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-body h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 950;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.event-body p {
  max-width: 720px;
  margin: 0 0 12px;
  color: var(--muted-light);
  line-height: 1.65;
}

.editor-callout {
  display: grid;
  gap: 14px;
  margin-top: 30px;
  padding: 26px;
  background: var(--ink);
  color: var(--white);
}

.editor-callout h2,
.preview-title {
  margin: 0;
  font-family: var(--display);
  font-size: 2.2rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.editor-callout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.admin-page {
  min-height: auto;
}

.admin-layout {
  align-items: start;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 14px;
}

.admin-editor textarea {
  width: 100%;
  min-height: 620px;
  color: var(--white);
  background: #111315;
  border: 1px solid var(--line-dark);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.84rem;
  line-height: 1.45;
}

.preview-title {
  margin: 48px 0 20px;
  color: var(--white);
}

code {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 5px;
}

.connect {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 12vw, 180px) 0;
  background: var(--red);
  color: var(--white);
  text-align: center;
  isolation: isolate;
}

.connect-lines {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.25) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(circle, black, transparent 75%);
}

.connect::before,
.connect::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.connect::before {
  width: 460px;
  height: 460px;
}

.connect::after {
  width: 680px;
  height: 680px;
}

.connect-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.connect img {
  width: 94px;
  filter: drop-shadow(0 15px 26px rgba(57, 4, 6, 0.3));
  margin-bottom: 28px;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.connect h2 {
  margin: 0;
  font-size: clamp(4rem, 10vw, 9.3rem);
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 0.8;
}

.connect-inner > p:not(.eyebrow) {
  max-width: 650px;
  margin: 30px auto 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.7;
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-light:hover {
  background: var(--ink);
  color: var(--white);
}

.connect small {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.68rem;
}

.site-footer {
  padding: 34px 0;
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid var(--line-dark);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.footer-brand img {
  width: 30px;
  height: 35px;
}

.footer-inner p {
  margin: 0;
  color: #85878b;
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-inner p:last-child {
  text-align: right;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.js .reveal[data-reveal-delay="1"] {
  transition-delay: 100ms;
}

.js .reveal[data-reveal-delay="2"] {
  transition-delay: 200ms;
}

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

@media (max-width: 1020px) {
  .hero-layout {
    grid-template-columns: 1fr 340px;
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(4rem, 9.5vw, 7rem);
  }

  .index-card {
    min-height: 500px;
  }

  .mission-layout {
    grid-template-columns: minmax(170px, 0.34fr) minmax(0, 1.66fr);
    gap: 38px;
  }

  .section-kicker {
    margin-bottom: 24px;
  }

  .mission-rail .section-kicker {
    margin-bottom: 0;
  }

  .mission-photo {
    max-width: 190px;
  }

  .mission-body {
    margin-left: 0;
  }

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

  .coverage-card {
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .coverage-card:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 28px, 1180px);
  }

  .header-inner {
    height: 72px;
  }

  .brand span {
    max-width: 150px;
    line-height: 1.1;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 2;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    padding: 100px 28px 40px;
    background: rgba(9, 10, 11, 0.98);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms ease;
  }

  .site-nav.simple-nav {
    position: static;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
    padding: 0;
    background: transparent;
    transform: none;
    visibility: visible;
  }

  .site-nav.simple-nav a {
    padding: 0;
    border-bottom: 0;
    font-family: var(--body);
    font-size: 0.66rem;
    letter-spacing: 0.08em;
  }

  .site-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .site-nav a {
    padding: 20px 0;
    border-bottom: 1px solid var(--line-dark);
    font-family: var(--display);
    font-size: 2.2rem;
    letter-spacing: -0.02em;
  }

  .site-nav .nav-cta {
    margin-top: 22px;
    padding: 18px;
    text-align: center;
    font-family: var(--body);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    padding-top: 132px;
    padding-bottom: 105px;
  }

  .hero h1 {
    font-size: clamp(4rem, 19vw, 6.1rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-visual {
    max-width: 360px;
    justify-self: center;
  }

  .index-card {
    min-height: 480px;
  }

  .hero-crest-badge {
    width: 62px;
  }

  .side-note {
    display: none;
  }

  .mission-copy h2,
  .section-heading h2,
  .pathways-intro h2 {
    font-size: clamp(3rem, 15vw, 5.1rem);
  }

  .mission-layout {
    grid-template-columns: 1fr;
  }

  .mission-photo {
    max-width: none;
    margin-top: 26px;
  }

  .mission-photo picture {
    aspect-ratio: 16 / 10;
  }

  .mission-body {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .state-cards {
    grid-template-columns: 1fr;
  }

  .state-card {
    min-height: 230px;
  }

  .state-map {
    top: 20px;
    right: 18px;
    width: min(68%, 280px);
  }

  .state-map-sc {
    width: min(45%, 175px);
  }

  .state-map-us {
    top: 12px;
    right: 8px;
    width: min(84%, 330px);
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    text-align: left;
  }

  .coverage-card {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .pathways-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .pathways-intro {
    position: static;
  }

  .pathway-item {
    grid-template-columns: 38px 1fr;
    gap: 16px;
  }

  .pathway-mark {
    display: none;
  }

  .connect::before {
    width: 350px;
    height: 350px;
  }

  .connect::after {
    width: 520px;
    height: 520px;
  }

  .connect h2 {
    font-size: clamp(4rem, 21vw, 6.4rem);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-inner p:last-child {
    text-align: center;
  }

  .system-grid,
  .funnel-grid,
  .sponsor-grid,
  .qr-layout,
  .form-layout,
  .calendar-top,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .system-card,
  .funnel-card,
  .sponsor-card {
    min-height: 250px;
  }

  .form-row,
  .event-card {
    grid-template-columns: 1fr;
  }

  .qr-card-small {
    justify-self: stretch;
    max-width: none;
  }

  .admin-editor textarea {
    min-height: 420px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 3.8rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .simple-nav a:not(:first-child) {
    display: none;
  }

  .index-card {
    min-height: 430px;
    padding: 18px;
  }

  .hero-focus-ring {
    width: 205px;
    height: 205px;
    box-shadow: 0 0 0 46px rgba(255, 255, 255, 0.035);
  }

  .hero-crest-badge {
    right: 18px;
    bottom: 62px;
    width: 56px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
