@font-face {
  font-family: "Syne";
  src: url("/assets/fonts/syne-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 700 800;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/dm-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/ibm-plex-mono-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --void: #070a19;
  --night: #111936;
  --deep: #151f44;
  --paper: #f3f2e9;
  --paper-muted: #d9d9d2;
  --ink: #08101f;
  --lime: #c9ff4a;
  --cyan: #59e4df;
  --coral: #ff6a5c;
  --violet: #a98cff;
  --line: rgba(243, 242, 233, 0.18);
  --line-dark: rgba(8, 16, 31, 0.18);
  --page: min(1440px, calc(100vw - 72px));
  --display: "Syne", "Arial Black", sans-serif;
  --body: "DM Sans", Arial, sans-serif;
  --mono: "IBM Plex Mono", Consolas, monospace;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--void);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--void);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

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

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

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
}

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

.compliance-bar {
  position: relative;
  z-index: 40;
  min-height: 36px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.055em;
  line-height: 1.35;
  text-transform: uppercase;
}

.compliance-bar__inner {
  width: var(--page);
  min-height: 36px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 11px;
}

.compliance-bar__dot {
  width: 3px;
  height: 3px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.55;
}

.compliance-bar__links {
  margin-left: auto;
  display: flex;
  gap: 18px;
  font-weight: 700;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  background: rgba(7, 10, 25, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
}

.site-nav {
  width: var(--page);
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 30px;
}

.brand {
  width: max-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__mark {
  position: relative;
  width: 32px;
  height: 38px;
  flex: 0 0 auto;
  overflow: hidden;
  border-left: 2px solid var(--lime);
  color: transparent;
  font-size: 0;
}

.brand__mark::before,
.brand__mark::after {
  content: "";
  position: absolute;
  left: 3px;
  width: 23px;
  height: 18px;
  border: 2px solid var(--lime);
  border-left: 0;
  border-radius: 0 18px 18px 0;
}

.brand__mark::before {
  top: 1px;
  box-shadow: 4px 1px 0 -2px var(--cyan);
}

.brand__mark::after {
  bottom: 1px;
  box-shadow: 4px -1px 0 -2px var(--coral);
}

.brand__type {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  position: relative;
  padding: 27px 0 24px;
  color: var(--paper-muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--lime);
  transition: transform 180ms var(--ease);
}

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

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  justify-self: end;
  min-height: 42px;
  padding: 10px 15px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 18px 18px 18px 2px;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-cta:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--paper);
}

.nav-toggle__lines,
.nav-toggle__lines::before,
.nav-toggle__lines::after {
  position: absolute;
  width: 20px;
  height: 1px;
  background: currentColor;
}

.nav-toggle__lines {
  position: relative;
  display: block;
  margin: auto;
}

.nav-toggle__lines::before,
.nav-toggle__lines::after {
  content: "";
  left: 0;
}

.nav-toggle__lines::before { top: -6px; }
.nav-toggle__lines::after { top: 6px; }

.eyebrow,
.site-footer__heading {
  margin: 0 0 18px;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow--light { color: var(--cyan); }
.eyebrow--orange { color: var(--coral); }

.button {
  min-height: 52px;
  padding: 13px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 1px solid transparent;
  border-radius: 20px 20px 20px 2px;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms var(--ease), background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button--acid,
.button--jade,
.button--sun {
  background: var(--lime);
  color: var(--ink);
}

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

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

.button--orange,
.button--terracotta {
  background: var(--coral);
  color: var(--ink);
}

.button--ghost {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}

.arrow {
  font-size: 17px;
  line-height: 0;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  width: var(--page);
  min-height: min(900px, calc(100vh - 112px));
  margin: 0 auto;
  padding: 82px 0 38px;
  display: grid;
  grid-template-columns: repeat(16, 1fr);
  grid-template-rows: 1fr auto;
  gap: 28px 18px;
  overflow: clip;
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border: 1px solid rgba(89, 228, 223, 0.2);
  border-radius: 50%;
}

.hero::before {
  top: 8%;
  left: 16%;
  width: 52vw;
  height: 52vw;
  max-width: 760px;
  max-height: 760px;
  box-shadow: 0 0 0 36px rgba(89, 228, 223, 0.035), 0 0 0 78px rgba(169, 140, 255, 0.025);
  animation: field-drift 16s ease-in-out infinite alternate;
}

.hero::after {
  right: -18%;
  bottom: -14%;
  width: 46vw;
  height: 30vw;
  border-color: rgba(201, 255, 74, 0.16);
  transform: rotate(-11deg);
}

.hero__copy {
  z-index: 3;
  grid-column: 1 / span 8;
  grid-row: 1;
  align-self: center;
  padding: 38px 0 60px;
}

.hero h1,
.page-hero h1,
.game-hero h1,
.section-heading h2,
.ledger-heading h2,
.responsible-panel h2,
.manifesto h2,
.content-grid__rail h2,
.contact-card h2,
.empty-state h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.055em;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(72px, 8vw, 132px);
  line-height: 0.78;
  text-transform: uppercase;
}

.hero h1 em {
  display: block;
  color: var(--lime);
  font-style: normal;
  white-space: nowrap;
}

.hero__lead {
  max-width: 590px;
  margin: 38px 0 0;
  color: var(--paper-muted);
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.45;
}

.hero__actions,
.button-row {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.hero__notice {
  max-width: 620px;
  margin: 32px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #b8bbc7;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.025em;
  line-height: 1.7;
}

.hero__notice strong {
  color: var(--cyan);
  text-transform: uppercase;
}

.hero__art {
  position: relative;
  z-index: 1;
  min-width: 0;
  margin: 0;
  grid-column: 6 / -1;
  grid-row: 1;
  align-self: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 44px 44px 44px 3px;
  background: var(--night);
}

.hero__art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 10, 25, 0.72) 0%, rgba(7, 10, 25, 0.1) 31%, transparent 55%);
  pointer-events: none;
}

.hero__art img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  animation: image-breathe 18s ease-in-out infinite alternate;
}

.hero__art figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 18px;
  left: 22px;
  display: flex;
  justify-content: space-between;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__index {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero__index a {
  min-height: 74px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 18px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.hero__index a + a {
  border-left: 1px solid var(--line);
}

.hero__index a:hover {
  background: var(--paper);
  color: var(--ink);
}

.hero__index span {
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.fact-strip {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.fact {
  min-height: 130px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid var(--line);
}

.fact:last-child { border-right: 0; }

.fact strong {
  color: var(--lime);
  font-family: var(--display);
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: 1;
}

.fact span {
  margin-top: 9px;
  color: var(--paper-muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: 132px 0;
}

.section--compact { padding-top: 82px; }

.section-heading {
  margin-bottom: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 80px;
  align-items: end;
}

.section-heading > *,
.ledger-heading > *,
.game-folio > *,
.responsible-panel > *,
.page-hero > *,
.content-grid > *,
.game-hero > *,
.contact-card > * {
  min-width: 0;
}

.section-heading h2,
.ledger-heading h2 {
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.9;
  text-transform: uppercase;
}

.section-heading > p {
  max-width: 520px;
  margin: 0;
  color: var(--paper-muted);
  font-size: 17px;
}

.game-folios {
  padding-bottom: 86px;
}

.game-folio {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 40px 40px 40px 3px;
  background: var(--night);
}

.game-folio + .game-folio { margin-top: 28px; }

.game-folio--cinnamon {
  grid-template-columns: minmax(380px, 0.85fr) minmax(0, 1.15fr);
  background: var(--coral);
  color: var(--ink);
}

.game-folio--cinnamon .game-folio__media { grid-column: 2; }
.game-folio--cinnamon .game-folio__body { grid-column: 1; grid-row: 1; }

.game-folio__media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  text-decoration: none;
}

.game-folio__media::after,
.game-card__media::after,
.game-hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(243, 242, 233, 0.12);
  background: linear-gradient(180deg, transparent 56%, rgba(7, 10, 25, 0.55));
}

.game-folio__media img,
.game-card__media img,
.game-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.game-folio__media:hover img,
.game-card:hover .game-card__media img {
  transform: scale(1.035);
}

.game-folio__number,
.game-card__number {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 22px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(243, 242, 233, 0.55);
  border-radius: 50%;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.game-folio__body {
  padding: clamp(42px, 5.5vw, 86px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  container-type: inline-size;
}

.game-folio--cinnamon .eyebrow { color: var(--ink); opacity: 0.68; }

.game-folio__body h3,
.game-card__body h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.87;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.game-folio__body h3 {
  font-size: clamp(30px, 14cqw, 84px);
}

.game-folio--cinnamon .game-folio__body h3 {
  font-size: clamp(26px, 10cqw, 68px);
}

.game-folio__body > p:not(.eyebrow) {
  max-width: 540px;
  margin: 28px 0 0;
  color: var(--paper-muted);
  font-size: 17px;
}

.game-folio--cinnamon .game-folio__body > p:not(.eyebrow) { color: rgba(8, 16, 31, 0.76); }

.game-folio__meta {
  margin: 36px 0;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  opacity: 0.82;
}

.game-folio__meta div {
  min-height: 46px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid currentColor;
}

.game-folio__meta div:last-child { border-bottom: 0; }

.game-folio__meta dt,
.game-folio__meta dd {
  margin: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.game-folio__meta dd { text-align: right; font-weight: 700; }

.ledger-heading {
  margin-bottom: 54px;
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 50px;
  align-items: start;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle {
  min-height: 300px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.principle:last-child { border-right: 0; }

.principle__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 76px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 10px;
}

.principle h3,
.mini-card h3,
.rule h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.05;
}

.principle p,
.mini-card p,
.rule p {
  margin: 0;
  color: var(--paper-muted);
}

.responsible-panel {
  padding: clamp(40px, 7vw, 100px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 90px;
  border-radius: 48px 48px 48px 3px;
  background: var(--paper);
  color: var(--ink);
}

.responsible-panel .eyebrow { color: #4b27aa; }

.responsible-panel h2 {
  max-width: 800px;
  font-size: clamp(50px, 6vw, 94px);
  line-height: 0.9;
  text-transform: uppercase;
}

.responsible-panel__lead > p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px 0;
  color: #465063;
  font-size: 18px;
}

.responsible-panel__list {
  border-top: 1px solid var(--line-dark);
}

.rule {
  padding: 24px 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line-dark);
}

.rule__number {
  color: #4b27aa;
  font-family: var(--mono);
  font-size: 10px;
}

.rule p { color: #465063; }

.faq {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  min-height: 82px;
  padding: 22px 66px 22px 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 29px);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  margin-left: auto;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 400;
}

.faq details[open] summary::after { content: "−"; }

.faq details > p {
  max-width: 780px;
  margin: -6px 0 28px;
  color: var(--paper-muted);
  font-size: 17px;
}

.page-hero {
  position: relative;
  width: var(--page);
  min-height: 470px;
  margin: 0 auto;
  padding: 86px 0 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: end;
  gap: 88px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -120px;
  right: 4%;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(89, 228, 223, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(89, 228, 223, 0.03), 0 0 0 92px rgba(169, 140, 255, 0.025);
}

.page-hero--orange::before { border-color: rgba(255, 106, 92, 0.5); }
.page-hero--ice::before { border-color: rgba(89, 228, 223, 0.55); }

.page-hero h1 {
  max-width: 960px;
  font-size: clamp(42px, 13cqw, 110px);
  line-height: 0.82;
  text-transform: uppercase;
}

.page-hero > :first-child {
  container-type: inline-size;
}

.page-hero--policy h1 {
  font-size: clamp(30px, 10cqw, 84px);
}

.page-hero__aside {
  padding: 28px 0 4px;
  border-top: 1px solid var(--line);
}

.page-hero__aside > p {
  margin: 0 0 26px;
  color: var(--paper-muted);
  font-size: 18px;
}

.page-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-hero__facts span,
.game-badges span,
.game-card__meta span {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 12px 12px 12px 2px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: 80px;
  align-items: start;
}

.content-grid__rail {
  position: sticky;
  top: 112px;
  container-type: inline-size;
}

.content-grid__rail h2 {
  font-size: clamp(24px, 9cqw, 44px);
  line-height: 0.92;
  text-transform: uppercase;
}

.content-grid__rail > p:last-child {
  margin-top: 26px;
  color: var(--paper-muted);
}

.prose {
  padding: clamp(34px, 5.5vw, 80px);
  border-radius: 38px 38px 38px 3px;
  background: var(--paper);
  color: var(--ink);
}

.prose > :first-child { margin-top: 0; }
.prose > :last-child { margin-bottom: 0; }

.prose h2 {
  margin: 48px 0 14px;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.prose p,
.prose li {
  color: #394354;
  font-size: 17px;
  line-height: 1.75;
}

.prose a { color: #3d2692; font-weight: 700; }
.prose ul { padding-left: 22px; }

.callout {
  margin: 38px 0;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 22px 22px 22px 2px;
}

.callout strong {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.callout p { margin: 8px 0 0; }
.callout--acid { background: var(--lime); }
.callout--ice { background: #c9f4f2; }

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

.game-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 38px 38px 38px 3px;
  background: var(--night);
}

.game-card--cinnamon {
  background: var(--coral);
  color: var(--ink);
}

.game-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.game-card__tag {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  padding: 7px 10px;
  border-radius: 12px 12px 12px 2px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.game-card__body {
  padding: clamp(28px, 4vw, 52px);
  container-type: inline-size;
}

.game-card__body h2 {
  font-size: clamp(26px, 10cqw, 64px);
}

.game-card__body > p {
  margin: 22px 0;
  color: var(--paper-muted);
}

.game-card--cinnamon .game-card__body > p,
.game-card--cinnamon .game-card__fineprint { color: rgba(8, 16, 31, 0.75); }

.game-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.game-card--cinnamon .game-card__meta span { border-color: var(--line-dark); }

.game-card__actions {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.game-card__fineprint,
.provider-note {
  color: #aeb3c3;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.02em;
  line-height: 1.65;
}

.provider-note { margin: 20px 0 0; }
.provider-note a { color: inherit; }

.manifesto {
  padding: clamp(38px, 6vw, 86px);
  border-radius: 42px 42px 42px 3px;
  background: var(--violet);
  color: var(--ink);
}

.manifesto__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
}

.manifesto h2 {
  font-size: clamp(46px, 6vw, 88px);
  line-height: 0.9;
  text-transform: uppercase;
}

.manifesto .eyebrow { color: var(--ink); }
.manifesto__copy p { margin: 0 0 28px; font-size: 18px; }

.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mini-card {
  min-height: 250px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.mini-card:last-child { border-right: 0; }
.mini-card h3 { color: var(--lime); }

.game-hero {
  width: var(--page);
  min-height: 650px;
  margin: 0 auto;
  padding: 56px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  gap: 0;
  overflow: clip;
}

.game-hero__image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 42px 0 0 3px;
}

.game-hero__copy {
  padding: clamp(40px, 5vw, 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  container-type: inline-size;
  border: 1px solid var(--line);
  border-left: 0;
  border-radius: 0 42px 42px 0;
  background: var(--night);
}

.game-hero__copy h1 {
  font-size: clamp(32px, 12cqw, 72px);
  line-height: 0.86;
  text-transform: uppercase;
}

.game-hero--cinnamon .game-hero__copy h1 {
  font-size: clamp(26px, 10cqw, 58px);
}

.game-hero__copy > p:not(.eyebrow) {
  margin: 28px 0;
  color: var(--paper-muted);
  font-size: 17px;
}

.game-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.play-stage {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px 34px 34px 3px;
  background: var(--night);
}

.play-stage__top {
  min-height: 80px;
  padding: 14px 18px 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.play-stage__identity {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.play-stage__identity strong {
  font-family: var(--display);
  font-size: 18px;
}

.play-stage__notice {
  color: var(--paper-muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.play-stage__frame {
  position: relative;
  min-height: min(70vh, 760px);
  background: #03050d;
}

.play-stage__frame iframe {
  width: 100%;
  height: min(70vh, 760px);
  border: 0;
}

.play-stage__placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 15%, rgba(89, 228, 223, 0.16), transparent 38%),
    var(--void);
}

.play-stage__placeholder[hidden] { display: none; }

.play-stage__disc {
  width: 74px;
  height: 74px;
  margin-bottom: 26px;
  display: grid;
  place-items: center;
  border: 1px solid var(--lime);
  border-radius: 50%;
  color: var(--lime);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
}

.play-stage__placeholder h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 72px);
  letter-spacing: -0.045em;
  line-height: 0.95;
  text-transform: uppercase;
}

.play-stage__placeholder > p:not(.provider-note) {
  max-width: 650px;
  margin: 18px 0 26px;
  color: var(--paper-muted);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 42px 42px 42px 3px;
  background: var(--paper);
  color: var(--ink);
}

.contact-card__copy { padding: clamp(38px, 6vw, 86px); }

.contact-card h2 {
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.9;
  text-transform: uppercase;
}

.contact-card__copy > p:not(.eyebrow) { color: #465063; }

.contact-routes {
  margin-top: 42px;
  border-top: 1px solid var(--line-dark);
}

.contact-route {
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
}

.contact-route strong,
.contact-card__details strong {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-email {
  margin: 6px 0;
  display: block;
  font-family: var(--display);
  font-size: clamp(20px, 2.7vw, 38px);
  font-weight: 700;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}

.contact-route p { margin: 5px 0 0; color: #536075; }

.contact-card__details {
  padding: clamp(34px, 5vw, 68px);
  background: var(--lime);
}

.contact-card__details .eyebrow { color: var(--ink); }
.contact-card__details p { margin: 0 0 24px; }

.empty-state {
  width: var(--page);
  min-height: 70vh;
  margin: 0 auto;
  padding: 90px 0;
  display: grid;
  place-items: center;
}

.empty-state__card {
  max-width: 800px;
  text-align: center;
}

.empty-state__code {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
}

.empty-state h1 {
  margin-top: 18px;
  font-size: clamp(58px, 8vw, 120px);
  line-height: 0.86;
  text-transform: uppercase;
}

.empty-state p { color: var(--paper-muted); font-size: 18px; }

.site-footer {
  padding: 0;
  background: var(--lime);
  color: var(--ink);
}

.site-footer__main {
  width: var(--page);
  margin: 0 auto;
  padding: 70px 0 58px;
  display: grid;
  grid-template-columns: 0.8fr 0.45fr 1.4fr;
  gap: 72px;
}

.site-footer .brand__mark {
  border-color: var(--ink);
}

.site-footer .brand__mark::before,
.site-footer .brand__mark::after {
  border-color: var(--ink);
  box-shadow: none;
}

.site-footer__brand > p {
  max-width: 420px;
  margin: 26px 0 0;
  font-size: 15px;
}

.site-footer__heading {
  display: block;
  color: rgba(8, 16, 31, 0.58);
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.site-footer__links a {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
  text-decoration: none;
}

.site-footer__legal {
  padding-left: 34px;
  border-left: 1px solid var(--line-dark);
}

.site-footer__legal p {
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1.55;
}

.site-footer__bottom {
  width: var(--page);
  min-height: 62px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line-dark);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.age-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  padding: 22px;
  display: grid;
  place-items: center;
  overflow-y: auto;
  background: rgba(3, 5, 13, 0.84);
  backdrop-filter: blur(14px);
}

.age-modal[hidden] { display: none; }

.age-modal__card {
  width: min(610px, 100%);
  max-height: calc(100vh - 44px);
  max-height: calc(100dvh - 44px);
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid var(--line);
  border-radius: 34px 34px 34px 3px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
  background: var(--paper);
  color: var(--ink);
}

.age-modal__top {
  min-height: 70px;
  padding: 15px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--lime);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.age-modal__age {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 16px;
}

.age-modal__body { padding: clamp(28px, 5vw, 50px); }

.age-modal h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 6vw, 58px);
  letter-spacing: -0.05em;
  line-height: 0.92;
  text-transform: uppercase;
}

.age-modal p { color: #465063; }

.age-modal__actions {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.age-modal__note {
  margin: 18px 0 0;
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.6;
}

@keyframes field-drift {
  from { transform: translate3d(-6px, -4px, 0) scale(0.99); }
  to { transform: translate3d(8px, 9px, 0) scale(1.015); }
}

@keyframes image-breathe {
  from { transform: scale(1.015) translate3d(-0.4%, 0, 0); }
  to { transform: scale(1.045) translate3d(0.6%, -0.3%, 0); }
}

@media (max-width: 1180px) {
  :root { --page: min(100% - 44px, 1180px); }

  .site-nav { grid-template-columns: 1fr auto auto; }
  .nav-links { gap: 20px; }
  .nav-cta { display: none; }

  .hero { min-height: 760px; padding-top: 58px; }
  .hero__copy { grid-column: 1 / span 9; }
  .hero__art { grid-column: 6 / -1; }
  .hero h1 { font-size: clamp(64px, 8.5vw, 102px); }

  .game-folio { grid-template-columns: 1.05fr 0.95fr; }
  .game-folio--cinnamon { grid-template-columns: 0.95fr 1.05fr; }
  .game-folio__body { padding: 48px; }

  .responsible-panel { gap: 54px; }
  .site-footer__main { grid-template-columns: 0.75fr 0.4fr 1.25fr; gap: 42px; }
  .mini-grid { grid-template-columns: repeat(2, 1fr); }
  .mini-card:nth-child(2) { border-right: 0; }
  .mini-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 900px) {
  :root { --page: min(100% - 32px, 860px); }

  .compliance-bar__inner {
    width: 100%;
    padding: 9px 16px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .compliance-bar__inner::-webkit-scrollbar { display: none; }
  .compliance-bar__links { padding-right: 8px; }

  .site-nav { min-height: 64px; grid-template-columns: 1fr auto; }
  .nav-toggle { position: relative; display: block; }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    padding: 14px 16px 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 10, 25, 0.98);
  }

  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 15px; border-bottom: 1px solid var(--line); }
  .nav-links a::after { display: none; }

  .hero {
    min-height: auto;
    padding: 58px 0 24px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .hero__copy { grid-column: 1; grid-row: 1; padding: 0; }
  .hero h1 { font-size: clamp(64px, 13vw, 100px); }
  .hero__lead { max-width: 680px; }

  .hero__art {
    grid-column: 1;
    grid-row: 2;
    min-height: 520px;
  }

  .hero__art::after { background: linear-gradient(180deg, rgba(7, 10, 25, 0.08), transparent 40%); }
  .hero__art img { min-height: 520px; object-position: 66% center; }
  .hero__index { grid-column: 1; grid-row: 3; }

  .fact-strip { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(2) { border-right: 0; }
  .fact:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  .section { padding: 92px 0; }
  .section-heading,
  .ledger-heading,
  .page-hero,
  .content-grid,
  .responsible-panel,
  .manifesto__grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .ledger-heading { gap: 32px; }
  .section-heading > p { max-width: 680px; }

  .game-folio,
  .game-folio--cinnamon {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .game-folio--cinnamon .game-folio__media,
  .game-folio--cinnamon .game-folio__body {
    grid-column: 1;
  }

  .game-folio--cinnamon .game-folio__media { grid-row: 1; }
  .game-folio--cinnamon .game-folio__body { grid-row: 2; }
  .game-folio__media { min-height: 0; aspect-ratio: 16 / 10; }

  .principles { grid-template-columns: 1fr; }
  .principle { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .principle:last-child { border-bottom: 0; }
  .principle__icon { margin-bottom: 38px; }

  .responsible-panel { gap: 50px; }
  .page-hero { min-height: 0; gap: 44px; padding: 72px 0 54px; }
  .page-hero__aside { max-width: 680px; }
  .content-grid { gap: 44px; }
  .content-grid__rail { position: static; }

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

  .game-hero { padding: 32px 0 64px; }
  .game-hero__image { min-height: 0; aspect-ratio: 4 / 3; border-radius: 36px 36px 0 0; }
  .game-hero__copy { border-top: 0; border-left: 1px solid var(--line); border-radius: 0 0 36px 3px; }

  .contact-card__details { border-top: 1px solid var(--line-dark); }

  .site-footer__main { grid-template-columns: 1fr 0.45fr; }
  .site-footer__legal { grid-column: 1 / -1; padding: 34px 0 0; border-top: 1px solid var(--line-dark); border-left: 0; }
}

@media (max-width: 600px) {
  :root { --page: min(100% - 22px, 560px); }

  body { font-size: 15px; }
  .compliance-bar { font-size: 9px; }
  .compliance-bar__inner { gap: 8px; }
  .brand__type { font-size: 16px; }

  .hero { padding-top: 46px; gap: 22px; }
  .hero h1 { font-size: clamp(54px, 16.5vw, 74px); }
  .hero h1 em { white-space: nowrap; }
  .hero__lead { margin-top: 26px; font-size: 18px; }
  .hero__actions { align-items: flex-start; flex-direction: column; }
  .hero__notice { margin-top: 26px; }

  .hero__art { min-height: 430px; border-radius: 28px 28px 28px 2px; }
  .hero__art img { min-height: 430px; object-position: 69% center; }
  .hero__art figcaption { right: 14px; bottom: 12px; left: 14px; }

  .hero__index { grid-template-columns: 1fr; }
  .hero__index a { grid-template-columns: 74px 1fr; }
  .hero__index a + a { border-top: 1px solid var(--line); border-left: 0; }

  .fact { min-height: 105px; padding: 18px; }
  .fact strong { font-size: 34px; }

  .section { padding: 72px 0; }
  .section--compact { padding-top: 54px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2,
  .ledger-heading h2 { font-size: clamp(43px, 13vw, 64px); }

  .game-folio { border-radius: 28px 28px 28px 2px; }
  .game-folio__media { aspect-ratio: 4 / 3; }
  .game-folio__body { padding: 34px 24px 38px; }
  .game-folio__body h3 { font-size: clamp(30px, 14cqw, 56px); }
  .game-folio--cinnamon .game-folio__body h3 { font-size: clamp(26px, 10cqw, 38px); }

  .responsible-panel,
  .manifesto,
  .prose,
  .contact-card { border-radius: 28px 28px 28px 2px; }

  .responsible-panel { padding: 34px 24px; }
  .responsible-panel h2 { font-size: clamp(43px, 13vw, 62px); }

  .page-hero { padding-top: 56px; }
  .page-hero h1 { font-size: clamp(29px, 8.2vw, 46px); line-height: 0.92; }
  .page-hero__aside > p { font-size: 16px; }

  .section-heading h2,
  .ledger-heading h2,
  .responsible-panel h2,
  .manifesto h2,
  .content-grid__rail h2,
  .contact-card h2 { font-size: clamp(30px, 9.5vw, 44px); line-height: 0.96; }

  .content-grid__rail h2 { font-size: clamp(24px, 9cqw, 44px); }

  .prose { padding: 34px 23px; }
  .prose p,
  .prose li { font-size: 16px; }

  .game-grid { gap: 18px; }
  .game-card { border-radius: 28px 28px 28px 2px; }
  .game-card__body { padding: 28px 22px 32px; }
  .game-hero__copy { padding: 34px 24px 40px; }

  .empty-state h1 { font-size: clamp(42px, 14vw, 58px); }

  .mini-grid { grid-template-columns: 1fr; }
  .mini-card { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .mini-card:last-child { border-bottom: 0; }

  .play-stage { border-radius: 24px 24px 24px 2px; }
  .play-stage__top { align-items: flex-start; flex-direction: column; }
  .play-stage__frame,
  .play-stage__frame iframe { min-height: 520px; height: 70vh; }
  .play-stage__placeholder { padding: 26px 18px; }

  .contact-card h2 { font-size: clamp(30px, 9.5vw, 44px); }
  .contact-card__copy,
  .contact-card__details { padding: 32px 22px; }
  .contact-card .button-row { align-items: stretch; flex-direction: column; }

  .site-footer__main { padding: 54px 0 40px; grid-template-columns: 1fr; gap: 42px; }
  .site-footer__links a { min-height: 44px; display: flex; align-items: center; }
  .site-footer__legal { grid-column: 1; }
  .site-footer__bottom { min-height: 80px; padding: 16px 0; align-items: flex-start; flex-direction: column; justify-content: center; }

  .age-modal { padding: 10px; }
  .age-modal__card { max-height: calc(100vh - 20px); max-height: calc(100dvh - 20px); border-radius: 24px 24px 24px 2px; }
  .age-modal__actions { grid-template-columns: 1fr; }
}

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