/* ============================================================
   STOMACO STUDIO — stomaco.studio
   Hand-built pixel-art site. No frameworks, no trackers.
   ============================================================ */

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

:root {
  --ink: #0c0913;
  --ink-2: #141020;
  --ink-3: #1d1730;
  --panel: #191330;
  --line: #372a58;
  --line-2: #4b3a75;
  --purple: #8a63b8;
  --purple-2: #b98ae0;
  --spark: #d18bff;
  --gold: #f0a232;
  --gold-2: #ffc45e;
  --gold-deep: #a8631a;
  --parchment: #ecd9a8;
  --green: #7fbf4d;
  --green-2: #a7e06b;
  --red: #d84848;
  --sky: #4fd6e8;
  --text: #ece8f6;
  --text-dim: #a89ec6;
  --text-faint: #7d719e;
  --font-display: 'Pixelify Sans', 'Segoe UI', system-ui, sans-serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: ui-monospace, 'Cascadia Mono', 'Segoe UI Mono', 'JetBrains Mono', Consolas, monospace;
  --w: 1180px;
  --shadow-px: 6px 6px 0 rgba(0, 0, 0, .45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* subtle tile pattern + glows */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(138, 99, 184, .22), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, rgba(240, 162, 50, .08), transparent 60%),
    var(--ink);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url('/assets/img/frogbound/pattern.jpg');
  background-size: 720px auto;
  opacity: .05;
  pointer-events: none;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-2); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

.wrap { max-width: var(--w); margin: 0 auto; padding: 0 22px; }
.pix { image-rendering: pixelated; }

/* ============ header / nav ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 9, 19, .88);
  backdrop-filter: blur(6px);
  border-bottom: 3px solid var(--line);
}
.site-header .inner {
  max-width: var(--w);
  margin: 0 auto;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: .5px;
  color: var(--text);
  text-shadow: 2px 2px 0 #000;
}
.brand img { width: 40px; height: 40px; image-rendering: pixelated; }
.brand:hover { text-decoration: none; color: var(--gold-2); }
.brand small {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1.4px;
  color: var(--text-faint);
  text-transform: uppercase;
  text-shadow: none;
}
.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--text-dim);
  padding: 8px 12px;
  border: 2px solid transparent;
}
.nav a:hover { color: var(--gold-2); text-decoration: none; }
.nav a[aria-current="page"] {
  color: var(--gold-2);
  border-color: var(--line);
  background: var(--ink-3);
  box-shadow: 3px 3px 0 rgba(0,0,0,.4);
}
.nav .nav-cta {
  color: #1a1105;
  background: var(--gold);
  border-color: var(--gold-deep);
  box-shadow: 3px 3px 0 rgba(0,0,0,.4);
  margin-left: 8px;
}
.nav .nav-cta:hover { color: #000; background: var(--gold-2); }
.nav-toggle {
  display: none;
  margin-left: auto;
  background: var(--ink-3);
  border: 2px solid var(--line);
  color: var(--text);
  font-size: 20px;
  padding: 6px 12px;
  cursor: pointer;
  box-shadow: 3px 3px 0 rgba(0,0,0,.4);
}
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--ink-2);
    border-bottom: 3px solid var(--line);
    padding: 10px 14px 16px;
  }
  .nav.open { display: flex; }
  .nav a { border: 2px solid transparent; }
}

/* ============ typography / sections ============ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  text-shadow: 3px 3px 0 rgba(0,0,0,.55);
  margin: 0 0 .5em;
}
h1 { font-size: clamp(38px, 6vw, 64px); }
h2 { font-size: clamp(30px, 4vw, 44px); }
h3 { font-size: clamp(22px, 2.6vw, 28px); }
p { margin: 0 0 1em; }
.lead { font-size: clamp(18px, 2.2vw, 22px); color: var(--text-dim); max-width: 62ch; }

section { padding: clamp(56px, 8vw, 96px) 0; }
.section-head { margin-bottom: 40px; }
.kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.kicker::before { content: "["; color: var(--text-faint); }
.kicker::after { content: "]"; color: var(--text-faint); }
.kicker.green { color: var(--green-2); }
.kicker.purple { color: var(--purple-2); }
.kicker.sky { color: var(--sky); }

/* ============ panels ============ */
.frame {
  background: var(--panel);
  border: 3px solid var(--line);
  box-shadow: var(--shadow-px), inset 0 0 0 3px var(--ink);
}
.frame-in { padding: 22px; }

/* ============ buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1;
  padding: 14px 20px;
  border: 3px solid var(--gold-deep);
  background: var(--gold);
  color: #1a1105;
  box-shadow: 5px 5px 0 rgba(0,0,0,.5);
  cursor: pointer;
  transition: transform .06s steps(2), box-shadow .06s steps(2), background .12s;
  text-decoration: none;
}
.btn:hover { background: var(--gold-2); text-decoration: none; color: #000; transform: translate(2px, 2px); box-shadow: 3px 3px 0 rgba(0,0,0,.5); }
.btn:active { transform: translate(5px, 5px); box-shadow: 0 0 0 rgba(0,0,0,.5); }
.btn.ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn.ghost:hover { color: var(--gold-2); border-color: var(--gold); background: rgba(240,162,50,.06); }
.btn.green { background: var(--green); border-color: #4e7f2a; color: #0e1505; }
.btn.green:hover { background: var(--green-2); }
.btn.small { font-size: 16px; padding: 10px 14px; border-width: 2px; box-shadow: 3px 3px 0 rgba(0,0,0,.5); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.steam-ico { width: 22px; height: 22px; fill: currentColor; }

/* ============ hero ============ */
.hero {
  position: relative;
  padding: clamp(60px, 9vw, 110px) 0 0;
  overflow: hidden;
}
.hero .inner {
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 40px;
  align-items: center;
}
@media (max-width: 980px) { .hero .inner { grid-template-columns: 1fr; } }
.hero-copy .tagline {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.08;
  text-shadow: 4px 4px 0 rgba(0,0,0,.6);
  margin: 0 0 16px;
}
.hero-copy .tagline em { font-style: normal; color: var(--gold-2); }
.hero-copy .tagline .g { color: var(--green-2); }
.hero-art { position: relative; }
.hero-art .logo {
  width: min(100%, 560px);
  margin: 0 auto;
  filter: drop-shadow(8px 10px 0 rgba(0,0,0,.45));
  animation: floaty 5s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero-frog {
  position: relative;
  height: 96px;
  margin-top: 26px;
}
.hero-frog .frog {
  position: absolute;
  left: 0;
  bottom: 14px;
  animation: frog-move 15s linear infinite;
  cursor: pointer;
}
.hero-frog .hop-wrap { display: block; }
.hero-frog .sprite {
  display: block;
  width: 128px;
  height: 128px;
  image-rendering: pixelated;
  background-image: url('/assets/img/frogbound/chars/hopper_run.png');
  background-size: 3072px 128px;
  background-repeat: no-repeat;
  animation: spr-run .8s steps(24) infinite;
}
.hero-frog .frog.paused { animation-play-state: paused; }
.hero-frog .frog.idle .sprite {
  background-image: url('/assets/img/frogbound/chars/hopper_idle.png');
  background-size: 1536px 128px;
  animation: spr-idle .9s steps(12) infinite;
}
.hero-frog .frog.look .sprite {
  background-image: url('/assets/img/frogbound/chars/hopper_look.png');
  background-size: 1664px 128px;
  animation: spr-look 1.8s steps(13) 1;
}
.hero-frog .frog.snack .sprite {
  background-image: url('/assets/img/frogbound/chars/hopper_snack.png');
  background-size: 2944px 128px;
  animation: spr-snack 2.5s steps(23) 1;
}
.hero-frog .hop-wrap.hop { animation: frog-jump .6s steps(2) 1; }
@keyframes spr-run { from { background-position: 0 0; } to { background-position: -3072px 0; } }
@keyframes spr-idle { from { background-position: 0 0; } to { background-position: -1536px 0; } }
@keyframes spr-look { from { background-position: 0 0; } to { background-position: -1664px 0; } }
@keyframes spr-snack { from { background-position: 0 0; } to { background-position: -2944px 0; } }
@keyframes frog-move { from { transform: translateX(-8vw); } to { transform: translateX(102vw); } }
@keyframes frog-jump { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-46px); } }
.ground {
  height: 26px;
  border-top: 4px solid #8a7d3a;
  background:
    repeating-linear-gradient(90deg, #6b6130 0 26px, #5a5229 26px 52px),
    #5a5229;
  box-shadow: inset 0 4px 0 rgba(255,255,255,.08), inset 0 -6px 0 rgba(0,0,0,.35);
}
.ground.dark { border-top-color: var(--line-2); background: repeating-linear-gradient(90deg, #2b2144 0 26px, #241b3a 26px 52px); }

.sparkle {
  position: absolute;
  width: 10px; height: 10px;
  background: var(--spark);
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
  opacity: .7;
  animation: blink 3.2s steps(2) infinite;
}
@keyframes blink { 0%,100% { opacity: .15; } 50% { opacity: .8; } }

/* ============ cards / grids ============ */
.grid { display: grid; gap: 22px; }
.grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 980px) { .grid.cols-3, .grid.cols-4 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 640px) { .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--ink-2);
  border: 3px solid var(--line);
  box-shadow: var(--shadow-px), inset 0 0 0 3px var(--ink);
  padding: 24px;
  transition: transform .12s steps(2), border-color .12s;
}
.card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--text-dim); margin-bottom: .6em; }
.card .icon { width: 56px; height: 56px; image-rendering: pixelated; margin-bottom: 14px; }

.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .icon { width: 52px; height: 52px; flex: none; image-rendering: pixelated; }
.feature h3 { font-size: 22px; margin-bottom: 4px; }
.feature p { font-size: 15.5px; color: var(--text-dim); margin: 0; }

/* ============ game cards ============ */
.game-card {
  display: flex;
  flex-direction: column;
  background: var(--ink-2);
  border: 3px solid var(--line);
  box-shadow: var(--shadow-px), inset 0 0 0 3px var(--ink);
  overflow: hidden;
  transition: transform .12s steps(2), border-color .12s;
}
.game-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.game-card .cover {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
  border-bottom: 3px solid var(--line);
  image-rendering: pixelated;
}
.game-card .body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.game-card h3 { font-size: 20px; margin-bottom: 6px; }
.game-card .meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 10px;
}
.game-card p { font-size: 14.5px; color: var(--text-dim); flex: 1; }
.game-card .links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 14px;
  padding: 6px 10px;
  border: 2px solid var(--line);
  background: var(--ink-3);
  color: var(--text);
  box-shadow: 3px 3px 0 rgba(0,0,0,.4);
}
.chip:hover { text-decoration: none; border-color: var(--gold); color: var(--gold-2); transform: translate(1px,1px); box-shadow: 2px 2px 0 rgba(0,0,0,.4); }
.chip.play { border-color: #4e7f2a; background: #26391a; color: var(--green-2); }
.chip.play:hover { border-color: var(--green-2); color: #fff; }
.chip.steam { border-color: #3d5a80; background: #17222f; color: #9dc1e8; }

/* ============ screenshots gallery ============ */
.shots-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
@media (max-width: 900px) { .shots-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 560px) { .shots-grid { grid-template-columns: 1fr; } }
.shot {
  padding: 0;
  border: 3px solid var(--line);
  background: var(--ink-3);
  cursor: zoom-in;
  box-shadow: 5px 5px 0 rgba(0,0,0,.45);
  transition: transform .12s steps(2), border-color .12s;
}
.shot:hover { transform: translateY(-3px); border-color: var(--gold); }
.shot img { width: 100%; display: block; image-rendering: pixelated; }
@media (max-width: 640px) { .shot img { image-rendering: auto; } }

dialog.lightbox {
  border: 4px solid var(--line-2);
  background: var(--ink);
  padding: 10px;
  max-width: min(96vw, 1280px);
  box-shadow: 10px 10px 0 rgba(0,0,0,.6);
}
dialog.lightbox::backdrop { background: rgba(5, 3, 10, .86); }
dialog.lightbox img { width: 100%; image-rendering: pixelated; }
dialog.lightbox .close {
  position: absolute;
  top: -18px;
  right: -18px;
  background: var(--gold);
  border: 3px solid var(--gold-deep);
  color: #1a1105;
  font-family: var(--font-display);
  font-size: 18px;
  padding: 4px 12px;
  cursor: pointer;
  box-shadow: 3px 3px 0 rgba(0,0,0,.5);
}

/* ============ zones ============ */
.zone {
  border: 3px solid var(--line);
  background: var(--ink-2);
  box-shadow: var(--shadow-px), inset 0 0 0 3px var(--ink);
  overflow: hidden;
}
.zone .banner { height: 190px; background-size: cover; background-position: center; border-bottom: 3px solid var(--line); image-rendering: pixelated; }
.zone .body { padding: 20px 22px 24px; }
.zone h3 { margin-bottom: 4px; }
.zone .sub { font-family: var(--font-mono); font-size: 12px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; }
.room-list {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--text-faint);
  line-height: 1.9;
  margin: 0;
  padding: 0;
  list-style: none;
  columns: 2;
  column-gap: 18px;
}
.room-list li::before { content: "☐ "; color: var(--line-2); }
@media (max-width: 640px) { .room-list { columns: 1; } }

/* ============ chars ============ */
.char { text-align: center; }
.char img { width: 96px; height: 96px; margin: 0 auto 10px; image-rendering: pixelated; }
.char h4 { font-size: 19px; margin-bottom: 2px; }
.char p { font-size: 13.5px; color: var(--text-faint); margin: 0; }

/* ============ quote / callouts ============ */
.quote {
  border-left: 6px solid var(--gold);
  background: var(--ink-2);
  padding: 22px 26px;
  font-size: clamp(18px, 2.4vw, 23px);
  color: var(--parchment);
  box-shadow: var(--shadow-px);
}
.quote small { display: block; margin-top: 10px; font-size: 14px; color: var(--text-faint); font-family: var(--font-mono); }

/* ============ FAQ ============ */
details.faq {
  border: 3px solid var(--line);
  background: var(--ink-2);
  margin-bottom: 12px;
  box-shadow: 4px 4px 0 rgba(0,0,0,.4);
}
details.faq summary {
  cursor: pointer;
  padding: 14px 18px;
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--gold-2);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
details.faq summary::after { content: "+"; color: var(--text-faint); font-family: var(--font-mono); }
details.faq[open] summary::after { content: "–"; }
details.faq .a { padding: 0 20px 18px; color: var(--text-dim); }

/* ============ details / spec ============ */
.spec { width: 100%; border-collapse: collapse; font-size: 15.5px; }
.spec td { padding: 10px 12px; border-bottom: 2px solid var(--ink-3); vertical-align: top; }
.spec td:first-child { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-faint); width: 34%; }
.spec tr:last-child td { border-bottom: 0; }

/* ============ studio credits ============ */
.credits { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 18px; }
.credit { border: 2px solid var(--line); background: var(--ink-2); padding: 16px 18px; box-shadow: 4px 4px 0 rgba(0,0,0,.35); }
.credit b { font-family: var(--font-display); font-size: 19px; color: var(--gold-2); display: block; }
.credit span { font-family: var(--font-mono); font-size: 12px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 1px; }

/* ============ trailer ============ */
.trailer {
  position: relative;
  border: 4px solid var(--line-2);
  box-shadow: 8px 8px 0 rgba(0,0,0,.5), inset 0 0 0 4px var(--ink);
  background: #000;
  aspect-ratio: 16/9;
}
.trailer video, .trailer img.poster, .trailer .play-cover {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.trailer .play-cover {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  background: #000;
  cursor: pointer;
  border: 0; padding: 0;
}
.trailer .play-cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .65; image-rendering: pixelated; }
.trailer .play-cover .play-btn {
  position: relative;
  font-family: var(--font-display);
  font-size: 22px;
  background: var(--gold);
  color: #1a1105;
  border: 3px solid var(--gold-deep);
  padding: 14px 26px;
  box-shadow: 5px 5px 0 rgba(0,0,0,.6);
}
.trailer .play-cover:hover .play-btn { background: var(--gold-2); transform: translate(2px,2px); box-shadow: 3px 3px 0 rgba(0,0,0,.6); }

/* ============ footer ============ */
.site-footer {
  border-top: 3px solid var(--line);
  background: var(--ink-2);
  margin-top: 40px;
  padding: 46px 0 30px;
}
.site-footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; }
@media (max-width: 900px) { .site-footer .cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer .cols { grid-template-columns: 1fr; } }
.site-footer h4 { font-size: 17px; color: var(--gold); margin-bottom: 12px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 7px; }
.site-footer a { color: var(--text-dim); font-size: 15px; }
.site-footer a:hover { color: var(--gold-2); }
.site-footer .fine {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 2px solid var(--ink-3);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-faint);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
}
.site-footer .fine .logo { width: 34px; height: 34px; image-rendering: pixelated; }

/* ============ breadcrumbs ============ */
.crumbs { font-family: var(--font-mono); font-size: 12px; color: var(--text-faint); padding: 14px 0 0; letter-spacing: 1px; }
.crumbs a { color: var(--text-faint); }
.crumbs a:hover { color: var(--gold-2); }
.crumbs span { color: var(--line-2); margin: 0 6px; }

/* ============ reveal (progressive: only when JS is on) ============ */
.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .hero-art .logo, .sparkle { animation: none !important; }
  /* la rana resta animata, ma corre "sul posto" (niente attraversamento dello schermo) */
  .hero-frog .frog { animation: none; left: 6%; }
  .hero-frog .hop-wrap.hop { animation: none; }
}

/* ============ misc ============ */
.muted { color: var(--text-dim); }
.small { font-size: 14px; }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.divider { height: 4px; border: 0; background: repeating-linear-gradient(90deg, var(--line) 0 18px, transparent 18px 26px); margin: 52px 0; }
.pixel-hr { border: 0; border-top: 3px dashed var(--line); margin: 44px 0; }
.badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0d0a14;
  background: var(--green-2);
  padding: 3px 8px;
  box-shadow: 2px 2px 0 rgba(0,0,0,.5);
  margin-bottom: 12px;
}
.badge.gold { background: var(--gold-2); }
.badge.purple { background: var(--purple-2); }
.badge.sky { background: var(--sky); }

.two-col { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 30px; } }

.stat-row { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 22px; }
.stat { border: 2px solid var(--line); background: var(--ink-2); padding: 12px 16px; box-shadow: 4px 4px 0 rgba(0,0,0,.35); min-width: 130px; }
.stat b { display: block; font-family: var(--font-display); font-size: 26px; color: var(--gold-2); }
.stat span { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 1.2px; color: var(--text-faint); }

.intro-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
@media (max-width: 900px) { .intro-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .intro-strip { grid-template-columns: repeat(2, 1fr); } }
.intro-strip img { border: 3px solid var(--line); box-shadow: 4px 4px 0 rgba(0,0,0,.4); image-rendering: pixelated; }
