* {
  box-sizing: border-box;
}

:root {
  --bg: #09111f;
  --bg-deep: #040812;
  --surface: #111c31;
  --surface-strong: #18243e;
  --surface-soft: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.12);
  --text: #eef3ff;
  --muted: #bfcae6;
  --ice: #b7f0ff;
  --lime: #d5ff5f;
  --orange: #ff7f32;
  --red: #ff4d36;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 127, 50, 0.18), transparent 22%),
    radial-gradient(circle at 86% 12%, rgba(213, 255, 95, 0.14), transparent 24%),
    linear-gradient(180deg, #08111f 0%, #060b15 46%, #040812 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 96%);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

figure {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(1280px, calc(100% - 28px));
  margin: 0 auto;
  padding: 18px 0 28px;
}

.masthead,
.subhead,
.story-band,
.split-highlight,
.closing-band {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(155deg, rgba(255, 127, 50, 0.09), transparent 32%),
    linear-gradient(210deg, rgba(183, 240, 255, 0.08), transparent 28%),
    rgba(10, 18, 33, 0.9);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.brand-top,
.kicker,
.label-tag,
.ticker-row span {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
}

.brand-top {
  color: var(--ice);
}

.brand-main {
  font-family: "Archivo Expanded", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 800;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-links a,
.button,
.nav-toggle {
  border-radius: 999px;
  transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.nav-links a {
  padding: 11px 15px;
  border: 1px solid transparent;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
  border-color: rgba(213, 255, 95, 0.35);
  background: rgba(255, 255, 255, 0.05);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  padding: 10px 16px;
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.hero-board,
.subhead-content,
.culture-banner,
.split-highlight,
.contrast-layout,
.closing-layout {
  display: grid;
  gap: 22px;
}

.hero-board {
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  padding: clamp(22px, 4vw, 34px);
  align-items: stretch;
}

.hero-copy,
.subhead-content > div,
.culture-copy,
.highlight-copy,
.contrast-copy,
.closing-copy {
  align-self: center;
}

.hero-copy h1,
.subhead h1,
.culture-copy h1,
.section-heading h2,
.highlight-copy h2,
.contrast-copy h2,
.culture-card h2 {
  margin: 0;
  font-family: "Archivo Expanded", sans-serif;
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero-copy h1 {
  font-size: clamp(2.9rem, 6.6vw, 5.8rem);
  max-width: 10ch;
}

.subhead h1,
.culture-copy h1 {
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  max-width: 12ch;
}

.section-heading h2,
.highlight-copy h2,
.contrast-copy h2,
.culture-card h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.lead,
.feature-panel p,
.story-columns p,
.highlight-copy p,
.contrast-copy p,
.game-card p,
.culture-card p,
.closing-copy p,
.site-footer p {
  color: var(--muted);
  line-height: 1.78;
  font-size: 1.02rem;
}

.kicker,
.label-tag {
  color: var(--lime);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  font-weight: 700;
}

.button:hover,
.nav-links a:hover,
.nav-toggle:hover {
  transform: translateY(-2px);
}

.button-solid {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff9f3;
}

.button-outline {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

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

.ticker-row span {
  padding: 13px 14px;
  border-radius: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-collage {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  grid-template-rows: repeat(2, minmax(180px, 1fr));
  gap: 16px;
  min-height: 100%;
}

.collage-main,
.collage-card,
.subhead-photo,
.feature-panel.image-panel,
.ribbon-shot,
.aside-photo,
.contrast-photo,
.essay-grid figure,
.culture-card figure,
.culture-card.tall-photo,
.closing-photo,
.game-card.photo-card {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 100%;
}

.tall-frame {
  grid-row: 1 / span 2;
}

.short-frame {
  min-height: 200px;
}

.accent-frame {
  outline: 2px solid rgba(213, 255, 95, 0.32);
  outline-offset: -10px;
}

.page-stack {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.72fr 0.88fr;
  gap: 18px;
}

.feature-panel,
.game-card,
.culture-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(17, 28, 49, 0.88);
  padding: 24px;
  box-shadow: var(--shadow);
}

.statement-panel {
  min-height: 100%;
}

.data-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(213, 255, 95, 0.15), transparent 45%),
    rgba(17, 28, 49, 0.92);
}

.data-panel strong {
  font-family: "Archivo Expanded", sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2.3rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.feature-panel.image-panel {
  padding: 0;
}

.story-band,
.closing-band {
  padding: clamp(24px, 4vw, 34px);
}

.section-heading {
  display: grid;
  gap: 8px;
}

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

.story-columns article,
.quote-card {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.story-columns h3,
.game-card h2,
.game-card h3,
.culture-card h3 {
  margin-top: 0;
  font-size: 1.2rem;
}

.media-ribbon {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 14px;
}

.ribbon-shot {
  min-height: 220px;
}

.ribbon-wide {
  min-height: 260px;
}

.split-highlight {
  grid-template-columns: 1.08fr 0.92fr;
  padding: clamp(24px, 4vw, 34px);
  align-items: center;
}

.stacked-aside {
  display: grid;
  gap: 16px;
}

.quote-card p {
  margin-bottom: 0;
  font-size: 1.15rem;
  color: var(--text);
}

.aside-photo {
  min-height: 320px;
}

.subhead-content,
.culture-banner {
  grid-template-columns: 1fr 0.95fr;
  padding: clamp(22px, 4vw, 32px);
  align-items: stretch;
}

.subhead-photo {
  min-height: 360px;
}

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

.portrait-photo {
  min-height: 390px;
}

.grid-cards {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr 1fr;
  gap: 16px;
}

.emphasis-card {
  background:
    linear-gradient(180deg, rgba(255, 77, 54, 0.12), transparent 52%),
    rgba(17, 28, 49, 0.92);
}

.photo-card {
  padding: 0;
}

.contrast-layout {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(10, 18, 33, 0.88);
  padding: clamp(18px, 3vw, 24px);
  box-shadow: var(--shadow);
}

.contrast-photo {
  min-height: 360px;
}

.photo-essay {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(10, 18, 33, 0.88);
  padding: clamp(24px, 4vw, 30px);
  box-shadow: var(--shadow);
}

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

.essay-grid figure {
  min-height: 220px;
  margin: 0;
}

.culture-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.9fr 0.8fr 0.8fr 0.9fr;
  gap: 16px;
}

.tall-copy,
.tall-photo {
  grid-row: span 2;
}

.tall-photo {
  padding: 0;
}

figure.culture-card {
  padding: 0;
  overflow: hidden;
}

.closing-layout {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  margin-top: 20px;
}

.closing-photo {
  min-height: 320px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 22px 10px 6px;
}

@media (max-width: 1120px) {
  .hero-board,
  .subhead-content,
  .culture-banner,
  .split-highlight,
  .contrast-layout,
  .closing-layout,
  .editorial-grid,
  .grid-cards,
  .culture-grid,
  .story-columns,
  .media-ribbon,
  .essay-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-grid .statement-panel,
  .grid-cards .emphasis-card,
  .culture-grid .tall-copy {
    grid-column: 1 / -1;
  }

  .tall-copy,
  .tall-photo {
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100%, calc(100% - 18px));
  }

  .site-nav {
    position: relative;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    padding-top: 10px;
    flex-direction: column;
    align-items: stretch;
  }

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

  .nav-links a {
    text-align: center;
  }

  .hero-board,
  .subhead-content,
  .culture-banner,
  .split-highlight,
  .contrast-layout,
  .closing-layout,
  .editorial-grid,
  .grid-cards,
  .culture-grid,
  .story-columns,
  .media-ribbon,
  .essay-grid,
  .ticker-row,
  .hero-collage {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .subhead h1,
  .culture-copy h1 {
    max-width: none;
  }

  .tall-frame {
    grid-row: auto;
  }

  .ribbon-shot,
  .ribbon-wide,
  .subhead-photo,
  .wide-photo,
  .portrait-photo,
  .contrast-photo,
  .closing-photo,
  .aside-photo,
  .essay-grid figure {
    min-height: 240px;
  }

  .site-footer {
    padding-inline: 4px;
  }
}
