:root {
  --ink: #f7f7f8;
  --ink-soft: #c4c7cf;
  --paper: #09090d;
  --panel: #14141b;
  --panel-strong: #1e1f29;
  --muted: #252632;
  --line: rgba(255, 255, 255, 0.13);
  --red: #e61f33;
  --red-dark: #9f1020;
  --red-soft: #ff5265;
  --steel: #858b98;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(9, 9, 13, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: var(--red);
  border: 3px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.site-nav a {
  padding: 9px 12px;
  border-radius: 6px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  min-height: calc(100vh - 73px);
  padding: clamp(44px, 7vw, 100px) clamp(18px, 5vw, 78px);
  background:
    radial-gradient(circle at 18% 18%, rgba(230, 31, 51, 0.34), transparent 28%),
    radial-gradient(circle at 88% 24%, rgba(255, 255, 255, 0.12), transparent 22%),
    linear-gradient(135deg, #050507 0%, #101018 52%, #23070d 100%);
}

.hero-copy {
  container-type: inline-size;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(4.8rem, 11vw, 10.5rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1 {
  overflow-wrap: normal;
  word-break: normal;
  white-space: nowrap;
}

@supports (font-size: 1cqw) {
  .hero-copy h1 {
    font-size: clamp(4.8rem, 22cqw, 10.5rem);
  }
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 16px;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.position-line {
  margin: 20px 0;
  color: var(--red-soft);
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 900;
}

.hero-statement {
  max-width: 720px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 2px solid var(--white);
  border-radius: 7px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  background: var(--white);
  color: #0b0b10;
}

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

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

.button.secondary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.hero-media {
  position: relative;
}

.photo-placeholder,
.video-placeholder {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 280px;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(17, 17, 24, 0.72), rgba(17, 17, 24, 0.18)),
    var(--photo, linear-gradient(135deg, transparent, transparent)),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.17) 0 12px,
      rgba(255, 255, 255, 0.05) 12px 24px
    ),
    #20222b;
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--white);
  text-align: center;
}

.photo-placeholder img,
.video-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.photo-placeholder::after,
.video-placeholder::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(135deg, rgba(17, 17, 24, 0.18), rgba(17, 17, 24, 0));
  pointer-events: none;
}

.photo-placeholder span,
.video-placeholder strong,
.photo-placeholder small,
.video-placeholder small,
.play-icon {
  position: relative;
  z-index: 2;
}

.photo-placeholder span,
.video-placeholder strong {
  display: block;
  max-width: 22ch;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 900;
  line-height: 1.08;
}

.photo-placeholder small,
.video-placeholder small {
  display: block;
  max-width: 36ch;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.photo-placeholder.has-media span,
.photo-placeholder.has-media small,
.video-placeholder.has-media strong,
.video-placeholder.has-media small {
  display: none;
}

.hero-photo {
  min-height: clamp(440px, 62vh, 720px);
}

.jersey-card {
  position: absolute;
  right: clamp(12px, 3vw, 32px);
  bottom: clamp(12px, 3vw, 32px);
  display: grid;
  min-width: 190px;
  padding: 18px;
  background: rgba(12, 12, 17, 0.92);
  border: 1px solid var(--line);
  border-left: 8px solid var(--red);
  border-radius: 8px;
  box-shadow: var(--shadow);
  gap: 2px;
}

.jersey-number {
  font-size: 3.4rem;
  font-weight: 950;
  line-height: 1;
}

.quote-band {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 78px);
  background: #000000;
  color: var(--white);
  text-align: center;
}

.quote-band p {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 850;
}

.quote-band span {
  color: var(--red-soft);
  font-weight: 900;
}

.section,
.film-section,
.contact-section {
  padding: clamp(56px, 8vw, 110px) clamp(18px, 5vw, 78px);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 34px;
}

.section-heading p:last-child {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.featured-stats article {
  min-height: 160px;
  padding: 24px;
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  border: 1px solid var(--line);
  border-top: 8px solid var(--red);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
}

.featured-stats span {
  display: block;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 950;
  line-height: 1;
}

.featured-stats p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-weight: 900;
}

.career-panel {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.career-total {
  display: grid;
  min-height: 128px;
  align-content: center;
  padding: 18px;
  background: #151620;
}

.career-total strong {
  font-size: clamp(1.9rem, 3.4vw, 3.2rem);
  line-height: 1;
}

.career-total span {
  margin-top: 8px;
  color: var(--ink-soft);
  font-weight: 850;
}

.stat-sheet {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 24px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stat-sheet h3 {
  margin-bottom: 8px;
}

.stat-sheet p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 850;
}

.stat-sheet dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stat-sheet dl div {
  min-height: 86px;
  padding: 14px;
  background: #101119;
}

.stat-sheet dt {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 850;
}

.stat-sheet dd {
  margin: 8px 0 0;
  font-size: 1.75rem;
  font-weight: 950;
  line-height: 1;
}

.split-section,
.character-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  margin-top: clamp(36px, 5vw, 70px);
}

.insight-card {
  padding: clamp(24px, 4vw, 40px);
  background: linear-gradient(135deg, #0b0b10, #1f070d);
  border-radius: 8px;
  color: var(--white);
}

.insight-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 1.2rem;
}

.insight-card li {
  color: rgba(255, 255, 255, 0.84);
}

.insight-card strong {
  color: var(--red-soft);
}

.photo-stack {
  display: grid;
  gap: 16px;
}

.photo-stack .photo-placeholder {
  min-height: 230px;
}

.film-section {
  background: #0f1017;
}

.media-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 16px;
}

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

.playlist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.playlist-card {
  overflow: hidden;
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.34);
}

.playlist-player {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(230, 31, 51, 0.34), rgba(0, 0, 0, 0.7)),
    #151620;
}

.playlist-poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #050507;
  object-fit: contain;
  pointer-events: none;
}

.playlist-card.is-playing .playlist-poster {
  opacity: 0;
}

.playlist-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  padding: 0;
  background: rgba(230, 31, 51, 0.94);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.46);
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.playlist-play span {
  width: 26px;
  height: 30px;
  margin-left: 5px;
  background: var(--white);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.playlist-play:hover {
  background: var(--red-dark);
}

.playlist-card.is-playing .playlist-play {
  display: none;
}

.playlist-player video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #050507;
  object-fit: contain;
}

.playlist-copy {
  display: grid;
  gap: 6px;
  padding: 18px 18px 12px;
}

.playlist-copy span {
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 950;
}

.playlist-copy small {
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.playlist-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0 18px 18px;
}

.playlist-buttons button {
  min-height: 42px;
  padding: 10px 12px;
  background: #0b0b10;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink-soft);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.playlist-buttons button:hover,
.playlist-buttons button.is-active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.video-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.34);
}

.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, rgba(230, 31, 51, 0.34), rgba(0, 0, 0, 0.7)),
    #151620;
  object-fit: cover;
}

.video-card-copy {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.video-card-copy span {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 950;
}

.video-card-copy small {
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.video-placeholder {
  min-height: 500px;
  grid-row: span 2;
  background:
    linear-gradient(135deg, rgba(190, 30, 45, 0.78), rgba(17, 17, 24, 0.36)),
    var(--poster, linear-gradient(135deg, transparent, transparent)),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.16) 0 14px,
      rgba(255, 255, 255, 0.04) 14px 28px
    ),
    #1b1c25;
  background-position: center;
  background-size: cover;
}

.play-icon {
  width: 78px;
  height: 78px;
  margin-bottom: 18px;
  background: var(--red);
  clip-path: polygon(24% 14%, 24% 86%, 88% 50%);
}

.seasons-section {
  background: var(--paper);
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.season-grid article {
  min-height: 210px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.season-grid article:nth-child(3n + 1) {
  border-top: 7px solid var(--red);
}

.season-grid article:nth-child(3n + 2) {
  border-top: 7px solid var(--white);
}

.season-grid article:nth-child(3n) {
  border-top: 7px solid var(--steel);
}

.season-grid span,
.season-grid strong {
  display: block;
}

.season-grid span {
  color: var(--red-soft);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.season-grid strong {
  margin-top: 8px;
  font-size: 1.35rem;
  line-height: 1.1;
}

.season-grid p {
  margin: 18px 0 0;
  color: var(--ink-soft);
}

.character-section {
  margin-top: 0;
  background: linear-gradient(135deg, #1a1a22, #07070a);
}

.character-deck {
  position: relative;
  min-height: 690px;
}

.deck-card {
  position: absolute;
  width: min(47%, 300px);
  min-height: 230px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}

.deck-card-one {
  top: 0;
  left: 3%;
  z-index: 8;
  transform: rotate(-4deg);
}

.deck-card-two {
  top: 34px;
  right: 4%;
  z-index: 7;
  transform: rotate(5deg);
}

.deck-card-three {
  top: 180px;
  left: 14%;
  z-index: 6;
  transform: rotate(3deg);
}

.deck-card-four {
  top: 214px;
  right: 0;
  z-index: 5;
  transform: rotate(-5deg);
}

.deck-card-five {
  top: 348px;
  left: 0;
  z-index: 4;
  transform: rotate(5deg);
}

.deck-card-six {
  top: 390px;
  right: 12%;
  z-index: 3;
  transform: rotate(-3deg);
}

.deck-card-seven {
  top: 510px;
  left: 18%;
  z-index: 2;
  transform: rotate(-5deg);
}

.deck-card-eight {
  top: 540px;
  right: 1%;
  z-index: 1;
  transform: rotate(4deg);
}

.deck-card:hover {
  z-index: 10;
  transform: rotate(0deg) translateY(-8px);
}

.character-section > div:first-child p:last-child,
.contact-section > div:first-child p:last-child {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.wide-photo {
  min-height: 430px;
}

.contact-section {
  margin-top: 0;
  background: linear-gradient(135deg, #000000, #21050b);
  color: var(--white);
}

.contact-section .eyebrow {
  color: var(--red-soft);
}

.contact-section > div:first-child p:last-child {
  color: rgba(255, 255, 255, 0.78);
}

.contact-card {
  padding: clamp(24px, 4vw, 36px);
  background: var(--white);
  border-radius: 8px;
  color: #0b0b10;
}

.contact-card p {
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid rgba(11, 11, 16, 0.16);
}

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

.social-link {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 16px;
  background: #0b0b10;
  border: 2px solid var(--red);
  border-radius: 8px;
  color: var(--white);
  text-decoration: none;
}

.social-link:hover {
  background: var(--red);
}

.social-link img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
}

.social-link strong,
.social-link small {
  display: block;
}

.social-link small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 5vw, 78px);
  background: #000000;
  color: var(--white);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--red-soft);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .character-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .stat-grid,
  .career-panel,
  .stat-sheet dl,
  .season-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-sheet {
    grid-template-columns: 1fr;
  }

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

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

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

  .video-placeholder {
    grid-column: 1 / -1;
    min-height: 380px;
  }

  .character-deck {
    min-height: 690px;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .site-nav a {
    padding-inline: 8px;
  }

  .hero-actions,
  .quote-band,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .jersey-card {
    position: static;
    margin-top: 14px;
  }

  .hero-photo,
  .wide-photo,
  .video-placeholder {
    min-height: 320px;
  }

  .character-deck {
    display: grid;
    min-height: auto;
    gap: 16px;
  }

  .deck-card {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 300px;
    transform: none;
  }

  .deck-card:hover {
    transform: none;
  }

  .stat-grid,
  .career-panel,
  .stat-sheet dl,
  .media-grid,
  .season-grid {
    grid-template-columns: 1fr;
  }
}
