@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Oswald:wght@400;500;600;700&display=swap");

:root {
  --ink: #080a0a;
  --ink-soft: #101414;
  --panel: #151a1a;
  --panel-light: #1d2222;
  --gold: #d5a33c;
  --gold-bright: #f0c35a;
  --cream: #f5f0e6;
  --muted: #a5a69f;
  --line: rgba(255, 255, 255, 0.14);
  --max: 1380px;
  --header-height: 78px;
  --ease: cubic-bezier(0.2, 0.72, 0.24, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--gold) var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--cream);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1800;
  pointer-events: none;
  opacity: 0.025;
  background-image:
    repeating-radial-gradient(circle at 20% 30%, transparent 0 2px, #fff 3px 4px),
    repeating-radial-gradient(circle at 80% 70%, transparent 0 3px, #fff 4px 5px);
  background-size: 13px 17px, 19px 23px;
  mix-blend-mode: soft-light;
}

::selection {
  background: var(--gold-bright);
  color: var(--ink);
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2500;
  padding: 12px 18px;
  transform: translateY(-160%);
  background: var(--gold-bright);
  color: var(--ink);
  font-weight: 700;
  transition: transform 0.2s ease;
}

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

.brand-intro {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  overflow: hidden;
  pointer-events: none;
  background: #000;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.8s var(--ease),
    visibility 0.8s step-end;
}

.brand-intro video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-intro.is-leaving {
  opacity: 0;
  visibility: hidden;
}

.brand-intro.is-skipped {
  display: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 12px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid transparent;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    backdrop-filter 0.35s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(8, 10, 10, 0.88);
  backdrop-filter: blur(18px);
}

.studio-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Oswald", sans-serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.studio-wordmark small {
  color: var(--gold-bright);
  font-size: 0.66em;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.studio-spark {
  color: var(--gold-bright);
  filter: drop-shadow(0 0 12px rgba(240, 195, 90, 0.45));
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.42);
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  letter-spacing: 0.11em;
}

.language-switch button {
  padding: 6px 2px;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.48);
  cursor: pointer;
}

.language-switch button[aria-pressed="true"] {
  color: var(--gold-bright);
}

.header-steam {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(240, 195, 90, 0.55);
  background: rgba(8, 10, 10, 0.68);
  color: var(--cream);
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.header-steam:hover {
  transform: translateY(-2px);
  background: var(--gold-bright);
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.hero-scene,
.hero-wash,
.hero-grain {
  position: absolute;
  inset: 0;
}

.hero-scene {
  z-index: -4;
  background:
    #a8782e
    url("/assets/steam/library-hero.png")
    center 54% / cover no-repeat;
  transform: scale(1.04);
  animation: hero-drift 18s ease-out both;
}

.hero-wash {
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(7, 9, 9, 0.78) 0%, rgba(7, 9, 9, 0.22) 28%, rgba(7, 9, 9, 0.16) 58%, rgba(7, 9, 9, 0.88) 100%),
    radial-gradient(circle at 50% 28%, rgba(255, 236, 196, 0.16), transparent 40%),
    linear-gradient(90deg, rgba(8, 10, 10, 0.38), transparent 28%, transparent 72%, rgba(8, 10, 10, 0.38));
}

.hero-grain {
  z-index: -2;
  opacity: 0.09;
  background-image: url("/assets/steam/page-background.jpg");
  background-size: cover;
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: min(100% - 40px, 1020px);
  margin: 0 auto;
  padding: calc(var(--header-height) + 54px) 0 126px;
  text-align: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 0 5px rgba(240, 195, 90, 0.14);
  animation: live-pulse 2s ease-in-out infinite;
}

.game-logo {
  width: min(900px, 90vw);
  height: auto;
  aspect-ratio: 1280 / 360;
  object-fit: contain;
  filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.4));
}

.hero h1 {
  max-width: 900px;
  margin: 30px 0 12px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.98;
  text-transform: uppercase;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.48);
}

.hero-lead {
  max-width: 710px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.68;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.72);
}

.hero-cta,
.final-actions {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-top: 34px;
}

.steam-button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 76px;
  padding: 12px 18px;
  border: 1px solid rgba(240, 195, 90, 0.88);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.steam-button-primary {
  min-width: min(100%, 350px);
  background:
    linear-gradient(135deg, rgba(255, 222, 132, 0.14), transparent 42%),
    var(--gold);
  color: #11110e;
}

.steam-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  background-color: var(--gold-bright);
}

.steam-button .steam-symbol {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 10px;
}

.steam-button > span:nth-child(2) {
  display: grid;
  gap: 2px;
  text-align: left;
}

.steam-button small {
  font-family: "Oswald", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.steam-button strong {
  font-size: 17px;
  line-height: 1.2;
}

.steam-button > b {
  margin-left: auto;
  font-size: 22px;
}

.steam-app-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 76px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(8, 10, 10, 0.68);
  color: rgba(255, 255, 255, 0.9);
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.steam-app-link:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(8, 10, 10, 0.9);
}

.steam-helper {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  width: min(100%, 760px);
  margin-top: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 10, 10, 0.7);
  backdrop-filter: blur(14px);
}

.hero-meta span {
  display: grid;
  gap: 5px;
  padding: 13px 18px;
}

.hero-meta span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-meta small,
.frame-label,
.section-number {
  color: var(--gold-bright);
  font-family: "Oswald", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-meta b {
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.scroll-cue {
  position: absolute;
  right: clamp(22px, 4vw, 64px);
  bottom: 30px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.58);
  font-family: "Oswald", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 1px;
  height: 44px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: -100% 0 auto;
  height: 100%;
  background: var(--gold-bright);
  animation: scroll-line 1.8s ease-in-out infinite;
}

.section-shell {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: 120px 48px;
}

.trailer-section {
  position: relative;
  background:
    linear-gradient(180deg, #0a0c0c, #111515);
}

.trailer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(255, 255, 255, 0.035) 50%, transparent 50.1%),
    linear-gradient(transparent 49.9%, rgba(255, 255, 255, 0.025) 50%, transparent 50.1%);
  background-size: 72px 72px;
}

.trailer-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.5fr);
  align-items: center;
  gap: clamp(48px, 7vw, 112px);
}

.section-number {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.42);
}

.section-number::after {
  content: "";
  width: 68px;
  height: 1px;
  margin-left: 10px;
  background: currentColor;
}

.section-copy h2,
.gameplay-heading h2,
.final-copy h2 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(46px, 6vw, 82px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.98;
  text-transform: uppercase;
}

.section-copy > p:not(.section-number),
.gameplay-heading > p:not(.section-number),
.final-copy > p:not(.section-number) {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.text-steam-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold-bright);
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-steam-link b {
  transition: transform 0.2s ease;
}

.text-steam-link:hover b {
  transform: translate(3px, -3px);
}

.trailer-frame {
  position: relative;
  padding: 10px;
  border: 1px solid rgba(240, 195, 90, 0.32);
  background: #050606;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.46);
}

.trailer-frame::before,
.trailer-frame::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  pointer-events: none;
}

.trailer-frame::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--gold-bright);
  border-left: 2px solid var(--gold-bright);
}

.trailer-frame::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid var(--gold-bright);
  border-bottom: 2px solid var(--gold-bright);
}

.trailer-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  object-fit: cover;
}

.frame-label {
  position: absolute;
  right: 20px;
  bottom: -31px;
  color: rgba(255, 255, 255, 0.42);
}

.gameplay-section {
  position: relative;
  overflow: hidden;
  background: #ebe4d6;
  color: var(--ink);
}

.gameplay-section::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  opacity: 0.2;
  background: url("/assets/steam/library-hero.png") center bottom / cover no-repeat;
  filter: sepia(0.65);
  mask-image: linear-gradient(transparent, #000);
}

.gameplay-section .section-shell {
  position: relative;
}

.gameplay-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.72fr;
  align-items: end;
  column-gap: 80px;
}

.gameplay-heading .section-number {
  grid-column: 1 / -1;
  color: #777268;
}

.gameplay-heading > p:not(.section-number) {
  margin: 0;
  color: #64635f;
}

.loop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 68px;
}

.loop-card {
  position: relative;
  padding: 10px 10px 30px;
  border: 1px solid rgba(8, 10, 10, 0.16);
  background: rgba(250, 247, 240, 0.86);
  box-shadow: 0 22px 70px rgba(94, 70, 28, 0.12);
  backdrop-filter: blur(10px);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s ease;
}

.loop-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 90px rgba(94, 70, 28, 0.2);
}

.loop-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #b59760;
}

.loop-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.loop-card:hover video {
  transform: scale(1.04);
}

.loop-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.loop-media > span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: rgba(8, 10, 10, 0.86);
  color: var(--gold-bright);
  font-family: "Oswald", sans-serif;
  font-size: 12px;
}

.loop-card h3 {
  margin: 26px 16px 10px;
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
}

.loop-card p {
  margin: 0 16px;
  color: #686660;
  font-size: 14px;
  line-height: 1.65;
}

.final-steam {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: #0a0c0c;
}

.final-landscape {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background:
    linear-gradient(90deg, #0a0c0c 0%, rgba(10, 12, 12, 0.82) 43%, rgba(10, 12, 12, 0.15) 100%),
    url("/assets/steam/library-hero.png") center / cover no-repeat;
  filter: saturate(0.74) contrast(1.08);
}

.final-landscape::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0a0c0c, transparent 28%, transparent 72%, #0a0c0c);
}

.final-inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.68fr 1fr;
  align-items: center;
  gap: clamp(54px, 8vw, 130px);
  min-height: 700px;
}

.final-capsule {
  width: min(100%, 462px);
  height: auto;
  aspect-ratio: 462 / 174;
  object-fit: contain;
  filter: drop-shadow(0 26px 44px rgba(0, 0, 0, 0.5));
}

.final-copy {
  max-width: 680px;
}

.final-actions {
  align-items: center;
  flex-wrap: wrap;
}

.final-actions .steam-app-link {
  min-height: 58px;
}

.steam-dock {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 950;
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 370px;
  padding: 9px 9px 9px 18px;
  border: 1px solid rgba(240, 195, 90, 0.34);
  background: rgba(8, 10, 10, 0.92);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.44);
  opacity: 0;
  transform: translateY(25px);
  pointer-events: none;
  backdrop-filter: blur(16px);
  transition:
    opacity 0.32s ease,
    transform 0.32s var(--ease);
}

.steam-dock.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.steam-dock > div {
  display: grid;
  gap: 3px;
}

.steam-dock small {
  color: var(--muted);
  font-family: "Oswald", sans-serif;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.steam-dock strong {
  font-size: 14px;
}

.steam-dock > a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 50px;
  margin-left: auto;
  padding: 0 18px;
  background: var(--gold);
  color: var(--ink);
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px 50px;
  padding: 48px clamp(22px, 4vw, 64px);
  border-top: 1px solid var(--line);
  background: #060808;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer > a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-bright);
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer > small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.32);
  font-family: "Oswald", sans-serif;
  font-size: 9px;
  letter-spacing: 0.13em;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
}

.js .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.js .hero .reveal:nth-child(2) {
  transition-delay: 0.05s;
}

.js .hero .reveal:nth-child(3) {
  transition-delay: 0.1s;
}

.js .hero .reveal:nth-child(4) {
  transition-delay: 0.16s;
}

.js .hero .reveal:nth-child(5) {
  transition-delay: 0.22s;
}

.js .hero .reveal:nth-child(6) {
  transition-delay: 0.28s;
}

@keyframes hero-drift {
  from {
    transform: scale(1.08) translateY(10px);
  }
  to {
    transform: scale(1.04) translateY(0);
  }
}

@keyframes live-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(240, 195, 90, 0.12);
  }
  50% {
    box-shadow: 0 0 0 9px rgba(240, 195, 90, 0);
  }
}

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

@media (max-width: 1100px) {
  .trailer-grid {
    grid-template-columns: 1fr;
  }

  .section-copy {
    max-width: 700px;
  }

  .frame-label {
    position: static;
    display: block;
    padding: 14px 4px 4px;
  }

  .gameplay-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gameplay-heading > p:not(.section-number) {
    max-width: 680px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    padding-inline: 20px;
  }

  .header-actions {
    gap: 14px;
  }

  .header-steam span {
    display: none;
  }

  .header-steam {
    width: 44px;
    min-height: 44px;
    justify-content: center;
    padding: 0;
  }

  .hero-content {
    padding-top: calc(var(--header-height) + 48px);
  }

  .hero-cta {
    flex-direction: column;
    width: min(100%, 430px);
  }

  .steam-button,
  .steam-app-link {
    width: 100%;
  }

  .loop-grid {
    grid-template-columns: 1fr;
    max-width: 660px;
    margin-inline: auto;
  }

  .loop-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    column-gap: 14px;
    padding-bottom: 10px;
  }

  .loop-card .loop-media {
    grid-row: 1 / 3;
  }

  .loop-card h3 {
    align-self: end;
    margin-top: 18px;
  }

  .loop-card p {
    align-self: start;
    margin-bottom: 18px;
  }

  .final-inner {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .final-capsule {
    width: min(70%, 462px);
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .steam-dock {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 640px) {
  .studio-wordmark {
    font-size: 18px;
  }

  .language-switch {
    gap: 6px;
  }

  .hero-scene {
    background-position: 42% 54%;
  }

  .hero-content {
    width: min(100% - 28px, 1020px);
    padding-bottom: 104px;
  }

  .kicker {
    font-size: 10px;
    letter-spacing: 0.13em;
  }

  .game-logo {
    width: 100%;
  }

  .hero h1 {
    margin-top: 24px;
    font-size: clamp(40px, 13vw, 60px);
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.6;
  }

  .steam-button {
    min-height: 68px;
  }

  .steam-app-link {
    min-height: 58px;
    padding-inline: 16px;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .hero-meta span {
    grid-template-columns: 1fr auto;
    align-items: center;
    text-align: left;
  }

  .hero-meta span + span {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .scroll-cue {
    display: none;
  }

  .section-shell {
    padding: 86px 20px;
  }

  .section-copy h2,
  .gameplay-heading h2,
  .final-copy h2 {
    font-size: clamp(44px, 14vw, 68px);
  }

  .trailer-frame {
    padding: 5px;
  }

  .loop-card {
    display: block;
    padding-bottom: 28px;
  }

  .loop-card h3 {
    margin-top: 24px;
  }

  .final-steam,
  .final-inner {
    min-height: 760px;
  }

  .final-capsule {
    width: 100%;
  }

  .final-actions {
    display: grid;
    width: 100%;
  }

  .steam-dock {
    right: 0;
    bottom: 0;
    left: 0;
    min-width: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
  }

  .steam-dock > div {
    min-width: 0;
  }

  .steam-dock strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 110px;
  }

  .site-footer > a,
  .site-footer p,
  .site-footer > small {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .brand-intro {
    display: none;
  }

  .hero-scene {
    transform: none;
  }
}
