:root {
  color-scheme: dark;
  --ink: #0a0b0b;
  --ink-2: #101212;
  --panel: #151717;
  --panel-2: #1b1d1d;
  --paper: #f4f0e7;
  --muted: #aaa79f;
  --line: rgba(244, 240, 231, 0.14);
  --gold: #c39a59;
  --gold-soft: #e2c48e;
  --max: 1180px;
  --radius: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 88px; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle at 78% 8%, rgba(195, 154, 89, 0.08), transparent 26rem);
}

a { color: inherit; }
img { display: block; width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 11, 11, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(calc(100% - 40px), var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  font-weight: 760;
  letter-spacing: 0.14em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(195, 154, 89, 0.7);
  color: var(--gold-soft);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: #cecbc4;
  text-decoration: none;
  font-size: 0.87rem;
  font-weight: 620;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--paper); }
.nav-links .nav-cta { color: var(--gold-soft); }

.shell { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.section { padding: 112px 0; }
.section-tight { padding: 82px 0; }
.rule { border-top: 1px solid var(--line); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 720;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--gold); }

h1, h2, h3 {
  margin: 0;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.04;
  text-wrap: balance;
}
h1 { font-size: clamp(3.35rem, 8vw, 7.4rem); letter-spacing: -0.055em; }
h2 { font-size: clamp(2.45rem, 5vw, 4.8rem); letter-spacing: -0.045em; }
h3 { font-size: clamp(1.6rem, 3vw, 2.35rem); letter-spacing: -0.025em; }
p { margin: 0; color: #bdbab3; }
.lede { max-width: 680px; font-size: clamp(1.05rem, 2vw, 1.27rem); line-height: 1.7; color: #c9c6bf; }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #14110c;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 780;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}
.button:hover { transform: translateY(-2px); background: var(--gold-soft); }
.button.ghost { background: transparent; color: var(--paper); border-color: var(--line); }
.button.ghost:hover { border-color: var(--gold); color: var(--gold-soft); }
.arrow { font-size: 1.05rem; }

.hero { padding: 68px 0 100px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.hero-copy { display: grid; gap: 28px; padding: 28px 0; }
.hero-copy h1 { font-size: clamp(3.75rem, 6vw, 5.6rem); }
.hero-copy h1 em { color: var(--gold-soft); font-style: normal; }
.hero-visual { position: relative; min-height: 620px; }
.hero-frame {
  position: absolute;
  inset: 0 0 0 7%;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}
.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(3, 4, 4, 0.82));
}
.hero-frame img { height: 100%; object-fit: cover; object-position: center; filter: saturate(0.72) contrast(1.06); }
.hero-caption {
  position: absolute;
  right: 28px;
  bottom: 26px;
  z-index: 2;
  max-width: 310px;
  text-align: right;
}
.hero-caption strong { display: block; font-family: Georgia, serif; font-size: 1.7rem; font-weight: 500; }
.hero-caption span { color: var(--muted); font-size: 0.76rem; letter-spacing: 0.13em; text-transform: uppercase; }
.index-block {
  position: absolute;
  left: 0;
  bottom: 48px;
  z-index: 3;
  width: 160px;
  padding: 22px;
  background: var(--paper);
  color: var(--ink);
}
.index-block span { display: block; color: #675a43; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; }
.index-block strong { display: block; margin-top: 8px; font-family: Georgia, serif; font-size: 2.3rem; font-weight: 500; }

.statement-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 80px; align-items: start; }
.statement-copy { display: grid; gap: 28px; }
.statement-copy p { max-width: 650px; font-size: 1.12rem; }

.feature-card {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  min-height: 540px;
  border: 1px solid var(--line);
  background: var(--panel);
}
.feature-image { min-height: 420px; display: grid; place-items: center; overflow: hidden; background: #0c0d0d; }
.feature-image img { height: 100%; object-fit: contain; object-position: center; filter: saturate(0.78); }
.feature-copy { padding: clamp(34px, 5vw, 68px); display: flex; flex-direction: column; justify-content: space-between; gap: 48px; }
.feature-copy > div { display: grid; gap: 22px; }
.meta-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { padding: 6px 10px; border: 1px solid var(--line); color: #c8c4bb; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; }

.page-hero { padding: 108px 0 84px; }
.page-hero-inner { max-width: 920px; display: grid; gap: 26px; }
.page-hero h1 { font-size: clamp(3.7rem, 8vw, 7rem); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.panel { padding: clamp(30px, 4vw, 54px); border: 1px solid var(--line); background: var(--panel); }
.panel { display: grid; gap: 24px; }
.panel-label { color: var(--gold-soft); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }

.quote {
  padding-left: clamp(24px, 5vw, 70px);
  border-left: 1px solid var(--gold);
  color: var(--paper);
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.games-list { display: grid; gap: 24px; }
.game-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 500px;
  border: 1px solid var(--line);
  background: var(--panel);
}
.game-row-image { overflow: hidden; }
.game-row-image img { height: 100%; object-fit: cover; }
.game-row-copy { padding: clamp(34px, 6vw, 76px); display: grid; align-content: center; gap: 26px; }

.merchant-hero { padding: 46px 0 84px; }
.merchant-stage {
  min-height: min(680px, 72vh);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}
.merchant-stage > img { position: absolute; inset: 0; height: 100%; object-fit: cover; filter: saturate(0.65) brightness(0.68); }
.merchant-stage::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,6,6,.96) 0, rgba(5,6,6,.63) 48%, rgba(5,6,6,.08) 88%), linear-gradient(0deg, rgba(5,6,6,.75), transparent 46%); }
.merchant-stage-copy { position: relative; z-index: 2; width: min(720px, 88%); padding: clamp(34px, 6vw, 76px); display: grid; gap: 25px; }
.merchant-stage-copy h1 { font-size: clamp(4.5rem, 11vw, 9rem); }

.feature-list { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.feature-list article { min-height: 250px; padding: 36px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-list .number { color: var(--gold); font-size: 0.7rem; letter-spacing: .15em; }
.feature-list h3 { margin-top: 44px; font-size: 1.7rem; }
.feature-list p { margin-top: 16px; }

.build-card { position: relative; min-height: 430px; overflow: hidden; border: 1px solid var(--line); background: var(--panel); }
.build-card img { position: absolute; inset: 0; height: 100%; object-fit: cover; filter: saturate(.68) brightness(.45); }
.build-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,9,9,.98), rgba(8,9,9,.18)); }
.build-card-copy { position: absolute; inset: auto 0 0; z-index: 2; padding: 34px; display: grid; gap: 15px; }
.build-card-copy .button { justify-self: start; margin-top: 8px; }

.notice { padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); font-size: .9rem; }

.timeline { position: relative; display: grid; gap: 0; margin-top: 54px; }
.timeline::before { content: ""; position: absolute; left: 31px; top: 10px; bottom: 10px; width: 1px; background: var(--line); }
.timeline-item { position: relative; display: grid; grid-template-columns: 64px minmax(0, .85fr) minmax(360px, 1.15fr); gap: clamp(24px, 5vw, 70px); align-items: center; padding: 44px 0; border-top: 1px solid var(--line); }
.timeline-item:last-child { border-bottom: 1px solid var(--line); }
.timeline-index { position: relative; z-index: 2; width: 64px; height: 64px; display: grid; place-items: center; border: 1px solid var(--gold); background: var(--ink); color: var(--gold-soft); font: 500 1rem Georgia, serif; }
.timeline-copy { display: grid; gap: 14px; }
.timeline-copy time { color: var(--gold-soft); font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.timeline-copy h3 { font-size: clamp(1.8rem, 3vw, 2.7rem); }
.timeline-media { aspect-ratio: 16 / 9; overflow: hidden; border: 1px solid var(--line); background: var(--panel); }
.timeline-media img { height: 100%; object-fit: cover; }
.timeline-item.failure .timeline-media { border-color: rgba(195,154,89,.55); }
.timeline-note { color: #8d8b85; font-size: .8rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 42px; }
.gallery-item { position: relative; overflow: hidden; border: 1px solid var(--line); background: var(--panel); }
.gallery-item img { aspect-ratio: 16 / 9; object-fit: cover; transition: transform 700ms ease; }
.gallery-item:hover img { transform: scale(1.02); }
.gallery-item figcaption { position: absolute; inset: auto 0 0; padding: 46px 20px 16px; background: linear-gradient(transparent, rgba(4,5,5,.88)); color: #d8d3ca; font-size: .74rem; letter-spacing: .09em; text-transform: uppercase; }

.site-footer { border-top: 1px solid var(--line); padding: 54px 0; }
.footer-grid { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.footer-copy { max-width: 520px; display: grid; gap: 14px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: .88rem; }
.footer-links a:hover { color: var(--paper); }
.copyright { color: #6f706c; font-size: .76rem; }

@media (max-width: 900px) {
  .hero-grid, .statement-grid, .feature-card, .game-row, .two-col { grid-template-columns: 1fr; }
  .hero { padding-top: 34px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 560px; }
  .hero-frame { left: 0; }
  .index-block { left: 18px; bottom: 18px; }
  .statement-grid { gap: 34px; }
  .feature-card, .game-row { min-height: auto; }
  .feature-image, .game-row-image { min-height: 420px; }
  .feature-list { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 64px 1fr; }
  .timeline-media { grid-column: 2; }
}

@media (max-width: 640px) {
  .nav { width: min(calc(100% - 28px), var(--max)); min-height: 68px; align-items: flex-start; padding: 15px 0; }
  .brand { gap: 9px; }
  .brand-mark { width: 30px; height: 30px; }
  .brand small { display: none; }
  .nav-links { gap: 13px; flex-wrap: wrap; justify-content: flex-end; }
  .nav-links a { font-size: .69rem; }
  .nav-links .nav-cta { display: none; }
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 82px 0; }
  .section-tight { padding: 64px 0; }
  h1 { font-size: clamp(3.2rem, 17vw, 5.2rem); }
  .hero-grid { gap: 28px; }
  .hero-visual { min-height: 430px; }
  .hero-caption { left: 24px; right: 24px; text-align: left; }
  .index-block { display: none; }
  .page-hero { padding: 76px 0 60px; }
  .feature-image, .game-row-image { min-height: 300px; }
  .merchant-stage { min-height: 580px; }
  .merchant-stage::after { background: linear-gradient(0deg, rgba(5,6,6,.96), rgba(5,6,6,.32)); }
  .merchant-stage-copy { width: 100%; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .timeline::before { left: 23px; }
  .timeline-item { grid-template-columns: 48px 1fr; gap: 18px; padding: 34px 0; }
  .timeline-index { width: 48px; height: 48px; }
  .gallery-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Approved title artwork retains its complete composition at every width. */
.launch-hero { padding: 32px 0 64px; }
.brand-art { margin: 0; }
.brand-art img { width: 100%; height: auto; border: 1px solid var(--line); }
.brand-art figcaption { margin-top: 8px; color: var(--muted); font-size: .72rem; text-align: right; }
.launch-copy { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 32px; align-items: end; padding-top: 30px; }
.launch-copy > div:first-child { display: grid; gap: 18px; }
.launch-copy h1 { font-size: clamp(2.3rem,4.2vw,4.2rem); letter-spacing: -.035em; }
.launch-copy .button-row { flex-direction: column; }
.tagline { font-family: Georgia, serif; font-size: 1.7rem; color: var(--gold-soft); }
@media(max-width: 760px) { .launch-copy { grid-template-columns: 1fr; gap: 24px; } .launch-copy .button-row { flex-direction: row; } .launch-hero { padding: 20px 0 44px; } .brand-art figcaption { font-size: .65rem; } }

/* Studio identity leads the home page; each game has its own destination. */
.studio-hero { padding: 80px 0 88px; }
.studio-intro { display: grid; gap: 28px; }
.studio-intro h1 { font-family: inherit; font-weight: 650; font-size: clamp(3rem, 7vw, 6rem); letter-spacing: -.055em; line-height: 1.04; }
.studio-intro h1 em { color: #74bdb1; font-style: normal; }
.studio-intro .lede { max-width: 760px; }
.studio-section-heading { display: grid; gap: 22px; margin-bottom: 40px; }
.studio-project { display: grid; gap: 36px; }
.studio-project-copy { display: grid; gap: 18px; max-width: 760px; }
.studio-project-copy .button { justify-self: start; }
.studio-hero .eyebrow, .studio-section-heading .eyebrow, .panel-label { font-size: .875rem; }
.brand-art figcaption { font-size: .8125rem; }
@media(max-width:640px) { .studio-hero { padding: 54px 0 64px; } .studio-intro h1 { font-size: clamp(2.7rem, 11vw, 4rem); } .studio-section-heading { margin-bottom: 28px; } }
