@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/bricolage-grotesque-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Press Start 2P";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/press-start-2p-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Space Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/space-mono-regular-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Space Mono";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/space-mono-bold-latin.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --ink: #11140d;
  --ink-soft: rgba(17, 20, 13, .74);
  --leaf: #b7e33f;
  --leaf-dark: #597716;
  --mint: #d8ff69;
  --sun: #f4e94d;
  --sky: #78d6f4;
  --tomato: #ff677f;
  --cream: #f3f0d9;
  --paper: #fffced;
  --chalk: #fffef6;
  --display: "Bricolage Grotesque", "Arial Black", sans-serif;
  --pixel: "Press Start 2P", "Courier New", monospace;
  --sans: "Bricolage Grotesque", Arial, sans-serif;
  --mono: "Space Mono", "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--ink);
  color: var(--ink);
}

[id] {
  scroll-margin-top: 112px;
}

html.dialog-open,
html.dialog-open body {
  overflow: hidden;
  overscroll-behavior: none;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .48;
  background-image:
    linear-gradient(rgba(17, 20, 13, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 20, 13, .055) 1px, transparent 1px);
  background-size: 16px 16px;
}

body > * {
  position: relative;
  z-index: 1;
}

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

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 30;
  width: min(1220px, calc(100% - 32px));
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 8px 12px 8px 16px;
  border: 4px solid var(--ink);
  background: rgba(17, 20, 13, .96);
  box-shadow: 7px 7px 0 var(--mint);
  backdrop-filter: blur(12px);
  transform: translateX(-50%);
}

.brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 140px;
  height: auto;
  display: block;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-left: auto;
}

nav a,
.footer-links a {
  font: 700 11px/1 var(--mono);
  text-decoration: none;
  text-transform: uppercase;
}

nav a {
  padding: 12px 14px;
  border: 2px solid transparent;
  color: rgba(255, 252, 237, .78);
  transition: background .15s, border-color .15s, color .15s, transform .15s, box-shadow .15s;
}

nav a:hover,
nav a[aria-current="page"] {
  border-color: var(--mint);
  background: var(--mint);
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--paper);
  transform: translate(-2px, -2px);
}

.header-cta,
.button,
.text-link,
.pitch-link {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
}

.header-cta {
  gap: 10px;
  padding: 13px 16px;
  border: 2px solid var(--mint);
  background: var(--mint);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--paper);
  font: 400 8px/1.25 var(--pixel);
  transition: background .15s, box-shadow .15s, transform .15s;
}

.header-cta:hover {
  background: var(--paper);
  box-shadow: 1px 1px 0 var(--mint);
  transform: translate(3px, 3px);
}

.social-buttons {
  display: flex;
  align-items: center;
  gap: 7px;
}

.social-button {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  background: var(--mint);
  box-shadow: 3px 3px 0 rgba(255, 252, 237, .9);
  text-decoration: none;
  transition: background .15s, box-shadow .15s, transform .15s;
}

.social-button:hover {
  background: var(--paper);
  box-shadow: 0 0 0 transparent;
  transform: translate(3px, 3px);
}

.social-button img {
  width: 16px;
  height: 16px;
  display: block;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  align-items: center;
  gap: clamp(32px, 4vw, 68px);
  overflow: hidden;
  padding: 132px 7vw 56px;
  border-bottom: 4px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  width: clamp(280px, 34vw, 540px);
  height: clamp(280px, 34vw, 540px);
  right: -4vw;
  top: 124px;
  border: 4px solid var(--mint);
  background-color: #1b2114;
  background-image:
    linear-gradient(45deg, rgba(216, 255, 105, .09) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(216, 255, 105, .09) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(216, 255, 105, .09) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(216, 255, 105, .09) 75%);
  background-position: 0 0, 0 8px, 8px -8px, -8px 0;
  background-size: 16px 16px;
  box-shadow: 12px 12px 0 var(--mint);
  transform: rotate(2deg);
}

.hero::after {
  inset: auto 0 0;
  height: 18px;
  background: repeating-linear-gradient(90deg, var(--mint) 0 16px, var(--ink) 16px 32px);
}

.hero > * {
  position: relative;
  z-index: 2;
}

.hero-copy-wrap {
  width: min(760px, 100%);
  min-width: 0;
}

.hero-kicker,
.eyebrow {
  color: var(--leaf-dark);
  font: 400 9px/1.6 var(--pixel);
  text-transform: uppercase;
}

.hero-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  border: 2px solid var(--mint);
  background: var(--mint);
  box-shadow: 5px 5px 0 var(--paper);
  color: var(--ink);
}

.blink-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--ink);
  animation: blink 1.2s steps(2, end) infinite;
}

@keyframes blink {
  50% { opacity: .25; }
}

.hero h1 {
  max-width: 780px;
  margin: 30px 0 22px;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(66px, 8.4vw, 140px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .79;
}

.mobile-break {
  display: none;
}

.hero h1 em,
h2 em,
.pitch-intro h1 em,
.legal-hero h1 em {
  display: inline-block;
  color: var(--mint);
  font: inherit;
  font-style: normal;
  text-shadow: 5px 5px 0 var(--ink);
}

.hero h1 em {
  text-shadow: 5px 5px 0 #485c13;
}

.hero-copy {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 252, 237, .78);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.45;
}

.hero-actions,
.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

.button {
  gap: 18px;
  padding: 17px 18px;
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  font: 400 9px/1.3 var(--pixel);
  transition: background .15s, color .15s, box-shadow .15s, transform .15s;
}

.button span,
.text-link span {
  font-size: 17px;
}

.button-dark {
  border-color: var(--mint);
  background: var(--mint);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--paper);
}

.button-dark:hover {
  background: var(--paper);
  box-shadow: 1px 1px 0 var(--mint);
  transform: translate(5px, 5px);
}

.text-link {
  gap: 9px;
  padding-bottom: 6px;
  border-bottom: 3px solid currentColor;
  font: 400 9px/1.3 var(--pixel);
  transition: color .15s, transform .15s;
}

.hero .text-link {
  color: var(--paper);
}

.text-link:hover {
  color: var(--mint);
  transform: translateX(4px);
}

.hero-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
  margin-top: 30px;
}

.hero-notes p {
  margin: 0;
  padding: 12px;
  border: 2px solid rgba(216, 255, 105, .6);
  background: #1b2114;
  box-shadow: 4px 4px 0 rgba(216, 255, 105, .2);
  color: rgba(255, 252, 237, .78);
  font: 700 11px/1.35 var(--mono);
  text-transform: uppercase;
}

.hero-art {
  grid-column: 2;
  grid-row: 1 / span 7;
}

.publisher-stack {
  position: relative;
  min-height: 500px;
  perspective: 1200px;
}

.publisher-stack::before {
  content: "";
  position: absolute;
  inset: 48px 14px 32px 58px;
  border: 4px solid var(--ink);
  background: var(--mint);
  box-shadow: 12px 12px 0 var(--paper);
  transform: rotate(-3deg);
}

.hero-logo-sprite {
  position: absolute;
  top: 65px;
  left: 24px;
  z-index: 6;
  width: 64px;
  height: 104px;
  display: grid;
  place-items: center;
  border: 4px solid var(--mint);
  background: var(--ink);
  box-shadow: 7px 7px 0 var(--paper);
  transform: rotate(-4deg);
}

.hero-logo-sprite img {
  width: 30px;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.cover-panel {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 4px solid var(--ink);
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--mint);
  isolation: isolate;
}

.cover-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 35%, rgba(17, 20, 13, .92));
}

.cover-panel img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cover-panel figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  display: grid;
  gap: 7px;
  color: var(--paper);
}

.cover-panel figcaption span,
.card-top span {
  width: fit-content;
  padding: 7px 9px;
  border: 2px solid var(--ink);
  background: var(--mint);
  color: var(--ink);
  font: 700 10px/1 var(--mono);
  text-transform: uppercase;
}

.cover-panel figcaption strong {
  max-width: 13ch;
  font-size: clamp(28px, 3.1vw, 48px);
  line-height: .86;
  letter-spacing: -.05em;
}

.cover-primary {
  z-index: 3;
  top: 26px;
  right: 6%;
  width: 75%;
  height: 55%;
  transform: rotate(2.4deg) translateZ(20px);
}

.cover-secondary {
  z-index: 1;
  bottom: 92px;
  left: 0;
  width: 58%;
  height: 38%;
  transform: rotate(-7deg);
}

.cover-tertiary {
  z-index: 2;
  right: 0;
  bottom: 22px;
  width: 46%;
  height: 34%;
  transform: rotate(7deg);
}

.launch-strip,
.launch-badge {
  position: absolute;
  z-index: 7;
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--paper);
  color: var(--ink);
  font: 400 8px/1.4 var(--pixel);
  text-transform: uppercase;
}

.launch-strip {
  top: 24px;
  left: 10px;
  max-width: 270px;
  padding: 12px 14px;
  background: var(--sun);
  transform: rotate(-5deg);
}

.launch-badge {
  right: 11%;
  bottom: 44%;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  background: var(--mint);
  text-align: center;
  transform: rotate(5deg);
}

.scroll-note {
  align-self: end;
  color: rgba(255, 252, 237, .58);
  font: 400 8px/1.4 var(--pixel);
  text-transform: uppercase;
}

.scroll-note span {
  margin-left: 7px;
  color: var(--mint);
  font-size: 17px;
}

.marquee {
  height: 62px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-block: 4px solid var(--ink);
  background: var(--mint);
  color: var(--ink);
  white-space: nowrap;
}

.marquee-track {
  width: 200vw;
  min-width: 200vw;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font: 400 10px/1 var(--pixel);
  animation: marquee 30s linear infinite;
}

.marquee-track b {
  font-size: 20px;
}

@keyframes marquee {
  to { transform: translateX(-100vw); }
}

.section-pad {
  padding: 88px 7vw;
}

.section-heading {
  display: grid;
  grid-template-columns: .68fr 1.42fr .9fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 34px;
}

.section-heading h2,
.about h2,
.submission h2,
.contact-lanes-heading h2,
.pitch-intro h1,
.legal-hero h1,
.not-found-card h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(46px, 6vw, 96px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .86;
}

.section-heading > p:last-child,
.contact-lanes-heading > p:last-child {
  max-width: 520px;
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.5;
}

.games {
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--ink);
  background-color: var(--cream);
  background-image:
    linear-gradient(rgba(17, 20, 13, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 20, 13, .06) 1px, transparent 1px);
  background-size: 16px 16px;
}

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

.game-card {
  --card-accent: var(--sun);
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 4px solid var(--ink);
  background: var(--paper);
  color: var(--paper);
  cursor: pointer;
  isolation: isolate;
  box-shadow: 10px 10px 0 var(--ink);
  transition: box-shadow .2s, transform .2s;
}

.game-card::before,
.game-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.game-card::before {
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(17, 20, 13, .02), transparent 32%, rgba(17, 20, 13, .94));
}

.game-card::after {
  inset: 12px;
  z-index: 3;
  border: 2px solid rgba(255, 252, 237, .62);
}

.game-card:hover,
.game-card:focus-visible {
  outline: none;
  box-shadow: 3px 3px 0 var(--ink);
  transform: translate(7px, 7px);
}

.card-green { --card-accent: var(--mint); }
.card-blue { --card-accent: var(--sky); }
.card-pink { --card-accent: var(--tomato); }
.card-yellow { --card-accent: var(--sun); }

.card-top,
.card-bottom {
  position: absolute;
  right: 22px;
  left: 22px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.card-top { top: 22px; }

.card-top span {
  background: var(--card-accent);
}

.card-more {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 2px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  font-size: 20px;
  transition: background .15s, transform .15s;
}

.game-card:hover .card-more {
  background: var(--card-accent);
  transform: rotate(9deg);
}

.game-art {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.game-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.card-bottom {
  bottom: 22px;
  align-items: end;
}

.card-bottom h3 {
  max-width: 12ch;
  margin: 0 0 9px;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(36px, 4.6vw, 72px);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: .86;
}

.card-bottom p {
  margin: 0;
  color: rgba(255, 252, 237, .78);
  font: 700 12px/1.3 var(--mono);
  text-transform: uppercase;
}

.card-bottom > span {
  color: var(--card-accent);
  font: 800 54px/.8 var(--display);
}

.games-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 28px;
}

.games-footer > span {
  max-width: 420px;
  color: var(--ink-soft);
  font: 700 11px/1.35 var(--mono);
  text-align: right;
  text-transform: uppercase;
}

.about {
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--ink);
  background: var(--sky);
}

.about .eyebrow,
.submission .eyebrow {
  color: var(--ink);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 7vw;
  align-items: start;
}

.about-sticker {
  width: fit-content;
  min-width: 140px;
  margin: 0 0 18px auto;
  padding: 14px 16px;
  border: 3px solid var(--ink);
  background: var(--sun);
  box-shadow: 7px 7px 0 var(--ink);
  color: var(--ink);
  font: 400 8px/1.5 var(--pixel);
  text-align: center;
  transform: rotate(2deg);
}

.about-copy p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.52;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.service-grid article,
.process-grid article,
.promise-grid article,
.fit-list p,
.pitch-checklist-grid p {
  border: 3px solid var(--ink);
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--ink);
}

.service-grid article {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  transition: box-shadow .15s, transform .15s;
}

.service-grid article:nth-child(3n+1) { background: var(--mint); }
.service-grid article:nth-child(3n+2) { background: var(--sun); }

.service-grid article:hover {
  box-shadow: 1px 1px 0 var(--ink);
  transform: translate(5px, 5px);
}

.service-grid h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: .92;
}

.service-grid p,
.process-grid p,
.promise-grid p {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.45;
}

.process-panel,
.promise-panel,
.submission-right,
.pitch-form,
.legal-content,
.not-found-card {
  border: 4px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
}

.process-panel {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 22px;
  margin-top: 34px;
  padding: 22px;
  background: var(--paper);
}

.process-panel h3,
.promise-panel h3,
.pitch-checklist h2 {
  margin: 14px 0 0;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 60px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: .9;
}

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

.process-grid article {
  min-width: 0;
  min-height: 180px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
}

.process-grid span,
.fit-list span,
.pitch-checklist-grid span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 2px solid var(--ink);
  background: var(--mint);
  color: var(--ink);
  font: 700 11px/1 var(--mono);
}

.process-grid h4,
.promise-grid h4 {
  margin: 0;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: .92;
}

.process-grid p,
.promise-grid p {
  margin-top: 0;
}

.promise-panel {
  margin-top: 18px;
  padding: 24px;
  background: var(--sun);
}

.promise-grid {
  margin-top: 22px;
}

.promise-grid article {
  min-width: 0;
  padding: 15px;
}

.promise-grid h4 {
  margin-bottom: 12px;
}

.manifesto-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 44px;
  padding-top: 16px;
  border-top: 3px dashed var(--ink);
  color: var(--ink);
  font: 400 8px/1.5 var(--pixel);
  text-transform: uppercase;
}

.submission {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 5vw;
  overflow: hidden;
  border-bottom: 4px solid var(--ink);
  background: var(--tomato);
}

.submission h2 {
  margin-bottom: 22px;
}

.submission-left > p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.5;
}

.fit-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.fit-list p {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  max-width: 620px;
  margin: 0;
  padding: 13px;
  color: var(--ink-soft);
  font: 700 13px/1.38 var(--mono);
  text-transform: uppercase;
}

.submission-right {
  align-self: start;
  padding: 24px;
  background: var(--paper);
}

.big-question {
  margin: 0 0 30px;
  font-family: var(--display);
  font-size: clamp(38px, 4.6vw, 70px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: .88;
}

.pitch-link {
  width: 100%;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 0 10px;
  border-top: 3px dashed var(--ink);
  border-bottom: 4px solid var(--ink);
  color: var(--ink);
  font: 800 clamp(48px, 5.8vw, 90px)/.78 var(--display);
  letter-spacing: -.04em;
  text-transform: none;
  transition: color .15s, transform .15s;
}

.pitch-link:hover {
  color: var(--leaf-dark);
  transform: translateX(5px);
}

.contact-lanes {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 5vw;
  align-items: start;
  overflow: hidden;
  border-bottom: 4px solid var(--mint);
  background: var(--ink);
  color: var(--paper);
}

.contact-lanes .eyebrow {
  color: var(--mint);
}

.contact-lanes-heading h2 {
  color: var(--paper);
}

.contact-lanes-heading > p:last-child {
  margin-top: 24px;
  color: rgba(255, 252, 237, .72);
}

.contact-lane-grid {
  display: grid;
  gap: 18px;
}

.contact-lane-card {
  min-width: 0;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 22px;
  border: 4px solid var(--paper);
  box-shadow: 8px 8px 0 var(--mint);
  color: var(--ink);
  text-decoration: none;
  transition: box-shadow .15s, transform .15s;
}

.contact-lane-card:hover {
  box-shadow: 1px 1px 0 var(--mint);
  transform: translate(7px, 7px);
}

.contact-lane-card span {
  width: fit-content;
  padding: 9px 10px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font: 400 8px/1.4 var(--pixel);
  text-transform: uppercase;
}

.contact-lane-card h3 {
  max-width: 580px;
  margin: 24px 0;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: .88;
}

.contact-lane-card p {
  margin: 0;
  color: var(--ink-soft);
  font: 700 12px/1.35 var(--mono);
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.press-card { background: var(--sky); }
.creator-card { background: var(--mint); }

footer {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 34px 50px;
  padding: 38px 7vw 26px;
  background: var(--ink);
  color: var(--paper);
}

footer .brand-logo {
  width: 210px;
}

.footer-brand {
  align-self: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 24px;
  align-items: center;
  color: rgba(255, 252, 237, .72);
}

.footer-links a:hover,
.footer-links a[aria-current="page"] {
  color: var(--mint);
}

.footer-social {
  grid-column: 1 / -1;
  justify-content: center;
  padding: 6px 0 2px;
}

.footer-social .social-button {
  border-color: var(--mint);
  box-shadow: 3px 3px 0 rgba(255, 252, 237, .82);
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  border-top: 2px dashed rgba(216, 255, 105, .45);
  color: rgba(255, 252, 237, .58);
  font: 400 8px/1.6 var(--pixel);
  text-transform: uppercase;
}

.game-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(540px, calc(100vw - 36px));
  max-height: calc(100dvh - 36px);
  margin: 0;
  padding: 38px;
  overflow: auto;
  border: 4px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 10px 10px 0 var(--mint);
  transform: translate(-50%, -50%);
}

.game-dialog::backdrop {
  background: rgba(17, 20, 13, .82);
}

.game-dialog h2 {
  margin: 16px 0;
  font: 800 clamp(42px, 6vw, 68px)/.88 var(--display);
  letter-spacing: -.04em;
}

.game-dialog p:not(.eyebrow) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.5;
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: 400 20px/1 var(--pixel);
}

.pitch-page,
.legal-page,
.not-found-page {
  background: var(--cream);
}

.pitch-header {
  position: relative;
  top: auto;
  left: auto;
  width: min(1220px, calc(100% - 40px));
  margin: 18px auto 0;
  transform: none;
}

.pitch-main,
.legal-main,
.not-found-main {
  background-color: var(--cream);
  background-image:
    linear-gradient(rgba(17, 20, 13, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 20, 13, .06) 1px, transparent 1px);
  background-size: 16px 16px;
}

.pitch-main {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 5vw;
  padding: 74px 7vw 82px;
}

.pitch-intro {
  position: sticky;
  top: 34px;
  align-self: start;
}

.pitch-intro h1 {
  margin: 18px 0 20px;
  font-size: clamp(62px, 8vw, 132px);
}

.pitch-intro h1 em,
.legal-hero h1 em {
  color: var(--leaf-dark);
  text-shadow: 4px 4px 0 var(--mint);
}

.pitch-intro > p:not(.eyebrow) {
  max-width: 520px;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.48;
}

.pitch-note {
  display: inline-block;
  margin-top: 16px;
  padding: 13px 15px;
  border: 3px solid var(--ink);
  background: var(--mint);
  box-shadow: 5px 5px 0 var(--ink);
  color: var(--ink);
  font: 400 8px/1.5 var(--pixel);
  text-transform: uppercase;
}

.pitch-form {
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: 24px;
  background: var(--paper);
}

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

.form-grid > label:only-child {
  grid-column: 1 / -1;
}

.pitch-form label,
.pitch-form fieldset {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 0;
}

.pitch-form label > span,
.pitch-form legend {
  color: var(--ink-soft);
  font: 700 11px/1.2 var(--mono);
  text-transform: uppercase;
}

.pitch-form input,
.pitch-form textarea,
.pitch-form select {
  width: 100%;
  min-width: 0;
  padding: 14px 13px;
  border: 3px solid var(--ink);
  background: var(--chalk);
  color: var(--ink);
  font-size: 18px;
}

.pitch-form input:focus,
.pitch-form textarea:focus,
.pitch-form select:focus {
  outline: 4px solid var(--mint);
  outline-offset: 2px;
}

.pitch-checklist {
  min-width: 0;
  padding: 16px;
  border: 3px dashed var(--ink);
  background: var(--sky);
}

.pitch-checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pitch-checklist-grid p {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  min-width: 0;
  margin: 0;
  padding: 12px;
  color: var(--ink-soft);
  font: 700 12px/1.36 var(--mono);
  text-transform: uppercase;
}

.pitch-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 14px;
  border: 4px solid var(--ink);
  background: var(--mint);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 7px 7px 0 var(--ink);
  font: 800 clamp(40px, 5vw, 72px)/.8 var(--display);
  letter-spacing: -.04em;
  transition: background .15s, box-shadow .15s, transform .15s;
}

.pitch-submit:hover {
  background: var(--sun);
  box-shadow: 1px 1px 0 var(--ink);
  transform: translate(6px, 6px);
}

.pitch-submit span {
  font-size: .62em;
}

.form-fineprint {
  max-width: 580px;
  margin: 0;
  color: rgba(17, 20, 13, .62);
  font: 700 11px/1.5 var(--mono);
  text-transform: uppercase;
}

.legal-main {
  display: grid;
  grid-template-columns: minmax(0, 1080px);
  justify-content: center;
  gap: 26px;
  padding: 58px 7vw 82px;
}

.legal-hero h1 {
  max-width: 920px;
  margin: 18px 0 16px;
  font-size: clamp(56px, 7.2vw, 118px);
}

.legal-hero > p:last-child {
  color: rgba(17, 20, 13, .62);
  font: 700 11px/1.35 var(--mono);
  text-transform: uppercase;
}

.legal-content {
  width: 100%;
  min-width: 0;
  display: grid;
  gap: 14px;
  padding: clamp(24px, 3vw, 38px);
  background: var(--paper);
}

.legal-content h2 {
  margin: 18px 0 0;
  color: var(--leaf-dark);
  font: 800 clamp(28px, 3vw, 42px)/.94 var(--display);
  letter-spacing: -.04em;
}

.legal-content h2:first-of-type {
  margin-top: 4px;
}

.legal-content p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.68;
  overflow-wrap: anywhere;
}

.legal-content a {
  color: var(--leaf-dark);
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.not-found-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 120px 7vw 70px;
}

.not-found-card {
  width: min(760px, 100%);
  padding: clamp(28px, 5vw, 46px);
  background: var(--paper);
}

.not-found-card h1 {
  max-width: 9ch;
  margin: 18px 0 22px;
  font-size: clamp(66px, 10vw, 128px);
}

.not-found-card p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.5;
}

.not-found-card .button-dark {
  border-color: var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  animation: reveal-in .5s ease both;
}

@keyframes reveal-in {
  from { opacity: 0; transform: translateY(18px); }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

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

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 38px;
    min-height: 0;
  }

  .hero-art {
    grid-column: 1;
    grid-row: auto;
  }

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

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

@media (max-width: 980px) {
  .site-header {
    width: calc(100% - 28px);
  }

  .header-social {
    display: none;
  }

  .pitch-main {
    grid-template-columns: 1fr;
    padding-top: 56px;
  }

  .pitch-intro {
    position: relative;
    top: auto;
  }
}

@media (max-width: 840px) {
  .site-header {
    min-height: 64px;
    padding: 8px 10px;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    padding: 110px 6vw 46px;
  }

  .hero::before {
    right: -20vw;
    top: 104px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(64px, 17vw, 122px);
  }

  .hero-notes,
  .game-grid,
  .about-layout,
  .submission,
  .contact-lanes {
    grid-template-columns: 1fr;
  }

  .publisher-stack {
    min-height: 420px;
  }

  .section-pad {
    padding: 64px 6vw;
  }

  .games-footer,
  .footer-meta {
    display: block;
  }

  .games-footer > span,
  .footer-meta span {
    display: block;
    margin-top: 12px;
    text-align: left;
  }

  footer {
    grid-template-columns: 1fr;
  }

  .footer-links,
  .footer-social {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    box-shadow: 5px 5px 0 var(--mint);
  }

  .pitch-header {
    top: auto;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 98px;
  }

  .hero .hero-copy-wrap,
  .hero .hero-copy,
  .hero .hero-actions,
  .hero .hero-notes {
    width: 100%;
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(58px, 16.8vw, 88px);
  }

  .mobile-break {
    display: inline;
  }

  .hero-notes,
  .service-grid,
  .process-grid,
  .promise-grid,
  .form-grid,
  .pitch-checklist-grid {
    grid-template-columns: 1fr;
  }

  .hero .publisher-stack {
    width: 88vw;
    max-width: 88vw;
    min-height: 340px;
  }

  .hero-logo-sprite {
    top: 34px;
    left: 4px;
    width: 50px;
    height: 82px;
  }

  .cover-primary {
    width: 86%;
    height: 50%;
    right: 0;
  }

  .cover-secondary {
    width: 68%;
    height: 34%;
  }

  .cover-tertiary {
    width: 54%;
    height: 30%;
  }

  .launch-badge {
    right: 5%;
    bottom: 40%;
  }

  .game-card {
    min-height: 370px;
  }

  .section-heading h2,
  .about h2,
  .submission h2,
  .contact-lanes-heading h2 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .manifesto-row {
    flex-wrap: wrap;
  }

  .pitch-form {
    padding: 18px;
  }

  .pitch-submit {
    font-size: 38px;
  }

  .game-dialog {
    padding: 24px 20px;
  }

  .legal-main {
    padding-inline: 6vw;
  }

  .legal-content {
    padding: 18px;
  }

  .legal-hero h1 {
    font-size: 52px;
  }

  .contact-lane-card h3 {
    font-size: clamp(32px, 10vw, 48px);
  }

  footer .brand-logo {
    width: 140px;
  }
}

@media (max-width: 430px) {
  .hero-copy,
  .about-copy p,
  .submission-left > p:not(.eyebrow),
  .pitch-intro > p:not(.eyebrow) {
    font-size: 17px;
  }

  .game-card {
    min-height: 340px;
  }

  .card-bottom h3 {
    font-size: 34px;
  }
}
