:root {
  --asphalt: #05070a;
  --paper: #f4efe4;
  --blue: #1447ff;
  --red: #f0322f;
  --silver: #b8c0cc;
  --ink: #101114;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--asphalt);
  color: var(--paper);
  font-family: Inter, Aptos, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.topbar {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 46px);
  background: linear-gradient(180deg, rgba(5, 7, 10, 0.82), rgba(5, 7, 10, 0));
}

.brand,
.topbar a {
  color: var(--paper);
  text-decoration: none;
}

.brand {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 28px;
  letter-spacing: 0;
  font-style: italic;
}

.brand span {
  color: var(--blue);
}

.topbar nav {
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: end;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heroScrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.86), rgba(5, 7, 10, 0.18) 54%, rgba(5, 7, 10, 0.72)),
    linear-gradient(0deg, rgba(5, 7, 10, 0.92), transparent 44%);
}

.heroCopy {
  position: relative;
  width: min(760px, calc(100% - 36px));
  padding: 0 0 clamp(44px, 8vw, 92px) clamp(18px, 7vw, 86px);
  animation: rise 900ms ease-out both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--silver);
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

h1,
h2 {
  margin: 0;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(62px, 13vw, 170px);
  line-height: 0.82;
}

h2 {
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.9;
}

.heroCopy p:not(.eyebrow),
.sectionHead p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(244, 239, 228, 0.78);
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.45;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  margin-top: 14px;
  padding: 0 18px;
  color: var(--paper);
  background: var(--blue);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.06em;
  transform: skew(-10deg);
}

.button::after {
  content: "";
  width: 28px;
  height: 2px;
  margin-left: 12px;
  background: var(--red);
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 4vw, 46px);
}

.dark {
  background: var(--asphalt);
  color: var(--paper);
}

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

.paper .eyebrow {
  color: #5e6874;
}

.paper .sectionHead p:not(.eyebrow) {
  color: rgba(16, 17, 20, 0.72);
}

.sectionHead {
  max-width: var(--max);
  margin: 0 auto clamp(24px, 4vw, 48px);
}

.posterPair,
.jerseyGrid,
.portraitGrid,
.wideMedia,
.videoGrid {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.posterPair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.posterPair figure,
.jerseyGrid figure,
.portraitGrid figure,
.wideMedia figure {
  margin: 0;
}

.posterPair img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

figcaption {
  margin-top: 10px;
  color: currentColor;
  opacity: 0.72;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.wideMedia {
  display: grid;
  gap: 36px;
}

.wideMedia img,
.jerseyGrid img,
.portraitGrid img {
  width: 100%;
  height: auto;
}

.jerseyGrid,
.portraitGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 46px);
  align-items: start;
}

.videoGrid {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.videoGrid video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
}

.final {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(280px, 1.25fr);
  gap: clamp(24px, 5vw, 72px);
  background: var(--paper);
  color: var(--ink);
}

.final > * {
  width: min(100%, var(--max));
}

.promptList {
  margin: 0;
  padding-left: 24px;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.35;
}

.promptList li + li {
  margin-top: 16px;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  .topbar {
    height: 58px;
  }

  .topbar nav {
    display: none;
  }

  .heroCopy {
    padding-left: 18px;
  }

  .posterPair,
  .jerseyGrid,
  .portraitGrid,
  .final {
    grid-template-columns: 1fr;
  }

  .videoGrid {
    grid-template-columns: repeat(5, 72vw);
  }
}
