@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --red: #e3262e;
  --acid: #d8ff42;
  --ink: #060707;
  --carbon: #101416;
  --panel: #171d20;
  --steel: #a9b2b7;
  --paper: #f1f1ed;
  --line: rgba(255, 255, 255, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

h1,
h2,
h3,
.brand {
  font-family: "Barlow Condensed", Impact, sans-serif;
  text-transform: uppercase;
  margin: 0;
  line-height: .86;
}

.site-header {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 5vw;
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(6, 7, 7, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: .02em;
}

.brand span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--red);
  color: white;
  font-size: 1.25rem;
  font-weight: 900;
  transform: skew(-9deg);
  box-shadow: 6px 6px 0 var(--acid);
}

.brand strong {
  font-size: 1.45rem;
  font-weight: 900;
}

.site-header nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.site-header nav a {
  text-decoration: none;
  color: #d8dde0;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

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

.menu-button {
  display: none;
}

.hero {
  min-height: 760px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.search-hero {
  min-height: 960px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(430px, .78fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
  padding: 8rem 6vw 4.5rem;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  filter: saturate(.9) contrast(1.08);
  transform: scale(1.02);
  z-index: -2;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 5, 5, .98), rgba(4, 5, 5, .72) 42%, rgba(4, 5, 5, .14) 78%),
    linear-gradient(0deg, rgba(4, 5, 5, .9), transparent 45%);
}

.hero-copy {
  width: min(820px, 88vw);
  margin-left: 0;
  padding-bottom: 0;
}

.eyebrow,
.section-kicker,
.answer-label {
  margin: 0 0 1.3rem;
  color: var(--acid);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(5.4rem, 12vw, 13.2rem);
  letter-spacing: -.045em;
  max-width: 900px;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: #d2d7d9;
  font-size: 1.12rem;
  line-height: 1.75;
  margin: 2rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}

.hero-search-panel {
  margin-top: 2.2rem;
  padding: clamp(1rem, 2vw, 1.35rem);
  background:
    linear-gradient(135deg, rgba(216, 255, 66, .18), transparent 45%),
    rgba(6, 7, 7, .9);
  border: 2px solid rgba(216, 255, 66, .55);
  box-shadow: 12px 12px 0 var(--red);
}

.hero-search-panel label {
  display: block;
  margin-bottom: .9rem;
  color: var(--acid);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 900;
}

.hero-search-panel .search-row input {
  min-height: 74px;
  padding: 1rem 1.2rem;
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
}

.hero-search-panel .search-row button {
  min-width: 150px;
  font-size: .9rem;
}

.search-help {
  margin: 1rem 0 0;
  color: #dfe6e8;
  font-size: .9rem;
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 1rem 1.35rem;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button.primary {
  background: var(--red);
  color: white;
  box-shadow: 7px 7px 0 var(--acid);
}

.button.ghost {
  border-color: rgba(255, 255, 255, .55);
  color: white;
}

.hero-stat {
  position: absolute;
  right: 5vw;
  bottom: 3.5rem;
  width: 270px;
  padding: 1.4rem;
  background: var(--acid);
  color: var(--ink);
  transform: skew(-3deg);
  box-shadow: 12px 12px 0 var(--red);
}

.hero-stat span,
.hero-stat small {
  display: block;
  text-transform: uppercase;
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.hero-stat strong {
  display: block;
  margin: .55rem 0 .2rem;
  font-family: "Barlow Condensed";
  font-size: 3.6rem;
  line-height: .9;
}

.ticker {
  overflow: hidden;
  background: var(--red);
  white-space: nowrap;
}

.ticker div {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  width: max-content;
  padding: .85rem 0;
  animation: marquee 26s linear infinite;
}

.ticker span {
  font-family: "Barlow Condensed";
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.ticker i {
  width: 8px;
  height: 8px;
  background: var(--acid);
  transform: rotate(45deg);
}

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

.search-lab {
  padding: 7rem 6vw;
  background: var(--carbon);
}

.search-intro {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 6vw;
  align-items: end;
  margin-bottom: 3rem;
}

.search-intro h2,
.split-copy h2,
.section-heading h2,
.clubs h2 {
  font-size: clamp(4rem, 7.6vw, 8.4rem);
  letter-spacing: -.045em;
}

.search-intro p:last-child,
.split-copy p,
.clubs p {
  color: #b7c0c4;
  line-height: 1.75;
}

.search-panel {
  padding: 1.25rem;
  background: #080a0b;
  border: 1px solid var(--line);
  box-shadow: 16px 16px 0 rgba(227, 38, 46, .78);
}

.search-panel > label,
.search-panel > .search-row {
  display: none;
}

.search-panel label {
  display: block;
  margin-bottom: .8rem;
  color: var(--acid);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .68rem;
  font-weight: 900;
}

.search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .8rem;
}

.search-row input,
.search-row button,
.prompt-grid button {
  font: inherit;
}

.search-row input {
  min-width: 0;
  background: #fff;
  color: #060707;
  border: 0;
  padding: 1.15rem 1.2rem;
  font-size: 1rem;
  font-weight: 700;
}

.search-row button {
  border: 0;
  background: var(--acid);
  color: #060707;
  padding: 0 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
}

.search-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1rem;
}

.search-tabs button {
  border: 1px solid var(--line);
  background: #111619;
  color: #cdd5d8;
  padding: .75rem .95rem;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  cursor: pointer;
}

.search-tabs button:hover,
.search-tabs button.active {
  border-color: var(--acid);
  background: rgba(216, 255, 66, .08);
  color: var(--acid);
}

.search-mode-card {
  margin-top: 1rem;
  padding: 1.1rem;
  background:
    linear-gradient(135deg, rgba(227, 38, 46, .18), transparent 46%),
    #111619;
  border: 1px solid rgba(255, 255, 255, .12);
}

.search-mode-card span {
  display: block;
  color: var(--red);
  font-family: "Barlow Condensed";
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.search-mode-card h3 {
  margin-top: .6rem;
  font-size: clamp(2rem, 4vw, 4.1rem);
  letter-spacing: -.03em;
}

.search-mode-card p {
  max-width: 900px;
  margin: .75rem 0 0;
  color: #b6c0c4;
  line-height: 1.65;
}

.prompt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: .7rem;
  margin-top: .8rem;
}

.prompt-grid button {
  min-height: 52px;
  background: #151a1d;
  color: #cfd5d8;
  border: 1px solid var(--line);
  padding: .8rem;
  cursor: pointer;
  text-align: left;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.prompt-grid button:hover,
.prompt-grid button.active {
  border-color: var(--acid);
  color: var(--acid);
}

.answer-card {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  padding: 2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-answer-card {
  margin-top: 0;
  padding: clamp(1.35rem, 3vw, 2rem);
  background:
    linear-gradient(135deg, rgba(227, 38, 46, .2), transparent 52%),
    rgba(5, 6, 6, .93);
  border: 2px solid rgba(255, 255, 255, .16);
  box-shadow: 16px 16px 0 rgba(216, 255, 66, .92);
}

.hero-answer-card .answer-label {
  color: var(--red);
  margin-bottom: .9rem;
}

.hero-answer-card h3 {
  font-size: clamp(3rem, 6vw, 6.6rem);
}

.hero-answer-card .answer-source {
  background: rgba(216, 255, 66, .12);
}

.hero-answer-card .time-readout {
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, .16);
  text-align: left;
}

.hero-answer-card .time-readout span {
  font-size: clamp(5.8rem, 12vw, 10.8rem);
}

.answer-card h3 {
  font-size: clamp(2.8rem, 5vw, 5.8rem);
  letter-spacing: -.03em;
}

.answer-card #answer-summary {
  margin: 1rem 0 0;
  max-width: 700px;
  color: #aeb8bc;
  line-height: 1.65;
}

.answer-card .answer-source {
  margin-top: 1.2rem;
  padding: .95rem 1rem;
  max-width: 780px;
  color: #e8eef0;
  background: rgba(216, 255, 66, .08);
  border-left: 4px solid var(--acid);
  font-size: .82rem;
  font-weight: 700;
}

.answer-card .answer-source a,
.result-card small a {
  color: var(--acid);
}

.time-readout {
  text-align: right;
}

.time-readout span {
  display: block;
  color: var(--acid);
  font-family: "Barlow Condensed";
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.06em;
}

.time-readout small {
  display: block;
  margin-top: .7rem;
  color: #c4ccd0;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .68rem;
}

.archive-live-panel {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  margin-top: 2.5rem;
  background: var(--line);
  border: 1px solid var(--line);
}

.archive-live-panel article {
  padding: 1.15rem;
  background:
    linear-gradient(135deg, rgba(216, 255, 66, .08), transparent 48%),
    #0a0c0d;
}

.archive-live-panel span {
  display: block;
  color: var(--acid);
  font-family: "Barlow Condensed";
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  font-weight: 900;
  line-height: .85;
  letter-spacing: -.03em;
}

.archive-live-panel p {
  margin: .55rem 0 0;
  color: #cfd6d9;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.powered-by {
  margin-top: 1rem;
  padding: clamp(1.5rem, 3vw, 2.6rem);
  background:
    radial-gradient(circle at 90% 10%, rgba(216, 255, 66, .2), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02)),
    #0a0c0d;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: .95fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
}

.powered-by h2 {
  margin: .4rem 0 0;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 5.5rem);
  line-height: .9;
  letter-spacing: -.04em;
}

.powered-by > p {
  margin: 0;
  color: #d9e0e3;
  line-height: 1.7;
  max-width: 760px;
}

.powered-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .16);
}

.powered-strip a {
  min-height: 110px;
  padding: 1.1rem;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  text-decoration: none;
  font-family: "Barlow Condensed";
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: .95;
  transition: background .2s ease, color .2s ease;
}

.powered-strip a:hover {
  background: var(--acid);
  color: var(--ink);
}

.powered-strip span {
  display: block;
  margin-top: .8rem;
  font-family: "Inter";
  font-size: .65rem;
  letter-spacing: .12em;
  font-weight: 900;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 3rem;
  background: var(--line);
}

.hero-result-grid {
  grid-column: 1 / -1;
  grid-template-columns: repeat(5, 1fr);
  margin-top: -2rem;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .35);
}

.hero-result-grid .result-card {
  min-height: 190px;
  background:
    linear-gradient(135deg, rgba(216, 255, 66, .08), transparent 46%),
    #070909;
}

.hero-result-grid .result-card span {
  margin-bottom: 1.7rem;
}

.hero-result-grid .result-card h4 {
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
}

.result-card {
  background: #0a0c0d;
  padding: 1.5rem;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.result-card span {
  color: var(--red);
  font-family: "Barlow Condensed";
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.result-card h4 {
  margin: 2.5rem 0 .8rem;
  font-family: "Barlow Condensed";
  font-size: 2.2rem;
  line-height: .92;
  text-transform: uppercase;
}

.result-card p {
  color: #aab3b8;
  line-height: 1.6;
  margin: 0 0 1.2rem;
}

.result-card small {
  margin-top: auto;
  color: #717c81;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .62rem;
}

.vision-band {
  padding: 7rem 6vw;
  background: #090b0c;
  color: white;
}

.vision-band > div:first-child {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 6vw;
  align-items: end;
  margin-bottom: 4rem;
}

.vision-band h2 {
  font-size: clamp(4rem, 8vw, 9rem);
  letter-spacing: -.045em;
}

.discipline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .16);
}

.discipline-grid article {
  min-height: 310px;
  padding: 1.5rem;
  background: #101416;
  border-top: 6px solid #30383d;
}

.discipline-grid article.active {
  background: var(--red);
  border-color: var(--acid);
}

.discipline-grid span {
  color: var(--acid);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .64rem;
  font-weight: 900;
}

.discipline-grid article:not(.active) span {
  color: #95a0a5;
}

.discipline-grid h3 {
  margin: 3rem 0 1rem;
  font-size: clamp(2.4rem, 4.1vw, 4.2rem);
  letter-spacing: -.025em;
}

.discipline-grid p {
  color: #b8c0c4;
  line-height: 1.65;
}

.discipline-grid article.active p {
  color: #ffe6e8;
}

.wiscombe-proof {
  padding: 7rem 6vw;
  background: #f1f1ed;
  color: var(--ink);
}

.wiscombe-hero {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 6vw;
  align-items: end;
  margin-bottom: 4rem;
}

.wiscombe-hero img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  box-shadow: 18px 18px 0 var(--red);
}

.wiscombe-hero h2 {
  font-size: clamp(4rem, 7.6vw, 8.4rem);
  letter-spacing: -.045em;
}

.wiscombe-hero p:last-child {
  max-width: 680px;
  margin: 2rem 0 0;
  color: #424b50;
  font-size: 1.03rem;
  line-height: 1.75;
}

.record-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 4rem;
  border-top: 1px solid rgba(6, 7, 7, .18);
  border-left: 1px solid rgba(6, 7, 7, .18);
}

.record-strip article {
  min-height: 220px;
  padding: 1.5rem;
  border-right: 1px solid rgba(6, 7, 7, .18);
  border-bottom: 1px solid rgba(6, 7, 7, .18);
}

.record-strip span,
.runoff-card > span {
  color: #697379;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .66rem;
  font-weight: 900;
}

.record-strip strong {
  display: block;
  margin: 2rem 0 .4rem;
  color: var(--red);
  font-family: "Barlow Condensed";
  font-size: clamp(4.2rem, 8vw, 8rem);
  line-height: .8;
  letter-spacing: -.06em;
}

.record-strip p {
  margin: 0;
  color: #4d565b;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.wiscombe-data-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.runoff-card {
  padding: 1.5rem;
  background: #fff;
  border-top: 6px solid var(--red);
  box-shadow: 0 18px 48px rgba(6, 7, 7, .08);
}

.runoff-card.red-card {
  background: var(--red);
  color: white;
  border-color: var(--ink);
}

.runoff-card.red-card > span,
.runoff-card.red-card p,
.runoff-card.red-card small {
  color: #ffe6e8;
}

.runoff-card h3,
.event-index h3 {
  margin: 2rem 0 1.5rem;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  letter-spacing: -.035em;
}

.runoff-card ol {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(6, 7, 7, .16);
}

.runoff-card.red-card ol {
  border-color: rgba(255, 255, 255, .22);
}

.runoff-card li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .7rem 1rem;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(6, 7, 7, .16);
}

.runoff-card.red-card li {
  border-color: rgba(255, 255, 255, .22);
}

.runoff-card b {
  font-size: .9rem;
}

.runoff-card em {
  color: var(--red);
  font-style: normal;
  font-weight: 900;
}

.runoff-card.red-card em {
  color: var(--acid);
}

.runoff-card small {
  grid-column: 1 / -1;
  color: #697379;
  font-size: .72rem;
  line-height: 1.45;
}

.runoff-card p {
  color: #4d565b;
  line-height: 1.65;
}

.event-index {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 4vw;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(6, 7, 7, .18);
}

.event-index > div:first-child p:last-child {
  color: #4d565b;
  line-height: 1.7;
}

.year-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(6, 7, 7, .18);
  border-left: 1px solid rgba(6, 7, 7, .18);
}

.year-grid article {
  min-height: 160px;
  padding: 1rem;
  border-right: 1px solid rgba(6, 7, 7, .18);
  border-bottom: 1px solid rgba(6, 7, 7, .18);
}

.year-grid b {
  display: block;
  color: var(--red);
  font-family: "Barlow Condensed";
  font-size: 2.8rem;
  line-height: .9;
}

.year-grid span {
  display: block;
  margin-top: .85rem;
  color: #4d565b;
  font-size: .78rem;
  line-height: 1.55;
}

.source-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 3rem;
  padding: 1.2rem;
  background: var(--ink);
  color: white;
}

.source-panel p {
  margin: 0;
  color: #d1d7da;
  line-height: 1.65;
}

.source-panel strong {
  color: var(--acid);
}

.source-panel div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: .65rem;
}

.source-panel a {
  color: white;
  border: 1px solid rgba(255, 255, 255, .28);
  padding: .75rem .9rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .65rem;
  font-weight: 900;
}

.source-panel a:hover {
  border-color: var(--acid);
  color: var(--acid);
}

.venue-roadmap {
  padding: 7rem 6vw;
  background: #0d1113;
  color: white;
}

.venue-roadmap .section-heading {
  margin-bottom: 3.5rem;
}

.venue-roadmap .section-kicker {
  color: var(--acid);
}

.venue-feature {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1px;
  margin-bottom: 4rem;
  background: rgba(255, 255, 255, .16);
}

.venue-feature article {
  min-height: 300px;
  padding: 2rem;
  background: #151a1d;
}

.venue-feature article:first-child {
  border-top: 6px solid var(--red);
}

.venue-feature span {
  color: #9da7ac;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .66rem;
  font-weight: 900;
}

.venue-feature h3 {
  margin: 3rem 0 1rem;
  font-size: clamp(3rem, 5vw, 5.8rem);
  letter-spacing: -.035em;
}

.venue-feature p {
  color: #c4ccd0;
  line-height: 1.7;
}

.venue-proof {
  background: var(--acid) !important;
  color: var(--ink);
  transform: skew(-2deg);
}

.venue-proof span,
.venue-proof p {
  color: var(--ink);
}

.venue-proof strong {
  display: block;
  margin: 3rem 0 1rem;
  font-family: "Barlow Condensed";
  font-size: clamp(4rem, 7vw, 7.6rem);
  font-weight: 900;
  line-height: .82;
  text-transform: uppercase;
}

.venue-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.venue-columns h3 {
  margin: 0 0 1.5rem;
  color: #fff;
  font-size: clamp(3rem, 5vw, 5.5rem);
  letter-spacing: -.035em;
}

.venue-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .15);
}

.venue-list article {
  min-height: 118px;
  padding: 1rem;
  background: #14191b;
  border-left: 4px solid #30383d;
}

.venue-list article.venue-active {
  background: #fff;
  color: var(--ink);
  border-color: var(--red);
}

.venue-list b {
  display: block;
  font-family: "Barlow Condensed";
  font-size: 1.45rem;
  line-height: .95;
  text-transform: uppercase;
}

.venue-list span {
  display: block;
  margin-top: .45rem;
  color: #aab4b9;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.venue-list small {
  display: block;
  margin-top: .5rem;
  color: #778288;
  font-size: .68rem;
  line-height: 1.35;
}

.venue-active span,
.venue-active small {
  color: #4d565b;
}

.venue-source {
  max-width: 960px;
  margin: 3rem 0 0;
  color: #aeb8bc;
  line-height: 1.7;
}

.split-showcase {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 720px;
  background: var(--paper);
  color: var(--ink);
}

.split-image {
  min-height: 620px;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.78) contrast(1.05);
}

.split-copy {
  padding: 8vw 6vw;
  align-self: center;
}

.split-copy .section-kicker,
.section-heading .section-kicker {
  color: var(--red);
}

.split-copy p {
  color: #4a5256;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
  border-top: 1px solid rgba(6, 7, 7, .2);
}

.mini-stats article {
  padding: 1.4rem 1rem 0 0;
  border-right: 1px solid rgba(6, 7, 7, .2);
}

.mini-stats strong {
  display: block;
  color: var(--red);
  font-family: "Barlow Condensed";
  font-size: 2.4rem;
  line-height: .9;
}

.mini-stats span {
  display: block;
  margin-top: .6rem;
  color: #596166;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.leaderboards {
  padding: 7rem 6vw;
  background: var(--paper);
  color: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 6vw;
  align-items: end;
  margin-bottom: 4rem;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.board-grid article {
  background: #fff;
  padding: 1.5rem;
  border-top: 6px solid var(--red);
  box-shadow: 0 16px 50px rgba(6, 7, 7, .08);
}

.board-grid article > span {
  color: #6f787c;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .66rem;
  font-weight: 900;
}

.board-grid h3 {
  margin: 2rem 0 1.5rem;
  font-size: 3.2rem;
  letter-spacing: -.03em;
}

.board-grid ol {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  border-top: 1px solid rgba(6, 7, 7, .14);
}

.board-grid li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem 0;
  border-bottom: 1px solid rgba(6, 7, 7, .14);
}

.board-grid li b {
  font-size: .86rem;
}

.board-grid li em {
  color: var(--red);
  font-style: normal;
  font-weight: 900;
}

.board-grid p {
  color: #525b60;
  line-height: 1.6;
}

.source-network {
  padding: 7rem 6vw;
  background: #e8e8e2;
  color: var(--ink);
}

.source-heading {
  margin-bottom: 3.5rem;
}

.source-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(6, 7, 7, .18);
}

.source-grid article {
  min-height: 330px;
  padding: 1.5rem;
  background: #fff;
  border-top: 6px solid var(--red);
  display: flex;
  flex-direction: column;
}

.source-grid span {
  color: #697379;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .64rem;
  font-weight: 900;
}

.source-grid h3 {
  margin: 2.5rem 0 1rem;
  font-size: clamp(2.4rem, 4vw, 4rem);
  letter-spacing: -.03em;
}

.source-grid p {
  color: #4d565b;
  line-height: 1.65;
}

.source-grid a {
  margin-top: auto;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .68rem;
  font-weight: 900;
  border-bottom: 2px solid var(--red);
  width: max-content;
}

.source-directory {
  margin-top: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #fff;
  border: 1px solid rgba(8, 10, 10, .12);
}

.source-directory h3 {
  margin: .35rem 0 .8rem;
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: -.04em;
  line-height: .9;
}

.source-directory > div:first-child p:last-child {
  max-width: 760px;
  color: #4d565b;
  line-height: 1.65;
}

.source-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 1.5rem;
  background: rgba(8, 10, 10, .14);
}

.source-directory-grid article {
  padding: 1.25rem;
  background:
    linear-gradient(135deg, rgba(215, 28, 44, .08), transparent 44%),
    #f5f6f4;
}

.source-directory-grid span {
  display: block;
  color: var(--red);
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .68rem;
  margin-bottom: 1rem;
}

.source-directory-grid ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #263034;
  line-height: 1.65;
}

.source-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1rem;
  background: var(--ink);
}

.source-principles article {
  min-height: 145px;
  padding: 1.3rem;
  border-right: 1px solid rgba(255, 255, 255, .16);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.source-principles b {
  color: var(--acid);
  font-family: "Barlow Condensed";
  font-size: 2.4rem;
  line-height: .9;
}

.source-principles span {
  color: #d4dcdf;
  font-size: .84rem;
  font-weight: 800;
  line-height: 1.55;
  text-transform: uppercase;
}

.data-section {
  padding: 7rem 6vw;
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.data-section::after {
  content: "LIVE";
  position: absolute;
  right: -.1em;
  bottom: -.27em;
  color: rgba(216, 255, 66, .05);
  font-family: "Barlow Condensed";
  font-size: clamp(12rem, 30vw, 30rem);
  font-weight: 900;
  line-height: .8;
}

.section-heading.light {
  position: relative;
  z-index: 1;
}

.section-heading.light .section-kicker {
  color: var(--acid);
}

.pipeline {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.pipeline article {
  min-height: 350px;
  padding: 2rem;
  background: #0c0f10;
}

.pipeline span {
  color: var(--acid);
  font-family: "Barlow Condensed";
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
}

.pipeline h3 {
  margin: 4rem 0 1rem;
  font-size: 2.4rem;
  letter-spacing: -.02em;
}

.pipeline p {
  color: #aeb8bc;
  line-height: 1.7;
}

.clubs {
  min-height: 760px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  background: var(--red);
  color: white;
}

.clubs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.2) contrast(1.06);
}

.clubs > div {
  align-self: center;
  padding: 7vw 6vw;
}

.clubs .section-kicker {
  color: var(--acid);
}

.clubs p {
  color: #ffe8e9;
  margin: 2rem 0;
  max-width: 620px;
}

footer {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 6vw;
  background: #030303;
  color: #8f989c;
  font-size: .78rem;
}

footer strong {
  color: white;
  font-family: "Barlow Condensed";
  font-size: 1.55rem;
  text-transform: uppercase;
}

footer p {
  margin: 0;
  line-height: 1.6;
}

footer a {
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: .08em;
}

@media (max-width: 980px) {
  .site-header {
    height: 72px;
  }

  .menu-button {
    display: grid;
    gap: 6px;
    margin-left: auto;
    background: var(--red);
    border: 0;
    width: 44px;
    height: 42px;
    place-content: center;
  }

  .menu-button span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
  }

  .site-header nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    margin: 0;
    padding: 1.4rem 6vw 1.8rem;
    background: #060707;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header nav.open {
    display: flex;
  }

  .hero {
    min-height: 720px;
  }

  .search-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 7rem;
  }

  .hero-copy {
    margin: 0 6vw;
    padding-bottom: 9rem;
  }

  .search-hero .hero-copy {
    margin: 0;
    padding-bottom: 0;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 16vw, 8rem);
  }

  .hero-stat {
    left: 6vw;
    right: auto;
    bottom: 2rem;
    width: 225px;
  }

  .search-intro,
  .answer-card,
  .powered-by,
  .vision-band > div:first-child,
  .wiscombe-hero,
  .event-index,
  .source-panel,
  .venue-feature,
  .venue-columns,
  .split-showcase,
  .section-heading,
  .clubs {
    grid-template-columns: 1fr;
  }

  .prompt-grid,
  .result-grid,
  .archive-live-panel,
  .discipline-grid,
  .record-strip,
  .wiscombe-data-grid,
  .venue-list,
  .board-grid,
  .source-grid,
  .source-directory-grid,
  .pipeline {
    grid-template-columns: 1fr 1fr;
  }

  .hero-result-grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 0;
  }

  .answer-card {
    align-items: start;
  }

  .time-readout {
    text-align: left;
  }

  .split-image {
    min-height: 460px;
  }

  .source-panel div {
    justify-content: flex-start;
  }

  .clubs img {
    height: 430px;
  }

  footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .brand strong {
    font-size: 1.15rem;
  }

  .brand span {
    width: 36px;
    height: 36px;
    box-shadow: 4px 4px 0 var(--acid);
  }

  .hero {
    min-height: 680px;
  }

  .search-hero {
    min-height: auto;
    padding-top: 6rem;
  }

  .hero-copy {
    padding-bottom: 8rem;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(260px, 100%);
  }

  .search-lab,
  .leaderboards,
  .data-section {
    padding: 5rem 6vw;
  }

  .search-row,
  .prompt-grid,
  .result-grid,
  .discipline-grid,
  .record-strip,
  .wiscombe-data-grid,
  .year-grid,
  .venue-list,
  .board-grid,
  .source-grid,
  .source-directory-grid,
  .source-principles,
  .pipeline,
  .archive-live-panel,
  .mini-stats {
    grid-template-columns: 1fr;
  }

  .hero-search-panel {
    box-shadow: 8px 8px 0 var(--red);
  }

  .hero-search-panel .search-row button {
    min-height: 58px;
  }

  .powered-strip {
    grid-template-columns: 1fr;
  }

  .search-row button {
    min-height: 52px;
  }

  .search-panel {
    box-shadow: 8px 8px 0 rgba(227, 38, 46, .78);
  }

  .search-intro h2,
  .vision-band h2,
  .wiscombe-hero h2,
  .split-copy h2,
  .section-heading h2,
  .clubs h2 {
    font-size: clamp(3.4rem, 14vw, 5.4rem);
  }

  .answer-card {
    padding: 2rem 0;
  }

  .split-copy,
  .clubs > div {
    padding: 5rem 6vw;
  }

  .pipeline article {
    min-height: 260px;
  }
}

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

  .ticker div {
    animation: none;
  }
}
