/* MUSTER — site styles. Palette lifted straight from scripts/palette.gd:
   a dig site lit by lanterns, not a blue dungeon. Earth, parchment, lamp-glow. */
@font-face {
  font-family: "PixelOperator";
  src: url("font/PixelOperator8.ttf") format("truetype");
  font-display: swap;
}

:root {
  --barrow:   #120f0c;
  --sod:      #2a2119;
  --parchment:#e6d7b8;
  --lantern:  #e0a83c;
  --threat:   #b8402f;
  --verdigris:#5e8c6a;
  --wisp:     #7a95b8;
  --ink:      #b7a888;
  --edge:     #3a2f23;
  --pixel: "PixelOperator", ui-monospace, Menlo, monospace;
  --mono: ui-monospace, Menlo, monospace;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--barrow);
  color: var(--parchment);
  font-family: var(--mono);
  line-height: 1.6;
  font-size: 18px;
  background-image: radial-gradient(130% 90% at 50% -20%, #1e1813 0%, var(--barrow) 62%);
  background-attachment: fixed;
}

img { max-width: 100%; }
a { color: var(--lantern); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 1040px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 720px; }

/* ---- top bar ---- */
.topbar {
  position: sticky; top: 0; z-index: 20;
  background: rgba(18,15,12,0.82);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--edge);
}
.topbar .wrap { display: flex; align-items: center; gap: 14px; height: 58px; }
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--pixel); font-size: 20px; letter-spacing: 0.22em;
  color: var(--parchment);
}
.brand img { width: 26px; height: 26px; image-rendering: pixelated; border-radius: 4px; }
.topbar nav { margin-left: auto; display: flex; gap: 24px; font-family: var(--pixel); font-size: 15px; letter-spacing: 0.1em; }
.topbar nav a { color: var(--ink); }
.topbar nav a:hover { color: var(--lantern); text-decoration: none; }

/* ---- buttons ---- */
.btn {
  display: inline-block; font-family: var(--pixel);
  letter-spacing: 0.08em; font-size: 18px; padding: 15px 32px; border-radius: 8px;
  border: 1px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--threat); color: #fff; }
.btn-primary:hover { background: #cc4a37; text-decoration: none; }
.btn-ghost { background: transparent; color: var(--parchment); border-color: var(--edge); }
.btn-ghost:hover { border-color: var(--lantern); color: var(--lantern); text-decoration: none; }
.btn-lg { font-size: 22px; padding: 18px 44px; }

/* ---- landing + trailer ---- */
.landing {
  width: min(100%, 1520px); margin: 0 auto;
  display: grid; grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  align-items: center; align-content: center; gap: clamp(28px, 4vw, 58px);
  text-align: center;
  padding: clamp(48px, 8vh, 76px) clamp(24px, 5vw, 72px) clamp(24px, 5vh, 44px);
}
.landing-copy, .landing-trailer { width: 100%; min-width: 0; }
.wordmark {
  font-family: var(--pixel);
  font-size: clamp(54px, 6.5vw, 94px);
  line-height: 0.9; letter-spacing: 0.06em; margin: 0;
  color: var(--parchment);
  text-shadow: 0 0 44px rgba(224,168,60,0.22);
}
.landing .tagline {
  font-family: var(--pixel);
  font-size: clamp(16px, 2.3vw, 22px); letter-spacing: 0.05em;
  color: var(--ink); max-width: 640px; margin: 16px auto 0;
}
.landing .platforms {
  margin-top: 18px; display: flex; gap: 26px; align-items: center; justify-content: center;
}
.plat { display: inline-flex; }
.plat svg { width: 27px; height: 27px; fill: var(--ink); transition: fill 130ms ease, transform 130ms ease; }
.plat:hover svg { fill: var(--parchment); transform: translateY(-2px); }
.landing .cta-row { margin-top: 24px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.landing-trailer { scroll-margin-top: 74px; }

/* ---- section scaffold ---- */
section.block { padding: 64px 0; }
.section-label {
  font-family: var(--pixel); font-size: 15px; letter-spacing: 0.24em;
  font-weight: 400; text-transform: uppercase; color: var(--lantern); text-align: center; margin: 0 0 24px;
}

/* ---- trailer ---- */
.trailer {
  max-width: 920px; margin: 0 auto; aspect-ratio: 16 / 9;
  background: #17120d; border: 1px solid var(--edge); border-radius: 14px;
  overflow: hidden; position: relative;
  box-shadow: 0 40px 80px -40px #000;
}
.trailer iframe, .trailer video { width: 100%; height: 100%; border: 0; display: block; }

@media (max-width: 800px) {
  .landing { grid-template-columns: 1fr; gap: 20px; padding: 36px 24px 28px; }
  .wordmark { font-size: clamp(46px, 14.5vw, 86px); }
  .landing .tagline { margin-top: 10px; }
  .landing .cta-row { margin-top: 14px; }
  .landing .platforms { margin-top: 12px; }
}

@media (max-width: 1100px) {
  .landing .cta-row .btn { padding: 15px 24px; font-size: 18px; white-space: nowrap; }
}

/* ---- sprite band ---- */
.band-wrap { border-top: 1px solid var(--edge); border-bottom: 1px solid var(--edge); background: #171209; }
.band {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; align-items: center;
  padding: 30px 24px; max-width: 1040px; margin: 0 auto;
}
/* Each sprite is a 4-frame idle strip (64x16) played as a CSS sprite sheet —
   the same idle bob the game runs. background-size 400% shows one frame; the
   keyframe steps through all four (to 133.333% so step 4 lands on the last). */
.asprite {
  width: 60px; height: 60px; image-rendering: pixelated; opacity: 0.94;
  background-repeat: no-repeat; background-position: 0 0; background-size: 400% 100%;
  animation: sprite-idle 0.85s steps(4) infinite;
}
@keyframes sprite-idle { to { background-position-x: 133.333%; } }
/* tablet and up: one unbroken line — sprites shrink to fit rather than wrap */
@media (min-width: 600px) {
  .band { flex-wrap: nowrap; gap: clamp(8px, 1.6vw, 18px); }
  .asprite { flex: 0 1 60px; width: 60px; height: auto; aspect-ratio: 1 / 1; min-width: 0; }
}
@media (max-width: 560px) { .asprite { width: 46px; height: 46px; } .band { gap: 14px; } }
@media (prefers-reduced-motion: reduce) { .asprite { animation: none; } }

/* ---- how it plays ---- */
.gameplay {
  scroll-margin-top: 74px;
  padding: clamp(72px, 8vw, 112px) 0;
  border-bottom: 1px solid var(--edge);
}
.gameplay .wrap { max-width: 1280px; }
.gameplay-intro { max-width: 680px; margin: 0 auto; text-align: center; }
.gameplay-intro h2 {
  margin: 0;
  color: var(--parchment);
  font-family: var(--pixel);
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1;
  letter-spacing: 0.04em;
}
.gameplay-intro p { margin: 18px auto 0; color: var(--ink); }
.gameplay-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 32px);
  margin: clamp(42px, 5vw, 60px) 0 0;
  padding: 0;
  list-style: none;
}
.gameplay-step { min-width: 0; }
.gameplay-shot {
  position: relative;
  display: block;
  overflow: hidden;
  color: var(--parchment);
  background: #0b0907;
  border: 1px solid var(--edge);
  border-radius: 10px;
  box-shadow: 0 28px 54px -38px #000;
  cursor: zoom-in;
}
.gameplay-shot:hover { text-decoration: none; }
.gameplay-shot:focus-visible { outline: 2px solid var(--lantern); outline-offset: 4px; }
.gameplay-step img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 160ms ease, filter 160ms ease;
}
.gameplay-shot:hover img, .gameplay-shot:focus-visible img { transform: scale(1.015); filter: brightness(1.06); }
.gameplay-shot-label {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 5px 8px;
  border: 1px solid rgba(230, 215, 184, 0.22);
  border-radius: 5px;
  background: rgba(18, 15, 12, 0.88);
  color: var(--parchment);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease;
}
.gameplay-shot:hover .gameplay-shot-label, .gameplay-shot:focus-visible .gameplay-shot-label { opacity: 1; transform: none; }
html.screenshot-dialog-open, body.screenshot-dialog-open { overflow: hidden; }
.screenshot-dialog:not([open]) { display: none; }
.screenshot-dialog {
  width: min(96vw, 1440px);
  max-width: none;
  max-height: 94vh;
  max-height: 94dvh;
  margin: auto;
  padding: 0;
  overflow: hidden;
  color: var(--parchment);
  background: #0b0907;
  border: 1px solid #55432f;
  border-radius: 12px;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.72);
}
.screenshot-dialog::backdrop { background: rgba(5, 4, 3, 0.88); backdrop-filter: blur(4px); }
.screenshot-dialog-shell {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  max-height: 94vh;
  max-height: 94dvh;
}
.screenshot-dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 8px 10px 8px 18px;
  border-bottom: 1px solid var(--edge);
}
.screenshot-dialog-header h2 {
  margin: 0;
  font-family: var(--pixel);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.screenshot-dialog-close {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: var(--parchment);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 7px;
  font: 30px/1 var(--mono);
  cursor: pointer;
}
.screenshot-dialog-close:hover { color: var(--lantern); background: var(--sod); border-color: var(--edge); }
.screenshot-dialog-close:focus-visible { outline: 2px solid var(--lantern); outline-offset: 2px; }
.screenshot-dialog-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(94vh - 59px);
  max-height: calc(94dvh - 59px);
  margin: auto;
  object-fit: contain;
  background: #0b0907;
}
.gameplay-copy { padding: 18px 5px 0; }
.gameplay-copy h3 {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 9px;
  color: var(--parchment);
  font-family: var(--pixel);
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0.03em;
}
.gameplay-copy h3 span {
  color: var(--lantern);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
}
.gameplay-copy p { margin: 0; color: var(--ink); font-size: 16px; line-height: 1.55; }

@media (max-width: 800px) {
  .gameplay { padding: 60px 0 72px; }
  .gameplay-steps { grid-template-columns: 1fr; gap: 42px; max-width: 640px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 560px) {
  .screenshot-dialog { width: calc(100vw - 20px); max-height: calc(100vh - 20px); max-height: calc(100dvh - 20px); }
  .screenshot-dialog-shell { max-height: calc(100vh - 20px); max-height: calc(100dvh - 20px); }
  .screenshot-dialog-header { min-height: 54px; padding-left: 14px; }
  .screenshot-dialog-header h2 { font-size: 16px; }
  .screenshot-dialog-image { max-height: calc(100vh - 75px); max-height: calc(100dvh - 75px); }
}

@media (hover: none) {
  .gameplay-shot-label { opacity: 0.9; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .gameplay-step img, .gameplay-shot-label { transition: none; }
  .gameplay-shot:hover img, .gameplay-shot:focus-visible img { transform: none; }
}

/* ---- wishlist ---- */
.wishlist { text-align: center; padding: 84px 24px 92px; }
.wishlist h2 { font-family: var(--pixel); font-size: clamp(34px, 6vw, 56px); letter-spacing: 0.06em; margin: 0 0 14px; color: var(--parchment); }
.wishlist p { color: var(--ink); max-width: 560px; margin: 0 auto 30px; }
.wishlist-social { margin-top: 18px; }
.youtube-social-link {
  display: inline-flex;
  width: 56px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.youtube-social-link:hover { text-decoration: none; }
.youtube-social-link:focus-visible { outline: 2px solid var(--lantern); outline-offset: 3px; }
.youtube-mark {
  position: relative;
  display: block;
  width: 42px;
  height: 30px;
  background: #ff0000;
  border-radius: 8px;
  box-shadow: 0 8px 22px -12px rgba(255, 0, 0, 0.9);
}
.youtube-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid #fff;
  transform: translate(-36%, -50%);
}
.youtube-social-link:hover .youtube-mark { background: #ff2424; }
.footer-youtube-link { width: 34px; height: 26px; vertical-align: middle; }
.footer-youtube-link .youtube-mark { width: 28px; height: 20px; border-radius: 6px; box-shadow: none; }
.footer-youtube-link .youtube-mark::after {
  border-top-width: 5px;
  border-bottom-width: 5px;
  border-left-width: 8px;
}

/* ---- footer ---- */
footer { border-top: 1px solid var(--edge); padding: 34px 0; color: var(--ink); font-size: 15px; }
footer .cols { display: flex; flex-wrap: wrap; gap: 20px 40px; align-items: center; justify-content: space-between; }
footer nav { display: flex; gap: 22px; flex-wrap: wrap; font-family: var(--mono); font-size: 14px; }
footer a { color: var(--ink); }
footer a:hover { color: var(--lantern); }
.copyright { font-family: var(--mono); font-size: 13px; color: #6b5d47; letter-spacing: 0.05em; }
.cl-mark { width: 15px; height: 15px; vertical-align: -3px; margin-right: 6px; border-radius: 3px; }

/* ---- doc pages (manual / privacy / health) ---- */
.mono, code, kbd, .kbd { font-family: var(--mono); }
kbd, .kbd {
  display: inline-block; padding: 1px 7px; border: 1px solid var(--edge); border-bottom-width: 2px;
  border-radius: 4px; background: var(--sod); color: var(--parchment); font-size: 0.82em; line-height: 1.5;
}
.doc { padding: clamp(56px, 7vw, 72px) 0 20px; }
.doc h1 { font-family: var(--pixel); font-size: clamp(34px, 7vw, 58px); letter-spacing: 0.05em; margin: 0 0 6px; }
.doc .updated { color: var(--ink); font-family: var(--mono); font-size: 13px; letter-spacing: 0.06em; margin-bottom: 30px; }
.doc h2 { font-family: var(--pixel); font-size: 24px; letter-spacing: 0.03em; margin: 40px 0 12px; color: var(--lantern); }
.doc h3 { font-family: var(--mono); font-size: 17px; margin: 24px 0 8px; color: var(--parchment); }
.doc p, .doc li { color: var(--parchment); }
.doc li { margin-bottom: 6px; }
.doc table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 16px; }
.doc th, .doc td { text-align: left; padding: 9px 12px; border-bottom: 1px solid var(--edge); }
.doc th { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lantern); }
.doc td.num { color: var(--threat); font-family: var(--mono); }
.callout { border-left: 3px solid var(--lantern); background: var(--sod); padding: 14px 18px; border-radius: 0 8px 8px 0; margin: 20px 0; color: var(--ink); }
.callout.warn { border-left-color: var(--threat); }
.callout strong { color: var(--parchment); }
.backlink { display: inline-block; margin-bottom: 24px; font-family: var(--mono); font-size: 13px; letter-spacing: 0.08em; }

@media (max-width: 560px) {
  body { font-size: 17px; }
  .topbar .wrap { gap: 8px; }
  .brand { gap: 7px; font-size: 15px; letter-spacing: 0.14em; }
  .brand img { width: 22px; height: 22px; }
  .topbar nav { gap: 12px; font-size: 12px; letter-spacing: 0.07em; }
  .landing .cta-row { width: 100%; }
  .landing .cta-row .btn { flex: 1; text-align: center; }
  footer .cols { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .topbar .wrap { padding-left: 14px; padding-right: 14px; }
  .brand { font-size: 13px; letter-spacing: 0.1em; }
  .topbar nav { gap: 10px; font-size: 11px; letter-spacing: 0.05em; }
}

@media (max-width: 360px) {
  .topbar .wrap { padding-left: 10px; padding-right: 10px; }
  .brand { font-size: 12px; }
  .topbar nav { gap: 7px; font-size: 10px; }
}

/* ---- press kit ---- */
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 9px 13px;
  color: var(--barrow);
  background: var(--parchment);
  border-radius: 5px;
  font: 700 14px/1.2 var(--mono);
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }
.press-page {
  background-color: var(--barrow);
  background-image:
    radial-gradient(100% 70% at 50% -10%, rgba(73, 52, 27, 0.42), transparent 66%),
    linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
  background-attachment: fixed;
}
.press-page a:focus-visible,
.press-page button:focus-visible,
.press-page video:focus-visible {
  outline: 2px solid var(--lantern);
  outline-offset: 4px;
}
.press-topbar .wrap { max-width: 1320px; }
.press-topbar nav a { white-space: nowrap; }
.press-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--edge);
}
.press-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(18,15,12,0.98) 0%, rgba(18,15,12,0.87) 46%, rgba(18,15,12,0.48) 100%);
}
.press-hero-art {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.42;
}
.press-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
}
.press-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(42px, 6vw, 88px);
  max-width: 1320px;
  min-height: min(720px, calc(100vh - 58px));
  padding-top: clamp(72px, 10vw, 128px);
  padding-bottom: clamp(72px, 10vw, 128px);
}
.press-hero-copy { max-width: 720px; min-width: 0; }
.press-eyebrow,
.press-section-label {
  margin: 0 0 15px;
  color: var(--lantern);
  font-family: var(--pixel);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}
.press-hero h1 {
  margin: 0;
  color: var(--parchment);
  font-family: var(--pixel);
  font-size: clamp(68px, 10vw, 122px);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: 0.065em;
  text-shadow: 0 0 50px rgba(224,168,60,0.18);
}
.press-hook {
  max-width: 700px;
  margin: 28px 0 0;
  color: var(--parchment);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.55;
}
.press-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.press-actions .btn { text-align: center; }
.press-actions .btn-lg { padding: 16px 26px; font-size: 19px; }
.press-file-size {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
}
.press-hero-card {
  margin: 0;
  overflow: hidden;
  background: #0a0806;
  border: 1px solid #55432f;
  border-radius: 14px;
  box-shadow: 0 44px 90px -42px #000;
  transform: rotate(0.7deg);
}
.press-hero-card img { display: block; width: 100%; height: auto; image-rendering: pixelated; }
.press-section {
  scroll-margin-top: 58px;
  padding: clamp(76px, 8vw, 116px) 0;
  border-bottom: 1px solid var(--edge);
}
.press-section .wrap { max-width: 1200px; }
.press-section .wrap.press-wide { max-width: 1320px; }
.press-section h2 {
  margin: 0;
  color: var(--parchment);
  font-family: var(--pixel);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.035em;
}
.press-section h3 {
  color: var(--parchment);
  font-family: var(--pixel);
  font-weight: 400;
  letter-spacing: 0.025em;
}
.press-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.72fr);
  align-items: start;
  gap: clamp(48px, 8vw, 108px);
}
.press-copy > h2 { max-width: 720px; }
.press-description { max-width: 790px; margin-top: 42px; }
.press-description + .press-description { margin-top: 34px; }
.press-description h3 { margin: 0 0 12px; font-size: 20px; }
.press-description p { margin: 0 0 17px; color: var(--ink); font-size: 17px; line-height: 1.75; }
.press-text-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(224,168,60,0.42);
  font-family: var(--pixel);
  letter-spacing: 0.03em;
}
.press-text-download:hover { text-decoration: none; border-color: var(--lantern); }
.press-text-download span,
.clip-downloads a span {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.fact-card {
  position: sticky;
  top: 88px;
  padding: 30px;
  background: linear-gradient(145deg, rgba(42,33,25,0.94), rgba(27,22,17,0.96));
  border: 1px solid #4a3929;
  border-radius: 12px;
  box-shadow: 0 28px 68px -46px #000;
}
.fact-card .press-section-label { margin-bottom: 10px; }
.fact-card h2 { font-size: 30px; }
.fact-card dl { margin: 26px 0 0; }
.fact-card dl div {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--edge);
}
.fact-card dt {
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.fact-card dd { margin: 0; color: var(--parchment); font-size: 14px; line-height: 1.45; }
.fact-card dd a { overflow-wrap: anywhere; }
.press-features { background: rgba(23, 18, 13, 0.62); }
.press-features h2 { margin-bottom: 42px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  list-style: none;
  background: var(--edge);
  border: 1px solid var(--edge);
  border-radius: 10px;
  overflow: hidden;
}
.feature-grid li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 2px 14px;
  min-height: 144px;
  padding: 26px 28px;
  background: #17120e;
}
.feature-grid .feature-number {
  grid-row: 1 / span 2;
  color: var(--lantern);
  font: 12px/1.7 var(--mono);
  letter-spacing: 0.12em;
}
.feature-grid strong {
  color: var(--parchment);
  font-family: var(--pixel);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.025em;
}
.feature-grid li > span:last-child { color: var(--ink); font-size: 15px; line-height: 1.55; }
.press-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}
.press-section-heading > p {
  max-width: 560px;
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
}
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.press-download-card,
.brand-download-card {
  display: block;
  overflow: hidden;
  color: var(--parchment);
  background: #17120e;
  border: 1px solid var(--edge);
  border-radius: 10px;
  box-shadow: 0 26px 54px -44px #000;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}
.press-download-card:hover,
.brand-download-card:hover {
  color: var(--parchment);
  background: #1d1711;
  border-color: #6a5033;
  text-decoration: none;
  transform: translateY(-2px);
}
.press-screenshot-preview {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.press-screenshot-preview:focus-visible { outline-offset: -3px; }
.press-screenshot-preview img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #090705;
}
.download-card-copy {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 18px;
}
.download-card-copy strong {
  color: var(--parchment);
  font-family: var(--pixel);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.download-card-copy > span {
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.05em;
}
.press-image-download {
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.press-image-download:hover { color: var(--lantern); text-decoration: none; }
.press-clips { background: rgba(10, 8, 6, 0.48); }
.clip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.clip-card {
  overflow: hidden;
  background: #17120e;
  border: 1px solid var(--edge);
  border-radius: 12px;
}
.clip-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #080705;
}
.clip-copy { padding: 25px; }
.clip-copy h3 { margin: 0 0 9px; font-size: 23px; }
.clip-copy p { margin: 0; color: var(--ink); font-size: 15px; line-height: 1.6; }
.clip-downloads {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}
.clip-downloads a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  color: var(--parchment);
  background: var(--sod);
  border: 1px solid var(--edge);
  border-radius: 6px;
  font-family: var(--pixel);
  font-size: 14px;
  letter-spacing: 0.025em;
}
.clip-downloads a:hover { color: var(--lantern); border-color: var(--lantern); text-decoration: none; }
.clip-card-wide {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  grid-column: 1 / -1;
  align-items: stretch;
}
.clip-card-wide video { height: 100%; object-fit: cover; }
.clip-card-wide .clip-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(26px, 4vw, 48px); }
.clip-card-wide .clip-downloads { grid-template-columns: 1fr; }
.brand-asset-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.brand-asset-grid .brand-asset-logo,
.brand-asset-grid .brand-asset-key-art { grid-column: span 2; }
.brand-download-card { height: 100%; }
.brand-preview {
  display: grid;
  height: 220px;
  place-items: center;
  padding: 20px;
  overflow: hidden;
  background: #0a0806;
  border-bottom: 1px solid var(--edge);
}
.brand-preview.checker {
  background-color: #18130f;
  background-image:
    linear-gradient(45deg, rgba(230,215,184,0.07) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(230,215,184,0.07) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(230,215,184,0.07) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(230,215,184,0.07) 75%);
  background-position: 0 0, 0 12px, 12px -12px, -12px 0;
  background-size: 24px 24px;
}
.brand-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
}
.brand-preview-portrait { height: 300px; }
.brand-asset-grid .download-card-copy {
  display: block;
  padding: 17px 18px 18px;
}
.brand-asset-grid .download-card-copy > span { display: block; margin-top: 4px; }
.press-contact { background: linear-gradient(135deg, rgba(42,33,25,0.88), rgba(18,15,12,0.96)); }
.press-contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}
.press-contact h2 { font-size: clamp(38px, 5vw, 54px); }
.press-contact-email { margin: 12px 0 14px; font: 24px/1.3 var(--pixel); letter-spacing: 0.04em; }
.press-contact-grid > div > p:last-child { max-width: 460px; color: var(--ink); }
.press-usage {
  padding: clamp(28px, 4vw, 42px);
  background: rgba(18,15,12,0.68);
  border: 1px solid #4a3929;
  border-radius: 12px;
}
.press-usage h3 { margin: 0 0 12px; font-size: 24px; }
.press-usage p { margin: 0; color: var(--ink); line-height: 1.7; }
.press-usage .press-actions { margin-top: 25px; }
.press-page .copyright { color: var(--ink); }

@media (max-width: 980px) {
  .press-hero-layout { grid-template-columns: 1fr; min-height: 0; }
  .press-hero-copy { max-width: 800px; }
  .press-hero-card { width: min(100%, 720px); transform: none; }
  .press-about-grid { grid-template-columns: 1fr; }
  .fact-card { position: static; width: min(100%, 680px); }
  .clip-card-wide { grid-template-columns: 1fr; }
  .clip-card-wide video { height: auto; }
  .clip-card-wide .clip-downloads { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand-asset-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .press-topbar nav { gap: 14px; }
  .press-hero-layout { gap: 38px; padding-top: 64px; padding-bottom: 64px; }
  .press-hero::before { background: rgba(18,15,12,0.78); }
  .press-hook { margin-top: 22px; }
  .press-actions { align-items: stretch; }
  .press-actions .btn { flex: 1 1 100%; }
  .press-section-heading { display: block; }
  .press-section-heading > p { margin-top: 17px; }
  .feature-grid,
  .screenshot-grid,
  .clip-grid,
  .press-contact-grid { grid-template-columns: 1fr; }
  .feature-grid li { min-height: 0; }
  .clip-card-wide { grid-column: auto; }
  .brand-asset-grid .brand-asset-logo,
  .brand-asset-grid .brand-asset-key-art { grid-column: auto; }
  .download-card-copy { display: block; }
  .download-card-copy > span,
  .download-card-copy > .press-image-download { display: block; margin-top: 4px; }
}

@media (max-width: 520px) {
  .press-hero-layout { min-width: 0; }
  .press-hero h1 { font-size: clamp(54px, 18vw, 72px); letter-spacing: 0.04em; }
  .press-hook { font-size: 18px; }
  .press-actions .btn { min-width: 0; width: 100%; padding-left: 16px; padding-right: 16px; white-space: normal; }
  .press-section { padding: 66px 0; }
  .fact-card { padding: 23px; }
  .fact-card dl div { grid-template-columns: 86px minmax(0, 1fr); }
  .feature-grid li { grid-template-columns: 34px minmax(0, 1fr); padding: 23px 20px; }
  .brand-asset-grid { grid-template-columns: 1fr; }
  .brand-preview,
  .brand-preview-portrait { height: 220px; }
  .clip-downloads,
  .clip-card-wide .clip-downloads { grid-template-columns: 1fr; }
}

@media (max-width: 360px) {
  .press-hero h1 { font-size: 46px; letter-spacing: 0.025em; }
  .press-section h2 { font-size: 27px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .skip-link,
  .press-download-card,
  .brand-download-card { transition: none; }
  .press-download-card:hover,
  .brand-download-card:hover { transform: none; }
}
