:root {
  color-scheme: dark;
  --bg: #050707;
  --bg-2: #0b1010;
  --panel: #101716;
  --panel-2: #151b18;
  --text: #f4f0e8;
  --muted: #b8beb6;
  --subtle: #768079;
  --line: rgba(244, 240, 232, 0.16);
  --red: #ff3d28;
  --red-dark: #9f180f;
  --green: #84e35e;
  --amber: #f1b34c;
  --steel: #6e8ea4;
  --shadow: rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.has-lightbox {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 61, 40, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(132, 227, 94, 0.025) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.45;
}

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

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

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

.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;
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 32px;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(5, 7, 7, 0.84), rgba(5, 7, 7, 0.08));
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header:focus-within {
  border-color: var(--line);
  background: rgba(5, 7, 7, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-name {
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(244, 240, 232, 0.78);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.primary-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid transparent;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav .is-active {
  border-color: rgba(244, 240, 232, 0.2);
  color: var(--text);
  outline: 0;
}

.primary-nav .nav-cta {
  margin-left: 8px;
  border-color: rgba(255, 61, 40, 0.8);
  background: rgba(255, 61, 40, 0.16);
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 1px solid var(--line);
  background: rgba(5, 7, 7, 0.72);
  color: var(--text);
}

.nav-toggle-line {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 132px 0 32px;
  border-bottom: 1px solid var(--line);
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: #060807 url("assets/hero-poster.png") center / cover no-repeat;
}

.hero-bg-poster,
.hero-youtube-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-bg-poster {
  z-index: 0;
}

.hero-youtube-bg {
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms ease;
}

.hero-youtube-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120vw;
  height: 67.5vw;
  min-width: 177.78vh;
  min-height: 100vh;
  border: 0;
  transform: translate(-50%, -50%);
}

.hero-video.has-youtube .hero-youtube-bg {
  opacity: 1;
}

.hero-video.has-youtube .hero-bg-poster {
  opacity: 0;
}

.hero-motion,
.hero-vignette,
.page-hero-bg::after,
.media-tile::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.hero-motion {
  z-index: 2;
  background:
    linear-gradient(100deg, rgba(255, 61, 40, 0), rgba(255, 61, 40, 0.12), rgba(255, 61, 40, 0)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 5px);
  mix-blend-mode: screen;
  opacity: 0.28;
  animation: sweep 5s linear infinite;
}

.hero-vignette {
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(5, 7, 7, 0.92) 0%, rgba(5, 7, 7, 0.62) 38%, rgba(5, 7, 7, 0.22) 68%, rgba(5, 7, 7, 0.78) 100%),
    linear-gradient(0deg, rgba(5, 7, 7, 0.92) 0%, rgba(5, 7, 7, 0.18) 44%, rgba(5, 7, 7, 0.66) 100%);
}

.hero-content {
  max-width: 620px;
  margin-bottom: 56px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.05;
  max-width: 100%;
  overflow-wrap: break-word;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 4.6rem;
  font-weight: 900;
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 18px;
  font-size: 3.65rem;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.5rem;
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 560px;
  color: rgba(244, 240, 232, 0.84);
  font-size: 1.02rem;
  line-height: 1.55;
}

.hero-title-line {
  display: block;
}

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

.hero-actions .button {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.78rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--line);
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.button-primary {
  border-color: rgba(255, 61, 40, 0.85);
  background: linear-gradient(180deg, #ff4b31, #ad1a10);
  box-shadow: 0 18px 34px rgba(159, 24, 15, 0.28);
}

.button-secondary {
  border-color: rgba(244, 240, 232, 0.28);
  background: rgba(10, 16, 16, 0.74);
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-1px);
  outline: 0;
}

.hero-status {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(244, 240, 232, 0.22);
  background:
    linear-gradient(90deg, rgba(255, 61, 40, 0.16), rgba(5, 7, 7, 0.68) 34%, rgba(5, 7, 7, 0.82)),
    rgba(5, 7, 7, 0.68);
  backdrop-filter: blur(12px);
}

.hero-status::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    repeating-linear-gradient(90deg, rgba(244, 240, 232, 0.1) 0 1px, transparent 1px 13px),
    repeating-linear-gradient(0deg, rgba(255, 61, 40, 0.12) 0 1px, transparent 1px 9px),
    linear-gradient(90deg, rgba(255, 61, 40, 0.1), transparent 42%);
  mix-blend-mode: screen;
  opacity: 0.22;
  pointer-events: none;
}

.hero-status::after {
  position: absolute;
  top: 18px;
  left: 20px;
  width: min(300px, calc(34% - 40px));
  height: 58px;
  content: "";
  background:
    linear-gradient(rgba(244, 240, 232, 0.36), rgba(244, 240, 232, 0.36)) 0 0 / 100% 1px no-repeat,
    linear-gradient(rgba(244, 240, 232, 0.22), rgba(244, 240, 232, 0.22)) 0 16px / 72% 1px no-repeat,
    linear-gradient(rgba(244, 240, 232, 0.18), rgba(244, 240, 232, 0.18)) 0 32px / 88% 1px no-repeat,
    linear-gradient(#030404, #030404) 24% 10px / 26% 9px no-repeat,
    linear-gradient(#030404, #030404) 56% 26px / 34% 9px no-repeat,
    linear-gradient(rgba(255, 61, 40, 0.72), rgba(255, 61, 40, 0.72)) 0 48px / 42% 2px no-repeat;
  opacity: 0.6;
  pointer-events: none;
}

.hero-status div {
  position: relative;
  z-index: 1;
  min-height: 104px;
  padding: 20px;
  border-right: 1px solid rgba(244, 240, 232, 0.14);
  background:
    linear-gradient(180deg, rgba(244, 240, 232, 0.04), rgba(5, 7, 7, 0)),
    repeating-linear-gradient(0deg, rgba(244, 240, 232, 0.04) 0 1px, transparent 1px 8px);
}

.hero-status .directive-stamp {
  background:
    linear-gradient(135deg, rgba(255, 61, 40, 0.28), rgba(5, 7, 7, 0.18)),
    repeating-linear-gradient(0deg, rgba(244, 240, 232, 0.04) 0 1px, transparent 1px 8px);
}

.hero-status .directive-stamp::after {
  position: absolute;
  left: 20px;
  bottom: 16px;
  width: min(180px, calc(100% - 40px));
  height: 8px;
  content: "";
  background:
    linear-gradient(90deg, #030404 0 30%, transparent 30% 38%, #030404 38% 66%, transparent 66% 74%, #030404 74% 100%);
  opacity: 0.78;
}

.hero-status div:last-child {
  border-right: 0;
}

.hero-status span,
.feature-index,
.article-card time,
.timeline-item span {
  display: block;
  color: var(--subtle);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-status strong {
  display: block;
  margin-top: 6px;
  font-size: 1.05rem;
}

.hero-status .directive-stamp strong {
  color: var(--text);
  font-size: 1.2rem;
}

.section {
  padding: 96px 0;
  border-bottom: 1px solid rgba(244, 240, 232, 0.1);
}

.intro-band {
  background:
    linear-gradient(90deg, rgba(132, 227, 94, 0.06), transparent 36%),
    var(--bg-2);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

.lead-stack {
  color: var(--muted);
  font-size: 1.08rem;
}

.lead-stack p:last-child {
  margin-bottom: 0;
}

.tactical-band {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 61, 40, 0.16), transparent 28%),
    linear-gradient(180deg, #090c0b, #050707);
}

.gameplay-overview-band {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(132, 227, 94, 0.08), transparent 38%),
    radial-gradient(circle at 86% 18%, rgba(255, 61, 40, 0.16), transparent 30%),
    #080b0a;
}

.gameplay-feature-showcase {
  display: grid;
  gap: 34px;
}

.gameplay-feature-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: end;
}

.gameplay-feature-header h2 {
  margin-bottom: 0;
}

.gameplay-feature-header > p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.feature-story {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(244, 240, 232, 0.18);
  background:
    linear-gradient(180deg, rgba(5, 7, 7, 0.02), rgba(5, 7, 7, 0.22) 42%, rgba(5, 7, 7, 0.94)),
    linear-gradient(90deg, rgba(5, 7, 7, 0.68), transparent 64%),
    var(--feature-image, url("assets/hero-poster.png"));
  background-position: center;
  background-size: cover;
  box-shadow: 0 30px 68px var(--shadow);
}

.feature-story-large {
  grid-column: 1 / -1;
  min-height: 620px;
}

.feature-story::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(110deg, transparent, rgba(255, 61, 40, 0.16), transparent),
    repeating-linear-gradient(0deg, rgba(244, 240, 232, 0.035) 0 1px, transparent 1px 8px);
  mix-blend-mode: screen;
  opacity: 0.34;
  pointer-events: none;
}

.feature-story::after {
  position: absolute;
  inset: auto 18px 18px auto;
  width: 148px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 61, 40, 0.9));
  box-shadow: 0 0 22px rgba(255, 61, 40, 0.55);
  pointer-events: none;
}

.feature-story-copy {
  position: relative;
  z-index: 1;
  width: min(510px, calc(100% - 48px));
  margin: 0 0 32px 30px;
  padding-left: 18px;
  border-left: 3px solid var(--red);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.9);
}

.feature-story-large .feature-story-copy {
  width: min(620px, calc(100% - 64px));
}

.feature-story:not(.feature-story-large) .feature-story-copy {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: flex-start;
}

.feature-story-copy span {
  display: block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-story-copy h3 {
  max-width: 520px;
  max-height: 2.3em;
  margin-bottom: 12px;
  overflow: hidden;
  font-size: 2.15rem;
  line-height: 1.05;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.feature-story:not(.feature-story-large) .feature-story-copy h3 {
  min-height: 2.1em;
}

.feature-story-copy p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(244, 240, 232, 0.84);
  font-size: 1.02rem;
  font-weight: 700;
}

.gameplay-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 42px;
  align-items: start;
}

.gameplay-copy {
  position: sticky;
  top: 104px;
}

.gameplay-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.gameplay-facts {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.gameplay-facts div {
  padding: 16px;
  border: 1px solid rgba(244, 240, 232, 0.14);
  background: rgba(5, 7, 7, 0.5);
}

.gameplay-facts span {
  display: block;
  margin-bottom: 7px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gameplay-facts strong {
  display: block;
  color: var(--text);
  line-height: 1.2;
}

.gameplay-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feature-card-wide {
  grid-column: 1 / -1;
  min-height: 220px;
}

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

.inline-heading {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.text-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-bottom: 1px solid var(--red);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.feature-card,
.news-card,
.article-card,
.timeline-item {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(21, 27, 24, 0.88), rgba(11, 16, 16, 0.94));
  box-shadow: 0 24px 48px var(--shadow);
}

.feature-card {
  min-height: 260px;
  padding: 24px;
}

.feature-card h3 {
  margin-top: 42px;
}

.feature-card p,
.news-card p,
.article-card p,
.timeline-item p {
  color: var(--muted);
}

.media-band {
  background:
    linear-gradient(180deg, rgba(255, 61, 40, 0.05), transparent 38%),
    #070909;
}

.media-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
}

.media-tile,
.gallery-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
  min-height: 220px;
  border: 1px solid rgba(244, 240, 232, 0.18);
  background-image: var(--gallery-image, url("assets/hero-poster.png"));
  background-position: center;
  background-size: cover;
  box-shadow: 0 24px 48px var(--shadow);
}

.media-tile::after {
  background: linear-gradient(110deg, transparent, rgba(255, 61, 40, 0.16), transparent);
  opacity: 0;
  transition: opacity 160ms ease;
}

.media-tile:hover::after,
.media-tile:focus-visible::after {
  opacity: 1;
}

.media-tile > span,
.gallery-panel > span {
  position: relative;
  z-index: 1;
  margin: 18px;
  padding: 8px 10px;
  background: rgba(5, 7, 7, 0.76);
  color: var(--text);
  font-weight: 900;
  text-transform: uppercase;
}

.media-tile-large {
  grid-row: 1 / span 2;
  background-position: center;
}

.media-tile-a {
  background-position: 64% 50%;
}

.media-tile-b {
  background-position: 22% 72%;
}

.news-band {
  background: #080b0a;
}

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

.news-card {
  min-height: 220px;
  padding: 24px;
}

.news-card h3 {
  margin-top: 28px;
}

.cerc-home-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(132, 227, 94, 0.12), transparent 30%),
    linear-gradient(110deg, #050707, #0b100e 48%, #170807);
}

.cerc-home-band::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    repeating-linear-gradient(0deg, rgba(244, 240, 232, 0.035) 0 1px, transparent 1px 9px),
    linear-gradient(90deg, rgba(255, 61, 40, 0.12), transparent 38%);
  pointer-events: none;
}

.cerc-home-callout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

.cerc-home-copy {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: center;
}

.cerc-home-copy h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 3rem;
}

.cerc-home-copy p:not(.eyebrow) {
  max-width: 690px;
  color: rgba(244, 240, 232, 0.82);
  font-size: 1.08rem;
  font-weight: 700;
}

.cerc-home-panel {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 30px;
  border: 1px solid rgba(244, 240, 232, 0.16);
  color: var(--paper);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.1), transparent 38%),
    linear-gradient(180deg, rgba(5, 7, 7, 0.42), rgba(5, 7, 7, 0.92));
  background-position: center;
  background-size: cover;
  box-shadow: 0 28px 64px var(--shadow);
  text-align: center;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.cerc-home-panel:hover,
.cerc-home-panel:focus-visible {
  border-color: rgba(132, 227, 94, 0.72);
  box-shadow: 0 32px 74px var(--shadow), 0 0 28px rgba(132, 227, 94, 0.16);
  outline: 0;
  transform: translateY(-2px);
}

.cerc-home-panel img {
  width: min(430px, 88%);
  max-height: 270px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.86));
}

.cerc-home-panel span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--red);
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.roadmap-strip {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 7, 7, 0.28), rgba(5, 7, 7, 0.76)),
    radial-gradient(circle at 82% 28%, rgba(255, 61, 40, 0.22), transparent 34%),
    linear-gradient(120deg, rgba(241, 179, 76, 0.18), rgba(132, 227, 94, 0.08) 42%, transparent 78%),
    url("assets/hero-poster.png");
  background-size: cover;
  background-position: center 60%;
}

.roadmap-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 280px;
}

.roadmap-callout h2 {
  max-width: 700px;
  margin-bottom: 14px;
  font-size: 3rem;
}

.roadmap-callout p:not(.eyebrow) {
  max-width: 570px;
  color: var(--muted);
  font-size: 1.08rem;
}

.roadmap-callout-actions {
  display: grid;
  gap: 14px;
  min-width: 220px;
}

.roadmap-callout-actions span {
  display: inline-flex;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid rgba(132, 227, 94, 0.46);
  background: rgba(5, 7, 7, 0.7);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.roadmap-board {
  background:
    linear-gradient(180deg, rgba(132, 227, 94, 0.06), transparent 22%),
    linear-gradient(90deg, rgba(255, 61, 40, 0.08), transparent 42%),
    #070908;
}

.roadmap-topline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 28px;
}

.roadmap-dek {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
  overflow-wrap: anywhere;
}

.roadmap-updated {
  margin: 0;
  color: var(--subtle);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: right;
  text-transform: uppercase;
}

.roadmap-brief {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 34px;
}

.roadmap-brief-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(21, 27, 24, 0.9), rgba(7, 9, 8, 0.94));
  box-shadow: 0 24px 48px var(--shadow);
}

.roadmap-brief-card span,
.roadmap-status,
.roadmap-source {
  display: inline-flex;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.roadmap-brief-card h3 {
  margin: 28px 0 12px;
  font-size: 1.28rem;
}

.roadmap-brief-card p,
.roadmap-milestone p,
.roadmap-milestone li {
  color: var(--muted);
}

.roadmap-year-track {
  position: relative;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 32px 2px 14px;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
}

.roadmap-year-track::before {
  position: absolute;
  top: 12px;
  left: 0;
  width: max(100%, 2200px);
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--red), var(--green), var(--amber), var(--steel));
  opacity: 0.72;
}

.roadmap-milestone {
  position: relative;
  flex: 0 0 310px;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--steel);
  background:
    linear-gradient(180deg, rgba(21, 27, 24, 0.94), rgba(7, 9, 8, 0.98)),
    radial-gradient(circle at 50% 0, rgba(244, 240, 232, 0.08), transparent 34%);
  box-shadow: 0 24px 48px var(--shadow);
  scroll-snap-align: start;
}

.roadmap-milestone::before {
  position: absolute;
  top: -29px;
  left: 22px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--text);
  background: var(--bg);
  content: "";
  box-shadow: 0 0 0 7px rgba(5, 7, 7, 0.8);
}

.roadmap-milestone.is-shipped {
  border-top-color: var(--green);
}

.roadmap-milestone.is-current {
  border-top-color: var(--red);
  box-shadow:
    0 24px 48px var(--shadow),
    0 0 0 1px rgba(255, 61, 40, 0.3),
    0 0 34px rgba(255, 61, 40, 0.18);
}

.roadmap-milestone.is-next {
  border-top-color: var(--amber);
}

.roadmap-milestone.is-later {
  border-top-color: var(--steel);
}

.roadmap-milestone.is-editable {
  border-top-color: rgba(244, 240, 232, 0.48);
}

.roadmap-milestone.is-shipped .roadmap-status {
  color: var(--green);
}

.roadmap-milestone.is-current .roadmap-status {
  color: var(--red);
}

.roadmap-milestone.is-next .roadmap-status {
  color: var(--amber);
}

.roadmap-milestone.is-later .roadmap-status {
  color: var(--steel);
}

.roadmap-period {
  display: block;
  margin-top: 16px;
  color: var(--text);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.roadmap-milestone h3 {
  margin: 18px 0 12px;
  font-size: 1.34rem;
}

.roadmap-milestone ul {
  padding-left: 18px;
  margin: 6px 0 22px;
}

.roadmap-milestone li + li {
  margin-top: 8px;
}

.roadmap-source {
  align-self: flex-start;
  margin-top: auto;
  border-bottom: 1px solid currentColor;
  color: var(--text);
}

.press-kit-section {
  background:
    linear-gradient(90deg, rgba(132, 227, 94, 0.06), transparent 40%),
    #070908;
}

.press-kit-grid {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.press-facts,
.press-copy,
.press-downloads,
.press-assets {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(21, 27, 24, 0.9), rgba(7, 9, 8, 0.96));
  box-shadow: 0 24px 48px var(--shadow);
}

.press-facts {
  position: sticky;
  top: 96px;
  padding: 24px;
}

.press-facts h2 {
  font-size: 1.8rem;
}

.press-updated {
  color: var(--subtle);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.press-facts dl {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.press-facts dt {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.press-facts dd {
  margin: -8px 0 0;
  color: var(--text);
  font-weight: 800;
}

.press-link-stack {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.press-main {
  display: grid;
  gap: 18px;
}

.press-copy,
.press-downloads,
.press-assets {
  padding: 28px;
}

.press-lead {
  color: var(--text);
  font-size: 1.22rem;
  font-weight: 800;
}

.press-copy p:not(.eyebrow),
.press-download-row span {
  color: var(--muted);
}

.press-download-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(244, 240, 232, 0.12);
}

.press-download-row strong,
.press-download-row span {
  display: block;
}

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

.press-asset {
  margin: 0;
  border: 1px solid rgba(244, 240, 232, 0.16);
  background: rgba(5, 7, 7, 0.7);
}

.press-asset img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.press-asset figcaption {
  padding: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer {
  padding: 38px 0;
  background: #030404;
  color: var(--muted);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-grid p {
  margin: 8px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.page-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 140px 0 74px;
  border-bottom: 1px solid var(--line);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(90deg, rgba(5, 7, 7, 0.92), rgba(5, 7, 7, 0.58), rgba(5, 7, 7, 0.86)), url("assets/hero-poster.png");
  background-size: cover;
  background-position: center;
}

.page-hero-bg::after {
  background: linear-gradient(0deg, rgba(5, 7, 7, 0.86), transparent);
}

.page-hero-content {
  max-width: 760px;
}

.page-hero h1 {
  font-size: 3.6rem;
}

.page-hero p {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.updates-hub-section {
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 61, 40, 0.14), transparent 32%),
    linear-gradient(180deg, #080b0a, #050707);
}

.updates-hub-toolbar,
.updates-panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.updates-hub-toolbar {
  margin-bottom: 20px;
}

.updates-panel-heading {
  margin-bottom: 24px;
}

.updates-hub-toolbar h2,
.updates-panel-heading h2 {
  margin-bottom: 10px;
}

.updates-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(244, 240, 232, 0.14);
}

.updates-tab {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(244, 240, 232, 0.18);
  color: var(--paper);
  background: rgba(244, 240, 232, 0.04);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
}

.updates-tab.is-active {
  border-color: rgba(255, 61, 40, 0.9);
  background: rgba(255, 61, 40, 0.16);
  box-shadow: 0 0 24px rgba(255, 61, 40, 0.18);
}

.updates-panel {
  display: none;
}

.updates-panel.is-active {
  display: block;
}

.cerc-hq-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 24px;
  border: 1px solid rgba(244, 240, 232, 0.16);
  background:
    linear-gradient(90deg, rgba(255, 61, 40, 0.12), transparent 46%),
    repeating-linear-gradient(0deg, rgba(244, 240, 232, 0.035) 0 1px, transparent 1px 9px),
    rgba(5, 7, 7, 0.72);
}

.cerc-hq-intro-copy,
.cerc-hq-intro-meta {
  padding: 28px;
}

.cerc-hq-intro-copy h3 {
  max-width: 680px;
  margin-bottom: 12px;
  font-size: 2rem;
}

.cerc-hq-intro-copy p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(244, 240, 232, 0.84);
  font-size: 1.02rem;
  font-weight: 700;
}

.cerc-hq-intro-meta {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-left: 1px solid rgba(244, 240, 232, 0.14);
  background: rgba(5, 7, 7, 0.36);
}

.cerc-hq-intro-meta span {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cerc-hq-intro-meta strong {
  margin-bottom: 22px;
  color: var(--paper);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 1.35rem;
  line-height: 0.98;
  text-transform: uppercase;
}

.dev-video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.dev-video-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  width: 100%;
  border: 1px solid rgba(244, 240, 232, 0.18);
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(255, 61, 40, 0.08), transparent 44%),
    rgba(5, 7, 7, 0.72);
  box-shadow: 0 26px 58px var(--shadow);
  padding: 0;
  font: inherit;
  text-align: left;
  appearance: none;
  cursor: pointer;
}

a.dev-video-card {
  text-decoration: none;
}

.dev-video-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    repeating-linear-gradient(0deg, rgba(244, 240, 232, 0.035) 0 1px, transparent 1px 8px);
  opacity: 0.28;
  pointer-events: none;
}

.dev-video-thumb::after {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(244, 240, 232, 0.32);
  content: "Play";
  display: grid;
  place-items: center;
  color: var(--paper);
  background: rgba(5, 7, 7, 0.62);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dev-video-card[data-external="true"] .dev-video-thumb::after {
  content: "Open";
}

.dev-video-thumb {
  position: relative;
  z-index: 1;
  min-height: 260px;
  border-right: 1px solid rgba(244, 240, 232, 0.14);
  background:
    linear-gradient(180deg, rgba(5, 7, 7, 0.08), rgba(5, 7, 7, 0.72)),
    var(--video-image, url("assets/hero-poster.png"));
  background-position: center;
  background-size: cover;
}

.dev-video-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 260px;
  padding: 32px 34px;
  border-left: 3px solid var(--red);
  margin-left: 0;
}

.dev-video-card-content span {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dev-video-card-content strong {
  display: block;
  max-width: 620px;
  margin-bottom: 10px;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 1.85rem;
  line-height: 0.96;
  text-transform: uppercase;
}

.dev-video-card-content p {
  max-width: 680px;
  margin: 0;
  color: rgba(244, 240, 232, 0.84);
  font-weight: 700;
  line-height: 1.55;
}

.rss-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.rss-toolbar h2 {
  margin-bottom: 10px;
}

.feed-status {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.feed-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.article-card {
  min-height: 300px;
  padding: 26px;
}

.rss-article {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.rss-article::before {
  display: block;
  height: 205px;
  margin: -26px -26px 22px;
  content: "";
  background-image:
    linear-gradient(180deg, rgba(5, 7, 7, 0.02), rgba(5, 7, 7, 0.72)),
    var(--article-image, url("assets/hero-poster.png"));
  background-position: center;
  background-size: cover;
}

.rss-article .text-link {
  align-self: flex-start;
  margin-top: auto;
}

.rss-article:not(.rss-featured) {
  min-height: 430px;
}

.rss-article h2 {
  overflow-wrap: anywhere;
}

.rss-featured::before,
.rss-loading::before {
  display: none;
}

.featured-article {
  grid-column: 1 / -1;
  min-height: 340px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  background:
    linear-gradient(90deg, rgba(5, 7, 7, 0.88), rgba(5, 7, 7, 0.62)),
    var(--article-image, url("assets/hero-poster.png"));
  background-size: cover;
  background-position: center;
}

.featured-article h2 {
  max-width: 680px;
}

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

.media-trailer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.875fr) minmax(0, 0.875fr);
  gap: 16px;
}

.media-gallery-section {
  background: #080b0a;
}

.gallery-panel {
  width: 100%;
  min-height: 300px;
  padding: 0;
  border: 1px solid rgba(244, 240, 232, 0.18);
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: border-color 160ms ease, transform 160ms ease;
}

.gallery-panel:hover,
.gallery-panel:focus-visible {
  border-color: rgba(244, 240, 232, 0.5);
  outline: 0;
  transform: translateY(-2px);
}

.gallery-panel-wide {
  grid-column: 1 / -1;
  min-height: 460px;
  background-position: center;
}

.gallery-panel-zoom {
  background-position: 82% 46%;
}

.gallery-panel-left {
  background-position: 18% 70%;
}

.gallery-panel-center {
  background-position: 54% 60%;
}

.trailer-panel {
  align-items: stretch;
  min-height: 360px;
  aspect-ratio: 16 / 9;
}

.trailer-panel.gallery-panel-wide {
  min-height: 520px;
}

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

.photo-panel {
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.photo-panel-wide {
  grid-column: auto;
}

.gallery-panel-content {
  position: relative;
  z-index: 1;
  display: none;
  width: 100%;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  margin: 0;
  padding: 24px;
  background: linear-gradient(180deg, rgba(5, 7, 7, 0.06), rgba(5, 7, 7, 0.84));
  text-transform: none;
}

.gallery-panel-content .media-label {
  align-self: flex-start;
  margin: 0;
  padding: 7px 9px;
  border: 1px solid rgba(244, 240, 232, 0.18);
  background: rgba(5, 7, 7, 0.78);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-panel-content strong {
  display: block;
  color: var(--text);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.gallery-panel-content .media-caption {
  display: block;
  max-width: 620px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
  text-transform: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(2, 3, 3, 0.92);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(1120px, 100%);
  margin: 0;
}

.lightbox-frame [hidden] {
  display: none !important;
}

.lightbox-frame.is-loading::before {
  display: block;
  width: 100%;
  max-height: 78vh;
  aspect-ratio: 16 / 9;
  content: "";
  border: 1px solid rgba(244, 240, 232, 0.22);
  background:
    repeating-linear-gradient(0deg, rgba(244, 240, 232, 0.05) 0 1px, transparent 1px 7px),
    linear-gradient(135deg, rgba(255, 61, 40, 0.1), rgba(5, 7, 7, 0.96) 38%, #000);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.72);
}

.lightbox-frame img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border: 1px solid rgba(244, 240, 232, 0.22);
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.72);
}

.lightbox-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(244, 240, 232, 0.22);
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.72);
}

.lightbox-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.lightbox-frame figcaption {
  margin-top: 14px;
  color: var(--text);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.lightbox-external {
  display: flex;
  width: max-content;
  min-height: 42px;
  align-items: center;
  margin: 12px auto 0;
  border-bottom: 1px solid var(--red);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 1px solid rgba(244, 240, 232, 0.28);
  background: rgba(5, 7, 7, 0.78);
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
}

.lightbox-close {
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  font-size: 1rem;
  text-transform: uppercase;
}

.lightbox-nav {
  top: 50%;
  width: 52px;
  height: 72px;
  transform: translateY(-50%);
  font-size: 1.7rem;
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

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

.timeline-item {
  min-height: 300px;
  padding: 26px;
  border-top: 4px solid var(--red);
}

.timeline-item:nth-child(2) {
  border-top-color: var(--green);
}

.timeline-item:nth-child(3) {
  border-top-color: var(--amber);
}

.timeline-item:nth-child(4) {
  border-top-color: var(--steel);
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(-8px, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(8px, -6px, 0);
  }
}

@keyframes sweep {
  from {
    transform: translateX(-16%);
  }

  to {
    transform: translateX(16%);
  }
}

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

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

@media (max-width: 980px) {
  .site-header {
    padding: 0 20px;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 44px;
  }

  .primary-nav {
    position: absolute;
    top: 72px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(5, 7, 7, 0.96);
    box-shadow: 0 24px 48px var(--shadow);
  }

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

  .primary-nav a,
  .primary-nav .nav-cta {
    margin-left: 0;
    justify-content: center;
  }

  h1 {
    font-size: 3.2rem;
  }

  .hero h1 {
    font-size: 2.9rem;
  }

  h2,
  .page-hero h1 {
    font-size: 2.35rem;
  }

  .hero-status,
  .two-column,
  .feature-grid,
  .news-grid,
  .article-list,
  .timeline,
  .roadmap-brief {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card,
  .news-card,
  .article-card,
  .timeline-item {
    min-height: 230px;
  }

  .media-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 240px);
  }

  .media-tile-large {
    grid-row: auto;
  }

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

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

  .trailer-panel.gallery-panel-wide {
    grid-column: 1 / -1;
    min-height: 420px;
  }

  .gallery-panel-wide {
    min-height: 340px;
  }

  .hero-status::after {
    display: none;
  }

  .gameplay-feature-header {
    grid-template-columns: 1fr;
  }

  .gameplay-feature-grid,
  .dev-video-grid {
    grid-template-columns: 1fr;
  }

  .cerc-home-callout {
    grid-template-columns: 1fr;
  }

  .cerc-home-copy,
  .cerc-home-panel {
    min-height: auto;
  }

  .cerc-hq-intro {
    grid-template-columns: 1fr;
  }

  .cerc-hq-intro-meta {
    border-top: 1px solid rgba(244, 240, 232, 0.14);
    border-left: 0;
  }

  .feature-story-large {
    grid-column: auto;
  }

  .feature-story:not(.feature-story-large) .feature-story-copy,
  .feature-story:not(.feature-story-large) .feature-story-copy h3 {
    min-height: 0;
  }

  .dev-video-card:first-child {
    grid-row: auto;
  }

  .gameplay-overview {
    grid-template-columns: 1fr;
  }

  .press-kit-grid {
    grid-template-columns: 1fr;
  }

  .press-facts {
    position: static;
  }

  .gameplay-copy {
    position: static;
  }

  .roadmap-callout {
    align-items: flex-start;
  }

  .roadmap-topline {
    grid-template-columns: 1fr;
  }

  .roadmap-updated {
    text-align: left;
  }
}

@media (max-width: 680px) {
  .section-shell {
    width: calc(100% - 28px);
    max-width: 1180px;
  }

  .site-header {
    min-height: 66px;
    padding: 0 14px;
  }

  .brand-name {
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-toggle {
    position: fixed;
    top: 11px;
    right: auto;
    left: min(calc(100vw - 58px), 330px);
    z-index: 30;
  }

  .hero-content,
  .hero-status,
  .page-hero-content,
  .cerc-home-callout,
  .rss-toolbar,
  .updates-hub-toolbar,
  .updates-tabs,
  .updates-panel-heading,
  .article-list,
  .dev-video-grid,
  .cerc-hq-intro,
  .gameplay-feature-grid,
  .roadmap-topline,
  .roadmap-brief,
  .roadmap-year-track {
    width: calc(100% - 28px);
    max-width: calc(100vw - 28px);
    margin-left: 14px;
    margin-right: auto;
  }

  .page-hero-content h1,
  .page-hero-content p,
  .roadmap-topline h2,
  .roadmap-dek {
    max-width: 330px;
    overflow-wrap: anywhere;
  }

  .page-hero-content,
  .roadmap-topline,
  .roadmap-brief,
  .roadmap-year-track {
    max-width: 330px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .primary-nav {
    top: 66px;
    right: 14px;
    left: 14px;
  }

  .hero {
    min-height: 720px;
    padding-top: 112px;
  }

  .hero-content {
    margin-bottom: 36px;
  }

  h1 {
    font-size: 2.18rem;
  }

  .hero h1 {
    font-size: 2.05rem;
  }

  h2,
  .page-hero h1 {
    font-size: 1.95rem;
  }

  .hero-copy,
  .lead-stack,
  .page-hero p {
    font-size: 1rem;
  }

  .eyebrow {
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .hero-actions,
  .roadmap-callout,
  .footer-grid,
  .inline-heading,
  .rss-toolbar,
  .updates-hub-toolbar,
  .updates-panel-heading,
  .press-download-row,
  .feed-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .feed-actions {
    justify-content: flex-start;
  }

  .gameplay-proof {
    grid-template-columns: 1fr;
  }

  .gameplay-feature-showcase {
    gap: 26px;
  }

  .feature-story,
  .feature-story-large {
    min-height: 430px;
  }

  .dev-video-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .dev-video-thumb {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid rgba(244, 240, 232, 0.14);
  }

  .feature-story-copy {
    width: calc(100% - 34px);
    margin: 0 0 22px 17px;
    padding-left: 14px;
  }

  .dev-video-card-content {
    min-height: auto;
    padding: 24px 20px 24px 18px;
  }

  .feature-story-copy h3,
  .dev-video-card-content strong {
    font-size: 1.45rem;
  }

  .feature-story-copy p,
  .dev-video-card-content p {
    font-size: 0.94rem;
  }

  .feature-card-wide {
    grid-column: auto;
  }

  .roadmap-callout h2 {
    font-size: 2.1rem;
  }

  .roadmap-callout-actions {
    width: 100%;
  }

  .rss-toolbar .text-link {
    align-self: flex-start;
  }

  .button {
    width: 100%;
  }

  .hero-status,
  .two-column,
  .feature-grid,
  .news-grid,
  .article-list,
  .dev-video-grid,
  .cerc-home-callout,
  .gameplay-feature-grid,
  .media-trailer-grid,
  .media-gallery,
  .press-asset-grid,
  .timeline,
  .roadmap-brief {
    grid-template-columns: 1fr;
  }

  .hero-status div {
    min-height: 76px;
    border-right: 0;
    border-bottom: 1px solid rgba(244, 240, 232, 0.14);
  }

  .hero-status div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 68px 0;
  }

  .feature-card,
  .news-card,
  .article-card,
  .timeline-item {
    min-height: auto;
  }

  .feature-card h3 {
    margin-top: 26px;
  }

  .page-hero {
    min-height: 460px;
    padding: 112px 0 56px;
  }

  .featured-article {
    grid-template-columns: 1fr;
  }

  .gallery-panel,
  .gallery-panel-wide {
    min-height: 260px;
  }

  .photo-panel-wide {
    grid-column: auto;
  }

  .lightbox {
    padding: 64px 14px 28px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 20px;
    width: 64px;
    height: 46px;
    transform: none;
  }

  .lightbox-prev {
    left: 14px;
  }

  .lightbox-next {
    right: 14px;
  }

  .roadmap-milestone {
    flex-basis: 306px;
    min-height: auto;
  }
}
