:root {
  --ink: #090b0f;
  --ink-2: #11151c;
  --panel: #171c24;
  --paper: #f3f5f7;
  --white: #ffffff;
  --muted: #9ca5b2;
  --line: rgba(255, 255, 255, 0.14);
  --lime: #d8ff24;
  --lime-deep: #a9d400;
  --blue: #4b7cff;
  --max: 1240px;
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--lime);
  color: var(--ink);
  padding: 0.7rem 1rem;
  font-weight: 800;
  text-decoration: none;
}

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

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9, 11, 15, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 650;
  letter-spacing: 0.055em;
  white-space: nowrap;
}

.brand strong {
  color: var(--lime);
}

.brand-mark {
  width: 31px;
  height: 31px;
  fill: var(--lime);
}

.brand-cut {
  fill: var(--ink);
}

.primary-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.4vw, 2.2rem);
}

.primary-nav a,
.social-link {
  position: relative;
  color: #d8dde4;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.55rem;
  height: 2px;
  background: var(--lime);
  transition: right 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  right: 0;
}

.social-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--lime);
}

.social-link svg {
  width: 16px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
}

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

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.08);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.99) 0%, rgba(5, 7, 10, 0.86) 33%, rgba(5, 7, 10, 0.25) 68%, rgba(5, 7, 10, 0.48) 100%),
    linear-gradient(0deg, rgba(5, 7, 10, 0.96) 0%, transparent 44%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, black, transparent 70%);
}

.hero-inner {
  width: min(var(--max), calc(100% - 2rem));
  min-height: 720px;
  margin: 0 auto;
  padding: 7rem 0 9rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.eyebrow,
.kicker {
  margin: 0 0 1rem;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(216, 255, 36, 0.12);
}

.hero h1 {
  max-width: 830px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 8.1vw, 7.7rem);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-deck {
  max-width: 650px;
  margin: 1.7rem 0 0;
  color: #e3e7ed;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.25rem;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button svg {
  width: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.button-primary {
  background: var(--lime);
  color: var(--ink);
}

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

.button-ghost {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(9, 11, 15, 0.45);
  color: var(--white);
  backdrop-filter: blur(10px);
}

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

.hero-meta {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.hero-meta span {
  padding: 0 0.3rem;
  color: var(--lime);
}

.hero-side {
  position: absolute;
  right: max(1rem, calc((100vw - var(--max)) / 2));
  bottom: 2rem;
  width: min(430px, calc(100% - 2rem));
  background: rgba(10, 13, 18, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px);
}

.side-label {
  margin: 0;
  padding: 0.65rem 1rem;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-side a {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 0.7rem;
  min-height: 58px;
  padding: 0.6rem 1rem;
  border-top: 1px solid var(--line);
  text-decoration: none;
  transition: background 160ms ease;
}

.hero-side a:hover {
  background: rgba(255, 255, 255, 0.07);
}

.side-league {
  color: var(--lime);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.hero-side strong {
  font-size: 0.84rem;
  line-height: 1.25;
}

.side-arrow {
  color: var(--muted);
}

.ticker {
  overflow: hidden;
  background: var(--lime);
  color: var(--ink);
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.72rem 0;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  animation: ticker 28s linear infinite;
}

.ticker-track b {
  font-family: var(--body);
  font-size: 0.9rem;
}

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

.section-shell {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.latest {
  padding: 7rem 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 430px);
  align-items: end;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.section-heading h2,
.poll-copy h2,
.manifesto h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.1rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.section-heading > p {
  margin: 0 0 0.3rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.filters {
  display: flex;
  gap: 0.55rem;
  margin: 1.4rem 0 2rem;
  overflow-x: auto;
  scrollbar-width: thin;
  padding: 0.25rem 0 0.65rem;
}

.filter {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0.6rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: #ccd2da;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.045em;
}

.filter:hover,
.filter.is-active {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.story-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--ink-2);
  transition: background 180ms ease, transform 180ms ease;
}

.story-card:hover {
  z-index: 1;
  background: #151b23;
  box-shadow: 0 0 0 1px var(--lime);
}

.story-card.is-hidden {
  display: none;
}

.story-art {
  position: relative;
  height: 185px;
  overflow: hidden;
  background: #1b212b;
  isolation: isolate;
}

.story-art::before,
.story-art::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.story-art::before {
  background:
    radial-gradient(circle at 75% 28%, color-mix(in srgb, var(--accent) 88%, transparent) 0 6%, transparent 7%),
    linear-gradient(130deg, transparent 0 38%, color-mix(in srgb, var(--accent) 86%, transparent) 39% 62%, transparent 63%),
    repeating-linear-gradient(90deg, transparent 0 43px, rgba(255,255,255,.08) 44px 45px);
  opacity: 0.8;
}

.story-art::after {
  background: linear-gradient(0deg, rgba(9, 11, 15, 0.86), transparent 75%);
}

.story-art span {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.story-art strong {
  position: absolute;
  right: 0.8rem;
  bottom: -0.16em;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(3.3rem, 5vw, 5.4rem);
  font-style: italic;
  line-height: 0.85;
  letter-spacing: -0.03em;
  opacity: 0.96;
}

.story-art i {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  width: 44px;
  height: 5px;
  background: var(--accent);
}

.art-nfl { --accent: #42e5a6; }
.art-nba { --accent: #ff5b35; }
.art-mlb { --accent: #5c8cff; }
.art-wnba { --accent: #ffad1f; }
.art-college { --accent: #dcff29; }
.art-soccer { --accent: #ac65ff; }
.art-f1 { --accent: #ff334f; }
.art-eagles { --accent: #00a59a; }

.story-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
}

.story-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.story-meta span {
  color: var(--lime);
}

.story-copy h3 {
  margin: 0;
  font-size: 1.23rem;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.story-copy p {
  margin: 0.9rem 0 1.5rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.story-copy a {
  width: fit-content;
  margin-top: auto;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-decoration-color: var(--lime);
  text-underline-offset: 5px;
}

.story-copy a:hover {
  color: var(--lime);
}

.poll-section {
  padding-bottom: 7rem;
}

.poll-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(380px, 1.1fr);
  gap: 3rem;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--lime);
  color: var(--ink);
}

.poll-copy .kicker {
  color: var(--ink);
}

.poll-copy h2 {
  font-size: clamp(3rem, 5.7vw, 5.8rem);
}

.poll-copy > p:last-child {
  max-width: 520px;
  margin: 1.3rem 0 0;
  font-size: 1rem;
  line-height: 1.65;
}

.poll-options {
  align-self: center;
  display: grid;
  gap: 0.65rem;
}

.poll-options button {
  width: 100%;
  min-height: 62px;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(9, 11, 15, 0.35);
  background: rgba(255, 255, 255, 0.52);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-weight: 800;
  transition: background 160ms ease, transform 160ms ease;
}

.poll-options button:hover,
.poll-options button.is-selected {
  background: var(--ink);
  color: var(--white);
  transform: translateX(5px);
}

.poll-options button span {
  display: grid;
  place-items: center;
  min-height: 40px;
  background: var(--ink);
  color: var(--lime);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.poll-options button.is-selected span {
  background: var(--lime);
  color: var(--ink);
}

.poll-options button i {
  font-size: 0.68rem;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.poll-status {
  grid-column: 2;
  margin: -2rem 0 0;
  font-size: 0.78rem;
  font-weight: 700;
}

.manifesto {
  position: relative;
  min-height: 420px;
  display: grid;
  grid-template-columns: 0.45fr 1.25fr auto;
  align-items: center;
  gap: 3rem;
  padding: 5rem 0;
  border-top: 1px solid var(--line);
}

.manifesto-number {
  color: var(--lime);
  font-family: var(--display);
  font-size: clamp(7rem, 16vw, 14rem);
  line-height: 0.7;
  letter-spacing: -0.06em;
}

.manifesto h2 {
  font-size: clamp(3rem, 5.6vw, 5.8rem);
}

.manifesto-copy > p:last-child {
  max-width: 650px;
  margin: 1.2rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.button-light {
  border-color: var(--white);
  color: var(--white);
  white-space: nowrap;
}

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

.site-footer {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 1.1fr) auto;
  align-items: start;
  gap: 2rem;
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-brand span {
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.footer-brand strong {
  color: var(--lime);
}

.footer-brand p,
.source-note,
.copyright {
  margin: 0.45rem 0 0;
}

.source-note {
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 1.2rem;
}

.footer-links a {
  color: var(--white);
  text-decoration-color: var(--lime);
  text-underline-offset: 4px;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(1) {
    transform: translateY(3.5px) rotate(45deg);
  }

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

  .primary-nav {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    height: calc(100dvh - 74px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.2rem;
    padding: 2rem;
    background: rgba(9, 11, 15, 0.98);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    font-family: var(--display);
    font-size: 3.1rem;
    line-height: 1;
  }

  .social-link {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 680px;
  }

  .hero-inner {
    padding: 6rem 0 11rem;
  }

  .hero-side {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    width: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .side-label {
    position: absolute;
    left: 0;
    top: -31px;
  }

  .hero-side a {
    grid-template-columns: 1fr auto;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .hero-side a:first-of-type {
    border-left: 0;
  }

  .side-league {
    grid-column: 1 / -1;
  }

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

  .poll-panel {
    grid-template-columns: 1fr;
  }

  .poll-status {
    grid-column: 1;
    margin: -1.2rem 0 0;
  }

  .manifesto {
    grid-template-columns: 0.45fr 1fr;
  }

  .manifesto .button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .header-inner,
  .section-shell,
  .site-footer,
  .hero-inner {
    width: min(100% - 1.25rem, var(--max));
  }

  .brand {
    font-size: 0.82rem;
  }

  .brand-mark {
    width: 27px;
    height: 27px;
  }

  .hero,
  .hero-inner {
    min-height: 690px;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(5, 7, 10, 0.99) 0%, rgba(5, 7, 10, 0.58) 72%, rgba(5, 7, 10, 0.4) 100%);
  }

  .hero-grid {
    display: none;
  }

  .hero-inner {
    justify-content: flex-start;
    padding-top: 5.2rem;
    padding-bottom: 14rem;
  }

  .hero h1 {
    max-width: 95%;
    font-size: clamp(3.25rem, 16.8vw, 5rem);
  }

  .hero-deck {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-actions {
    width: 100%;
    margin-top: 1.5rem;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .hero-meta {
    display: none;
  }

  .hero-side {
    left: 0.625rem;
    right: 0.625rem;
    bottom: 0.65rem;
    grid-template-columns: 1fr;
  }

  .hero-side a {
    min-height: 48px;
    grid-template-columns: 44px 1fr auto;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .hero-side a:nth-of-type(3) {
    display: none;
  }

  .side-league {
    grid-column: auto;
  }

  .latest {
    padding: 4.5rem 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .section-heading h2,
  .poll-copy h2,
  .manifesto h2 {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

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

  .story-art {
    height: 150px;
  }

  .poll-section {
    width: 100%;
    padding-bottom: 4.5rem;
  }

  .poll-panel {
    gap: 2rem;
    padding: 2.2rem 0.75rem;
  }

  .poll-options button {
    grid-template-columns: 48px 1fr auto;
  }

  .manifesto {
    grid-template-columns: 1fr;
    gap: 1.7rem;
    min-height: 0;
    padding: 4rem 0;
  }

  .manifesto-number {
    font-size: 8rem;
  }

  .manifesto .button {
    grid-column: 1;
  }

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

  .copyright {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
