:root {
  --ink: #050607;
  --ink-soft: #0c1012;
  --paper: #ebe8df;
  --paper-bright: #f7f4ed;
  --red: #e00007;
  --red-bright: #ff3038;
  --red-dark: #a60005;
  --cyan: #72f5f3;
  --line-dark: rgba(5, 6, 7, 0.2);
  --line-light: rgba(255, 255, 255, 0.2);
  --header-height: 92px;
  --shell: 1280px;
  --gutter: clamp(1rem, 4vw, 3.5rem);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--ink);
  color: var(--paper-bright);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
summary {
  font: inherit;
}

button {
  color: inherit;
}

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

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

.button:focus-visible,
.site-nav__steam:focus-visible,
.gallery__item:focus-visible {
  outline: 0;
  box-shadow: inset 0 0 0 3px var(--cyan), 0 0 0 3px var(--ink);
}

::selection {
  background: var(--red);
  color: #fff;
}

.shell {
  width: min(100%, calc(var(--shell) + (var(--gutter) * 2)));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--paper-bright);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 6, 7, 0.66);
  backdrop-filter: blur(8px);
  transition: background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  border-color: var(--line-light);
  background: rgba(5, 6, 7, 0.9);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  color: #fff;
  text-decoration: none;
}

.site-brand__mark {
  color: var(--red);
  font-family: var(--display);
  font-size: 2.3rem;
  line-height: 1;
  letter-spacing: -0.04em;
  text-shadow: 0.08em 0.08em 0 rgba(0, 0, 0, 0.6);
}

.site-brand__name {
  overflow: hidden;
  max-width: 14rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.74rem;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0.15em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.4vw, 2.4rem);
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:not(.site-nav__steam)::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.site-nav a:not(.site-nav__steam):hover::after,
.site-nav a:not(.site-nav__steam):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav__steam {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 3.1rem;
  padding: 0.65rem 1.2rem;
  background: var(--red);
  color: #fff !important;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.8rem;
  min-height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle__label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.menu-toggle__icon {
  position: relative;
  display: block;
  width: 1.65rem;
  height: 1rem;
}

.menu-toggle__icon i {
  position: absolute;
  right: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: top 180ms ease, transform 180ms ease;
}

.menu-toggle__icon i:first-child {
  top: 0.15rem;
}

.menu-toggle__icon i:last-child {
  top: 0.75rem;
  width: 70%;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child {
  top: 0.45rem;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child {
  top: 0.45rem;
  width: 100%;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: clamp(760px, 94svh, 940px);
  overflow: hidden;
  isolation: isolate;
  background: #020303;
}

.hero__media,
.hero__media img,
.hero__scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media {
  z-index: -3;
  display: block;
  margin: 0;
}

.hero__media img {
  object-fit: cover;
  object-position: 55% center;
}

.hero__scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(1, 2, 2, 0.98) 0%, rgba(1, 2, 2, 0.86) 31%, rgba(1, 2, 2, 0.24) 58%, rgba(1, 2, 2, 0.05) 75%),
    linear-gradient(180deg, rgba(1, 2, 2, 0.58) 0%, transparent 24%, transparent 67%, rgba(1, 2, 2, 0.96) 100%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent 0, transparent 3px, rgba(255, 255, 255, 0.018) 4px);
  content: "";
  pointer-events: none;
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 650px) 1fr;
  align-items: center;
  min-height: clamp(860px, 100svh, 1040px);
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 7rem;
}

.hero__copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 650px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.1rem;
  color: var(--red-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 2.35rem;
  height: 3px;
  background: currentColor;
}

.hero .eyebrow,
.section--ink .eyebrow,
.steam__content .eyebrow {
  color: var(--red-bright);
}

.hero__logo-frame {
  width: min(24vw, 345px);
  margin: clamp(-4rem, -5vw, -3.2rem) 0 0.65rem -2.7rem;
}

.hero__logo-frame img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 1rem 1.7rem rgba(0, 0, 0, 0.75));
}

.hero__tagline {
  max-width: 44rem;
  margin: 0 0 1.15rem;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(2.35rem, 3.6vw, 3.8rem);
  font-weight: 900;
  letter-spacing: 0.015em;
  line-height: 0.98;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.hero__tagline strong {
  color: var(--red);
  font-weight: inherit;
}

.hero__summary {
  max-width: 36rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 3.35rem;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
}

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

.button--primary {
  background: var(--red);
  color: #fff;
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--red-dark);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(5, 6, 7, 0.3);
  color: #fff;
  backdrop-filter: blur(6px);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.button--large {
  min-height: 4rem;
  padding-inline: 1.7rem;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 2rem 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  list-style: none;
  text-transform: uppercase;
}

.hero__facts li {
  display: flex;
  align-items: center;
}

.hero__facts li:not(:last-child)::after {
  width: 3px;
  height: 3px;
  margin-inline: 0.8rem;
  background: var(--red);
  content: "";
}

.playtest-banner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.2rem 1.25rem;
  width: min(100%, 38rem);
  margin-top: 1.7rem;
  padding: 1.25rem 1.45rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-left: 6px solid var(--red);
  background: rgba(4, 6, 7, 0.84);
  box-shadow: 0 1.25rem 4rem rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(12px);
}

.playtest-banner span,
.playtest-banner strong {
  display: block;
}

.playtest-banner__label {
  grid-row: 1 / span 2;
  padding-right: 1.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--red-bright);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.playtest-banner strong {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  letter-spacing: 0.035em;
  line-height: 1;
  text-transform: uppercase;
}

.playtest-banner__meta {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
}

.hero__scroll {
  position: absolute;
  bottom: 1.65rem;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero__scroll i {
  position: relative;
  display: block;
  width: 1px;
  height: 2.4rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.hero__scroll i::after {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 70%;
  background: var(--red);
  content: "";
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateY(0); }
  100% { transform: translateY(300%); }
}

.section {
  position: relative;
  padding-block: clamp(5.5rem, 10vw, 9rem);
}

.intro,
.builds,
.steam {
  background: var(--paper);
  color: var(--ink);
}

.community {
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.community::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(5, 6, 7, 0.99) 0%, rgba(5, 6, 7, 0.92) 48%, rgba(5, 6, 7, 0.72) 100%),
    url("./Assets/02_KeyArt/Main.png") 64% center / cover no-repeat;
  content: "";
}

.community__glow {
  position: absolute;
  z-index: -1;
  top: -12rem;
  right: -8rem;
  width: 42rem;
  height: 42rem;
  border: 8rem solid rgba(224, 0, 7, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.community .section-heading h2 em {
  color: var(--red-bright);
}

.community__lead {
  max-width: 27rem;
  margin: 0;
  padding-left: 1.3rem;
  border-left: 3px solid var(--red);
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.community-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  text-decoration: none;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}

.community-card:focus-visible {
  outline: 0;
  box-shadow: inset 0 0 0 3px var(--cyan);
}

.community-card--primary {
  grid-column: span 6;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  min-height: 22rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(145deg, rgba(224, 0, 7, 0.95), rgba(112, 0, 4, 0.94));
  transition: border-color 180ms ease, transform 180ms ease;
}

.community-card--primary:nth-child(2) {
  background: linear-gradient(145deg, rgba(17, 20, 22, 0.98), rgba(2, 3, 3, 0.98));
}

.community-card--primary:hover,
.community-card--primary:focus-visible,
.community-card--press:hover,
.community-card--press:focus-visible {
  border-color: #fff;
  transform: translateY(-0.25rem);
}

.community-card--primary img {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: start;
  width: clamp(4rem, 8vw, 7rem);
  height: clamp(4rem, 8vw, 7rem);
  object-fit: contain;
}

.community-card--primary strong,
.community-card--press strong {
  align-self: end;
  font-family: var(--display);
  font-size: clamp(3.8rem, 8vw, 7rem);
  letter-spacing: -0.02em;
  line-height: 0.85;
  text-transform: uppercase;
}

.community-card__label {
  align-self: start;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.community-card__link {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.community-card--press {
  grid-column: span 9;
  display: grid;
  min-height: 14rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.98), rgba(5, 6, 7, 0.5)),
    url("./Assets/02_KeyArt/Main.png") 64% center / cover no-repeat;
  transition: border-color 180ms ease, transform 180ms ease;
}

.community-card--press strong {
  margin-top: 2.2rem;
  font-size: clamp(3.2rem, 6.3vw, 5.8rem);
}

.community-card--press .community-card__link {
  margin-top: 1.5rem;
}

.community-card--email {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 14rem;
  padding: clamp(1.35rem, 2.2vw, 2rem);
  background: rgba(255, 255, 255, 0.055);
  font-style: normal;
}

.community-card--email a {
  font-size: 0.78rem;
  font-weight: 800;
  overflow-wrap: anywhere;
  text-decoration-color: var(--red-bright);
  text-underline-offset: 0.3em;
}

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

.section-heading {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.7fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 7rem);
}

.section-heading h2,
.builds__copy h2,
.steam__content h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(3.2rem, 7vw, 7.2rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.86;
  text-transform: uppercase;
}

.section-heading h2 em {
  color: var(--red);
  font-style: normal;
}

.section--ink .section-heading h2 {
  color: #fff;
}

.section-heading__lead {
  max-width: 35rem;
  margin: 0 0 0.2rem;
  padding-left: 1.3rem;
  border-left: 3px solid var(--red);
  color: rgba(5, 6, 7, 0.68);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  line-height: 1.65;
}

.section-heading__aside {
  align-self: end;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.how-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(19rem, 0.72fr);
  align-items: stretch;
  gap: clamp(2rem, 5vw, 5rem);
}

.media-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 1.8rem 4rem rgba(5, 6, 7, 0.16);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.media-card::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  content: "";
  pointer-events: none;
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: 33rem;
  object-fit: cover;
}

.media-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(90deg, rgba(5, 6, 7, 0.95), rgba(5, 6, 7, 0.48));
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.media-card figcaption span {
  color: var(--red-bright);
  font-family: var(--display);
  font-size: 1.2rem;
}

.how-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.how-list li {
  position: relative;
  display: grid;
  grid-template-columns: 3.4rem 1fr;
  gap: 1.1rem;
  padding-block: 1.7rem;
  border-bottom: 1px solid var(--line-dark);
}

.how-list li::before {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transition: width 300ms ease;
}

.how-list li:hover::before {
  width: 100%;
}

.how-list__number {
  color: var(--red-dark);
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1;
}

.how-list h3 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.5vw, 2.3rem);
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.how-list p {
  margin: 0;
  color: rgba(5, 6, 7, 0.62);
  font-size: 0.94rem;
  line-height: 1.7;
}

.trailer {
  overflow: hidden;
}

.trailer::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 16%, rgba(0, 218, 224, 0.1), transparent 28%),
    linear-gradient(120deg, transparent 62%, rgba(224, 0, 7, 0.08));
  content: "";
  pointer-events: none;
}

.featured-video {
  position: relative;
}

.featured-video__frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.23);
  background: #000;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.46);
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.featured-video__frame::before,
.featured-video__frame::after {
  position: absolute;
  z-index: 2;
  width: 4.5rem;
  height: 4px;
  background: var(--red);
  content: "";
  pointer-events: none;
}

.featured-video__frame::before {
  top: 0;
  left: 1.25rem;
}

.featured-video__frame::after {
  right: 1.25rem;
  bottom: 0;
}

.featured-video video,
.secondary-trailer video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  object-fit: contain;
}

.featured-video__meta {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-video__meta > div {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.featured-video__meta h3 {
  margin: 0;
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

.featured-video__index {
  color: var(--red-bright);
}

.secondary-trailer {
  margin-top: 2.5rem;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.secondary-trailer summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.5rem;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  list-style: none;
  text-transform: uppercase;
}

.secondary-trailer summary::-webkit-details-marker {
  display: none;
}

.secondary-trailer summary::after {
  order: 3;
  margin-left: 1.2rem;
  color: var(--red);
  content: "+";
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
}

.secondary-trailer[open] summary::after {
  content: "−";
}

.secondary-trailer summary b {
  margin-right: 1rem;
  color: var(--red-bright);
}

.secondary-trailer__duration {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.6);
}

.secondary-trailer__video {
  padding-bottom: 1.5rem;
}

.builds {
  overflow: hidden;
}

.builds__grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.builds__copy h2 {
  max-width: 9ch;
  overflow-wrap: anywhere;
}

.builds__lead {
  max-width: 33rem;
  margin: 1.8rem 0 2.2rem;
  color: rgba(5, 6, 7, 0.65);
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
}

.signal-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.signal-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 0.9rem;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signal-list li span {
  color: var(--red-dark);
  font-family: var(--display);
  font-size: 1.2rem;
}

.builds__visual {
  position: relative;
  min-height: clamp(31rem, 48vw, 42rem);
}

.builds__image {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 2rem 5rem rgba(5, 6, 7, 0.22);
}

.builds__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.builds__image--back {
  top: 0;
  right: -7%;
  width: 78%;
  aspect-ratio: 16 / 9;
  transform: rotate(2.5deg);
}

.builds__image--back::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 70, 78, 0.16);
  content: "";
  pointer-events: none;
}

.builds__image--front {
  bottom: 0;
  left: 0;
  width: 82%;
  aspect-ratio: 16 / 9;
  border: 0.45rem solid var(--paper-bright);
  transform: rotate(-2deg);
}

.builds__image--front figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0.75rem 1rem;
  background: var(--red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(17rem, 29vw, 25rem);
  gap: 1rem;
}

.gallery__item {
  position: relative;
  grid-column: span 5;
  display: block;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #111;
  cursor: zoom-in;
  text-align: left;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.gallery__item--wide {
  grid-column: span 7;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 350ms ease, transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gallery__item::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, transparent 55%, rgba(3, 4, 5, 0.88));
  content: "";
  pointer-events: none;
}

.gallery__item:focus-visible::after {
  border: 3px solid var(--cyan);
}

.gallery__item > span {
  position: absolute;
  z-index: 2;
  right: 1.1rem;
  bottom: 1rem;
  left: 1.1rem;
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery__item:hover img,
.gallery__item:focus-visible img {
  filter: saturate(1.12) contrast(1.05);
  transform: scale(1.035);
}

.steam {
  overflow: hidden;
}

.steam::before {
  position: absolute;
  top: 5%;
  right: -10%;
  width: 42rem;
  height: 42rem;
  border: 8rem solid rgba(224, 0, 7, 0.05);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.steam__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(18rem, 0.62fr) minmax(0, 1.38fr);
  max-width: calc(var(--shell) + (var(--gutter) * 2));
  padding: 0;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 2rem 6rem rgba(5, 6, 7, 0.2);
  clip-path: polygon(22px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 22px);
}

.steam__art {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #03141d;
}

.steam__art::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 65%, var(--ink));
  content: "";
  pointer-events: none;
}

.steam__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.steam__content {
  padding: clamp(2.2rem, 5vw, 5rem);
}

.steam__content h2 {
  max-width: 10ch;
  color: #fff;
  font-size: clamp(3.25rem, 6vw, 6.4rem);
}

.factsheet {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 0 2rem;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.factsheet div {
  min-width: 0;
  padding: 0.85rem 1rem;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.factsheet dt {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.factsheet dd {
  margin: 0.25rem 0 0;
  overflow-wrap: anywhere;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: #020303;
  color: #fff;
}

.site-footer__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.site-footer__brand img {
  width: 11rem;
  height: auto;
  margin: -3.3rem 0 -2.9rem -1.7rem;
  mix-blend-mode: screen;
}

.site-footer__brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.74rem;
}

.site-footer__steam,
.site-footer__bottom a {
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer__steam:hover,
.site-footer__bottom a:hover {
  color: var(--red-bright);
}

.site-footer__steam {
  padding: 0.8rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-decoration: none;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem 1.7rem;
}

.policy-page {
  background:
    radial-gradient(circle at 90% 4%, rgba(224, 0, 7, 0.12), transparent 28rem),
    var(--paper);
  color: var(--ink);
}

.policy-page .site-header {
  position: fixed;
}

.policy-home-link {
  color: #fff;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.policy-home-link:hover,
.policy-home-link:focus-visible {
  color: var(--red-bright);
}

.privacy-main {
  padding-top: calc(var(--header-height) + clamp(4rem, 8vw, 7rem));
  padding-bottom: clamp(5rem, 9vw, 8rem);
}

.privacy-policy {
  width: min(100%, 62rem);
}

.privacy-policy__header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
  border-bottom: 4px solid var(--red);
}

.privacy-policy h1 {
  max-width: 13ch;
  margin: 0 0 1.5rem;
  font-family: var(--display);
  font-size: clamp(3.2rem, 8vw, 7rem);
  letter-spacing: -0.025em;
  line-height: 0.9;
  text-transform: uppercase;
}

.privacy-policy__header > p:last-child {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.privacy-policy h2 {
  margin: clamp(3.2rem, 6vw, 5rem) 0 1.4rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-dark);
  font-family: var(--display);
  font-size: clamp(2rem, 4.3vw, 3.5rem);
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.privacy-policy > p,
.privacy-policy > address {
  max-width: 76ch;
  margin: 0 0 1.35rem;
  color: rgba(5, 6, 7, 0.78);
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
  line-height: 1.8;
}

.privacy-policy a {
  color: var(--red-dark);
  font-weight: 800;
  overflow-wrap: anywhere;
  text-underline-offset: 0.22em;
}

.privacy-policy a:focus-visible {
  outline-color: var(--ink);
}

.privacy-policy__contact {
  padding: 1.3rem 1.5rem;
  border-left: 4px solid var(--red);
  background: rgba(5, 6, 7, 0.06);
  font-style: normal;
}

.lightbox {
  width: min(94vw, 92rem);
  max-width: none;
  margin: auto;
  padding: 3.6rem 4.7rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(3, 4, 5, 0.97);
  color: #fff;
  box-shadow: 0 2rem 8rem rgba(0, 0, 0, 0.8);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
}

.lightbox figure {
  margin: 0;
}

.lightbox figure img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.lightbox figcaption {
  min-height: 2rem;
  padding-top: 0.85rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.lightbox__close {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  min-height: 2.5rem;
  padding: 0.35rem 0.7rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lightbox__close span {
  margin-left: 0.35rem;
  color: var(--red-bright);
  font-size: 1.4rem;
  vertical-align: -0.08em;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  width: 3.3rem;
  height: 3.3rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(5, 6, 7, 0.85);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 160ms ease, border-color 160ms ease;
}

.lightbox__nav:hover,
.lightbox__nav:focus-visible {
  border-color: var(--red);
  background: var(--red);
}

.lightbox__nav--previous {
  left: 0.7rem;
}

.lightbox__nav--next {
  right: 0.7rem;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(1.6rem);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  :root {
    --header-height: 76px;
  }

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

  .js .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    border-bottom: 1px solid transparent;
    background: rgba(5, 6, 7, 0.97);
    opacity: 0;
    pointer-events: none;
    transition: max-height 260ms ease, opacity 180ms ease, border-color 180ms ease;
  }

  .js .site-nav.is-open {
    max-height: calc(100svh - var(--header-height));
    border-color: var(--line-light);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 3.8rem;
    margin-inline: var(--gutter);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav__steam {
    margin-block: 0.75rem;
    padding-inline: 1rem;
    border-bottom: 0 !important;
  }

  .no-js .site-header {
    position: absolute;
    height: auto;
    background: rgba(5, 6, 7, 0.96);
  }

  .no-js .site-header__inner {
    flex-wrap: wrap;
    padding-top: 1rem;
  }

  .no-js .site-nav {
    flex: 0 0 100%;
    display: grid;
    margin-top: 0.8rem;
  }

  .no-js .menu-toggle {
    display: none;
  }

  .hero__content {
    grid-template-columns: minmax(0, 590px) 1fr;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 2rem;
  }

  .section-heading__lead {
    max-width: 44rem;
  }

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

  .media-card img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .how-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-left: 1px solid var(--line-dark);
  }

  .how-list li {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    border-right: 1px solid var(--line-dark);
  }

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

  .builds__copy {
    max-width: 45rem;
  }

  .builds__visual {
    min-height: clamp(29rem, 72vw, 42rem);
  }

  .community-card--press {
    grid-column: span 8;
  }

  .community-card--email {
    grid-column: span 4;
  }

  .steam__panel {
    width: calc(100% - (var(--gutter) * 2));
    margin-inline: auto;
  }
}

@media (max-width: 780px) {
  .site-brand__name {
    display: none;
  }

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

  .how-list {
    grid-template-columns: 1fr;
  }

  .how-list li {
    grid-template-columns: 3.2rem 1fr;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery__item,
  .gallery__item--wide {
    grid-column: auto;
    aspect-ratio: 16 / 10;
  }

  .steam__panel {
    grid-template-columns: minmax(14rem, 0.7fr) minmax(0, 1.3fr);
  }

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

  .site-footer__top {
    align-items: flex-start;
    flex-direction: column;
  }

}

@media (max-width: 780px) {
  :root {
    --gutter: 1.1rem;
    --header-height: 68px;
  }

  .site-header {
    background: linear-gradient(180deg, rgba(5, 6, 7, 0.82), rgba(5, 6, 7, 0));
  }

  .hero {
    min-height: 0;
    background: #020405;
  }

  .hero__media {
    height: 100%;
  }

  .hero__media img {
    object-fit: cover;
    object-position: 70% center;
  }

  .hero__scrim {
    height: 100%;
    background:
      linear-gradient(180deg, rgba(2, 3, 4, 0.36) 0%, rgba(2, 3, 4, 0.48) 34%, rgba(2, 3, 4, 0.96) 78%, #020405 100%),
      linear-gradient(90deg, rgba(2, 3, 4, 0.84), rgba(2, 3, 4, 0.18));
  }

  .hero::after {
    height: 100%;
  }

  .hero__content {
    min-height: max(860px, 100svh);
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 4.8rem;
  }

  .hero__logo-frame {
    width: min(66vw, 17rem);
    margin: -2rem 0 0.9rem -1.7rem;
  }

  .hero__tagline {
    font-size: clamp(2.35rem, 11vw, 4.2rem);
    line-height: 1.02;
    overflow-wrap: normal;
  }

  .hero__summary {
    font-size: 0.96rem;
  }

  .hero__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero__facts {
    row-gap: 0.55rem;
  }

  .playtest-banner {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    margin-top: 1.5rem;
    padding: 1.1rem 1rem 1.15rem;
  }

  .playtest-banner strong {
    font-family: "Arial Narrow Bold", "Arial Narrow", Arial, sans-serif;
    font-size: clamp(1.35rem, 7vw, 2rem);
    font-weight: 900;
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .playtest-banner__label {
    grid-row: auto;
    padding: 0 0 0.45rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .hero__scroll {
    display: none;
  }

  .section {
    padding-block: 5.2rem;
  }

  .section-heading h2,
  .builds__copy h2,
  .steam__content h2 {
    font-size: clamp(3.1rem, 16vw, 5.2rem);
  }

  .section-heading__lead {
    padding-left: 1rem;
    font-size: 1rem;
  }

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

  .community-card--primary,
  .community-card--press,
  .community-card--email {
    grid-column: auto;
  }

  .community-card--primary {
    min-height: 18rem;
  }

  .community-card--primary strong {
    font-size: clamp(3.8rem, 20vw, 6rem);
  }

  .community-card--email {
    min-height: 8rem;
  }

  .media-card figcaption {
    align-items: flex-start;
    font-size: 0.68rem;
  }

  .featured-video__meta > div {
    display: block;
  }

  .featured-video__index {
    display: block;
    margin-bottom: 0.25rem;
  }

  .secondary-trailer summary {
    min-height: 5rem;
  }

  .secondary-trailer__duration {
    display: none;
  }

  .builds__visual {
    min-height: 84vw;
  }

  .builds__image--back {
    right: -3%;
    width: 86%;
  }

  .builds__image--front {
    width: 88%;
  }

  .gallery__item,
  .gallery__item--wide {
    aspect-ratio: 4 / 3;
  }

  .steam__panel {
    grid-template-columns: 1fr;
    width: calc(100% - (var(--gutter) * 2));
    margin-inline: auto;
  }

  .steam__art::after {
    background: linear-gradient(180deg, transparent 72%, var(--ink));
  }

  .steam__art img {
    width: auto;
    height: 35rem;
    margin-inline: auto;
    max-height: 35rem;
    object-fit: contain;
    object-position: center;
  }

  .steam__content {
    padding: 2rem 1.25rem 2.25rem;
  }

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

  .site-footer__top {
    padding-top: 3rem;
  }

  .site-footer__legal {
    justify-content: flex-start;
  }

  .policy-home-link {
    max-width: 9rem;
    font-size: 0.64rem;
    line-height: 1.25;
    text-align: right;
  }

  .privacy-policy h1 {
    font-size: clamp(2.8rem, 14vw, 4.8rem);
    hyphens: auto;
    overflow-wrap: break-word;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.7rem;
  }

  .lightbox {
    width: 100vw;
    min-height: 100dvh;
    padding: 4rem 0.75rem 5rem;
    border: 0;
  }

  .lightbox figure {
    display: grid;
    min-height: calc(100dvh - 9rem);
    align-content: center;
  }

  .lightbox__nav {
    top: auto;
    bottom: 0.85rem;
    transform: none;
  }

  .lightbox__nav--previous {
    left: calc(50% - 4rem);
  }

  .lightbox__nav--next {
    right: calc(50% - 4rem);
  }
}

@media (max-width: 380px) {
  .hero__logo-frame {
    width: 14rem;
    margin-left: -1.5rem;
  }

  .hero__tagline {
    font-family: "Arial Narrow Bold", "Arial Narrow", Arial, sans-serif;
    font-size: 10.2vw;
    font-stretch: condensed;
    letter-spacing: -0.02em;
  }

  .builds__copy h2 {
    font-size: 13vw;
  }

  .hero__facts li:not(:last-child)::after {
    margin-inline: 0.55rem;
  }

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (forced-colors: active) {
  .button:focus-visible,
  .site-nav__steam:focus-visible,
  .gallery__item:focus-visible,
    .community-card:focus-visible {
    outline: 3px solid Highlight;
    outline-offset: -3px;
  }
}
