:root {
  color-scheme: light;
  --ink: #27311f;
  --ink-soft: rgba(39, 49, 31, .72);
  --soil: #5b351f;
  --leaf: #4fae58;
  --leaf-dark: #2f7e42;
  --mint: #c9f5d6;
  --sun: #ffd75a;
  --butter: #fff2b6;
  --sky: #8addff;
  --pond: #2e9bc8;
  --tomato: #ff715b;
  --peach: #ffb172;
  --cream: #fff7df;
  --paper: #fffdf1;
  --chalk: #fff9e8;
  --line: rgba(39, 49, 31, .18);
  --line-strong: #27311f;
  --shadow: 0 18px 0 rgba(39, 49, 31, .14);
  --shadow-soft: 0 22px 70px rgba(91, 53, 31, .16);
  --radius-xl: 42px;
  --radius-lg: 30px;
  --radius-md: 20px;
  --display: "Fraunces", Georgia, serif;
  --sans: "Bricolage Grotesque", sans-serif;
  --mono: "Space Mono", monospace;
}

* {
  box-sizing: border-box;
}

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

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 4%, rgba(255, 215, 90, .52), transparent 24rem),
    radial-gradient(circle at 88% 0%, rgba(138, 221, 255, .52), transparent 28rem),
    radial-gradient(circle at 20% 48rem, rgba(201, 245, 214, .68), transparent 30rem),
    linear-gradient(180deg, #fff6d8 0%, #fff9e8 45rem, #e8f7d8 100%);
  color: var(--ink);
  font-family: var(--sans);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(39, 49, 31, .11) 1.5px, transparent 1.6px),
    radial-gradient(circle, rgba(79, 174, 88, .18) 1.5px, transparent 1.6px);
  background-position: 0 0, 24px 24px;
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .72), transparent 82%);
}

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

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

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

button,
input,
textarea {
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: .12;
  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");
  mix-blend-mode: multiply;
}

.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  z-index: 2;
  pointer-events: none;
  border-radius: 999px;
  background:
    radial-gradient(circle at 38% 34%, rgba(255, 215, 90, .36), transparent 42%),
    radial-gradient(circle, rgba(138, 221, 255, .26), transparent 66%);
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 30;
  width: min(1180px, calc(100% - 40px));
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 14px 12px 18px;
  border: 2px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 253, 241, .88);
  box-shadow: 0 10px 0 rgba(39, 49, 31, .11), var(--shadow-soft);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font: 900 15px/.82 var(--sans);
  letter-spacing: -.055em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  overflow: hidden;
  padding-bottom: 7px;
  border: 2px solid currentColor;
  border-radius: 54% 46% 58% 42%;
  background:
    radial-gradient(circle at 62% 22%, var(--sun) 0 12px, transparent 13px),
    linear-gradient(135deg, var(--mint), var(--leaf));
  color: var(--ink);
  box-shadow: 4px 5px 0 rgba(39, 49, 31, .18);
  transform: rotate(-7deg);
}

.brand-mark i {
  display: block;
  width: 5px;
  background: currentColor;
  border-radius: 999px 999px 0 0;
}

.brand-mark i:nth-child(1) {
  height: 13px;
  transform: rotate(-24deg);
}

.brand-mark i:nth-child(2) {
  height: 21px;
}

.brand-mark i:nth-child(3) {
  height: 12px;
  transform: rotate(24deg);
}

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

nav a,
.footer-links a {
  color: inherit;
  font: 700 12px/1 var(--mono);
  letter-spacing: -.02em;
  text-decoration: none;
  text-transform: uppercase;
}

nav a {
  padding: 12px 14px;
  border: 2px solid transparent;
  border-radius: 999px;
  color: rgba(39, 49, 31, .72);
  transition: background .18s, border-color .18s, color .18s, transform .18s;
}

nav a:hover,
nav a[aria-current="page"] {
  border-color: var(--line-strong);
  background: var(--sun);
  color: var(--ink);
  transform: rotate(-1deg) translateY(-1px);
}

.header-cta,
.button,
.text-link,
.pitch-link {
  display: inline-flex;
  align-items: center;
  color: inherit;
  font: 800 12px/1 var(--mono);
  letter-spacing: -.02em;
  text-decoration: none;
  text-transform: uppercase;
}

.header-cta {
  gap: 10px;
  padding: 13px 16px;
  border: 2px solid var(--line-strong);
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 4px 5px 0 rgba(39, 49, 31, .16);
  transition: background .18s, box-shadow .18s, transform .18s;
}

.header-cta:hover {
  background: var(--sun);
  box-shadow: 2px 3px 0 rgba(39, 49, 31, .2);
  transform: translateY(2px);
}

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

.social-button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 2px solid var(--line-strong);
  border-radius: 999px;
  background: var(--paper);
  box-shadow: 3px 4px 0 rgba(39, 49, 31, .14);
  text-decoration: none;
  transition: background .18s, box-shadow .18s, transform .18s;
}

.social-button:hover {
  background: var(--sky);
  box-shadow: 1px 2px 0 rgba(39, 49, 31, .2);
  transform: translateY(2px) rotate(3deg);
}

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

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  align-items: center;
  gap: clamp(32px, 4vw, 68px);
  overflow: hidden;
  padding: 118px 7vw 34px;
}

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

.hero::before {
  width: 44vw;
  height: 44vw;
  min-width: 440px;
  min-height: 440px;
  right: -14vw;
  top: 104px;
  border: 2px solid rgba(39, 49, 31, .12);
  border-radius: 44% 56% 54% 46%;
  background: linear-gradient(135deg, rgba(255, 215, 90, .66), rgba(255, 177, 114, .52));
  transform: rotate(18deg);
}

.hero::after {
  inset: auto -5vw -52px;
  height: 130px;
  background:
    radial-gradient(60px 36px at 12% 60%, rgba(79, 174, 88, .25), transparent 70%),
    radial-gradient(92px 42px at 35% 50%, rgba(79, 174, 88, .24), transparent 70%),
    radial-gradient(92px 42px at 68% 58%, rgba(79, 174, 88, .22), transparent 70%),
    linear-gradient(180deg, transparent, rgba(201, 245, 214, .74));
}

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

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

.hero-copy-wrap > * {
  min-width: 0;
}

.hero-kicker,
.eyebrow {
  color: var(--leaf-dark);
  font: 800 12px/1.35 var(--mono);
  letter-spacing: -.01em;
  text-transform: uppercase;
}

.hero-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 2px solid var(--line-strong);
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 4px 5px 0 rgba(39, 49, 31, .14);
  transform: rotate(-1.5deg);
}

.blink-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 2px solid var(--line-strong);
  border-radius: 999px;
  background: var(--tomato);
  animation: blink 1.2s steps(2, end) infinite;
}

@keyframes blink {
  50% {
    transform: scale(.72);
  }
}

.hero h1 {
  max-width: 760px;
  margin: 24px 0 20px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(62px, 8vw, 138px);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: .82;
  word-spacing: .05em;
}

.mobile-break {
  display: none;
}

.hero h1 em,
h2 em,
.contact-lanes-heading h2 em,
.pitch-intro h1 em,
.legal-hero h1 em {
  display: inline-block;
  color: var(--tomato);
  font-family: var(--display);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -.035em;
  transform: rotate(-2deg);
}

.hero-copy {
  max-width: 640px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.55vw, 23px);
  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: 16px 20px;
  border: 2px solid var(--line-strong);
  border-radius: 999px;
  box-shadow: 6px 7px 0 rgba(39, 49, 31, .18);
  transition: background .18s, box-shadow .18s, transform .18s;
}

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

.button-dark {
  background: var(--ink);
  color: var(--paper);
}

.button-dark:hover {
  background: var(--tomato);
  color: var(--ink);
  box-shadow: 2px 3px 0 rgba(39, 49, 31, .22);
  transform: translateY(4px) rotate(-1deg);
}

.button-light {
  background: var(--paper);
}

.button-light:hover {
  background: var(--sky);
  box-shadow: 2px 3px 0 rgba(39, 49, 31, .22);
  transform: translateY(4px) rotate(1deg);
}

.text-link {
  gap: 9px;
  padding: 0 0 6px;
  border-bottom: 3px solid currentColor;
  color: var(--ink);
  transition: color .18s, transform .18s;
}

.text-link:hover {
  color: var(--leaf-dark);
  transform: rotate(-1deg);
}

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

.hero-notes p {
  margin: 0;
  padding: 12px;
  border: 2px solid var(--line-strong);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 4px 5px 0 rgba(39, 49, 31, .12);
  color: var(--ink-soft);
  font: 800 12px/1.28 var(--mono);
  text-transform: uppercase;
}

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

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

.publisher-stack::before {
  content: "";
  position: absolute;
  inset: 56px 18px 34px 62px;
  border: 2px solid var(--line-strong);
  border-radius: 42% 58% 52% 48%;
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 215, 90, .46), transparent 13rem),
    linear-gradient(135deg, var(--sky), var(--mint));
  box-shadow: 12px 16px 0 rgba(39, 49, 31, .13);
  transform: rotate(-4deg);
}

.cover-panel {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 2px solid var(--line-strong);
  border-radius: 32px;
  background: var(--paper);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.cover-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 247, 223, .02), rgba(39, 49, 31, .1) 48%, rgba(39, 49, 31, .82)),
    radial-gradient(circle at 0% 0%, rgba(255, 215, 90, .28), transparent 16rem);
}

.cover-panel img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.04);
  transform: scale(1.03);
}

.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 {
  width: fit-content;
  padding: 6px 8px;
  border: 2px solid rgba(255, 253, 241, .78);
  border-radius: 999px;
  background: rgba(255, 215, 90, .92);
  color: var(--ink);
  font: 800 10px/1 var(--mono);
  text-transform: uppercase;
}

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

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

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

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

.launch-strip,
.launch-badge {
  position: absolute;
  z-index: 4;
  border: 2px solid var(--line-strong);
  color: var(--ink);
  font: 900 11px/1 var(--mono);
  text-transform: uppercase;
  box-shadow: 5px 6px 0 rgba(39, 49, 31, .16);
}

.launch-strip {
  top: 24px;
  left: 10px;
  max-width: 270px;
  padding: 12px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sun), var(--peach));
  transform: rotate(-5deg);
}

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

.scroll-note {
  align-self: end;
  color: rgba(39, 49, 31, .58);
  font: 800 10px/1 var(--mono);
  letter-spacing: .03em;
  text-transform: uppercase;
}

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

.marquee {
  height: 56px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-block: 2px solid var(--line-strong);
  background: linear-gradient(90deg, var(--sun), var(--mint), var(--sky), var(--peach), var(--sun));
  color: var(--ink);
  white-space: nowrap;
}

.marquee-track {
  width: 200vw;
  min-width: 200vw;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0;
  font: 900 14px/1 var(--mono);
  letter-spacing: -.03em;
  animation: marquee 30s linear infinite;
}

.marquee-track b {
  color: rgba(39, 49, 31, .5);
  font-size: 22px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

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

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

.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: 900;
  letter-spacing: -.035em;
  line-height: .88;
  word-spacing: .04em;
}

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

.games {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 18%, rgba(255, 215, 90, .5), transparent 24rem),
    radial-gradient(circle at 84% 15%, rgba(255, 113, 91, .18), transparent 25rem),
    linear-gradient(180deg, rgba(255, 253, 241, .7), rgba(201, 245, 214, .5));
}

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

.game-card {
  --card-accent: var(--sun);
  position: relative;
  min-height: 420px;
  overflow: hidden;
  padding: 0;
  border: 2px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background: var(--paper);
  color: var(--paper);
  cursor: pointer;
  isolation: isolate;
  box-shadow: 10px 12px 0 rgba(39, 49, 31, .16);
  transition: box-shadow .22s, transform .22s cubic-bezier(.2, .8, .2, 1);
}

.game-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(39, 49, 31, .04), transparent 34%, rgba(39, 49, 31, .9)),
    radial-gradient(circle at 12% 16%, color-mix(in srgb, var(--card-accent) 48%, transparent), transparent 18rem);
  pointer-events: none;
}

.game-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 3;
  border: 2px dashed rgba(255, 253, 241, .62);
  border-radius: 30px;
  pointer-events: none;
}

.game-card:hover,
.game-card:focus-visible {
  box-shadow: 3px 5px 0 rgba(39, 49, 31, .22);
  outline: none;
  transform: translateY(7px) rotate(-.7deg);
}

.card-green {
  --card-accent: var(--mint);
}

.card-blue {
  --card-accent: var(--sky);
}

.card-pink {
  --card-accent: var(--peach);
}

.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 {
  padding: 8px 10px;
  border: 2px solid rgba(255, 253, 241, .82);
  border-radius: 999px;
  background: var(--card-accent);
  color: var(--ink);
  font: 900 10px/1 var(--mono);
  letter-spacing: .02em;
  text-transform: uppercase;
}

.card-more {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 2px solid rgba(255, 253, 241, .82);
  border-radius: 999px;
  background: rgba(255, 253, 241, .92);
  color: var(--ink);
  font-size: 20px;
  transition: background .18s, transform .18s;
}

.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;
  transform: scale(1.04);
}

.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: 900;
  letter-spacing: -.035em;
  line-height: .86;
  word-spacing: .03em;
}

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

.card-bottom > span {
  color: rgba(255, 253, 241, .52);
  font: 900 54px/.8 var(--display);
  letter-spacing: -.08em;
}

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

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

.about {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 14%, rgba(138, 221, 255, .52), transparent 28rem),
    radial-gradient(circle at 20% 100%, rgba(255, 177, 114, .32), transparent 28rem),
    linear-gradient(180deg, rgba(232, 247, 216, .55), rgba(255, 253, 241, .82));
}

.about-sticker {
  width: fit-content;
  min-width: 140px;
  margin: 0 0 16px auto;
  padding: 14px 16px;
  border: 2px solid var(--line-strong);
  border-radius: 24px 24px 24px 8px;
  background: var(--sun);
  box-shadow: 7px 8px 0 rgba(39, 49, 31, .14);
  color: var(--ink);
  font: 900 11px/1.25 var(--mono);
  text-align: center;
  text-transform: uppercase;
  transform: rotate(4deg);
}

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

.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: 14px;
  margin-top: 38px;
}

.service-grid article,
.process-grid article,
.promise-grid article,
.fit-list p,
.pitch-checklist-grid p {
  border: 2px solid var(--line-strong);
  background: var(--paper);
  box-shadow: 5px 6px 0 rgba(39, 49, 31, .12);
}

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

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

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

.service-grid article:nth-child(3n+3) {
  background: #e8f4ff;
}

.service-grid article:hover {
  box-shadow: 2px 3px 0 rgba(39, 49, 31, .2);
  transform: translateY(4px) rotate(-1deg);
}

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

.service-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: 2px solid var(--line-strong);
  border-radius: var(--radius-xl);
  box-shadow: 10px 12px 0 rgba(39, 49, 31, .13);
}

.process-panel {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 22px;
  margin-top: 30px;
  padding: 22px;
  background: #e8f4ff;
}

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

.process-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;
  border-radius: 24px;
}

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

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

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

.promise-panel {
  margin-top: 16px;
  padding: 24px;
  background:
    radial-gradient(circle at 94% 10%, rgba(138, 221, 255, .48), transparent 16rem),
    linear-gradient(135deg, var(--sun), var(--butter));
}

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

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

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

.manifesto-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 44px;
  padding-top: 14px;
  border-top: 2px dashed rgba(39, 49, 31, .32);
  color: rgba(39, 49, 31, .62);
  font: 900 11px/1.4 var(--mono);
  letter-spacing: -.01em;
  text-transform: uppercase;
}

.submission {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 5vw;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 177, 114, .42), transparent 25rem),
    radial-gradient(circle at 88% 72%, rgba(138, 221, 255, .52), transparent 28rem),
    linear-gradient(180deg, #fffdf1, #fff0ca);
}

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

.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: 20px;
}

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

.fit-list p:nth-child(even) {
  background: var(--mint);
}

.submission-right {
  align-self: start;
  padding: 24px;
  background:
    radial-gradient(circle at 96% 6%, rgba(255, 215, 90, .56), transparent 12rem),
    var(--paper);
}

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

.pitch-link {
  width: 100%;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 0 10px;
  border-top: 3px dashed var(--line-strong);
  border-bottom: 3px solid var(--line-strong);
  color: var(--tomato);
  font-family: var(--display);
  font-size: clamp(48px, 5.8vw, 90px);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: .78;
  word-spacing: .05em;
  text-transform: none;
  transition: color .18s, transform .18s;
}

.pitch-link:hover {
  color: var(--leaf-dark);
  transform: rotate(-1deg);
}

.contact-lanes {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 5vw;
  align-items: start;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 215, 90, .52), transparent 25rem),
    radial-gradient(circle at 14% 78%, rgba(201, 245, 214, .72), transparent 28rem),
    linear-gradient(180deg, #fff0ca, #e8f7d8);
}

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

.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: 2px solid var(--line-strong);
  border-radius: var(--radius-xl);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 8px 10px 0 rgba(39, 49, 31, .13);
  transition: box-shadow .18s, transform .18s;
}

.contact-lane-card:hover {
  box-shadow: 2px 3px 0 rgba(39, 49, 31, .2);
  transform: translateY(6px) rotate(-1deg);
}

.contact-lane-card span {
  width: fit-content;
  padding: 8px 10px;
  border: 2px solid var(--line-strong);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font: 900 11px/1 var(--mono);
  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: 900;
  letter-spacing: -.035em;
  line-height: .88;
  word-spacing: .04em;
}

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

.press-card {
  background:
    radial-gradient(circle at 96% 10%, rgba(138, 221, 255, .55), transparent 14rem),
    var(--paper);
}

.creator-card {
  background:
    radial-gradient(circle at 92% 14%, rgba(255, 215, 90, .65), transparent 14rem),
    var(--mint);
}

footer {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 34px 50px;
  padding: 34px 7vw 24px;
  border-top: 2px solid var(--line-strong);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 215, 90, .32), transparent 22rem),
    #dff3c9;
  color: var(--ink);
}

footer .footer-brand {
  align-self: start;
  font-size: 18px;
}

.footer-brand .brand-mark {
  width: 48px;
  height: 48px;
}

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

.footer-links a:hover {
  color: var(--leaf-dark);
}

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

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  border-top: 2px dashed rgba(39, 49, 31, .28);
  color: rgba(39, 49, 31, .62);
  font: 900 11px/1.5 var(--mono);
  letter-spacing: -.01em;
  text-transform: uppercase;
}

.game-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(540px, calc(100vw - 36px));
  max-width: 540px;
  max-height: calc(100dvh - 36px);
  margin: 0;
  padding: 38px;
  border: 2px solid var(--line-strong);
  border-radius: 34px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 12px 14px 0 rgba(39, 49, 31, .18), var(--shadow-soft);
  overflow: auto;
  transform: translate(-50%, -50%);
}

.game-dialog::backdrop {
  background: rgba(39, 49, 31, .46);
  backdrop-filter: blur(6px);
}

.game-dialog h2 {
  margin: 16px 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: .88;
  word-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-size: 34px;
}

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

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

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

.pitch-main {
  position: relative;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 5vw;
  overflow: hidden;
  padding: 58px 7vw 82px;
  background:
    radial-gradient(circle at 10% 14%, rgba(255, 215, 90, .5), transparent 27rem),
    radial-gradient(circle at 86% 78%, rgba(201, 245, 214, .68), transparent 29rem),
    linear-gradient(180deg, transparent, rgba(138, 221, 255, .25));
}

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

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

.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: 2px solid var(--line-strong);
  border-radius: 999px;
  background: var(--sun);
  box-shadow: 5px 6px 0 rgba(39, 49, 31, .12);
  color: var(--ink);
  font: 900 11px/1.35 var(--mono);
  text-transform: uppercase;
  transform: rotate(-1.5deg);
}

.pitch-form {
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: 24px;
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 215, 90, .38), transparent 16rem),
    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: rgba(39, 49, 31, .72);
  font: 900 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: 2px solid var(--line-strong);
  border-radius: 16px;
  background: var(--chalk);
  color: var(--ink);
  font: 18px/1.2 var(--sans);
}

.pitch-form input {
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.pitch-checklist {
  min-width: 0;
  padding: 16px;
  border: 2px dashed rgba(39, 49, 31, .34);
  border-radius: 26px;
  background: #e8f4ff;
}

.pitch-checklist h2 {
  margin: 8px 0 14px;
  font-size: clamp(30px, 3.6vw, 48px);
}

.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;
  border-radius: 18px;
  color: var(--ink-soft);
  font: 800 12px/1.36 var(--mono);
  text-transform: uppercase;
}

.pitch-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px 14px;
  border: 2px solid var(--line-strong);
  border-radius: 24px;
  background: var(--leaf);
  color: var(--paper);
  cursor: pointer;
  box-shadow: 7px 8px 0 rgba(39, 49, 31, .16);
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: .8;
  word-spacing: .06em;
  transition: background .18s, box-shadow .18s, transform .18s;
}

.pitch-submit:hover {
  background: var(--tomato);
  box-shadow: 2px 3px 0 rgba(39, 49, 31, .22);
  transform: translateY(5px) rotate(-.5deg);
}

.pitch-submit span {
  color: inherit;
  font: inherit;
  font-size: .62em;
  line-height: 1;
}

.form-fineprint {
  max-width: 580px;
  margin: 0;
  color: rgba(39, 49, 31, .62);
  font: 800 11px/1.5 var(--mono);
  text-transform: uppercase;
}

.legal-main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1080px);
  justify-content: center;
  gap: 26px;
  min-width: 0;
  overflow: hidden;
  padding: 58px 7vw 82px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 215, 90, .5), transparent 27rem),
    radial-gradient(circle at 82% 16%, rgba(138, 221, 255, .5), transparent 26rem),
    linear-gradient(180deg, transparent, rgba(201, 245, 214, .52));
}

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

.legal-hero > p:last-child {
  max-width: 760px;
  color: rgba(39, 49, 31, .62);
  font: 900 11px/1.35 var(--mono);
  letter-spacing: .01em;
  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-family: var(--display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  line-height: .94;
  letter-spacing: -.055em;
}

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

.legal-content p {
  max-width: none;
  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: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.not-found-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 120px 7vw 70px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 215, 90, .54), transparent 26rem),
    radial-gradient(circle at 84% 16%, rgba(138, 221, 255, .5), transparent 25rem),
    linear-gradient(180deg, transparent, rgba(201, 245, 214, .52));
}

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

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity .55s ease, transform .55s ease;
}

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

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

@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: min(100% - 28px, 780px);
  }

  .header-social {
    display: none;
  }

  .pitch-main {
    grid-template-columns: 1fr;
    padding: 46px 7vw 68px;
  }

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

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

  .site-header nav {
    display: none;
  }

  .brand {
    margin-right: auto;
  }

  .hero {
    padding: 100px 6vw 36px;
  }

  .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: 52px 6vw;
  }

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

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

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

  .about-sticker {
    min-width: 116px;
    margin-bottom: 14px;
    padding: 10px 12px;
    font-size: 9px;
  }

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

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

@media (max-width: 640px) {
  .cursor-glow {
    display: none;
  }

  .site-header {
    top: 12px;
    width: calc(100% - 20px);
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 88px;
  }

  .hero .hero-copy-wrap,
  .hero .hero-copy,
  .hero .hero-actions,
  .hero .hero-notes {
    width: min(300px, calc(100vw - 60px));
    max-width: min(300px, calc(100vw - 60px));
  }

  .hero .publisher-stack {
    width: 82vw;
    max-width: 82vw;
  }

  .hero-notes p {
    overflow-wrap: anywhere;
  }

  .hero h1 {
    letter-spacing: -.025em;
    font-size: clamp(56px, 15vw, 86px);
    word-spacing: .03em;
  }

  .mobile-break {
    display: inline;
  }

  .hero-actions,
  .not-found-actions {
    gap: 14px;
  }

  .button,
  .text-link {
    width: 100%;
    justify-content: space-between;
  }

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

  .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%;
    min-height: 34px;
    padding: 9px 11px;
    font-size: 9px;
  }

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

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

  .service-grid article,
  .process-grid article,
  .contact-lane-card {
    min-height: 0;
  }

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

  .pitch-form {
    padding: 18px;
    border-radius: 28px;
  }

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

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

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

  .legal-content {
    padding: 18px;
    width: 100%;
    max-width: 100%;
    border-radius: 28px;
  }

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

@media (max-width: 430px) {
  .brand {
    font-size: 12px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero .hero-copy-wrap,
  .hero .hero-copy,
  .hero .hero-actions,
  .hero .hero-notes {
    width: min(300px, calc(100vw - 60px));
    max-width: min(300px, calc(100vw - 60px));
  }

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

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

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