@font-face {
  font-family: "WFA Archivo";
  src: url("/fonts/archivo-latin-variable.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "WFA Manrope";
  src: url("/fonts/manrope-latin-variable.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --ink: #06070b;
  --night: #03050a;
  --stadium: #07111f;
  --paper: #ebe8df;
  --white: #ffffff;
  --red: #f02035;
  --navy: #07111f;
  --blue: #2458ff;
  --electric: #8db2ff;
  --gold: #d7ad55;
  --muted: #777b76;
  --smoke: rgba(255, 255, 255, 0.68);
  --glass: rgba(255, 255, 255, 0.095);
  --line: rgba(9, 10, 12, 0.2);
  --line-light: rgba(255, 255, 255, 0.24);
  --display: "WFA Archivo", Arial, sans-serif;
  --body: "WFA Manrope", Arial, sans-serif;
  --gutter: clamp(20px, 3.4vw, 52px);
  --page-pad: var(--gutter);
  --section-space: clamp(84px, 10vw, 160px);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 84% -12%, rgba(36, 88, 255, 0.24), transparent 38rem),
    radial-gradient(circle at 14% 12%, rgba(240, 32, 53, 0.12), transparent 30rem),
    var(--night);
  font-family: var(--body);
  font-weight: 450;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
p, h1, h2, h3, blockquote, figure { margin-top: 0; }
p { text-wrap: pretty; }

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

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 100;
  padding: 12px 16px;
  color: var(--white);
  background: var(--red);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  color: var(--white);
  background: rgba(3, 5, 10, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(22px) saturate(1.2);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(3, 5, 10, 0.94);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.26);
}

body.menu-open .site-header {
  background: var(--night);
  backdrop-filter: none;
}

.site-header > a { display: inline-flex; flex: 0 0 auto; }

.brand,
.footer-brand {
  display: block;
  width: max-content;
}

.brand-lockup-image {
  display: block;
  width: clamp(176px, 15.5vw, 220px);
  height: auto;
  opacity: 1;
  filter: drop-shadow(0 0 16px rgba(141, 178, 255, 0.16));
}

.menu-toggle {
  display: grid;
  grid-template-columns: auto 22px;
  gap: 4px 10px;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease;
}

.menu-toggle span { grid-row: 1 / 3; }
.menu-toggle i { display: block; width: 22px; height: 1px; background: currentColor; transition: transform 180ms ease; }
.menu-toggle[aria-expanded="true"] i:first-of-type { transform: translateY(3px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] i:last-of-type { transform: translateY(-2px) rotate(-45deg); }
.menu-toggle:hover,
.menu-toggle:focus-visible,
.menu-toggle[aria-expanded="true"] { background: rgba(255, 255, 255, 0.14); border-color: rgba(255, 255, 255, 0.64); }

.site-nav { display: none; }
.site-nav.open {
  position: fixed;
  inset: 76px 0 auto;
  z-index: 60;
  width: 100vw;
  height: calc(100dvh - 76px);
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 28px var(--gutter) max(28px, env(safe-area-inset-bottom));
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(36, 88, 255, 0.28), transparent 26rem),
    radial-gradient(circle at 0 100%, rgba(240, 32, 53, 0.14), transparent 24rem),
    var(--night);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-nav-intro {
  display: grid;
  gap: 7px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-light);
}
.mobile-nav-intro span,
.nav-index,
.mobile-nav-footer { font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.mobile-nav-intro span { color: rgba(255,255,255,.5); }
.mobile-nav-intro strong { font-family: var(--display); font-size: 26px; line-height: 1; text-transform: uppercase; }
.nav-links { display: grid; }
.site-nav .nav-links > a {
  min-height: 62px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(23px, 7vw, 31px);
  font-weight: 780;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color 160ms ease, padding 160ms ease;
}

.site-nav .nav-links > a:hover,
.site-nav .nav-links > a:focus-visible { padding-left: 7px; color: var(--electric); }
.site-nav a[aria-current="page"] { color: var(--red); }
.site-nav .nav-cta[aria-current="page"] { color: var(--white); }
.nav-icon { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.nav-icon img { width: 18px; height: 18px; filter: brightness(0) invert(1); opacity: .86; }
.nav-index { color: rgba(255,255,255,.34); }
.site-nav a[aria-current="page"] .nav-icon { border-color: var(--red); background: var(--red); }
.mobile-nav-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: auto; padding-top: 24px; color: rgba(255,255,255,.58); }
.mobile-nav-footer > span { display: inline-flex; align-items: center; gap: 8px; }
.mobile-nav-footer i { width: 7px; height: 7px; display: block; border-radius: 50%; background: var(--red); box-shadow: 0 0 14px rgba(240,32,53,.8); }
.mobile-nav-footer a { color: var(--white); border-bottom: 1px solid rgba(255,255,255,.45); }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 780;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(54px, 8vw, 118px); line-height: 0.85; }
h2 { font-size: clamp(40px, 5.4vw, 78px); line-height: 0.96; }
h3 { font-size: clamp(24px, 2.5vw, 38px); line-height: 1; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button:focus-visible { outline-color: var(--red); }
.button-primary { color: var(--white); background: var(--ink); }
.button-primary:hover, .button-primary:focus-visible { background: var(--red); border-color: var(--red); }
.button-secondary { background: transparent; }
.button-secondary:hover, .button-secondary:focus-visible { color: var(--white); background: var(--ink); }
.page-hero .button-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,.72);
}
.page-hero .button-secondary:hover,
.page-hero .button-secondary:focus-visible {
  color: var(--ink);
  background: var(--white);
}

.editorial-hero .button-primary {
  border-color: var(--red);
  background: var(--red);
  box-shadow: 0 14px 42px rgba(240, 32, 53, 0.34);
}

.editorial-hero .button-primary:hover,
.editorial-hero .button-primary:focus-visible {
  color: var(--ink);
  border-color: var(--white);
  background: var(--white);
}

.editorial-hero .editorial-link {
  color: var(--white);
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
}

.editorial-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 0 7px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.football-action-icon { width: 28px; height: 28px; flex: 0 0 28px; display: inline-grid; place-items: center; color: var(--white); background: var(--red); border: 1px solid var(--red); border-radius: 50%; transition: transform 180ms ease, background 180ms ease; }
.football-action-icon img { width: 16px; height: 16px; filter: brightness(0) invert(1); }
.editorial-link:hover .football-action-icon,
.editorial-link:focus-visible .football-action-icon,
.category-row:hover .football-action-icon,
.category-row:focus-visible .football-action-icon { transform: rotate(24deg) scale(1.06); }
.button .football-action-icon { width: 26px; height: 26px; flex-basis: 26px; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.12); }
.editorial-link.light { color: var(--white); }

/* Homepage */
.editorial-hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.editorial-hero-copy {
  position: relative;
  z-index: 3;
  min-height: calc(100svh - 76px);
  padding: clamp(94px, 12vh, 150px) var(--gutter) 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
}

.hero-overline {
  margin: 0;
  position: absolute;
  top: 28px;
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-overline span:first-child { display: inline-flex; align-items: center; gap: 8px; }
.hero-overline i,
.pulse-label i {
  width: 7px;
  height: 7px;
  display: inline-block;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(240, 32, 53, 0.18), 0 0 22px rgba(240, 32, 53, 0.48);
  animation: signal-pulse 1.8s ease-in-out infinite;
}

.hero-message {
  max-width: 980px;
  pointer-events: auto;
}
.hero-message h1 { margin: 0; text-transform: uppercase; }
.hero-message h1 em {
  color: var(--white);
  font-style: normal;
  text-shadow: 0 0 26px rgba(240, 32, 53, 0.45);
}
.hero-message > p {
  max-width: 620px;
  margin: 28px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 510;
  line-height: 1.5;
  letter-spacing: 0;
}
.hero-message > .hero-status {
  width: max-content;
  max-width: 100%;
  margin: 0 0 28px;
  padding: 9px 11px;
  color: var(--white);
  border: 1px solid rgba(240,32,53,.54);
  background: rgba(240,32,53,.16);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }

.editorial-hero-image {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  background: var(--night);
}

.editorial-hero-image::before,
.editorial-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.editorial-hero-image::before {
  background:
    linear-gradient(90deg, rgba(3, 5, 10, 0.9) 0%, rgba(3, 5, 10, 0.48) 42%, rgba(3, 5, 10, 0.06) 72%),
    linear-gradient(180deg, rgba(3, 5, 10, 0.16) 0%, rgba(3, 5, 10, 0.22) 44%, rgba(3, 5, 10, 0.94) 100%);
}

.editorial-hero-image::after {
  opacity: 0.42;
  mix-blend-mode: screen;
  background:
    linear-gradient(108deg, transparent 0 46%, rgba(141, 178, 255, 0.34) 48%, transparent 54%),
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.58), transparent 8rem),
    radial-gradient(circle at 68% 22%, rgba(36, 88, 255, 0.32), transparent 18rem),
    radial-gradient(circle at 18% 74%, rgba(240, 32, 53, 0.2), transparent 16rem);
}

.editorial-hero-image img {
  width: 100%;
  height: 100%;
  min-height: calc(100svh - 76px);
  object-fit: cover;
  object-position: 64% center;
  filter: saturate(1.06) contrast(1.08) brightness(0.88);
  transform: scale(1.015);
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 84px),
    linear-gradient(180deg, transparent 0 58%, rgba(3,5,10,.92) 100%);
  mask-image: linear-gradient(90deg, black 0, black 54%, transparent 82%);
  opacity: 0.38;
}

.hero-brand-sigil {
  position: absolute;
  z-index: 2;
  top: 7%;
  right: clamp(22px, 5vw, 80px);
  width: min(37vw, 520px);
  height: auto;
  opacity: 0.13;
  filter: drop-shadow(0 0 42px rgba(141, 178, 255, 0.35));
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-audience-card {
  position: absolute;
  z-index: 4;
  right: var(--gutter);
  bottom: 112px;
  width: min(390px, calc(100% - (var(--gutter) * 2)));
  padding: clamp(22px, 2.4vw, 34px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.045)),
    rgba(3, 5, 10, 0.62);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255,255,255,.2);
  backdrop-filter: blur(18px) saturate(1.25);
}

.hero-audience-card > span {
  display: block;
  color: var(--electric);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-audience-card strong {
  display: block;
  margin: 18px 0 22px;
  font-family: var(--display);
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 790;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-audience-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-transform: uppercase;
}

.hero-audience-card i {
  color: var(--red);
  font-style: normal;
}

.hero-system-line {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(3, 5, 10, 0.42);
  backdrop-filter: blur(14px);
}

.hero-system-line span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editorial-hero-image figcaption {
  position: absolute;
  z-index: 2;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.debate-ribbon {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(240, 32, 53, 0.95), rgba(36, 88, 255, 0.95)),
    var(--blue);
  border-bottom: 1px solid rgba(255,255,255,.25);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.3), inset 0 -1px 0 rgba(0,0,0,.22);
}

.debate-ribbon::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.75) 0 1px, transparent 1px 9px);
  pointer-events: none;
}

.debate-ribbon > div {
  width: max-content;
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  padding: 0 clamp(18px, 3vw, 48px);
  font-family: var(--display);
  font-size: clamp(26px, 3.1vw, 46px);
  font-weight: 780;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  animation: ribbon-shift 30s linear infinite;
}

.debate-ribbon i { color: rgba(255, 255, 255, 0.54); font-style: normal; }
.debate-ribbon:hover > div { animation-play-state: paused; }

.manifesto,
.categories-index,
.campaign-signup {
  padding: var(--section-space) var(--gutter);
}

.manifesto {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 24%, rgba(36, 88, 255, 0.24), transparent 28rem),
    radial-gradient(circle at 8% 86%, rgba(240, 32, 53, 0.16), transparent 24rem),
    linear-gradient(135deg, #05070d, #0a1020 54%, #05070d);
}

.manifesto::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.16) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.14) 0 1px, transparent 1px 96px);
  pointer-events: none;
}

.manifesto > * {
  position: relative;
  z-index: 1;
}

.section-label {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: clamp(50px, 7vw, 96px);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: clamp(62px, 8vw, 112px);
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0 74%, var(--red) 74%);
}

.section-label span:last-child { text-align: right; }
.section-label.light,
.manifesto .section-label { color: rgba(255,255,255,.62); border-color: var(--line-light); }

.manifesto-grid { display: grid; gap: 42px; }
.manifesto-grid h2 { max-width: 1040px; margin: 0; }
.manifesto-grid h2 span {
  color: var(--white);
  text-shadow: 0 0 26px rgba(36, 88, 255, 0.52);
}
.manifesto-grid > div { max-width: 500px; }
.manifesto-grid p { margin: 0 0 28px; color: rgba(255,255,255,.74); font-size: 17px; line-height: 1.55; letter-spacing: 0; }

.culture-signal {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: clamp(54px, 8vw, 100px);
  border-top: 1px solid rgba(255,255,255,.2);
  border-bottom: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.11);
  backdrop-filter: blur(16px);
}

.culture-signal span {
  min-height: 86px;
  display: flex;
  align-items: center;
  padding: 18px;
  border-right: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.78);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.culture-signal span:last-child { border-right: 0; }

.fan-pulse {
  min-height: 760px;
  display: grid;
  color: var(--white);
  background: var(--night);
}

.fan-pulse-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.fan-pulse-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(255,255,255,.22), transparent 12rem),
    linear-gradient(180deg, rgba(7,17,31,.04) 34%, rgba(7,17,31,.82));
}

.fan-pulse-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.05);
  transition: transform 1.1s cubic-bezier(.2,.7,.2,1);
}

.fan-pulse:hover .fan-pulse-media img { transform: scale(1.018); }

.fan-pulse-caption {
  position: absolute;
  z-index: 2;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.fan-pulse-panel {
  min-height: 580px;
  padding: clamp(44px, 6vw, 86px) var(--gutter) 38px;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(150deg, rgba(255,255,255,.08), transparent 24%),
    radial-gradient(circle at 100% 0, rgba(36,88,255,.52), transparent 48%),
    radial-gradient(circle at 0 100%, rgba(240,32,53,.18), transparent 42%),
    var(--stadium);
  border-left: 1px solid rgba(255,255,255,.12);
}

.pulse-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.pulse-question {
  margin: auto 0;
  will-change: transform, opacity;
}

.pulse-question > span {
  display: block;
  margin-bottom: 18px;
  color: var(--electric);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.pulse-question h2 {
  max-width: 690px;
  margin-bottom: 24px;
  font-size: clamp(52px, 7vw, 92px);
}

.pulse-question p {
  max-width: 520px;
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 15px;
  line-height: 1.55;
}

.pulse-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 26px;
}

.pulse-controls {
  display: grid;
  grid-template-columns: 44px auto 44px;
  align-items: center;
  border: 1px solid var(--line-light);
}

.pulse-controls button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: transparent;
  border: 0;
  font-size: 18px;
  transition: color 160ms ease, background 160ms ease;
}

.pulse-controls button:hover,
.pulse-controls button:focus-visible { color: var(--navy); background: var(--white); }
.control-icon { width: 18px; height: 18px; filter: brightness(0) invert(1); }
.pulse-controls button:hover .control-icon,
.pulse-controls button:focus-visible .control-icon { filter: none; }

.pulse-controls span {
  padding: 0 15px;
  color: rgba(255,255,255,.66);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .09em;
}

.pulse-enter-right { animation: pulse-enter-right 380ms ease; }
.pulse-enter-left { animation: pulse-enter-left 380ms ease; }

.feature-duo { display: grid; background: var(--night); }
.feature-image { position: relative; min-height: 720px; overflow: hidden; color: var(--white); }
.feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 12%, rgba(255,255,255,.2), transparent 10rem),
    linear-gradient(180deg, rgba(4,7,11,.04) 30%, rgba(4,7,11,.9));
}
.feature-image img { width: 100%; height: 100%; min-height: 720px; object-fit: cover; object-position: 52% center; filter: saturate(1.02) contrast(1.08); }
.feature-image-copy { position: absolute; z-index: 2; left: var(--gutter); right: var(--gutter); bottom: clamp(36px, 5vw, 70px); }
.feature-image-copy > span,
.feature-voice > span,
.section-kicker {
  display: block;
  margin-bottom: 20px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.feature-image-copy h2 { max-width: 600px; margin-bottom: 22px; }
.feature-image-copy p { max-width: 470px; margin: 0 0 26px; font-size: 16px; line-height: 1.5; }

.feature-voice {
  min-height: 620px;
  padding: clamp(54px, 7vw, 100px) var(--gutter);
  display: flex;
  flex-direction: column;
  background: var(--white);
}
.feature-voice blockquote { max-width: 760px; margin: auto 0; font-family: var(--display); font-size: clamp(44px, 6vw, 78px); font-weight: 780; line-height: .98; letter-spacing: 0; }
.feature-voice > div { max-width: 460px; margin-top: 54px; }
.feature-voice p { margin-bottom: 26px; line-height: 1.55; }

.feature-culture {
  position: relative;
  min-height: 720px;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--stadium);
}

.feature-culture > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  filter: saturate(1.05) contrast(1.05);
  transition: transform 900ms cubic-bezier(.2,.7,.2,1);
}

.feature-culture:hover > img { transform: scale(1.025); }

.feature-culture-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 8%, rgba(255,255,255,.2), transparent 10rem),
    linear-gradient(180deg, rgba(7,17,31,.02) 24%, rgba(7,17,31,.92));
}

.feature-culture-copy {
  position: absolute;
  z-index: 2;
  left: var(--gutter);
  right: var(--gutter);
  bottom: clamp(38px, 5vw, 70px);
}

.feature-culture-copy > span {
  display: block;
  margin-bottom: 20px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.feature-culture blockquote {
  max-width: 620px;
  margin: 0 0 24px;
  font-size: clamp(40px, 5.5vw, 72px);
}

.feature-culture-copy p { max-width: 460px; margin-bottom: 26px; }

.categories-index {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255,255,255,.58), rgba(255,255,255,.28)),
    var(--paper);
}
.categories-intro { display: grid; gap: 24px; margin-bottom: clamp(46px, 6vw, 84px); }
.categories-intro h2 { max-width: 820px; margin: 0; }
.categories-intro p { max-width: 460px; margin: 0; font-size: 16px; line-height: 1.5; }
.category-list { border-top: 1px solid var(--ink); }
.category-toggle {
  display: none;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.category-toggle-icon { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--red); transition: transform 220ms ease; }
.category-toggle-icon img { width: 17px; height: 17px; filter: brightness(0) invert(1); }
.category-toggle[aria-expanded="true"] .category-toggle-icon { transform: rotate(45deg); }
.category-row {
  min-height: 92px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: color 160ms ease, padding 160ms ease, background 160ms ease;
}
.category-row:hover, .category-row:focus-visible {
  padding-left: 12px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(240,32,53,.92), rgba(36,88,255,.86)),
    var(--ink);
}
.category-row > span, .category-row em { font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.category-row strong { font-family: var(--display); font-size: clamp(22px, 3vw, 38px); font-weight: 760; line-height: 1; letter-spacing: 0; }
.category-row em { display: none; color: var(--muted); font-style: normal; }
.category-row .football-action-icon { justify-self: end; }

.verdict-process {
  padding: var(--section-space) var(--gutter);
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(36,88,255,.26), transparent 24rem),
    radial-gradient(circle at 88% 80%, rgba(240,32,53,.14), transparent 22rem),
    var(--night);
}
.process-intro { display: grid; gap: 30px; margin-bottom: 70px; }
.process-intro h2 { margin: 0; }
.process-intro p { max-width: 490px; margin: 0; color: rgba(255,255,255,.68); font-size: 16px; line-height: 1.55; }
.process-list { margin-bottom: 44px; border-top: 1px solid var(--line-light); }
.process-row { display: grid; grid-template-columns: 42px 1fr; gap: 18px; padding: 26px 0; border-bottom: 1px solid var(--line-light); }
.process-row > span { color: var(--red); font-size: 10px; font-weight: 800; }
.process-row h3 { margin: 0; font-size: clamp(26px, 3vw, 40px); }
.process-row p { grid-column: 2; max-width: 590px; margin: 0; color: rgba(255,255,255,.66); font-size: 14px; line-height: 1.55; }

.campaign-signup {
  display: grid;
  gap: 60px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(235,232,223,.82)),
    var(--white);
}
.campaign-signup-copy h2 { max-width: 800px; margin-bottom: 24px; }
.campaign-signup-copy > p:last-child { max-width: 500px; font-size: 16px; line-height: 1.55; }

/* Shared inner pages */
.page-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  padding: 120px var(--gutter) 68px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 16%, rgba(36,88,255,.32), transparent 24rem),
    radial-gradient(circle at 12% 74%, rgba(240,32,53,.18), transparent 20rem),
    linear-gradient(135deg, #03050a, #091327 58%, #03050a);
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.16) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.14) 0 1px, transparent 1px 92px);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(108deg, transparent 0 54%, rgba(141,178,255,.2) 56%, transparent 62%),
    linear-gradient(180deg, rgba(3,5,10,.1), rgba(3,5,10,.62));
}
.pitch-grid { position: absolute; inset: 42px 0 auto auto; width: 30%; height: 100%; opacity: .12; background: repeating-linear-gradient(90deg, var(--white) 0 1px, transparent 1px 72px); transform: skewX(-12deg); }
.verdict-cut {
  position: absolute;
  top: 118px;
  right: var(--gutter);
  width: clamp(88px, 10vw, 148px);
  display: grid;
  gap: 8px;
  opacity: .95;
  transform: skewX(-12deg);
}
.verdict-cut i { height: 7px; display: block; background: var(--white); }
.verdict-cut i:first-child { width: 58%; }
.verdict-cut i:nth-child(2) { width: 100%; background: var(--blue); }
.verdict-cut i:last-child { width: 72%; margin-left: auto; background: var(--red); }
.page-hero-copy { position: relative; z-index: 3; width: min(1100px, 100%); }
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; color: rgba(255,255,255,.68); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.eyebrow.dark { color: var(--muted); }
.eyebrow span { width: 34px; height: 3px; background: var(--red); }
.page-hero h1 { max-width: 1020px; margin: 0 0 28px; font-size: clamp(52px, 7.2vw, 104px); line-height: .9; }
.page-hero-copy > p:not(.eyebrow):not(.hero-status) { max-width: 670px; margin-bottom: 18px; color: rgba(255,255,255,.74); font-size: 17px; line-height: 1.55; letter-spacing: 0; }
.hero-status { display: inline-flex; margin: 3px 0 4px; padding: 9px 11px; color: var(--white); border: 1px solid rgba(240,32,53,.54); background: rgba(240,32,53,.16); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.page-hero .hero-actions { margin-top: 25px; }

.section { padding: var(--section-space) var(--gutter); background: var(--white); }
.section.surface { background: var(--paper); }
.two-column, .section-header { display: grid; gap: 40px; }
.two-column h2, .section-header h2 { margin: 0; }
.copy-block { max-width: 660px; }
.copy-block p { margin-bottom: 24px; font-size: 16px; line-height: 1.7; }
.section-header { margin-bottom: 56px; }
.section-header > p { max-width: 430px; margin: 0; color: var(--muted); line-height: 1.55; }

.category-grid { display: grid; border-top: 1px solid var(--ink); }
.category-card { padding: 28px 0 34px; border-bottom: 1px solid var(--line); }
.card-index, .status-label { font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.card-index { color: var(--red); }
.status-label { margin: 28px 0 14px; color: var(--muted); }
.category-card h3 { margin-bottom: 16px; }
.category-card > p:last-child { max-width: 470px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

.process-grid, .platform-grid, .contact-section { display: grid; border-top: 1px solid var(--ink); }
.process-card, .platform-card, .contact-card { padding: 32px 0; border-bottom: 1px solid var(--line); }
.process-card > span, .platform-card > span, .contact-card > span { color: var(--red); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.process-card h3, .platform-card h3 { margin: 35px 0 16px; }
.process-card p, .platform-card p { max-width: 480px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

.timeline { border-top: 1px solid var(--ink); }
.timeline-row { display: grid; gap: 14px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.timeline-row span { color: var(--red); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.timeline-row p { max-width: 650px; margin: 0; color: var(--muted); line-height: 1.55; }

.disclaimer-band { padding: 32px var(--gutter); color: rgba(255,255,255,.68); background: var(--navy); }
.disclaimer-band p { max-width: 1100px; margin: 0; font-size: 11px; line-height: 1.6; }

.vote-readiness { border: 1px solid var(--line); background: var(--paper); }
.vote-readiness-head {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 18px;
  color: var(--white);
  background: var(--ink);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.vote-readiness-head strong { color: var(--red); }
.vote-readiness ol { margin: 0; padding: 0; list-style: none; }
.vote-readiness li {
  min-height: 142px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}
.vote-readiness li:last-child { border-bottom: 0; }
.vote-readiness li > span,
.vote-readiness li em {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  font-style: normal;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.vote-readiness li.active > span,
.vote-readiness li.active em { color: var(--red); }
.vote-readiness li strong { font-family: var(--display); font-size: clamp(22px, 3vw, 34px); font-weight: 740; letter-spacing: 0; }
.vote-readiness li p { max-width: 620px; margin: 7px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.signup-section { padding: var(--section-space) var(--gutter); display: grid; gap: 60px; color: var(--white); background: var(--navy); }
.signup-copy h2 { max-width: 750px; margin-bottom: 20px; }
.signup-copy > p:last-child { color: rgba(255,255,255,.66); }
.signup-section .eyebrow { color: rgba(255,255,255,.6); }

.signup-form { display: grid; gap: 20px; width: min(720px, 100%); }
.signup-form label { display: grid; gap: 9px; }
.signup-form label > span { font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.signup-form small { color: var(--muted); font-size: inherit; }
.signup-form input[type="email"], .signup-form input[type="text"] { width: 100%; min-height: 54px; padding: 0 14px; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid var(--ink); border-radius: 0; outline: none; }
.signup-section .signup-form input { color: var(--white); border-color: rgba(255,255,255,.48); }
.signup-section .signup-form small { color: rgba(255,255,255,.76); }
.signup-form input:focus { border-bottom-color: var(--red); }
.checkbox-label { grid-template-columns: 18px 1fr; align-items: start; }
.checkbox-label input { width: 16px; height: 16px; margin: 2px 0 0; accent-color: var(--red); }
.checkbox-label span { font-size: 10px !important; line-height: 1.55; letter-spacing: 0 !important; text-transform: none !important; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.signup-form .button { width: max-content; }
.signup-submit { gap: 28px; justify-content: space-between; }
.signup-submit > span:last-child { color: var(--red); font-size: 18px; }
.signup-submit:disabled { cursor: wait; opacity: .62; transform: none; }
.signup-section .button-primary { color: var(--ink); background: var(--white); border-color: var(--white); }
.form-note, .form-status { max-width: 620px; margin: 0; color: var(--muted); font-size: 10px; line-height: 1.5; }
.form-note a { text-decoration: underline; text-underline-offset: 3px; }
.signup-section .form-note, .signup-section .form-status { color: rgba(255,255,255,.58); }
.form-status { color: var(--red); }
.signup-form[data-state="success"] .form-status { color: #137c4c; }
.signup-form[data-state="duplicate"] .form-status { color: var(--gold); }
.signup-form[data-state="validation"] .form-status,
.signup-form[data-state="error"] .form-status { color: var(--red); }
.signup-section .signup-form[data-state="success"] .form-status { color: #7ee2aa; }
.signup-section .signup-form[data-state="duplicate"] .form-status { color: #f0ca72; }

.nomination-callout-action {
  display: grid;
  align-content: start;
  gap: 22px;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(255,255,255,.22);
}
.nomination-callout-action p { max-width: 560px; margin: 0; color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.65; }
.nomination-callout-action .button { width: max-content; color: var(--ink); background: var(--white); border-color: var(--white); }

.nomination-steps {
  width: 100%;
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}
.nomination-steps li { min-height: 92px; display: grid; gap: 16px; align-content: center; padding: 16px 18px; border-right: 1px solid currentColor; }
.nomination-steps li:last-child { border-right: 0; }
.nomination-steps span { color: var(--red); font-size: 9px; font-weight: 800; letter-spacing: .08em; }
.nomination-steps strong { font-family: var(--display); font-size: clamp(16px, 2vw, 22px); font-weight: 740; }
.nomination-callout .nomination-steps { color: rgba(255,255,255,.62); }
.nomination-callout .nomination-steps strong { color: var(--white); }

.nomination-intro .nomination-steps { margin-top: clamp(48px, 7vw, 90px); color: var(--ink); }
.nomination-workspace {
  display: grid;
  gap: clamp(42px, 7vw, 90px);
  padding: var(--section-space) var(--gutter);
  color: var(--white);
  background: var(--navy);
}
.nomination-form-copy h2 { max-width: 650px; margin-bottom: 34px; }
.nomination-rules { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.25); }
.nomination-rules li { display: grid; grid-template-columns: 32px 1fr; gap: 14px; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.nomination-rules span { color: var(--red); font-size: 9px; font-weight: 800; letter-spacing: .08em; }
.nomination-rules p { margin: 0; color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.55; }

.nomination-form { width: 100%; border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.025); }
.nomination-form [hidden] { display: none !important; }
.nomination-form-head { min-height: 54px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 18px; color: var(--white); background: rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.24); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.nomination-form-head strong { color: var(--red); text-align: right; }
.nomination-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 22px; padding: clamp(22px, 4vw, 38px); }
.nomination-form label { min-width: 0; display: grid; align-content: start; gap: 9px; }
.nomination-form label > span { font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.nomination-form label > small { color: rgba(255,255,255,.68); font-size: 10px; line-height: 1.45; text-align: right; }
.nomination-form small { color: rgba(255,255,255,.58); font-size: inherit; }
.nomination-form input[type="email"],
.nomination-form input[type="text"],
.nomination-form input[type="search"],
.nomination-form input[type="url"],
.nomination-form select,
.nomination-form textarea {
  width: 100%;
  color: var(--white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.5);
  border-radius: 0;
  outline: none;
}
.nomination-form input[type="email"],
.nomination-form input[type="text"],
.nomination-form input[type="search"],
.nomination-form input[type="url"],
.nomination-form select { min-height: 54px; padding: 0 12px; }
.nomination-form textarea { min-height: 150px; padding: 14px 12px; resize: vertical; line-height: 1.6; }
.nomination-form select {
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255,255,255,.72);
  color-scheme: light;
}
.nomination-form select option { color: var(--ink); background: var(--white); }
.nomination-form select:disabled { color: #666b76; background: #dfe1e5; border-color: #dfe1e5; cursor: not-allowed; opacity: 1; }
.nomination-form input:focus,
.nomination-form select:focus,
.nomination-form textarea:focus { border-bottom-color: var(--red); }
.nomination-form input:focus-visible,
.nomination-form select:focus-visible,
.nomination-form textarea:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }
.nomination-form input::placeholder,
.nomination-form textarea::placeholder { color: rgba(255,255,255,.42); }
.nomination-form .field-full { grid-column: 1 / -1; }
.nomination-form .checkbox-label { display: grid; grid-template-columns: 18px 1fr; }
.nomination-form .checkbox-label a { text-decoration: underline; text-underline-offset: 3px; }
.nomination-form .button { width: 100%; justify-content: space-between; color: var(--ink); background: var(--white); border-color: var(--white); }
.nomination-form .button > span:last-child { color: var(--red); font-size: 18px; }
.nomination-form .button:disabled { cursor: wait; opacity: .62; transform: none; }
.nomination-form .form-note,
.nomination-form .form-status { color: rgba(255,255,255,.6); }
.nomination-form[data-state="success"] .form-status { color: #7ee2aa; }
.nomination-form[data-state="duplicate"] .form-status { color: #f0ca72; }
.nomination-form[data-state="validation"] .form-status,
.nomination-form[data-state="error"] .form-status { color: #ff8090; }
.turnstile-field { display: grid; gap: 7px; min-width: 0; }
.turnstile-field small { color: inherit; opacity: .62; font-size: 9px; letter-spacing: .05em; text-transform: uppercase; }
.cf-turnstile { max-width: 100%; min-height: 4px; }

.ballot-steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.ballot-track-field,
.xi-position { min-width: 0; margin: 0; padding: 0; border: 0; }
.ballot-track-field > legend,
.xi-position > legend {
  width: 100%;
  margin: 0 0 10px;
  padding: 0;
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ballot-track-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.ballot-track-card {
  min-height: 132px;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 16px !important;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.42);
  background: rgba(255,255,255,.035);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}
.ballot-track-card:hover { border-color: rgba(255,255,255,.82); transform: translateY(-2px); }
.ballot-track-card:has(input:checked) { border-color: var(--red); background: linear-gradient(135deg, rgba(240,32,53,.18), rgba(36,88,255,.12)); }
.ballot-track-card:has(input:focus-visible) { outline: 2px solid var(--white); outline-offset: 3px; }
.ballot-track-card input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--red); }
.ballot-track-card > span { display: grid; gap: 9px; }
.ballot-track-card > span > strong { font-family: var(--display); font-size: clamp(22px, 3vw, 34px); font-weight: 760; line-height: 1; text-transform: none; }
.ballot-track-card > span > small { color: rgba(255,255,255,.64); font-size: 10px; font-weight: 500; line-height: 1.55; letter-spacing: 0; text-transform: none; }
.shortlist-picker { display: grid; gap: 16px; padding: 18px; border: 1px solid rgba(255,255,255,.34); background: rgba(255,255,255,.025); }
.shortlist-picker-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.24); }
.shortlist-picker-head > div { display: grid; gap: 7px; }
.shortlist-picker-title { color: var(--white); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.shortlist-picker-head small { max-width: 680px; color: rgba(255,255,255,.66); font-size: 10px; line-height: 1.5; }
.shortlist-picker-head > strong { flex: 0 0 auto; color: var(--red); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.shortlist-search { gap: 7px !important; }
.shortlist-search > span { color: rgba(255,255,255,.72); }
.shortlist-search input[type="search"] { min-height: 48px; color: var(--white); background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.42); }
.shortlist-search input[type="search"]::-webkit-search-cancel-button { filter: invert(1); }
.shortlist-choice-list { max-height: 560px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; overflow-y: auto; overscroll-behavior: contain; padding: 2px 8px 2px 2px; scrollbar-color: var(--red) rgba(255,255,255,.1); }
.shortlist-choice {
  min-height: 82px;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 12px !important;
  padding: 13px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.025);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}
.shortlist-choice:hover { border-color: rgba(255,255,255,.62); }
.shortlist-choice:has(input:checked) { border-color: var(--red); background: linear-gradient(135deg, rgba(240,32,53,.16), rgba(36,88,255,.1)); }
.shortlist-choice:has(input:focus-visible) { outline: 2px solid var(--white); outline-offset: 2px; }
.shortlist-choice input { width: 16px; height: 16px; margin: 2px 0 0; accent-color: var(--red); }
.shortlist-choice > span { display: grid; gap: 5px; }
.shortlist-choice > span > strong { color: var(--white); font-size: 13px; line-height: 1.25; text-transform: none; }
.shortlist-choice > span > small { color: rgba(255,255,255,.58); font-size: 9px; line-height: 1.42; }
.shortlist-empty { margin: 0; padding: 16px; border: 1px solid rgba(255,255,255,.2); }
.xi-ballot { display: grid; gap: 18px; padding: 18px; border: 1px solid rgba(255,255,255,.34); }
.xi-ballot[hidden] { display: none; }
.xi-ballot-head,
.xi-position > legend { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.xi-ballot-head { padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.25); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.xi-ballot-head strong,
.xi-position > legend strong { color: var(--red); }
[data-xi-groups] { display: grid; gap: 24px; }
.xi-choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.xi-choice {
  min-height: 72px;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 12px !important;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.025);
  cursor: pointer;
}
.xi-choice:has(input:checked) { border-color: var(--blue); background: rgba(36,88,255,.14); }
.xi-choice:has(input:focus-visible) { outline: 2px solid var(--white); outline-offset: 2px; }
.xi-choice input { width: 16px; height: 16px; margin: 2px 0 0; accent-color: var(--blue); }
.xi-choice > span { display: grid; gap: 5px; }
.xi-choice > span > strong { font-size: 13px; line-height: 1.25; text-transform: none; }
.xi-choice > span > small { color: rgba(255,255,255,.58); font-size: 9px; line-height: 1.35; }
.shortlist-evidence-grid { display: grid; gap: 16px; }
.shortlist-evidence-panel { border: 1px solid var(--line); background: var(--white); }
.shortlist-evidence-panel summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px; cursor: pointer; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.shortlist-evidence-panel summary strong { color: var(--red); font-size: 9px; letter-spacing: .06em; }
.shortlist-evidence-panel > p { max-width: 820px; margin: 0; padding: 0 20px 18px; color: var(--muted); font-size: 12px; line-height: 1.6; }
.shortlist-evidence-panel ul { margin: 0; padding: 0 20px 20px 38px; columns: 2; column-gap: 36px; }
.shortlist-evidence-panel li { margin: 0 0 8px; break-inside: avoid; font-size: 11px; line-height: 1.45; }
.shortlist-evidence-panel a { text-decoration: underline; text-underline-offset: 3px; }
.results-track-grid { display: grid; gap: 28px; }
.results-board { border: 1px solid var(--ink); background: var(--white); }
.results-board .board-head { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 18px; color: var(--white); background: var(--ink); font-size: 9px; font-weight: 800; letter-spacing: .08em; }
.results-board .board-head strong { color: var(--red); }

.founding-benefits {
  max-width: 600px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid currentColor;
}
.founding-benefits li {
  min-height: 82px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 12px 12px 0;
  border-right: 1px solid currentColor;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.founding-benefits li:not(:first-child) { padding-left: 12px; }
.founding-benefits li:last-child { border-right: 0; }
.founding-benefits span { color: var(--red); font-size: 9px; }

.results-board { border-top: 1px solid var(--ink); }
.board-head { min-height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 18px; color: var(--white); background: var(--ink); padding: 0 18px; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.board-head strong { color: var(--red); }
.result-row { min-height: 82px; display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: center; border-bottom: 1px solid var(--line); }
.result-row > span, .result-row em { font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.result-row strong { font-family: var(--display); font-size: clamp(19px, 2.5vw, 30px); font-weight: 750; letter-spacing: 0; }
.result-row em { grid-column: 2; margin-top: -16px; color: var(--red); font-style: normal; }

.methodology-columns { display: grid; gap: 26px; }
.methodology-panel { padding: 32px; color: var(--white); background: var(--navy); }
.methodology-panel.future { color: var(--ink); background: var(--paper); border: 1px solid var(--line); }
.methodology-panel h2 { margin: 54px 0 30px; }
.methodology-panel ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-light); }
.methodology-panel.future ul { border-color: var(--line); }
.methodology-panel li { padding: 14px 0; border-bottom: 1px solid var(--line-light); font-size: 13px; }
.methodology-panel.future li { border-color: var(--line); }

.belief-section { padding: var(--section-space) var(--gutter); display: grid; gap: 55px; color: var(--white); background: var(--navy); }
.belief-section.light { color: var(--ink); background: var(--paper); }
.belief-copy h2 { margin: 0; }
.case-file { display: grid; border-top: 1px solid var(--line-light); }
.case-file.light { border-color: var(--line); }
.case-file > * { padding: 16px 0; border-bottom: 1px solid var(--line-light); }
.case-file.light > * { border-color: var(--line); }
.case-file span { color: var(--red); font-size: 9px; font-weight: 800; letter-spacing: .08em; }
.case-file strong { font-family: var(--display); font-size: 24px; font-weight: 750; letter-spacing: 0; }

.contact-card a, .contact-card strong { display: block; margin-top: 30px; font-family: var(--display); font-size: clamp(22px, 3vw, 36px); font-weight: 750; letter-spacing: 0; overflow-wrap: anywhere; }
.legal-copy { max-width: 900px; }
.legal-copy h2 { margin-top: 58px; font-size: clamp(30px, 4vw, 48px); }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy p { font-size: 16px; line-height: 1.7; }
.legal-copy a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }

.owner-toolbar {
  display: grid;
  gap: 28px;
  align-items: end;
  margin-bottom: 32px;
}
.owner-toolbar h2 { margin: 0; }
.owner-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.owner-status { margin: 0 0 24px; color: var(--muted); }
.owner-table-wrap { max-width: 100%; overflow-x: auto; border-top: 1px solid var(--ink); }
.owner-table { width: 100%; min-width: 880px; border-collapse: collapse; }
.owner-table th,
.owner-table td { padding: 16px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.owner-table th { font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.owner-table td { font-size: 12px; line-height: 1.45; }
.owner-table td:nth-child(2) { font-weight: 700; }
.owner-metrics { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0 0 42px; border: 1px solid var(--ink); }
.owner-metrics > div { min-height: 112px; display: grid; gap: 10px; align-content: center; padding: 18px; border-right: 1px solid var(--ink); }
.owner-metrics > div:last-child { border-right: 0; }
.owner-metrics span { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.owner-metrics strong { font-family: var(--display); font-size: clamp(28px, 4vw, 48px); font-weight: 760; }
.owner-signal-panel { margin-bottom: 56px; padding: clamp(20px, 3vw, 32px); background: var(--paper); border: 1px solid var(--line); }
.owner-panel-head { display: grid; gap: 22px; margin-bottom: 12px; }
.owner-panel-head h3 { margin: 4px 0 0; font-family: var(--display); font-size: clamp(28px, 4vw, 46px); }
.owner-panel-head label { display: grid; gap: 8px; align-content: end; }
.owner-panel-head label span { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.owner-panel-head select { min-height: 46px; padding: 0 12px; color: var(--ink); background: var(--white); border: 1px solid var(--ink); }
.owner-note { max-width: 720px; margin: 0 0 24px; color: var(--muted); font-size: 11px; line-height: 1.55; }
.owner-nomination-table { min-width: 1500px; }
.owner-nomination-table td:nth-child(2) { font-weight: 400; }
.owner-nomination-table td:nth-child(3) { font-weight: 750; }
.owner-nomination-table td:nth-child(5) { min-width: 320px; white-space: normal; }
.owner-nomination-table a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.owner-summary-table { min-width: 720px; }
.owner-summary-table td:last-child { color: var(--red); font-family: var(--display); font-size: 24px; font-weight: 760; }
.owner-filter-bar { display: grid; grid-template-columns: minmax(220px, 1.5fr) repeat(4, minmax(145px, 1fr)); gap: 12px; margin: 0 0 28px; }
.owner-filter-bar label { display: grid; gap: 7px; }
.owner-filter-bar label > span { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.owner-filter-bar input,
.owner-filter-bar select,
.owner-table select { width: 100%; min-height: 42px; padding: 0 10px; color: var(--ink); background: var(--white); border: 1px solid var(--ink); }
.owner-save { min-height: 38px; padding: 0 14px; color: var(--white); background: var(--ink); border: 0; cursor: pointer; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.owner-save:disabled { cursor: wait; opacity: .55; }
.owner-submissions[data-owner-ballots] .owner-metrics { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.ballot-owner-filters { grid-template-columns: minmax(220px, 1.5fr) repeat(5, minmax(130px, 1fr)); }
.owner-vote-table { min-width: 1740px; }
.owner-vote-table td:nth-child(4) { min-width: 340px; white-space: normal; }
.owner-vote-table td:nth-child(9) { min-width: 230px; }
.owner-vote-table input[type="text"] { width: 100%; min-height: 42px; padding: 0 10px; color: var(--ink); background: var(--white); border: 1px solid var(--ink); }
.owner-pagination { display: flex; align-items: center; justify-content: flex-end; gap: 14px; margin: 24px 0 48px; }
.owner-pagination span { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }

/* Footer */
.site-footer {
  padding: 70px var(--gutter) 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 0, rgba(36, 88, 255, 0.22), transparent 30rem),
    radial-gradient(circle at 86% 16%, rgba(240, 32, 53, 0.12), transparent 26rem),
    var(--night);
  border-top: 1px solid rgba(255,255,255,.18);
}
.footer-top { display: grid; gap: 38px; padding-bottom: 56px; }
.footer-brand .brand-lockup-image { width: clamp(260px, 30vw, 390px); }
.footer-top > p { max-width: 620px; margin: 0; font-family: var(--display); font-size: clamp(36px, 6vw, 74px); font-weight: 780; line-height: .95; letter-spacing: 0; }
.footer-disclaimer { max-width: 860px; margin: 0 0 44px; color: rgba(255,255,255,.52); font-size: 10px; line-height: 1.6; }
.site-footer nav { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,.65); }
.site-footer nav a { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.15); font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.footer-privacy-button { border: 0; border-bottom: 1px solid rgba(255,255,255,.15); padding: 13px 0; color: #fff; background: transparent; font: inherit; font-size: 10px; font-weight: 800; letter-spacing: .06em; text-align: left; text-transform: uppercase; cursor: pointer; }
.footer-privacy-button:hover, .footer-privacy-button:focus-visible { color: var(--red); }
.footer-bottom { display: grid; gap: 12px; margin-top: 44px; color: rgba(255,255,255,.5); font-size: 9px; font-weight: 700; letter-spacing: .04em; }
.footer-ip { max-width: 980px; margin: 18px 0 0; color: rgba(255,255,255,.38); font-size: 9px; line-height: 1.6; }
.privacy-consent { position: fixed; z-index: 1000; right: 16px; bottom: max(16px, env(safe-area-inset-bottom)); display: grid; width: min(400px, calc(100vw - 32px)); gap: 12px; border: 1px solid rgba(255,255,255,.2); padding: 16px; color: #fff; background: #070a11; box-shadow: 0 12px 32px rgba(0,0,0,.3); max-height: calc(100dvh - 32px); overflow: auto; }
.privacy-consent[hidden] { display: none; }
.traffic-report { max-width: 1100px; margin: auto; padding-top: 150px; }
.traffic-report > p { max-width: 80ch; line-height: 1.6; }
.traffic-totals { display: flex; flex-wrap: wrap; gap: 40px; margin: 32px 0; }
.traffic-totals strong { display: block; font-size: 3rem; }
.traffic-totals span { font-size: 1rem; }
.traffic-report section { margin-top: 40px; }
.traffic-table { overflow-x: auto; }
.traffic-table table { border-collapse: collapse; width: 100%; text-align: left; font-size: 1rem; }
.traffic-table th, .traffic-table td { padding: 12px; border-bottom: 1px solid rgba(255,255,255,.2); overflow-wrap: anywhere; }
.privacy-consent h2 { margin: 0 0 6px; font-family: var(--body); font-size: 1rem; line-height: 1.4; letter-spacing: 0; text-transform: none; }
.privacy-consent > div > p:not(.eyebrow) { margin: 0; color: rgba(255,255,255,.8); font-size: .875rem; line-height: 1.5; }
.privacy-consent a { color: #fff; font-size: inherit; font-weight: 600; letter-spacing: 0; text-transform: none; text-decoration: underline; }
.privacy-consent-actions { display: flex; gap: 10px; }
.privacy-consent-actions .button { flex: 1; min-width: 0; min-height: 44px; padding: 10px 16px; font-size: .875rem; letter-spacing: 0; }

.page-ready .reveal { opacity: 0; transform: translateY(18px); transition: opacity 520ms ease, transform 520ms ease; }
.page-ready .reveal.visible { opacity: 1; transform: none; }

@keyframes signal-pulse {
  0%, 100% { opacity: .72; box-shadow: 0 0 0 4px rgba(212,21,42,.1); }
  50% { opacity: 1; box-shadow: 0 0 0 7px rgba(212,21,42,.18); }
}

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

@keyframes pulse-enter-right {
  from { opacity: 0; transform: translateX(18px); }
  to { opacity: 1; transform: none; }
}

@keyframes pulse-enter-left {
  from { opacity: 0; transform: translateX(-18px); }
  to { opacity: 1; transform: none; }
}

@media (min-width: 760px) {
  .hero-system-line { grid-template-columns: repeat(4, 1fr); }
  .hero-system-line span { border-bottom: 0; }
  .manifesto-grid { grid-template-columns: minmax(0, 1.55fr) minmax(280px, .45fr); align-items: end; }
  .feature-duo { grid-template-columns: 1.25fr .75fr; }
  .feature-voice { min-height: 720px; }
  .fan-pulse { grid-template-columns: 1.15fr .85fr; }
  .fan-pulse-media, .fan-pulse-media img { min-height: 760px; }
  .fan-pulse-panel { min-height: 760px; }
  .categories-intro, .process-intro, .two-column, .section-header { grid-template-columns: 1.3fr .7fr; align-items: end; }
  .category-row { grid-template-columns: 64px 1fr 170px 24px; }
  .category-row em { display: block; }
  .process-row { grid-template-columns: 54px .7fr 1fr; align-items: start; }
  .process-row p { grid-column: 3; }
  .campaign-signup, .signup-section { grid-template-columns: .85fr 1.15fr; align-items: start; }
  .nomination-workspace { grid-template-columns: .72fr 1.28fr; align-items: start; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .category-card:nth-child(odd) { padding-right: 34px; border-right: 1px solid var(--line); }
  .category-card:nth-child(even) { padding-left: 34px; }
  .process-grid, .platform-grid, .contact-section { grid-template-columns: repeat(3, 1fr); }
  .process-card, .platform-card, .contact-card { padding: 34px; border-right: 1px solid var(--line); }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-row { grid-template-columns: .45fr 1fr; }
  .result-row { grid-template-columns: 60px 1fr 180px; }
  .result-row em { grid-column: auto; margin: 0; text-align: right; }
  .methodology-columns { grid-template-columns: repeat(2, 1fr); }
  .results-track-grid,
  .shortlist-evidence-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .belief-section { grid-template-columns: 1.2fr .8fr; }
  .owner-toolbar { grid-template-columns: 1fr auto; }
  .owner-panel-head { grid-template-columns: 1fr 280px; align-items: end; }
  .footer-top { grid-template-columns: 1fr 1.5fr; align-items: start; }
  .site-footer nav { grid-template-columns: repeat(5, 1fr); }
  .footer-bottom { grid-template-columns: 1fr auto; }
}

@media (min-width: 980px) {
  .site-header { min-height: 82px; }
  .menu-toggle { display: none; }
  .site-nav { display: block; }
  .nav-links { display: flex; align-items: center; gap: 28px; }
  .site-nav .nav-links > a { min-height: 0; display: block; padding: 8px 0; border: 0; font-family: var(--body); font-size: 9px; font-weight: 800; line-height: 1; letter-spacing: .08em; }
  .site-nav .nav-links > a:hover,
  .site-nav .nav-links > a:focus-visible { padding-left: 0; color: var(--white); }
  .site-nav .nav-links > a::after { content: ""; display: block; width: 0; height: 1px; margin-top: 7px; background: var(--red); transition: width 160ms ease; }
  .site-nav .nav-links > a:hover::after, .site-nav .nav-links > a:focus-visible::after, .site-nav .nav-links > a[aria-current="page"]::after { width: 100%; }
  .mobile-nav-intro, .mobile-nav-footer, .nav-icon, .nav-index, .nav-mobile-only { display: none !important; }
  .site-nav .nav-links > a.nav-cta {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
    color: var(--white);
    background: linear-gradient(90deg, var(--red), var(--blue));
    box-shadow: 0 10px 28px rgba(240, 32, 53, 0.24);
  }
  .site-nav .nav-links > a.nav-cta::after { display: none; }
  .editorial-hero { min-height: calc(100svh - 82px); grid-template-columns: 1fr; }
  .editorial-hero-copy {
    min-height: calc(100svh - 82px);
    padding-top: 128px;
    padding-bottom: 134px;
  }
  .editorial-hero-image img { min-height: calc(100svh - 82px); }
  .hero-message h1 { font-size: clamp(74px, 7.3vw, 112px); }
  .page-hero { min-height: 690px; padding-top: 150px; }
  .platform-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1380px) {
  .hero-audience-card { bottom: 128px; }
}

@media (max-width: 759px) {
  :root { --section-space: clamp(66px, 12vw, 84px); }

  .editorial-hero {
    display: block;
    min-height: 0;
  }

  .editorial-hero-copy {
    min-height: 650px;
    padding-top: 106px;
    padding-bottom: 48px;
  }

  .hero-audience-card,
  .hero-system-line { display: none; }

  .section-label { margin-bottom: 40px; }
  .culture-signal { display: none; }

  .fan-pulse { min-height: 0; }
  .fan-pulse-media,
  .fan-pulse-media img { min-height: 360px; height: 360px; }
  .fan-pulse-panel { min-height: 450px; padding-top: 42px; padding-bottom: 30px; }
  .pulse-question { margin: 48px 0; }

  .feature-image,
  .feature-image img,
  .feature-culture { min-height: 540px; }

  .process-intro { margin-bottom: 46px; }
  .nomination-fields { grid-template-columns: 1fr; }
  .nomination-form .field-full { grid-column: auto; }
  .owner-metrics { grid-template-columns: repeat(2, 1fr); }
  .owner-metrics > div:nth-child(2) { border-right: 0; }
  .owner-metrics > div:nth-child(-n+2) { border-bottom: 1px solid var(--ink); }
  .owner-filter-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .owner-submissions[data-owner-ballots] .owner-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .owner-submissions[data-owner-ballots] .owner-metrics > div:nth-child(2n) { border-right: 0; }
  .owner-submissions[data-owner-ballots] .owner-metrics > div { border-bottom: 1px solid var(--ink); }
  .owner-submissions[data-owner-ballots] .owner-metrics > div:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .site-footer { padding-top: 58px; }
}

@media (max-width: 520px) {
  .editorial-hero {
    display: block;
    min-height: 0;
  }
  .editorial-hero-copy {
    min-height: 620px;
    padding-top: 96px;
    padding-bottom: 42px;
  }
  .hero-overline {
    top: 22px;
    flex-direction: column;
    gap: 8px;
  }
  .hero-message h1 { font-size: clamp(44px, 13.5vw, 58px); }
  .hero-message > p { margin: 18px 0; font-size: 14px; line-height: 1.45; }
  .hero-message > .hero-status { margin-bottom: 20px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .editorial-hero .hero-actions .editorial-link { display: none; }
  .editorial-hero-image img { min-height: 100%; object-position: 66% center; }
  .hero-brand-sigil {
    top: 12%;
    right: -36px;
    width: min(56vw, 260px);
    opacity: .1;
  }
  .debate-ribbon > div { min-height: 54px; font-size: 22px; }
  .manifesto-grid { gap: 28px; }
  .manifesto-grid p { font-size: 15px; }
  .feature-image, .feature-image img { min-height: 500px; }
  .feature-image img { object-position: 54% center; }
  .fan-pulse-media, .fan-pulse-media img { min-height: 300px; height: 300px; }
  .fan-pulse-media img { object-position: 51% center; }
  .fan-pulse-panel { min-height: 400px; padding-top: 30px; padding-bottom: 26px; }
  .pulse-question { margin: 34px 0; }
  .pulse-question h2 { font-size: clamp(40px, 12vw, 52px); }
  .pulse-footer .editorial-link { display: none; }
  .feature-culture { min-height: 500px; }
  .feature-culture > img { object-position: 60% center; }
  .page-ready .category-list:not(.is-expanded) .category-row:nth-of-type(n+5) { display: none; }
  .page-ready .category-toggle { display: flex; }
  .category-row { min-height: 72px; }
  .verdict-cut { top: 112px; width: 70px; gap: 5px; opacity: .18; }
  .verdict-cut i { height: 5px; }
  .vote-readiness li { grid-template-columns: 32px 1fr; padding: 22px 18px; }
  .vote-readiness li em { grid-column: 2; }
  .founding-benefits { grid-template-columns: 1fr; }
  .founding-benefits li { min-height: 54px; flex-direction: row; align-items: center; border-right: 0; border-bottom: 1px solid currentColor; padding: 12px 0 !important; }
  .founding-benefits li:last-child { border-bottom: 0; }
  .nomination-steps { grid-template-columns: 1fr; }
  .nomination-steps li { min-height: 62px; grid-template-columns: 34px 1fr; align-items: center; border-right: 0; border-bottom: 1px solid currentColor; }
  .nomination-steps li:last-child { border-bottom: 0; }
  .nomination-form-head { align-items: flex-start; flex-direction: column; }
  .nomination-form-head strong { text-align: left; }
  .nomination-fields { padding: 22px 16px; }
  .ballot-track-grid,
  .shortlist-choice-list,
  .xi-choice-grid { grid-template-columns: 1fr; }
  .ballot-track-card { min-height: 110px; }
  .shortlist-picker { padding: 14px; }
  .shortlist-picker-head { flex-direction: column; gap: 8px; }
  .shortlist-choice-list { max-height: 480px; }
  .xi-ballot { padding: 14px; }
  .xi-ballot-head,
  .xi-position > legend { align-items: flex-start; flex-direction: column; gap: 7px; }
  .shortlist-evidence-panel summary { align-items: flex-start; flex-direction: column; gap: 7px; }
  .shortlist-evidence-panel ul { columns: 1; }
  .category-row strong { font-size: 19px; }
  .process-row { padding: 18px 0; }
  .process-row h3 { font-size: 23px; }
  .process-row p { font-size: 13px; }
  .page-hero { min-height: 500px; padding-top: 92px; padding-bottom: 48px; }
  .page-hero h1 { margin-bottom: 20px; font-size: clamp(42px, 12.5vw, 58px); }
  .page-hero-copy > p:not(.eyebrow):not(.hero-status) { font-size: 15px; }
  .page-hero .hero-actions .button-secondary { display: none; }
  .page-hero .hero-actions { margin-top: 20px; }
  .section-header { margin-bottom: 38px; }
  .copy-block p { margin-bottom: 18px; font-size: 15px; line-height: 1.6; }
  .footer-top { gap: 26px; padding-bottom: 38px; }
  .footer-brand .brand-lockup-image { width: min(260px, 82vw); }
  .footer-top > p { font-size: 34px; }
  .footer-disclaimer { margin-bottom: 30px; }
  .footer-bottom { margin-top: 30px; }
  .button { width: 100%; }
  .signup-form .button { width: 100%; }
  .owner-filter-bar { grid-template-columns: 1fr; }
  .owner-pagination { justify-content: space-between; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
  .page-ready .reveal { opacity: 1; transform: none; }
  .debate-ribbon > div, .hero-overline i, .pulse-label i { animation: none; }
}

/* The Game editorial system */
.editorial-index { background: #f3f1ec; }
.editorial-index-head { align-items: flex-end; gap: 36px; }
.editorial-index-head > div:first-child { max-width: 700px; }
.editorial-index-head h2 { margin-bottom: 0; }
.editorial-filters { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.editorial-filters a {
  border: 1px solid rgba(3, 5, 10, .18);
  padding: 10px 13px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.editorial-filters a:hover, .editorial-filters a:focus-visible { border-color: var(--red); color: var(--red); }
.editorial-feature { margin-bottom: 48px; }
.editorial-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.editorial-card { overflow: hidden; border: 1px solid rgba(3, 5, 10, .14); background: #fff; }
.editorial-card-media { display: block; overflow: hidden; aspect-ratio: 16 / 10; background: var(--ink); }
.editorial-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 260ms ease; }
.editorial-card:hover .editorial-card-media img { transform: scale(1.025); }
.editorial-card-copy { display: flex; min-height: 330px; flex-direction: column; align-items: flex-start; padding: 28px; }
.editorial-meta { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 14px; margin: 0 0 24px; color: rgba(3, 5, 10, .55); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.editorial-meta span { color: var(--red); }
.editorial-card h3 { margin: 0 0 14px; font-family: var(--display); font-size: clamp(25px, 2.2vw, 36px); line-height: .98; letter-spacing: -.035em; text-transform: uppercase; }
.editorial-card h3 a { color: var(--ink); text-decoration: none; }
.editorial-card-copy > p:not(.editorial-meta) { margin: 0 0 24px; color: rgba(3, 5, 10, .7); font-size: 14px; line-height: 1.65; }
.editorial-card-copy .editorial-link { margin-top: auto; }
.editorial-card-featured { display: grid; grid-template-columns: 1.2fr 1fr; }
.editorial-card-featured .editorial-card-media { min-height: 520px; aspect-ratio: auto; }
.editorial-card-featured .editorial-card-copy { min-height: 520px; justify-content: center; padding: clamp(34px, 5vw, 72px); }
.editorial-card-featured h3 { font-size: clamp(38px, 4.6vw, 70px); }
.editorial-pagination { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; margin-top: 42px; }
.editorial-pagination > :last-child { justify-self: end; }
.editorial-pagination > span { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.editorial-empty { border: 1px solid rgba(3, 5, 10, .14); padding: 50px; background: #fff; }

.article-page { background: #f3f1ec; color: var(--ink); }
.article-header { padding: clamp(132px, 16vw, 210px) var(--page-pad) clamp(58px, 8vw, 100px); color: #fff; background: var(--ink); }
.article-header > * { width: min(1040px, 100%); margin-right: auto; margin-left: auto; }
.article-breadcrumb { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 54px; color: rgba(255, 255, 255, .55); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.article-breadcrumb a { color: inherit; text-decoration: none; }
.article-header h1 { margin-top: 24px; margin-bottom: 30px; font-family: var(--display); font-size: clamp(52px, 7vw, 106px); line-height: .9; letter-spacing: -.055em; text-transform: uppercase; }
.article-dek { max-width: 820px; color: rgba(255, 255, 255, .76); font-size: clamp(18px, 2vw, 25px); line-height: 1.45; }
.article-byline { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 42px; color: rgba(255, 255, 255, .62); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.article-hero { width: min(1220px, calc(100% - 2 * var(--page-pad))); margin: clamp(38px, 6vw, 82px) auto 0; }
.article-hero img { width: 100%; height: auto; max-height: 680px; object-fit: cover; }
.editorial-card-media picture { display: block; width: 100%; height: 100%; }
.article-hero picture { display: block; }
.article-hero figcaption { margin-top: 10px; color: rgba(3, 5, 10, .65); font-size: 12px; line-height: 1.5; }
.reference-content { width: min(1140px, calc(100% - 2 * var(--page-pad))); margin: 0 auto; padding: 48px 0 80px; color: var(--ink); }
.reference-content p { max-width: 850px; font-size: 1rem; line-height: 1.75; margin: 18px 0; }
.reference-content h2 { margin: 40px 0 18px; font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.15; }
.reference-content h3 { font-size: 1.6rem; margin: 0 0 14px; }
.reference-content h4 { font-size: 1rem; margin: 24px 0 14px; }
.reference-content a, .article-prose a { text-decoration: underline; text-underline-offset: 3px; }
.reference-content a:focus-visible, .article-prose a:focus-visible { outline: 2px solid var(--red); outline-offset: 4px; }
.reference-nav { display: flex; flex-wrap: wrap; gap: 12px 22px; font-size: 1rem; line-height: 1.6; }
.shortlist-track, .shortlist-category { scroll-margin-top: 125px; }
.shortlist-track { margin-top: 60px; border-top: 2px solid var(--ink); }
.shortlist-category { padding: 30px 0; border-top: 1px solid rgba(3,5,10,.18); margin-top: 28px; }
.shortlist-reference-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 0 24px; margin: 16px 0 24px; }
.shortlist-reference-list li { padding: 14px 0; border-bottom: 1px solid rgba(3,5,10,.12); scroll-margin-top: 125px; min-width: 0; overflow-wrap: anywhere; }
.shortlist-reference-list strong { display: block; font-size: 1rem; line-height: 1.4; }
.shortlist-reference-list span { display: block; font-size: .875rem; line-height: 1.5; margin-top: 4px; color: #555; }
.article-byline a { text-decoration: underline; text-underline-offset: 3px; }
@media(max-width: 760px) { .shortlist-reference-list { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media(max-width: 480px) { .shortlist-reference-list { grid-template-columns: 1fr; } .reference-content { width: calc(100% - 40px); } }
.article-layout { display: grid; width: min(1040px, calc(100% - 2 * var(--page-pad))); grid-template-columns: minmax(0, 700px) minmax(220px, 1fr); gap: clamp(44px, 7vw, 96px); margin: clamp(56px, 7vw, 94px) auto; }
.article-prose { font-family: Georgia, "Times New Roman", serif; font-size: clamp(18px, 1.7vw, 21px); line-height: 1.78; }
.article-prose p { margin: 0 0 1.55em; }
.article-prose h2 { margin: 2em 0 .65em; font-family: var(--display); font-size: clamp(30px, 3.4vw, 48px); line-height: 1; letter-spacing: -.035em; text-transform: uppercase; }
.article-prose h3 { margin: 1.8em 0 .6em; font-family: var(--display); font-size: 28px; }
.article-prose ul { padding-left: 1.3em; }
.article-sources { align-self: start; border-top: 4px solid var(--red); padding-top: 20px; }
.article-sources h2 { font-family: var(--display); font-size: 22px; line-height: 1; text-transform: uppercase; }
.article-sources ol { padding-left: 20px; color: rgba(3, 5, 10, .65); font-size: 12px; line-height: 1.55; }
.article-sources li { margin-bottom: 14px; }
.article-sources a { color: var(--ink); overflow-wrap: anywhere; }
.article-cta { display: flex; width: min(1220px, calc(100% - 2 * var(--page-pad))); align-items: center; justify-content: space-between; gap: 30px; margin: 0 auto; padding: clamp(34px, 5vw, 64px); color: #fff; background: var(--ink); }
.article-cta h2 { margin: 14px 0 10px; font-family: var(--display); font-size: clamp(34px, 4vw, 58px); line-height: .95; text-transform: uppercase; }
.article-cta p:last-child { color: rgba(255, 255, 255, .65); }
.article-related { padding: var(--section-space) var(--page-pad); }
.article-related-head { margin-bottom: 42px; }
.article-related-head h2 { margin-bottom: 0; }

.owner-editorial { background: #f3f1ec; }
.owner-editorial-layout { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(300px, .7fr); gap: 28px; align-items: start; }
.editorial-form { border: 1px solid rgba(3, 5, 10, .16); background: #fff; }
.editorial-form-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 22px; color: #fff; background: var(--ink); }
.editorial-form-head strong { font-family: var(--display); font-size: 22px; text-transform: uppercase; }
.editorial-form-head span { font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.editorial-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 24px; }
.editorial-form label { display: grid; gap: 8px; }
.editorial-form label > span { font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.editorial-form input, .editorial-form select, .editorial-form textarea { width: 100%; border: 1px solid rgba(3, 5, 10, .24); border-radius: 0; padding: 13px; color: var(--ink); background: #fff; font: inherit; }
.editorial-form textarea { resize: vertical; line-height: 1.55; }
.editorial-form .field-wide { grid-column: 1 / -1; }
.editorial-form .editorial-check { display: flex; grid-column: 1 / -1; grid-template-columns: 18px 1fr; align-items: center; }
.editorial-form .editorial-check input { width: 18px; height: 18px; }
.editorial-form > .button { margin: 0 24px 24px; }
.owner-article-list { display: grid; gap: 10px; }
.owner-article-row { display: grid; gap: 8px; width: 100%; border: 1px solid rgba(3, 5, 10, .16); padding: 20px; color: var(--ink); background: #fff; text-align: left; cursor: pointer; }
.owner-article-row:hover, .owner-article-row:focus-visible { border-color: var(--red); }
.owner-article-row strong { font-family: var(--display); font-size: 23px; line-height: 1; text-transform: uppercase; }
.owner-article-row span { color: var(--red); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.owner-article-row small { color: rgba(3, 5, 10, .55); overflow-wrap: anywhere; }

@media (max-width: 980px) {
  .editorial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .editorial-card-featured { grid-template-columns: 1fr; }
  .editorial-card-featured .editorial-card-media, .editorial-card-featured .editorial-card-copy { min-height: 0; }
  .article-layout, .owner-editorial-layout { grid-template-columns: 1fr; }
  .article-sources { margin-top: 12px; }
}

@media (max-width: 640px) {
  .privacy-consent { right: 12px; bottom: max(12px, env(safe-area-inset-bottom)); width: calc(100vw - 24px); gap: 10px; padding: 14px; }
  .privacy-consent-actions { flex-direction: row; }
  .editorial-index-head { align-items: flex-start; }
  .editorial-filters { justify-content: flex-start; }
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-card-copy { min-height: 0; }
  .editorial-card-featured .editorial-card-copy { padding: 28px; }
  .article-header { padding: 104px 20px 56px; }
  .article-breadcrumb { margin-bottom: 38px; }
  .article-header h1 { margin-top: 20px; margin-bottom: 24px; font-size: clamp(42px, 12vw, 56px); line-height: .92; }
  .article-dek { font-size: 17px; line-height: 1.5; }
  .article-byline { gap: 8px 16px; margin-top: 30px; }
  .article-hero { width: calc(100% - 40px); margin-top: 32px; }
  .article-layout { width: calc(100% - 40px); min-width: 0; gap: 34px; margin: 42px auto 56px; }
  .article-prose { min-width: 0; font-size: 18px; line-height: 1.68; overflow-wrap: break-word; }
  .article-prose p { margin-bottom: 1.4em; }
  .article-prose h2 { margin-top: 1.75em; font-size: clamp(30px, 9vw, 38px); line-height: .98; }
  .article-prose h3 { font-size: 26px; }
  .article-sources { min-width: 0; }
  .article-cta { width: calc(100% - 40px); align-items: flex-start; flex-direction: column; padding: 28px 22px; }
  .article-related { padding-right: 20px; padding-left: 20px; }
  .editorial-form-grid { grid-template-columns: 1fr; padding: 18px; }
  .editorial-form .field-wide { grid-column: auto; }
  .editorial-form > .button { width: calc(100% - 36px); margin: 0 18px 18px; }
}
/* Combined ballot: use the existing dark ballot and light editorial surfaces. */
.ballot-review,.voter-session{padding:24px;border:1px solid rgba(255,255,255,.24);border-radius:4px;min-width:0}
.ballot-review h3{font-size:1.6rem;line-height:1.2;margin:0 0 16px}
.ballot-review p,.ballot-review li,.voter-session p,.voter-session li{font-size:1rem;line-height:1.6;overflow-wrap:anywhere}
.ballot-review ul,.voter-session ul{padding-left:22px}
.ballot-review li{padding:14px 0;border-bottom:1px solid rgba(255,255,255,.16)}
.ballot-draft-actions{display:flex;flex-wrap:wrap;gap:12px}
.ballot-draft-actions .button{white-space:normal;min-height:48px}
.ballot-edit{color:inherit;background:transparent;border:1px solid currentColor;padding:10px 16px;font:inherit;cursor:pointer}
.ballot-review:focus{outline:2px solid #f02035;outline-offset:4px}
.practical-rules{max-width:1000px;margin:auto}
.practical-rules h2{font-size:clamp(2rem,4vw,3.5rem);line-height:1.08;margin-bottom:32px}
.practical-rules dl{display:grid;grid-template-columns:minmax(180px,1fr) minmax(0,3fr);gap:20px 36px;font-size:1rem;line-height:1.65}
.practical-rules dt{font-weight:800}
.practical-rules dd{margin:0;overflow-wrap:anywhere}
.practical-rules a{color:inherit;text-decoration:underline}
.home-stories .editorial-grid{margin-top:28px}
@media(max-width:650px){.practical-rules dl{grid-template-columns:1fr;gap:8px}.practical-rules dd{margin-bottom:20px}.ballot-review,.voter-session{padding:16px}.ballot-draft-actions .button{width:100%}}
