/* Game Bits HQ — "Little games. Big joy."
   Simple, elegant, lots of air. Poppins throughout.
   Motion is tasteful and always switched off under prefers-reduced-motion. */

@font-face { font-family: Poppins; font-weight: 400; font-display: swap; src: url('/assets/fonts/poppins-400.woff2') format('woff2'); }
@font-face { font-family: Poppins; font-weight: 500; font-display: swap; src: url('/assets/fonts/poppins-500.woff2') format('woff2'); }
@font-face { font-family: Poppins; font-weight: 600; font-display: swap; src: url('/assets/fonts/poppins-600.woff2') format('woff2'); }
@font-face { font-family: Poppins; font-weight: 700; font-display: swap; src: url('/assets/fonts/poppins-700.woff2') format('woff2'); }
@font-face { font-family: Poppins; font-weight: 800; font-display: swap; src: url('/assets/fonts/poppins-800.woff2') format('woff2'); }

:root {
  --bg: #fbf8f3;
  --bg-2: #f4efe6;
  --surface: #ffffff;
  --ink: #1d1b2e;
  --ink-2: #4a4760;
  --muted: #676379;          /* ≥ 4.5:1 on --bg */
  --line: #e6dfd2;
  --accent: #ff6b4a;         /* brand coral: decoration + large text */
  --accent-strong: #d63d20;  /* buttons with white text (4.6:1) */
  --accent-text: #c23a1d;    /* small coral text on light (5:1) */
  --bit-1: #ff6b4a;
  --bit-2: #ffb627;
  --bit-3: #2fb38f;
  --bit-4: #6c7bf2;
  --focus: #4f5fe0;
  --radius: 22px;
  --radius-lg: 32px;
  --shadow: 0 1px 2px rgb(40 30 20 / 5%), 0 12px 40px rgb(40 30 20 / 8%);
  --shadow-lg: 0 30px 80px rgb(40 30 20 / 16%);
  --max: 1160px;
  --gut: clamp(16px, 5vw, 40px);
  --hh: 72px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --spring: cubic-bezier(.34, 1.56, .64, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1); /* on-screen movement (icon morph) */
  --step--1: clamp(.82rem, .8rem + .1vw, .88rem);
  --step-0: clamp(1rem, .96rem + .18vw, 1.07rem);
  --step-1: clamp(1.1rem, 1.02rem + .35vw, 1.25rem);
  --step-2: clamp(1.2rem, 1.1rem + .45vw, 1.4rem);
  --step-3: clamp(1.75rem, 1.35rem + 1.9vw, 2.75rem);
  --step-4: clamp(2.35rem, 1.6rem + 3.9vw, 4.5rem);
  --section: clamp(56px, 8vw, 120px);
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #15131f; --bg-2: #1c1a29; --surface: #221f31; --ink: #f5f1ea; --ink-2: #cfc9d9;
    --muted: #a6a0b6; --line: #332f45; --accent-text: #ff8d72; --focus: #9aa5ff;
    --shadow: 0 1px 2px rgb(0 0 0 / 30%), 0 12px 40px rgb(0 0 0 / 30%);
    --shadow-lg: 0 30px 80px rgb(0 0 0 / 45%);
    color-scheme: dark;
  }
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--hh) + 12px); }
html.menu-open { overflow: hidden; }
html.menu-open .chat-launcher, html.menu-open .sticky-cta { opacity: 0; pointer-events: none; }
body { margin: 0; font-family: Poppins, system-ui, sans-serif; background: var(--bg); color: var(--ink); line-height: 1.6; font-size: var(--step-0); -webkit-font-smoothing: antialiased; -webkit-tap-highlight-color: transparent; overflow-wrap: break-word; }
img { max-width: 100%; display: block; }
a { color: inherit; }
p a, li a, td a { text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
p a:hover, li a:hover, td a:hover { color: var(--accent-text); }
h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -0.025em; margin: 0 0 .4em; font-weight: 700; text-wrap: balance; }
h1 { font-size: var(--step-4); font-weight: 800; }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
p { margin: 0 0 1em; color: var(--ink-2); text-wrap: pretty; }
.wrap { width: min(var(--max), 100% - 2 * var(--gut)); margin-inline: auto; }
.eyebrow { font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-text); margin-bottom: .8rem; display: inline-block; }
.lead { font-size: var(--step-1); color: var(--ink-2); max-width: 42ch; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.muted { color: var(--muted); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 16px; top: -60px; background: var(--ink); color: var(--bg); padding: 10px 16px; border-radius: 12px; z-index: 100; font-weight: 600; transition: top .2s var(--ease); }
.skip:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; border-radius: 10px; }
::selection { background: color-mix(in srgb, var(--bit-2) 45%, transparent); }

/* ---- Buttons ---- */
.btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .55em; min-height: 48px; padding: .8em 1.5em; border-radius: 999px; font: inherit; font-weight: 600; font-size: 1rem; line-height: 1.2; text-decoration: none; border: 0; cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .2s, color .2s; -webkit-user-select: none; user-select: none; touch-action: manipulation; }
.btn:active { transform: scale(.96); transition-duration: .08s; }
.btn-primary { background: var(--ink); color: var(--bg); box-shadow: 0 10px 24px rgb(29 27 46 / 18%); }
.btn-accent { background: var(--accent-strong); color: #fff; box-shadow: 0 10px 24px rgb(214 61 32 / 28%); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2px var(--line); }
.btn-sm { min-height: 44px; padding: .55em 1.15em; font-size: .92rem; }
.btn-lg { min-height: 54px; padding: .9em 1.7em; font-size: 1.02rem; }
.btn svg { width: 1.2em; height: 1.2em; flex: none; transition: transform .25s var(--ease); }
.btn:disabled { opacity: .6; cursor: progress; }
@media (hover: hover) {
  .btn:hover { transform: translateY(-2px); }
  .btn-primary:hover { box-shadow: 0 16px 32px rgb(29 27 46 / 24%); }
  .btn-accent:hover { box-shadow: 0 16px 32px rgb(214 61 32 / 36%); }
  .btn-ghost:hover { box-shadow: inset 0 0 0 2px var(--ink); }
  .btn:hover svg:last-child { transform: translateX(3px); }
}
.store-badge { display: inline-flex; align-items: center; gap: .7em; min-height: 54px; background: var(--ink); color: var(--bg); padding: .6em 1.25em .6em 1em; border-radius: 16px; text-decoration: none; line-height: 1.15; transition: transform .25s var(--ease), box-shadow .25s; }
.store-badge:active { transform: scale(.96); }
@media (hover: hover) { .store-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow); } }
.store-badge svg { width: 26px; height: 26px; flex: none; }
.store-badge small { display: block; font-size: .68rem; opacity: .8; letter-spacing: .04em; text-transform: uppercase; }
.store-badge b { font-size: 1.05rem; font-weight: 600; }
.store-badge.soon { background: var(--surface); color: var(--ink); box-shadow: inset 0 0 0 2px var(--line); }

/* ---- Header (sticky, compacts on scroll) ---- */
.site-header { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--bg) 84%, transparent); backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px); border-bottom: 1px solid transparent; transition: border-color .25s, box-shadow .25s, background-color .25s; }
.site-header.scrolled { --hh: 60px; border-color: var(--line); box-shadow: 0 6px 24px rgb(40 30 20 / 6%); }
.header-row { display: flex; align-items: center; justify-content: space-between; height: var(--hh); gap: 20px; transition: height .3s var(--ease); }
.logo { display: inline-flex; align-items: center; gap: 12px; min-height: 44px; text-decoration: none; font-weight: 700; font-size: 1.12rem; letter-spacing: -.01em; white-space: nowrap; }
.logo-mark { width: 38px; height: 38px; flex: none; transition: transform .4s var(--spring), width .3s var(--ease), height .3s var(--ease); }
.site-header.scrolled .logo-mark { width: 34px; height: 34px; }
@media (hover: hover) { .logo:hover .logo-mark { transform: rotate(-8deg) scale(1.06); } }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a:not(.btn) { position: relative; text-decoration: none; font-weight: 500; font-size: .97rem; min-height: 44px; display: inline-flex; align-items: center; padding: 0 .9em; border-radius: 999px; color: var(--ink-2); transition: background-color .2s, color .2s; }
.nav a:not(.btn):hover { background: var(--bg-2); color: var(--ink); }
.nav a[aria-current='page'] { color: var(--ink); background: var(--bg-2); }
.nav a[aria-current='page']::after { content: ''; position: absolute; left: 50%; bottom: 6px; width: 5px; height: 5px; margin-left: -2.5px; border-radius: 50%; background: var(--accent); }
.nav .btn { margin-left: 10px; }
.menu-btn { display: none; width: 48px; height: 48px; border-radius: 50%; border: 0; background: var(--bg-2); color: var(--ink); cursor: pointer; place-items: center; transition: background-color .2s, transform .15s; touch-action: manipulation; }
.menu-btn:active { transform: scale(.92); }
.burger { position: relative; width: 20px; height: 14px; display: block; }
.burger i { position: absolute; left: 0; width: 100%; height: 2.2px; border-radius: 2px; background: currentColor; transition: transform .3s var(--ease), opacity .2s, top .3s var(--ease); }
.burger i:nth-child(1) { top: 0; } .burger i:nth-child(2) { top: 6px; } .burger i:nth-child(3) { top: 12px; }
.menu-btn[aria-expanded='true'] .burger i:nth-child(1) { top: 6px; transform: rotate(45deg); }
.menu-btn[aria-expanded='true'] .burger i:nth-child(2) { opacity: 0; transform: scaleX(.2); }
.menu-btn[aria-expanded='true'] .burger i:nth-child(3) { top: 6px; transform: rotate(-45deg); }
@media (max-width: 860px) {
  .menu-btn { display: grid; }
  .nav { position: absolute; top: 100%; left: 0; right: 0; height: calc(100vh - var(--hh)); height: calc(100dvh - var(--hh)); flex-direction: column; align-items: stretch; gap: 4px; padding: 18px var(--gut) calc(28px + env(safe-area-inset-bottom)); background: var(--bg); border-top: 1px solid var(--line); overflow-y: auto; overscroll-behavior: contain; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .25s ease, transform .35s var(--ease), visibility 0s linear .35s; }
  .nav.open { opacity: 1; visibility: visible; transform: none; transition: opacity .25s ease, transform .35s var(--ease), visibility 0s; }
  .nav a:not(.btn) { font-size: 1.4rem; font-weight: 600; min-height: 60px; padding: 0 .7em; border-radius: 18px; color: var(--ink); }
  .nav a[aria-current='page']::after { left: auto; right: 18px; top: 50%; bottom: auto; margin: -4px 0 0; width: 8px; height: 8px; }
  .nav a, .nav .btn { opacity: 0; translate: 0 12px; transition: opacity .3s ease, translate .4s var(--ease), background-color .2s; }
  .nav.open a, .nav.open .btn { opacity: 1; translate: 0 0; transition-delay: calc(var(--i, 0) * 45ms + 60ms); }
  .nav .btn { margin: 16px 0 0; min-height: 56px; font-size: 1.05rem; }
}

/* ---- Page transition + progress ---- */
#main { min-height: 60vh; outline: none; }
/* Page transitions (View Transitions API; older browsers use .leaving/.entering below).
   The header and chat button stay put; the page lifts out and the next one rises in. */
@media (prefers-reduced-motion: no-preference) {
  @view-transition { navigation: auto; } /* full page loads between our pages, too */
}
.site-header { view-transition-name: site-header; }
.chat-launcher { view-transition-name: chat-launcher; }
::view-transition-group(site-header), ::view-transition-group(chat-launcher) { animation: none; }
::view-transition-old(site-header), ::view-transition-old(chat-launcher) { display: none; }
::view-transition-new(site-header), ::view-transition-new(chat-launcher) { animation: none; }
::view-transition-old(root) { animation: vtOut .18s var(--ease-out) both; }
::view-transition-new(root) { animation: vtIn .34s var(--ease-out) .04s both; }
@keyframes vtOut { to { opacity: 0; transform: translateY(-8px); } }
@keyframes vtIn { from { opacity: 0; transform: translateY(14px); } }
/* Tapped game icon → the game page's big icon */
::view-transition-group(game-icon) { animation-duration: .42s; animation-timing-function: var(--ease-in-out); z-index: 60; }
::view-transition-old(game-icon), ::view-transition-new(game-icon) { height: 100%; animation-duration: .42s; }
.vt-morph .game-top .icon { animation: none; }
.vt-morph .game-top > * { animation-delay: .12s; }

#main.leaving { opacity: 0; transform: translateY(-6px); transition: opacity .16s ease, transform .16s ease; }
#main.entering { animation: pageIn .5s var(--ease-out); }
@keyframes pageIn { from { opacity: 0; transform: translateY(16px); } }
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--bit-1), var(--bit-2), var(--bit-3), var(--bit-4)); z-index: 200; transition: width .35s var(--ease), opacity .3s; opacity: 0; border-radius: 0 3px 3px 0; }
.progress.on { opacity: 1; }

/* ---- Sections ---- */
section { padding: var(--section) 0; }
.section-head { max-width: 680px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head.center { margin-inline: auto; }
.band { background: var(--bg-2); }

/* ---- Hero ---- */
.hero { padding-top: clamp(28px, 6vw, 90px); overflow: hidden; position: relative; }
.hero-home { padding-bottom: clamp(36px, 5vw, 72px); isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; }
.orb.o1 { width: 420px; height: 420px; left: -140px; top: -120px; background: #ffd3c4; animation: drift 18s ease-in-out infinite alternate; }
.orb.o2 { width: 360px; height: 360px; right: -120px; top: 30%; background: #cdeee1; animation: drift 22s ease-in-out -6s infinite alternate-reverse; }
.orb.o3 { width: 300px; height: 300px; left: 40%; bottom: -160px; background: #dfe3ff; animation: drift 20s ease-in-out -3s infinite alternate; }
@media (prefers-color-scheme: dark) { .orb { opacity: .14; } }
@keyframes drift { to { transform: translate(40px, 30px) scale(1.12); } }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
.hero h1 .dot { color: var(--accent); display: inline-block; }
.hero h1 .line { display: inline-block; }
.hero .lead { margin: 18px 0 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-note { display: flex; align-items: center; gap: 8px; margin: 18px 0 0; font-size: var(--step--1); color: var(--muted); font-weight: 500; }
.hero-note svg { color: var(--bit-3); flex: none; }
.hero-stats { display: grid; grid-template-columns: repeat(3, auto); justify-content: start; gap: clamp(18px, 4vw, 40px); margin: clamp(28px, 4vw, 40px) 0 0; }
.hero-stats div { display: flex; flex-direction: column-reverse; }
.hero-stats dd { margin: 0; font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem); font-weight: 700; line-height: 1.1; font-variant-numeric: tabular-nums; }
.hero-stats dt { font-size: var(--step--1); color: var(--muted); }
/* hero entrance: copy rises in, phones glide up, then float */
.hero-copy > * { animation: rise .8s var(--ease-out) both; }
.hero-copy > :nth-child(2) { animation-delay: .06s; }
.hero-copy > :nth-child(3) { animation-delay: .14s; }
.hero-copy > :nth-child(4) { animation-delay: .22s; }
.hero-copy > :nth-child(5) { animation-delay: .28s; }
.hero-copy > :nth-child(6) { animation-delay: .34s; }
.hero h1 .dot { animation: dotPop .7s var(--spring) .75s both; }
@keyframes rise { from { opacity: 0; transform: translateY(22px); } }
@keyframes dotPop { 0% { transform: scale(0); } 60% { transform: scale(1.5) translateY(-6px); } 100% { transform: none; } }

.hero-art { --pw: clamp(128px, 17vw, 236px); position: relative; height: calc(var(--pw) * 2.75); }
.hero-art .phone { position: absolute; width: var(--pw); border-radius: clamp(24px, 2.6vw, 34px); padding: clamp(6px, .6vw, 8px); background: var(--ink); box-shadow: var(--shadow-lg); rotate: var(--r, 0deg); animation: phoneIn 1s var(--ease-out) var(--d, .2s) both, float var(--t, 7s) ease-in-out calc(var(--d, .2s) + 1s) infinite; }
@media (prefers-color-scheme: dark) { .hero-art .phone { background: #0b0a12; box-shadow: 0 0 0 1px #3a3550, var(--shadow-lg); } }
.hero-art .phone img { border-radius: clamp(19px, 2vw, 27px); height: auto; aspect-ratio: 9/19.5; object-fit: cover; object-position: top; width: 100%; background: var(--bg-2); }
.hero-art .p1 { left: 6%; top: 9%; --r: -7deg; --d: .25s; --t: 7s; }
.hero-art .p2 { left: 36%; top: 0; z-index: 2; --d: .1s; --t: 6s; }
.hero-art .p3 { right: 3%; top: 12%; --r: 7deg; --d: .4s; --t: 8s; }
.hero-art .blob { position: absolute; border-radius: 50%; opacity: .9; animation: blobMorph 12s ease-in-out infinite alternate; }
.hero-art .b1 { width: 48%; aspect-ratio: 1; left: 6%; top: 24%; background: #ffd8cc; }
.hero-art .b2 { width: 36%; aspect-ratio: 1; right: 2%; top: 2%; background: #d6f2e8; animation-delay: -5s; }
@media (prefers-color-scheme: dark) { .hero-art .blob { opacity: .12; } }
.bit-dot { position: absolute; width: 18px; height: 18px; border-radius: 50%; z-index: 3; animation: bob 5s ease-in-out infinite; }
.bit-dot.d1 { background: var(--bit-1); left: 2%; top: 58%; }
.bit-dot.d2 { background: var(--bit-2); left: 33%; top: 86%; width: 12px; height: 12px; animation-delay: -1.2s; }
.bit-dot.d3 { background: var(--bit-3); right: 0; top: 70%; width: 14px; height: 14px; animation-delay: -2.4s; }
.bit-dot.d4 { background: var(--bit-4); left: 62%; top: -1%; width: 12px; height: 12px; animation-delay: -3.6s; }
@keyframes phoneIn { from { opacity: 0; translate: 0 70px; scale: .92; } }
@keyframes float { 50% { translate: 0 -12px; } }
@keyframes bob { 50% { transform: translateY(-14px) scale(1.1); } }
@keyframes blobMorph { 0% { border-radius: 50%; transform: none; } 100% { border-radius: 42% 58% 60% 40% / 52% 40% 60% 48%; transform: translate(10px, -12px) rotate(20deg); } }
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { --pw: clamp(116px, 30vw, 180px); max-width: 560px; width: 100%; margin-inline: auto; }
}

/* ---- Marquee of games ---- */
.marquee { display: flex; overflow: hidden; padding: 6px 0 clamp(40px, 5vw, 64px); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; flex: none; gap: 12px; margin: 0; padding: 0 12px 0 0; list-style: none; animation: marquee 45s linear infinite; }
.marquee:hover .marquee-track, .marquee:focus-within .marquee-track { animation-play-state: paused; }
.marquee a { display: inline-flex; align-items: center; gap: 10px; min-height: 56px; padding: 8px 18px 8px 8px; border-radius: 999px; background: var(--surface); box-shadow: var(--shadow); text-decoration: none; font-weight: 600; white-space: nowrap; transition: transform .25s var(--ease), box-shadow .25s; }
.marquee a:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.marquee img { width: 40px; height: 40px; border-radius: 12px; background: var(--bg-2); }
@keyframes marquee { to { transform: translateX(-100%); } }

/* ---- Game cards ---- */
.game-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr)); gap: clamp(14px, 2vw, 22px); }
.game-card { --lift: 0px; position: relative; background: var(--surface); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); text-decoration: none; display: flex; flex-direction: column; gap: 14px; overflow: hidden; isolation: isolate; transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--lift)); transition: transform .45s var(--ease-out), box-shadow .3s, opacity .7s var(--ease); will-change: transform; }
.game-card.reveal:not(.in) { transform: translateY(24px); }
.game-card::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 110px; background: linear-gradient(135deg, var(--c1), var(--c2)); opacity: .16; z-index: -1; transition: opacity .3s, height .4s var(--ease); }
.game-card::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgb(255 255 255 / 35%), transparent 45%); opacity: 0; transition: opacity .3s; pointer-events: none; }
.game-card:active { --lift: -1px; transition-duration: .1s; }
@media (hover: hover) {
  .game-card:hover { --lift: -6px; box-shadow: var(--shadow-lg); }
  .game-card:hover::before { opacity: .26; height: 130px; }
  .game-card:hover::after { opacity: 1; }
  .game-card:hover .icon { transform: rotate(-6deg) scale(1.06); }
  .game-card:hover .go svg { transform: translateX(4px); }
}
.game-card.tilting { transition: transform .12s linear, box-shadow .3s, opacity .7s; }
.game-card[hidden] { display: none; }
.game-card { transition: transform .45s var(--ease-out), box-shadow .3s, opacity .7s var(--ease), scale .16s var(--ease-out); }
.game-card:active { scale: .985; }
.game-card.pop { animation: cardPop .4s var(--ease-out) both; }
@keyframes cardPop { from { opacity: 0; scale: .94; } }
.game-card .icon { width: 84px; height: 84px; border-radius: 22px; box-shadow: 0 10px 24px rgb(0 0 0 / 12%); object-fit: cover; background: var(--bg-2); transition: transform .45s var(--spring); }
.game-card h3 { margin: 4px 0 0; font-size: 1.25rem; }
.game-card p { margin: 0; font-size: .95rem; }
.game-card .meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.game-card .go { font-weight: 600; font-size: .92rem; display: inline-flex; gap: 6px; align-items: center; }
.game-card .go svg { transition: transform .25s var(--ease); }
@media (max-width: 600px) {
  /* compact horizontal cards: shorter page, easier scanning */
  .game-card { display: grid; grid-template-columns: 64px 1fr; column-gap: 14px; row-gap: 8px; padding: 16px 16px 16px; align-items: center; }
  .game-card::before { height: 100%; width: 120px; -webkit-mask-image: linear-gradient(90deg, #000 45%, transparent); mask-image: linear-gradient(90deg, #000 45%, transparent); }
  .game-card .icon { width: 64px; height: 64px; border-radius: 18px; grid-row: span 2; align-self: start; }
  .game-card > div:first-of-type { padding-right: 36px; }
  .game-card h3 { margin: 0; font-size: 1.1rem; }
  .game-card p { font-size: .9rem; line-height: 1.45; }
  .game-card .meta { grid-column: 2; margin: 0; }
  .game-card .go { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; border-radius: 50%; background: var(--bg-2); justify-content: center; }
  .game-card .go-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
}
.chip { display: inline-block; font-size: .75rem; font-weight: 600; padding: .3em .75em; border-radius: 999px; background: var(--bg-2); color: var(--ink-2); }
.chip.live { background: #d9f5e9; color: #146b4f; }
.chip.soon { background: #fff1d6; color: #8a5900; }
@media (prefers-color-scheme: dark) { .chip.live { background: #173d31; color: #7fe0bd; } .chip.soon { background: #3d3017; color: #ffcf7a; } }
.filters { display: flex; gap: 8px; margin: 0 calc(-1 * var(--gut)) 28px; padding: 4px var(--gut); overflow-x: auto; scrollbar-width: none; scroll-snap-type: x proximity; }
.filters::-webkit-scrollbar { display: none; }
.filters button { flex: none; scroll-snap-align: start; font: inherit; font-size: .92rem; font-weight: 500; min-height: 44px; padding: 0 1.15em; border-radius: 999px; border: 0; background: var(--surface); box-shadow: inset 0 0 0 1.5px var(--line); color: var(--ink-2); cursor: pointer; transition: background-color .2s, color .2s, transform .15s, box-shadow .2s; touch-action: manipulation; }
.filters button:hover { box-shadow: inset 0 0 0 1.5px var(--ink); color: var(--ink); }
.filters button:active { transform: scale(.95); }
.filters button[aria-pressed='true'] { background: var(--ink); color: var(--bg); box-shadow: none; }
@media (min-width: 861px) { .filters { flex-wrap: wrap; margin-inline: 0; padding-inline: 0; overflow: visible; } }

/* ---- Game detail ---- */
.game-hero { padding-top: clamp(28px, 5vw, 70px); position: relative; overflow: hidden; isolation: isolate; }
.game-hero::before { content: ''; position: absolute; inset: 0 0 30% 0; background: radial-gradient(circle at 20% 20%, var(--c1), transparent 55%), radial-gradient(circle at 80% 10%, var(--c2), transparent 50%); opacity: .18; z-index: -1; animation: heroGlow 10s ease-in-out infinite alternate; }
@keyframes heroGlow { to { opacity: .26; transform: scale(1.05); } }
.game-top { display: grid; grid-template-columns: auto 1fr; gap: clamp(18px, 3vw, 28px); align-items: center; }
.game-top > * { animation: rise .7s var(--ease-out) both; }
.game-top > :nth-child(2) { animation-delay: .08s; }
.game-top .icon { width: 132px; height: 132px; border-radius: 32px; box-shadow: var(--shadow-lg); object-fit: cover; animation: iconIn .8s var(--spring) both; }
.game-hero .shots img { animation: shotIn .6s var(--ease-out) both; }
.game-hero .shots img:nth-child(1) { animation-delay: .16s; }
.game-hero .shots img:nth-child(2) { animation-delay: .22s; }
.game-hero .shots img:nth-child(3) { animation-delay: .28s; }
.game-hero .shots img:nth-child(4) { animation-delay: .34s; }
.game-hero .shots img:nth-child(n+5) { animation-delay: .4s; }
@keyframes shotIn { from { opacity: 0; transform: translateY(26px) scale(.97); } }
@keyframes iconIn { from { opacity: 0; transform: scale(.6) rotate(-12deg); } }
.game-top h1 { font-size: clamp(2.2rem, 1.6rem + 3vw, 3.6rem); margin: 0; }
.game-top .tag { font-size: var(--step-1); color: var(--ink-2); margin: 6px 0 16px; }
.shots { display: flex; gap: clamp(12px, 2vw, 18px); overflow-x: auto; scroll-snap-type: x mandatory; padding: 34px 4px 20px; scrollbar-width: thin; overscroll-behavior-x: contain; }
.shots-tight { padding: 8px 4px 16px; }
.shots img { flex: none; width: clamp(180px, 46vw, 240px); height: auto; border-radius: 26px; box-shadow: var(--shadow); scroll-snap-align: start; aspect-ratio: 9/16; object-fit: cover; object-position: top; background: var(--bg-2); transition: transform .35s var(--ease); }
@media (hover: hover) { .shots img:hover { transform: translateY(-6px) scale(1.02); } }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr)); gap: 18px; }
.feature { background: var(--surface); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); transition: transform .3s var(--ease), box-shadow .3s, opacity .7s var(--ease); }
@media (hover: hover) { .feature:hover { box-shadow: var(--shadow-lg); } .feature:hover .num { transform: rotate(-8deg) scale(1.08); } }
.feature .num { width: 36px; height: 36px; border-radius: 12px; display: grid; place-items: center; font-weight: 700; color: #fff; background: var(--c1); margin-bottom: 12px; transition: transform .4s var(--spring); text-shadow: 0 1px 2px rgb(0 0 0 / 25%); }
.feature p { margin: 0; color: var(--ink); font-weight: 500; }
.fact-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
@media (max-width: 640px) { .game-top { grid-template-columns: 1fr; } .game-top .icon { width: 96px; height: 96px; border-radius: 26px; } }

/* sticky download bar on game pages (mobile) */
.sticky-cta { position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); z-index: 80; display: none; align-items: center; gap: 12px; padding: 10px 10px 10px 12px; background: color-mix(in srgb, var(--surface) 92%, transparent); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-radius: 22px; box-shadow: var(--shadow-lg), 0 0 0 1px var(--line); transform: translateY(140%); transition: transform .45s var(--ease-out); }
.sticky-cta img { width: 44px; height: 44px; border-radius: 12px; flex: none; }
.sticky-cta div { flex: 1; min-width: 0; line-height: 1.25; }
.sticky-cta b { display: block; font-size: .98rem; }
.sticky-cta small { display: block; font-size: .78rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-cta.show { transform: none; }
@media (max-width: 860px) {
  .sticky-cta { display: flex; }
  body.has-sticky .chat-launcher { translate: 0 -78px; }
  body.has-sticky .site-footer { padding-bottom: 110px; }
}

/* ---- Values / about ---- */
.values { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); gap: clamp(14px, 2vw, 20px); }
.value { background: var(--surface); padding: clamp(22px, 3vw, 28px); border-radius: var(--radius); box-shadow: var(--shadow); transition: transform .3s var(--ease), box-shadow .3s, opacity .7s var(--ease); }
.value .bit { width: 48px; height: 48px; border-radius: 15px; margin-bottom: 16px; display: grid; place-items: center; font-size: 1.35rem; transition: transform .45s var(--spring); }
.value h3 { font-size: 1.2rem; }
.value p:last-child { margin-bottom: 0; }
@media (hover: hover) { .value:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); } .value:hover .bit { transform: rotate(-10deg) scale(1.12); } }
@media (prefers-color-scheme: dark) { .value .bit { filter: saturate(.9) brightness(.85); } }
@media (max-width: 520px) {
  .values:not(.stack) .value { display: grid; grid-template-columns: 48px 1fr; column-gap: 16px; }
  .values:not(.stack) .value .bit { grid-row: span 2; margin: 0; }
  .values:not(.stack) .value h3 { margin-bottom: .25em; }
  .values:not(.stack) .value > :nth-child(n + 3) { grid-column: 2; }
}
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 56px); align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.pill-live { display: inline-flex; align-items: center; gap: 8px; margin: 0 10px 12px 0; padding: .3em .8em; border-radius: 999px; background: #d9f5e9; color: #146b4f; font-size: .78rem; font-weight: 600; vertical-align: middle; }
.pill-live i { width: 8px; height: 8px; border-radius: 50%; background: #2fb38f; box-shadow: 0 0 0 0 rgb(47 179 143 / 60%); animation: pulse 2s infinite; }
@media (prefers-color-scheme: dark) { .pill-live { background: #173d31; color: #7fe0bd; } }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgb(47 179 143 / 0%); } 100% { box-shadow: 0 0 0 0 rgb(47 179 143 / 0%); } }

/* ---- CTA band ---- */
.cta { background: var(--ink); color: var(--bg); border-radius: var(--radius-lg); padding: clamp(28px, 6vw, 72px); display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(20px, 3vw, 30px); align-items: center; position: relative; overflow: hidden; }
@media (prefers-color-scheme: dark) { .cta { background: #2a2640; color: #f5f1ea; } .cta h2, .cta p { color: #f5f1ea !important; } }
.cta h2, .cta p { color: var(--bg); }
.cta p { opacity: .85; }
.cta .eyebrow { color: #ffb4a2; }
.cta > div { position: relative; z-index: 1; }
.cta .bits-bg { position: absolute; right: -70px; bottom: -90px; width: 300px; opacity: .16; z-index: 0; pointer-events: none; }
.cta .bits-bg .spin { transform-origin: 24px 24px; animation: spin 40s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.cta .form-note.on-dark { color: rgb(255 255 255 / 75%); }
.cta .btn-accent { box-shadow: none; }
@media (max-width: 860px) { .cta { grid-template-columns: 1fr; } .cta .bits-bg { width: 200px; right: -60px; bottom: -70px; opacity: .1; } }

/* ---- Forms ---- */
.form { display: grid; gap: 16px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form .row { grid-template-columns: 1fr; } }
label { font-weight: 600; font-size: .92rem; display: grid; gap: 6px; }
input, select, textarea { font: inherit; font-size: 1rem; min-height: 48px; padding: .75em 1em; border-radius: 14px; border: 1.5px solid var(--line); background: var(--surface); color: var(--ink); width: 100%; transition: border-color .2s, box-shadow .2s; }
input:hover, select:hover, textarea:hover { border-color: color-mix(in srgb, var(--ink) 30%, var(--line)); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--focus); box-shadow: 0 0 0 4px color-mix(in srgb, var(--focus) 20%, transparent); }
textarea { min-height: 140px; resize: vertical; }
.hp { position: absolute; left: -9999px; }
.form-note { font-size: .88rem; color: var(--muted); }
.form-status { padding: 14px 16px; border-radius: 14px; font-weight: 500; display: none; }
.form-status.ok, .form-status.err { display: block; animation: rise .4s var(--ease-out); }
.form-status.ok { background: #d9f5e9; color: #145c44; }
.form-status.err { background: #ffe3dc; color: #8c2a14; }
.inline-form { display: flex; gap: 10px; flex-wrap: wrap; }
.inline-form input { flex: 1 1 200px; min-width: 0; border-radius: 999px; min-height: 52px; }
.inline-form .btn { min-height: 52px; flex: 0 0 auto; }
@media (max-width: 420px) { .inline-form .btn { flex: 1 1 100%; } }
.card { background: var(--surface); border-radius: var(--radius); padding: clamp(20px, 3vw, 34px); box-shadow: var(--shadow); }

/* ---- FAQ ---- */
.faq details { background: var(--surface); border-radius: 18px; padding: 0 clamp(16px, 3vw, 22px); box-shadow: var(--shadow); margin-bottom: 12px; transition: box-shadow .25s, opacity .7s var(--ease), transform .7s var(--ease); }
.faq details[open] { box-shadow: var(--shadow-lg); }
.faq summary { cursor: pointer; font-weight: 600; min-height: 56px; padding: 14px 0; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; border-radius: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; flex: none; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--bg-2); font-size: 1.3rem; line-height: 1; color: var(--ink-2); transition: transform .3s var(--spring), background-color .2s; }
.faq summary:hover::after { background: var(--line); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details[open] > p { animation: faqIn .35s var(--ease-out); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } }
.faq details p { margin: 0 0 18px; }
@supports (interpolate-size: allow-keywords) {
  .faq { interpolate-size: allow-keywords; }
  .faq details::details-content { block-size: 0; overflow-y: clip; transition: block-size .28s var(--ease-out), content-visibility .28s allow-discrete; }
  .faq details[open]::details-content { block-size: auto; }
  .faq details > p { opacity: 0; transition: opacity .22s ease; }
  .faq details[open] > p { opacity: 1; animation: none; }
}

/* ---- Legal ---- */
.legal { max-width: 780px; }
.legal h2 { font-size: clamp(1.25rem, 1.1rem + .6vw, 1.45rem); margin-top: 2em; }
.legal h3 { font-size: 1.1rem; margin-top: 1.4em; }
.legal li { color: var(--ink-2); margin-bottom: .4em; }
.legal table { width: 100%; border-collapse: collapse; font-size: .95rem; margin: 1em 0; }
.legal th, .legal td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
@media (max-width: 520px) { .legal th, .legal td { padding: 8px 6px; font-size: .88rem; } }
.toc { background: var(--surface); border-radius: 18px; padding: 18px 24px; box-shadow: var(--shadow); margin: 24px 0 8px; }
.toc ol { margin: 8px 0 0; padding-left: 20px; columns: 2; }
.toc li { padding: 4px 0; }
@media (max-width: 640px) { .toc ol { columns: 1; } }

/* ---- Footer ---- */
.site-footer { background: var(--bg-2); padding: clamp(48px, 6vw, 72px) 0 32px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer-blurb { margin-top: 14px; font-size: .95rem; max-width: 36ch; }
.footer-grid h4 { font-size: .95rem; margin-bottom: 10px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.footer-grid ul a { display: inline-flex; align-items: center; min-height: 36px; text-decoration: none; color: var(--ink-2); font-size: .95rem; transition: color .2s, translate .2s var(--ease); }
.footer-grid ul a:hover { color: var(--ink); translate: 3px 0; }
.socials { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.socials a { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--surface); box-shadow: var(--shadow); color: var(--ink); transition: transform .3s var(--spring), background-color .2s, color .2s; }
.socials a:hover { transform: translateY(-3px) scale(1.06); background: var(--ink); color: var(--bg); }
.socials a:active { transform: scale(.94); }
.socials svg { width: 20px; height: 20px; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; border-top: 1px solid var(--line); margin-top: 40px; padding-top: 24px; font-size: .85rem; color: var(--muted); }
.footer-bottom a { color: var(--muted); }
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .footer-grid ul a { min-height: 44px; }
}

/* ---- Reveal on scroll (staggered via --i set by app.js) ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease-out), box-shadow .3s; transition-delay: calc(var(--i, 0) * 70ms); }
.reveal.in { opacity: 1; transform: none; }
.game-card.reveal.in { transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--lift)); }
.reveal.in:hover { transition-delay: 0s; }

/* ---- Chat widget ---- */
.chat-launcher { position: fixed; right: 22px; bottom: calc(22px + env(safe-area-inset-bottom)); z-index: 90; width: 62px; height: 62px; border-radius: 50%; border: 0; cursor: pointer; background: var(--ink); color: var(--bg); box-shadow: var(--shadow-lg); display: grid; place-items: center; transition: transform .3s var(--spring), translate .45s var(--ease-out); animation: launcherIn .6s var(--spring) 1s both; }
@keyframes launcherIn { from { opacity: 0; transform: scale(.4); } }
.chat-launcher:hover { transform: scale(1.08) rotate(-6deg); }
.chat-launcher:active { transform: scale(.94); }
.chat-launcher svg { width: 28px; height: 28px; }
.chat-launcher .ping { position: absolute; top: 4px; right: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--accent); border: 3px solid var(--bg); }
.chat-launcher .ping::after { content: ''; position: absolute; inset: -3px; border-radius: 50%; border: 2px solid var(--accent); animation: ping 2.4s var(--ease-out) 2s infinite; }
@keyframes ping { 0% { transform: scale(1); opacity: .8; } 70%, 100% { transform: scale(2.2); opacity: 0; } }
.chat-launcher[aria-expanded='true'] .ping { display: none; }
.chat { position: fixed; right: 22px; bottom: 98px; z-index: 95; width: min(390px, calc(100vw - 32px)); height: min(620px, calc(100vh - 130px)); height: min(620px, calc(100dvh - 130px)); background: var(--surface); border-radius: 26px; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; overflow: hidden; transform-origin: bottom right; transition: transform .3s var(--ease-out), opacity .2s; }
.chat[hidden] { display: flex; transform: scale(.9) translateY(10px); opacity: 0; pointer-events: none; visibility: hidden; transition: transform .25s var(--ease), opacity .2s, visibility 0s .25s; }
.chat-head { padding: 14px 14px 14px 18px; background: var(--ink); color: var(--bg); display: flex; align-items: center; gap: 12px; }
@media (prefers-color-scheme: dark) { .chat-head { background: #2a2640; color: #f5f1ea; } .chat-head button { color: #f5f1ea !important; } }
.chat-head .av { width: 40px; height: 40px; border-radius: 50%; background: var(--bg); display: grid; place-items: center; flex: none; }
.chat-head b { display: block; font-size: 1rem; }
.chat-head small { opacity: .8; font-size: .78rem; }
.chat-head button { margin-left: auto; flex: none; background: transparent; border: 0; color: var(--bg); font-size: 1.7rem; cursor: pointer; line-height: 1; width: 44px; height: 44px; border-radius: 50%; transition: background-color .2s; }
.chat-head button:hover { background: rgb(255 255 255 / 12%); }
.chat-log { flex: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 10px; background: var(--bg); overscroll-behavior: contain; }
.msg { max-width: 86%; padding: 11px 14px; border-radius: 18px; font-size: .94rem; line-height: 1.45; white-space: pre-line; animation: msgIn .3s var(--ease-out); }
@keyframes msgIn { from { opacity: 0; transform: translateY(8px) scale(.97); } }
.msg.bot { background: var(--surface); box-shadow: var(--shadow); border-bottom-left-radius: 6px; align-self: flex-start; transform-origin: bottom left; }
.msg.user { background: var(--ink); color: var(--bg); border-bottom-right-radius: 6px; align-self: flex-end; transform-origin: bottom right; }
.msg a { color: var(--focus); font-weight: 600; }
.msg.user a { color: inherit; }
.typing { display: inline-flex; gap: 4px; }
.typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--muted); animation: blink 1s infinite; }
.typing i:nth-child(2) { animation-delay: .15s; } .typing i:nth-child(3) { animation-delay: .3s; }
@keyframes blink { 50% { opacity: .25; transform: translateY(-2px); } }
.chips { display: flex; flex-wrap: wrap; gap: 8px; animation: msgIn .3s var(--ease-out); }
.chips button { font: inherit; font-size: .84rem; font-weight: 500; min-height: 40px; padding: .4em .95em; border-radius: 999px; border: 1.5px solid var(--line); background: var(--surface); color: var(--ink); cursor: pointer; transition: border-color .2s, transform .15s; }
.chips button:hover { border-color: var(--ink); }
.chips button:active { transform: scale(.95); }
@media (pointer: coarse) { .chips button { min-height: 44px; } }
.chat-form { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--line); background: var(--surface); }
.chat-form input { border-radius: 999px; padding: .7em 1.1em; min-height: 46px; font-size: 16px; }
.chat-form button { flex: none; width: 46px; height: 46px; border-radius: 50%; border: 0; background: var(--accent-strong); color: #fff; cursor: pointer; display: grid; place-items: center; transition: transform .2s var(--spring); }
.chat-form button:hover { transform: scale(1.06); }
.chat-form button:active { transform: scale(.92); }
.chat-form button svg { width: 20px; height: 20px; }
.chat .escalate { display: grid; gap: 10px; background: var(--surface); padding: 14px; border-radius: 18px; box-shadow: var(--shadow); align-self: stretch; animation: msgIn .3s var(--ease-out); }
.chat .escalate input, .chat .escalate textarea, .chat .escalate select { padding: .6em .85em; font-size: 16px; min-height: 44px; border-radius: 12px; }
.chat .escalate textarea { min-height: 80px; }
@media (max-width: 520px) {
  .chat { right: 8px; left: 8px; width: auto; bottom: calc(84px + env(safe-area-inset-bottom)); height: min(600px, calc(100dvh - 100px)); border-radius: 22px; }
  .chat-launcher { right: 14px; bottom: calc(14px + env(safe-area-inset-bottom)); width: 56px; height: 56px; }
}

/* ---- Small screens: tighter rhythm ---- */
@media (max-width: 420px) {
  .logo { font-size: 1.02rem; gap: 10px; }
  .hero-cta .btn { flex: 1 1 100%; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}

/* ---- Reduced motion: everything static, content always visible ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  ::view-transition-group(*), ::view-transition-old(*), ::view-transition-new(*) { animation: none !important; }
  .faq details > p { opacity: 1; }
  html { scroll-behavior: auto; }
  .reveal, .game-card.reveal:not(.in) { opacity: 1; transform: none; }
  .game-card, .game-card.reveal.in { transform: none !important; }
  .nav a, .nav .btn { opacity: 1 !important; translate: none !important; }
  .marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; padding-inline: var(--gut); }
  .marquee-track[aria-hidden='true'] { display: none; }
  .marquee-track { flex-wrap: nowrap; }
}

/* ---- Footer: link to the parent company's platform ---- */
.footer-mc { display: flex; align-items: center; gap: 12px; margin-top: 36px; padding: 14px 18px; border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); color: var(--ink-2); text-decoration: none; transition: transform .3s var(--spring), color .2s; }
.footer-mc:hover { transform: translateY(-2px); color: var(--ink); }
.footer-mc b { color: #0f766e; font-weight: 700; }
.footer-mc-ic { font-size: 1.4rem; line-height: 1; }
.footer-mc-go { margin-left: auto; color: #0f766e; font-weight: 700; }
