:root {
  --bg: #040404;
  --panel: #090909;
  --panel-2: #10100f;
  --line: rgba(255, 255, 255, 0.2);
  --line-soft: rgba(255, 255, 255, 0.1);
  --gold: #f2b54c;
  --gold-strong: #ffc56b;
  --gold-dark: #8b5a18;
  --text: #f4f1ea;
  --muted: #b9b5ad;
  --dim: #77736d;
  --radius: 8px;
  --container: 1360px;
  --game-image-ratio: 1232 / 706;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 70% 12%, rgba(242, 181, 76, 0.12), transparent 28rem),
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.05), transparent 20rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 180px),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

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

button,
input {
  font: inherit;
}

.site-shell {
  width: min(calc(100% - clamp(40px, 7vw, 128px)), var(--container));
  margin: 0 auto;
  padding: clamp(28px, 4vw, 56px) 0 36px;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.brand::after {
  content: "MEERKATT\A STUDIO";
  white-space: pre;
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.36em;
}

.brand img {
  width: 54px;
  height: 76px;
  object-fit: contain;
}

.site-footer img {
  width: 58px;
  height: 82px;
  object-fit: contain;
}

.site-nav,
.site-footer nav,
.socials {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
}

.site-nav a,
.site-footer a {
  color: var(--text);
  font-size: 0.95rem;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.site-footer a:hover {
  color: var(--gold-strong);
}

.site-nav a.is-active::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin-top: 10px;
  background: var(--gold);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(560px, 68vh, 780px);
  margin: clamp(34px, 5vw, 64px) 0 42px;
  overflow: hidden;
  border-radius: var(--radius);
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero::before {
  display: none;
}

.hero::after {
  display: none;
}

.hero-copy {
  max-width: 620px;
  padding: clamp(34px, 5vw, 72px) 0;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(3.2rem, 5vw, 5.7rem);
}

.eyebrow,
.section-heading h2,
.text-link,
.game-card a {
  color: var(--gold-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.text-link,
.game-card a,
.download-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.text-link::after,
.game-card a::after,
.download-link::after {
  content: "";
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  background-color: currentColor;
  -webkit-mask: url("assets/icons/arrow-small-right.svg") center / contain no-repeat;
  mask: url("assets/icons/arrow-small-right.svg") center / contain no-repeat;
}

.eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.eyebrow span {
  width: 4px;
  height: 4px;
  margin-top: 0.65em;
  border-radius: 999px;
  background: currentColor;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 5.2vw, 6.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.lead {
  max-width: 600px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 30px;
  border: 1px solid var(--gold-dark);
  border-radius: 6px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button-with-icon,
.trailer-icon-link {
  gap: 10px;
}

.button.button-with-icon {
  padding-inline: 20px;
  text-align: center;
}

.trailer-icon-link {
  display: inline-flex;
  align-items: center;
}

.button-symbol {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.button[href]::after {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background-color: currentColor;
  -webkit-mask: url("assets/icons/arrow-small-right.svg") center / contain no-repeat;
  mask: url("assets/icons/arrow-small-right.svg") center / contain no-repeat;
}

.button-primary {
  background: linear-gradient(180deg, var(--gold-strong), #edae48);
  color: #090603;
  border-color: transparent;
}

.button-ghost {
  background: rgba(0, 0, 0, 0.35);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  margin: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 1;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, transparent 24%, rgba(0, 0, 0, 0.18) 34%, rgba(0, 0, 0, 0.72) 48%, black 60%, black 78%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.72) 14%, black 24%, black 78%, rgba(0, 0, 0, 0.72) 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-mode: alpha;
  mask-image:
    linear-gradient(to right, transparent 0%, transparent 24%, rgba(0, 0, 0, 0.18) 34%, rgba(0, 0, 0, 0.72) 48%, black 60%, black 78%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.72) 14%, black 24%, black 78%, rgba(0, 0, 0, 0.72) 88%, transparent 100%);
  mask-composite: intersect;
}

.section-block {
  padding: 28px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 26px;
}

.section-heading::after {
  content: "";
  height: 1px;
  background: var(--line);
}

.section-heading h2 {
  margin: 0;
  color: var(--text);
}

.section-heading h2 span {
  color: var(--gold);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(18px, 1.5vw, 26px);
}

.game-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.game-card img {
  width: 100%;
  aspect-ratio: var(--game-image-ratio);
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 197, 107, 0.72);
  background: linear-gradient(180deg, rgba(255, 197, 107, 0.095), rgba(255, 255, 255, 0.018));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(242, 181, 76, 0.08);
}

.game-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) brightness(1.05);
}

.game-card:hover a {
  color: var(--gold);
}

.game-card-body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 18px 18px 20px;
}

.game-card-title {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
}

.game-card h3 {
  margin-bottom: 0;
  font-size: 1.35rem;
  font-weight: 650;
}

.game-card-title span {
  flex: 0 0 auto;
  margin-top: 3px;
  padding: 4px 8px;
  border: 1px solid rgba(139, 90, 24, 0.75);
  border-radius: 999px;
  color: var(--gold-strong);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.08em;
}

.game-card p {
  min-height: 48px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.game-card a {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  letter-spacing: 0.05em;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 8px 0 16px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
}

.pillars article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  min-height: 140px;
  align-items: center;
  padding: 28px;
}

.pillars article + article {
  border-left: 1px solid var(--line-soft);
}

.line-icon {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  color: var(--gold-strong);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.line-icon img,
.game-icon img {
  width: 44%;
  height: 44%;
  object-fit: contain;
  filter: invert(67%) sepia(88%) saturate(651%) hue-rotate(352deg) brightness(103%) contrast(94%);
}

.pillars h2,
.signup-panel h2,
.info-panel h2,
.page-title h1 {
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pillars p,
.signup-panel p,
.info-panel p,
.page-title p,
.content-panel p,
.content-panel li {
  color: var(--muted);
}

.signup-panel {
  display: grid;
  grid-template-columns: 96px 1fr minmax(340px, 0.9fr);
  gap: 26px;
  align-items: center;
  margin: 18px 0;
  padding: 26px;
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(242, 181, 76, 0.06), rgba(255, 255, 255, 0.015));
}

.mail-symbol {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
}

.mail-symbol img {
  width: 36%;
  height: 36%;
  object-fit: contain;
  filter: invert(67%) sepia(88%) saturate(651%) hue-rotate(352deg) brightness(103%) contrast(94%);
}

.club-envelope {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  justify-self: center;
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.45));
}

.club-envelope img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.signup-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.signup-form input {
  min-height: 56px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.65);
  color: var(--text);
  padding: 0 18px;
}

.signup-form small {
  grid-column: 1 / -1;
  color: var(--dim);
}

.signup-form .signup-status,
.application-form .signup-status {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--text);
  overflow-wrap: anywhere;
}

.signup-form.is-success > :not(.signup-status),
.application-form.is-success > :not(.signup-status) {
  display: none;
}

.signup-form.is-success .signup-status,
.application-form.is-success .signup-status {
  padding: 16px 18px;
  border: 1px solid var(--gold-dark);
  border-radius: 6px;
}

.signup-form [type="submit"]:disabled,
.application-form [type="submit"]:disabled {
  opacity: 0.65;
  cursor: wait;
}

.split-panels {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 18px;
  margin-top: 18px;
}

.info-panel,
.content-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012));
}

.info-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 190px;
  padding: 28px;
}

.compact .button {
  min-height: 42px;
  padding: 0 22px;
  font-size: 0.76rem;
}

.badge-card {
  width: 120px;
  height: 150px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  transform: rotate(-9deg);
  background: #111;
}

.badge-card img {
  width: 52px;
  height: 78px;
  object-fit: contain;
}

.press-home-logo {
  width: min(150px, 28vw);
  height: auto;
  justify-self: end;
  transform: rotate(-6deg);
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.55));
}

.france-mark {
  display: grid;
  width: 152px;
  height: 152px;
  place-items: center;
  border: 1px solid var(--gold-dark);
  border-radius: 45% 55% 48% 52%;
  color: var(--gold-strong);
  font-weight: 800;
}

.location-map {
  width: min(210px, 34vw);
  height: auto;
  justify-self: end;
  mix-blend-mode: screen;
  filter: saturate(1.1) contrast(1.05);
}

.site-footer {
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--gold-dark);
}

.site-footer img {
  width: 170px;
}

.site-footer p {
  width: 100%;
  margin: -10px 0 0;
  color: var(--dim);
  text-align: center;
}

.socials {
  gap: 14px;
}

.socials a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
}

.page-title {
  padding: clamp(56px, 8vw, 92px) 0 28px;
  max-width: 760px;
}

.page-title h1 {
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: none;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.content-panel {
  padding: 28px;
}

.content-panel h2 {
  margin-bottom: 14px;
}

.content-panel ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.playtest-hero {
  min-height: clamp(560px, 66vh, 760px);
  margin: clamp(34px, 5vw, 64px) 0 34px;
}

.playtest-hero-copy {
  max-width: 620px;
  padding: clamp(34px, 5vw, 72px) 0;
}

.playtest-hero h1 {
  max-width: 650px;
  font-size: clamp(3.2rem, 5vw, 5.7rem);
}

.icon-button span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--text);
  color: #050505;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.icon-button span img {
  width: 58%;
  height: 58%;
  object-fit: contain;
}

.playtest-benefits,
.process-steps,
.application-panel,
.community-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012));
}

.playtest-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 46px;
}

.playtest-benefits article {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 140px;
  padding: 28px;
}

.playtest-benefits article + article {
  border-left: 1px solid var(--line-soft);
}

.playtest-benefits h2,
.process-steps h3,
.application-panel h2,
.community-panel h2 {
  margin-bottom: 8px;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.playtest-benefits p,
.process-steps p,
.application-panel p,
.community-panel p,
.application-form small {
  margin-bottom: 0;
  color: var(--muted);
}

.playtest-icon,
.step-number,
.step-icon,
.discord-mark {
  display: grid;
  place-items: center;
  color: var(--gold-strong);
  border: 1px solid var(--gold-dark);
}

.playtest-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
}

.playtest-icon img,
.step-icon img,
.discord-mark img {
  width: 44%;
  height: 44%;
  object-fit: contain;
  filter: invert(67%) sepia(88%) saturate(651%) hue-rotate(352deg) brightness(103%) contrast(94%);
}

.process-section {
  margin-bottom: 34px;
}

.compact-heading {
  margin-bottom: 0;
}

.compact-heading::after {
  opacity: 0.9;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 30px 28px;
}

.process-steps article {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  min-height: 142px;
  align-items: start;
  padding: 18px 24px 18px 0;
}

.process-steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 18px;
  height: 18px;
  background-color: var(--gold-strong);
  -webkit-mask: url("assets/icons/arrow-small-right.svg") center / contain no-repeat;
  mask: url("assets/icons/arrow-small-right.svg") center / contain no-repeat;
  transform: translateY(-50%);
}

.step-number {
  position: absolute;
  top: 10px;
  left: 0;
  width: 30px;
  height: 30px;
  z-index: 1;
  border-radius: 50%;
  background: #050505;
  font-size: 0.82rem;
  font-weight: 900;
}

.step-icon {
  width: 80px;
  height: 80px;
  align-self: start;
  margin: 16px 0 0 18px;
  border: 0;
  border-radius: 0;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.process-section .compact-heading {
  margin-bottom: 26px;
}

.process-steps .step-icon img {
  width: 72%;
  height: 72%;
}

.process-steps h3 {
  font-size: 0.84rem;
}

.process-steps p {
  max-width: 190px;
  font-size: 0.78rem;
}

.application-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
  margin-bottom: 34px;
  padding: clamp(26px, 3vw, 34px);
  border-color: var(--gold-dark);
}

.application-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
}

.application-form label {
  display: grid;
  gap: 10px;
}

.application-form span {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 650;
}

.application-form input,
.application-form select,
.application-form textarea {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.66);
  color: var(--text);
  padding: 0 18px;
}

.application-form textarea {
  min-height: 108px;
  padding-top: 16px;
  resize: vertical;
}

.wide-field {
  grid-column: span 2;
}

.form-submit {
  display: grid;
  grid-column: 1 / -1;
  gap: 10px;
  text-align: center;
}

.form-submit .button {
  width: 100%;
}

.community-panel {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(220px, 320px);
  gap: 28px;
  align-items: center;
  margin-bottom: 36px;
  padding: 28px;
  border-color: var(--gold-dark);
}

.community-lead {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 22px;
  align-items: center;
}

.discord-mark {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  font-weight: 900;
}

.community-action {
  display: flex;
  justify-content: flex-end;
}

.community-action .button {
  width: min(100%, 280px);
}

.presskit-hero {
  min-height: clamp(520px, 62vh, 720px);
  margin: clamp(34px, 5vw, 64px) 0 34px;
}

.presskit-hero-copy {
  max-width: 620px;
  padding: clamp(34px, 5vw, 72px) 0;
}

.presskit-hero h1 {
  max-width: 650px;
  font-size: clamp(3.2rem, 5vw, 5.7rem);
}

.presskit-resources {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 0 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012));
}

.presskit-resources article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  min-height: 132px;
  align-items: center;
  padding: 24px;
}

.presskit-resources article + article {
  border-left: 1px solid var(--line-soft);
}

.presskit-icon,
.inside-grid span {
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-dark);
  border-radius: 10px;
  color: var(--gold-strong);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.presskit-icon {
  width: 50px;
  height: 50px;
}

.presskit-icon img,
.inside-grid span img {
  width: 46%;
  height: 46%;
  object-fit: contain;
  filter: invert(67%) sepia(88%) saturate(651%) hue-rotate(352deg) brightness(103%) contrast(94%);
}

.presskit-resources h2,
.studio-factsheet h2,
.inside-panel h2,
.press-contact-panel h2 {
  margin-bottom: 8px;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.presskit-resources p,
.studio-factsheet p,
.inside-panel p,
.press-contact-panel p,
.press-contact-panel small,
.download-link {
  color: var(--muted);
}

.presskit-game-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 1.5vw, 26px);
}

.presskit-game-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
}

.presskit-game-card > img {
  width: 100%;
  aspect-ratio: 1.7;
  object-fit: cover;
}

.presskit-game-card > div {
  padding: 18px;
}

.presskit-game-card h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.presskit-game-card p {
  margin-bottom: 16px;
  color: var(--muted);
}

.presskit-game-card .button {
  width: 100%;
  min-height: 42px;
}

.download-link {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.presskit-details {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 18px;
  margin: 0 0 34px;
}

.studio-factsheet,
.inside-panel,
.press-contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012));
}

.studio-factsheet,
.inside-panel {
  padding: 26px;
}

.factsheet-layout {
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) 1fr;
  gap: 20px;
}

.factsheet-brand {
  display: grid;
  place-items: center;
  padding: 22px;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  text-align: center;
}

.factsheet-brand img {
  width: 78px;
  height: 116px;
  object-fit: contain;
  margin-bottom: 18px;
}

.studio-factsheet dl {
  margin: 0;
}

.studio-factsheet dl div {
  display: grid;
  grid-template-columns: minmax(120px, 0.44fr) 1fr;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-soft);
}

.studio-factsheet dt {
  color: var(--muted);
}

.studio-factsheet dd {
  margin: 0;
  color: var(--text);
}

.inside-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.inside-grid article {
  display: grid;
  min-height: 126px;
  place-items: center;
  padding: 16px;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  text-align: center;
}

.inside-grid span {
  width: 44px;
  height: 38px;
  margin-bottom: 10px;
}

.inside-grid h3 {
  margin-bottom: 4px;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.inside-grid p {
  margin-bottom: 0;
  font-size: 0.82rem;
}

.press-contact-panel {
  display: grid;
  grid-template-columns: 96px 1fr minmax(320px, 0.9fr);
  gap: 26px;
  align-items: center;
  margin-bottom: 36px;
  padding: 26px;
  border-color: var(--gold-dark);
}

.press-contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.press-contact-actions .button {
  min-height: 48px;
}

.press-contact-actions small {
  grid-column: 1 / -1;
  text-align: center;
}

.about-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: clamp(520px, 62vh, 720px);
  margin: clamp(34px, 5vw, 64px) 0 34px;
  overflow: hidden;
  border-radius: var(--radius);
  isolation: isolate;
}

.about-hero-copy {
  max-width: 660px;
  padding: clamp(34px, 5vw, 72px) 0;
}

.about-hero h1 {
  max-width: 680px;
  font-size: clamp(3.1rem, 5vw, 5.55rem);
}

.about-hero-visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  opacity: 0.96;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, black 12%, black 82%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 12%, black 82%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, black 12%, black 82%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 12%, black 82%, transparent 100%);
  mask-composite: intersect;
}

.about-monitor {
  width: min(100%, 620px);
  padding: 16px;
  border: 1px solid rgba(242, 181, 76, 0.24);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)), #080706;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.72);
  transform: perspective(900px) rotateY(-6deg) rotateX(2deg);
}

.about-monitor img {
  width: 100%;
  aspect-ratio: 1.65;
  object-fit: cover;
  border-radius: 9px;
}

.about-desk-card {
  position: absolute;
  padding: 16px 14px;
  border: 1px solid var(--gold-dark);
  border-radius: 4px;
  background: rgba(13, 9, 4, 0.9);
  color: var(--gold-strong);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.about-note-one {
  top: 14%;
  right: 5%;
  transform: rotate(3deg);
}

.about-note-two {
  top: 38%;
  right: 1%;
  transform: rotate(-2deg);
}

.about-note-three {
  bottom: 18%;
  right: 10%;
  transform: rotate(2deg);
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 0 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012));
}

.about-pillars article {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 18px;
  min-height: 136px;
  align-items: center;
  padding: 24px;
}

.about-pillars article + article {
  border-left: 1px solid var(--line-soft);
}

.about-pillars h2,
.story-copy h2,
.about-facts h2,
.about-make h2,
.milestones h3,
.work-panel h2,
.about-cta h2 {
  margin-bottom: 8px;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-pillars p,
.story-copy p,
.about-facts p,
.milestones p,
.work-panel p,
.about-cta p {
  color: var(--muted);
}

.story-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) 1fr;
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  margin-bottom: 34px;
}

.story-copy p {
  max-width: 560px;
}

.story-capsules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding-block: 16px;
}

.story-capsules img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.story-collage {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 70% 28%, rgba(242, 181, 76, 0.16), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012));
}

.story-collage > img {
  position: absolute;
  width: 46%;
  aspect-ratio: 1.35;
  object-fit: cover;
  border: 1px solid rgba(242, 181, 76, 0.22);
  border-radius: 6px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.56);
}

.story-collage > img:nth-child(1) {
  left: 8%;
  top: 12%;
  transform: rotate(-4deg);
}

.story-collage > img:nth-child(2) {
  right: 10%;
  top: 10%;
  transform: rotate(3deg);
}

.story-collage > img:nth-child(3) {
  right: 18%;
  bottom: 10%;
  transform: rotate(-2deg);
}

.story-notebook {
  position: absolute;
  left: 34%;
  top: 30%;
  display: grid;
  width: 132px;
  height: 164px;
  place-items: center;
  border: 1px solid var(--gold-dark);
  border-radius: 8px;
  background: #111;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
  transform: rotate(1deg);
}

.story-notebook img {
  width: 56px;
  height: 90px;
  object-fit: contain;
}

.story-collage span {
  position: absolute;
  right: 22px;
  bottom: 22px;
  padding: 14px 12px;
  border: 1px solid var(--gold-dark);
  background: rgba(15, 10, 5, 0.92);
  color: var(--gold-strong);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
  transform: rotate(4deg);
}

.about-details {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 18px;
  margin-bottom: 34px;
}

.about-facts .factsheet-layout {
  display: block;
}

.about-make .inside-grid h3 {
  margin-bottom: 0;
}

.milestones-section {
  margin-bottom: 34px;
}

.milestones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 10px;
}

.milestones article {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  min-height: 118px;
  padding-top: 8px;
}

.milestones article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 31px;
  right: -11px;
  width: 28px;
  border-top: 2px dotted var(--gold-dark);
}

.milestones h3 {
  font-size: 0.82rem;
}

.milestones p {
  margin-bottom: 0;
  font-size: 0.84rem;
}

.work-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012));
}

.work-panel article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  min-height: 132px;
  align-items: center;
  padding: 26px;
}

.work-panel article + article {
  border-left: 1px solid var(--line-soft);
}

.about-cta {
  display: grid;
  grid-template-columns: 1fr minmax(420px, 0.9fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 36px;
  padding: 28px 46px;
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(242, 181, 76, 0.06), rgba(255, 255, 255, 0.015));
}

.about-cta h2 {
  font-size: clamp(1.8rem, 2.3vw, 2.55rem);
  letter-spacing: 0;
  text-transform: none;
}

.about-cta-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.game-detail-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(560px, 68vh, 780px);
  margin: clamp(34px, 5vw, 64px) 0 42px;
  overflow: hidden;
  border-radius: var(--radius);
  isolation: isolate;
}

.game-detail-hero::before {
  display: none;
}

.game-detail-hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 1;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, transparent 24%, rgba(0, 0, 0, 0.18) 34%, rgba(0, 0, 0, 0.72) 48%, black 60%, black 78%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.72) 14%, black 24%, black 78%, rgba(0, 0, 0, 0.72) 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-mode: alpha;
  mask-image:
    linear-gradient(to right, transparent 0%, transparent 24%, rgba(0, 0, 0, 0.18) 34%, rgba(0, 0, 0, 0.72) 48%, black 60%, black 78%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.72) 14%, black 24%, black 78%, rgba(0, 0, 0, 0.72) 88%, transparent 100%);
  mask-composite: intersect;
}

.game-detail-copy {
  max-width: 620px;
  padding: clamp(34px, 5vw, 72px) 0;
}

.game-detail-copy h1 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 5vw, 5.7rem);
}

.game-subtitle {
  margin-bottom: 18px;
  color: var(--gold-strong);
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  font-weight: 800;
}

.game-facts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0 0 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012));
}

.game-detail-hero ~ .section-block {
  padding: 18px 0 46px;
}

.game-detail-hero ~ .section-block .compact-heading {
  margin-bottom: 20px;
}

.game-facts article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  min-height: 92px;
  align-items: center;
  padding: 20px;
}

.game-facts article + article {
  border-left: 1px solid var(--line-soft);
}

.game-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--gold-dark);
  border-radius: 10px;
  color: var(--gold-strong);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.game-facts h2,
.feature-grid h3,
.about-game-copy h2,
.game-cta h2 {
  margin-bottom: 4px;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.game-facts p,
.feature-grid p,
.about-game-copy p,
.about-game-copy li,
.game-cta p {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 1.5vw, 26px);
  margin-bottom: 4px;
}

.feature-grid article {
  display: grid;
  gap: 14px;
  min-height: 180px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012));
}

.feature-grid .line-icon {
  width: 62px;
  height: 62px;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.4vw, 20px);
  margin-bottom: 10px;
}

.screenshot-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1.62;
  object-fit: cover;
  border: 1px solid var(--gold-dark);
  border-radius: 6px;
}

.screenshot-grid a {
  display: block;
  min-width: 0;
  border-radius: 6px;
  cursor: zoom-in;
}

.screenshot-grid a:focus-visible {
  outline: 2px solid var(--gold-strong);
  outline-offset: 4px;
}

.screenshot-grid a:hover img {
  border-color: var(--gold-strong);
}

.screenshot-viewer {
  width: 100vw;
  height: 100dvh;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 16px;
  border: 0;
  background: rgba(0, 0, 0, 0.95);
  color: var(--text);
}

.screenshot-viewer[open] {
  display: grid;
  grid-template-rows: 44px minmax(0, 1fr) 44px;
  gap: 12px;
}

.screenshot-viewer::backdrop { background: #000; }

.screenshot-viewer-toolbar,
.screenshot-viewer-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.screenshot-viewer-navigation { justify-content: center; }

.screenshot-viewer button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--gold-dark);
  border-radius: 6px;
  background: #111;
  color: var(--gold-strong);
  cursor: pointer;
}

.screenshot-viewer button:hover,
.screenshot-viewer button:focus-visible { outline: 2px solid var(--gold-strong); }
.screenshot-viewer button svg { width: 24px; height: 24px; }
.screenshot-viewer-navigation svg { fill: currentColor; }
.screenshot-viewer [data-previous] svg { transform: rotate(180deg); }
.screenshot-viewer-stage { min-height: 0; display: grid; place-items: center; }
.screenshot-viewer-stage img { width: 100%; height: 100%; min-height: 0; object-fit: contain; }

.about-game-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) 1fr;
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
  margin: 18px 0 44px;
}

.about-game-copy h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.65rem);
  letter-spacing: 0;
  text-transform: none;
}

.about-game-copy ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.about-game-copy li::marker {
  color: var(--gold-strong);
}

.game-presskit-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(260px, 0.78fr);
  overflow: hidden;
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 16%, rgba(245, 174, 57, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
}

.game-presskit-panel > img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.game-presskit-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(24px, 3vw, 34px);
  border-left: 1px solid var(--gold-dark);
  background: rgba(0, 0, 0, 0.5);
}

.game-presskit-body h3 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
}

.game-presskit-body p:not(.eyebrow) {
  max-width: 34rem;
  margin: 0;
}

.presskit-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.presskit-items span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.presskit-actions {
  display: grid;
  gap: 12px;
}

.presskit-actions .button {
  width: 100%;
  min-height: 48px;
  padding-inline: 16px;
  font-size: 0.78rem;
}

.game-cta {
  display: grid;
  grid-template-columns: 74px 1fr minmax(420px, 0.95fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 36px;
  padding: 26px;
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(242, 181, 76, 0.06), rgba(255, 255, 255, 0.015));
}

.game-cta h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  letter-spacing: 0;
  text-transform: none;
}

.game-cta-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  place-items: center;
  padding: 24px;
}

.video-modal:target {
  display: grid;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
}

.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius);
  background: #050505;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.75);
}

.video-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line-soft);
}

.video-modal-header h2 {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-modal-header a {
  color: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-frame {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.68)),
    var(--video-poster, #000);
  background-color: #000;
  background-position: center;
  background-size: cover;
}

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

.video-play-button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--gold-strong), #edae48);
  color: #090603;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease;
}

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

.video-fallback {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border: 1px solid var(--gold-dark);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

@media (max-width: 1000px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .split-panels,
  .content-grid {
    grid-template-columns: 1fr;
  }

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

  .pillars,
  .signup-panel,
  .playtest-benefits,
  .process-steps,
  .application-panel,
  .community-panel,
  .presskit-hero,
  .presskit-resources,
  .presskit-game-grid,
  .presskit-details,
  .press-contact-panel,
  .factsheet-layout,
  .inside-grid,
  .about-hero,
  .about-pillars,
  .story-section,
  .about-details,
  .milestones,
  .work-panel,
  .about-cta,
  .game-facts,
  .feature-grid,
  .screenshot-grid,
  .about-game-section,
  .game-presskit-panel,
  .game-cta {
    grid-template-columns: 1fr;
  }

  .pillars article + article,
  .playtest-benefits article + article,
  .presskit-resources article + article,
  .about-pillars article + article,
  .work-panel article + article,
  .game-facts article + article {
    border-top: 1px solid var(--line-soft);
    border-left: 0;
  }

  .signup-form,
  .application-form {
    grid-template-columns: 1fr;
  }

  .community-action {
    justify-content: stretch;
  }

  .community-action .button {
    width: 100%;
  }

  .playtest-hero {
    min-height: 620px;
  }

  .hero-copy {
    padding-right: 24px;
  }

  .playtest-hero-copy {
    padding-right: 24px;
  }

  .process-steps article:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -6px;
    left: 44px;
    transform: rotate(90deg);
  }

  .wide-field {
    grid-column: auto;
  }

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

  .presskit-hero {
    min-height: 560px;
  }

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

  .about-hero {
    min-height: auto;
  }

  .about-hero-visual {
    min-height: 380px;
  }

  .about-cta-actions {
    grid-template-columns: 1fr;
  }

  .game-detail-hero {
    min-height: 620px;
  }

  .game-detail-copy {
    padding-right: 24px;
  }

  .game-cta-actions {
    grid-template-columns: 1fr;
  }

  .milestones article:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -2px;
    left: 24px;
    width: 0;
    height: 24px;
    border-top: 0;
    border-left: 2px dotted var(--gold-dark);
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(calc(100% - 32px), var(--container));
    padding: 18px 0 28px;
  }

  .brand img {
    width: 46px;
    height: 66px;
  }

  .brand::after {
    font-size: 0.82rem;
    letter-spacing: 0.28em;
  }

  .site-nav,
  .site-footer nav {
    width: 100%;
    gap: 14px 20px;
  }

  .hero {
    min-height: 560px;
    margin-top: 28px;
  }

  .hero-copy {
    padding: 28px 0;
  }

  .playtest-hero {
    min-height: 560px;
    margin-top: 28px;
  }

  .playtest-hero-copy {
    padding: 28px 0;
  }

  .playtest-hero h1 {
    font-size: 3rem;
  }

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

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

  .process-steps {
    padding: 20px;
  }

  .process-steps article {
    grid-template-columns: 88px 1fr;
    padding-right: 0;
    padding-left: 0;
  }

  .step-icon {
    width: 72px;
    height: 72px;
    margin: 14px 0 0 16px;
  }

  .application-panel,
  .community-panel {
    padding: 20px;
  }

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

  .presskit-hero h1 {
    font-size: 3rem;
  }

  .studio-factsheet dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .about-hero h1 {
    font-size: 3rem;
  }

  .about-hero-visual {
    min-height: 300px;
  }

  .about-monitor {
    transform: none;
  }

  .about-desk-card {
    display: none;
  }

  .about-pillars article,
  .work-panel article {
    grid-template-columns: 1fr;
  }

  .story-collage {
    min-height: 260px;
  }

  .story-notebook {
    left: 28%;
    width: 106px;
    height: 136px;
  }

  .milestones article {
    grid-template-columns: 1fr;
    padding-left: 42px;
  }

  .about-cta {
    padding: 22px;
  }

  .game-detail-hero {
    min-height: 560px;
    margin-top: 28px;
  }

  .game-detail-copy {
    padding: 28px 0;
  }

  .game-detail-copy h1 {
    font-size: 3rem;
  }

  .game-facts article,
  .game-cta {
    grid-template-columns: 1fr;
  }

  .feature-grid article {
    min-height: auto;
  }

  .game-presskit-body {
    border-top: 1px solid var(--gold-dark);
    border-left: 0;
  }

  .presskit-items {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 3rem;
  }

  .button,
  .actions {
    width: 100%;
  }

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

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading::after {
    display: none;
  }

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

  .info-panel {
    grid-template-columns: 1fr;
  }

  .location-map {
    justify-self: start;
    width: min(190px, 62vw);
  }

  .press-home-logo {
    justify-self: start;
    width: min(140px, 58vw);
  }
}
