/* =========================================================
   HEMBytes game studio site
   ========================================================= */

:root{
  --bg:        #070B12;
  --bg-2:      #0B1019;
  --panel:     #0F1622;
  --line:      rgba(255,255,255,.10);
  --ink:       #EDF2F7;
  --muted:     #8A99AA;
  --accent:    #2E9FD6;
  --accent-dp: #196B91;
  --orange:    #FF6A2B;

  --wrap: 1280px;
  --pad: clamp(20px, 5vw, 72px);
  --header-h: 78px;

  --font-display: 'Archivo', 'Arial Black', 'Helvetica Neue', sans-serif;
  --font-body: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'Consolas', monospace;

  --ease: cubic-bezier(.22,1,.36,1);
}

*,*::before,*::after{ box-sizing:border-box; }

html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }

body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.65;
  overflow-x:hidden;
}
body.is-locked{ overflow:hidden; }

img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3{ margin:0; font-family:var(--font-display); font-weight:900; line-height:.92; }
p{ margin:0 0 1.1em; }

::selection{ background:var(--accent); color:#04070C; }

/* artwork shouldn't tear off as a drag ghost, text selection is untouched */
img{ -webkit-user-drag:none; user-select:none; -webkit-user-select:none; }

.wrap{ width:100%; max-width:var(--wrap); margin-inline:auto; padding-inline:var(--pad); }

.sprite{ position:absolute; width:0; height:0; overflow:hidden; }
.icon{ width:20px; height:20px; display:block; flex:none; }

/* ---------------- header ---------------- */
.site-header{
  position:fixed; inset:0 0 auto 0; z-index:60;
  height:var(--header-h);
  display:flex; align-items:flex-start; justify-content:space-between;
  padding:0;
  pointer-events:none;
  transition:background .4s var(--ease);
}
.site-header > *{ pointer-events:auto; }
.site-header.is-scrolled::before{
  content:''; position:absolute; inset:0; z-index:-1;
  background:linear-gradient(180deg, rgba(7,11,18,.92), rgba(7,11,18,0));
  backdrop-filter:blur(6px);
}

.lang{
  display:flex; align-items:center; gap:7px;
  margin:26px 0 0 var(--pad);
  font-family:var(--font-mono); font-size:11px; letter-spacing:.14em;
  color:#4B5A6B;
}
.lang button{
  background:none; border:0; padding:0; cursor:pointer;
  font:inherit; letter-spacing:inherit; color:var(--muted);
  transition:color .25s var(--ease);
}
.lang button:hover{ color:var(--ink); }
.lang button[aria-pressed="true"]{ color:var(--accent); }

.brand{
  position:absolute; left:50%; top:15px;
  transform:translateX(-50%);
  display:block;
  transition:opacity .3s var(--ease);
}
.brand img{
  width:clamp(112px, 11vw, 156px); height:auto;
  filter:drop-shadow(0 10px 24px rgba(0,0,0,.5));
}
.brand:hover{ opacity:.82; }

.menu-btn{
  width:var(--header-h); height:var(--header-h);
  border:0; background:var(--accent-dp);
  display:grid; place-content:center; gap:7px;
  cursor:pointer; transition:background .3s var(--ease);
}
.menu-btn:hover{ background:var(--accent); }
.menu-btn span{
  display:block; width:30px; height:2px; background:#fff;
  transition:transform .35s var(--ease), opacity .2s linear;
}
.menu-btn span:first-child{ transform:translateX(4px); }
body.menu-open .menu-btn span:first-child{ transform:translateY(4.5px) rotate(45deg); }
body.menu-open .menu-btn span:last-child{ transform:translateY(-4.5px) rotate(-45deg); }

/* ---------------- nav overlay ---------------- */
.nav-overlay{
  position:fixed; inset:0; z-index:55;
  background:var(--bg-2);
  display:flex; flex-direction:column; justify-content:center;
  padding:var(--header-h) var(--pad) 0;
  clip-path:inset(0 0 100% 0);
  transition:clip-path .55s var(--ease);
  /* js keeps this visible through the closing wipe (see .menu-closing) */
  visibility:hidden;
}
.nav-overlay::before{
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(60% 60% at 80% 20%, rgba(46,159,214,.16), transparent 70%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.03) 0 1px, transparent 1px 90px);
  pointer-events:none;
}
body.menu-open .nav-overlay,
body.menu-closing .nav-overlay{ visibility:visible; }
body.menu-open .nav-overlay{ clip-path:inset(0 0 0 0); }

.nav-list{ list-style:none; margin:0; padding:0; position:relative; }
.nav-list li{ overflow:hidden; padding-bottom:.06em; }
.nav-list a{
  display:inline-block;
  font-family:var(--font-display); font-weight:900;
  font-size:clamp(2.4rem, 8vw, 6rem); line-height:1.06;
  letter-spacing:-.02em; font-stretch:110%;
  transform:translateY(110%);
  transition:transform .6s var(--ease), color .25s linear;
}
body.menu-open .nav-list a{ transform:translateY(0); }
body.menu-open .nav-list li:nth-child(1) a{ transition-delay:.10s }
body.menu-open .nav-list li:nth-child(2) a{ transition-delay:.16s }
body.menu-open .nav-list li:nth-child(3) a{ transition-delay:.22s }
body.menu-open .nav-list li:nth-child(4) a{ transition-delay:.28s }
body.menu-open .nav-list li:nth-child(5) a{ transition-delay:.34s }
.nav-list a::before{
  content:attr(data-i);
  font-family:var(--font-mono); font-size:.9rem; font-weight:400;
  color:var(--accent); vertical-align:top; margin-right:.9rem;
}
.nav-list a:hover{ color:var(--accent); }

.nav-foot{
  position:relative;
  margin-top:clamp(30px,6vh,70px); padding-top:22px;
  border-top:1px solid var(--line);
  display:flex; flex-wrap:wrap; gap:16px; justify-content:space-between;
  font-family:var(--font-mono); font-size:12px; letter-spacing:.12em; color:var(--muted);
}
.nav-foot a:hover{ color:var(--accent); }

/* ---------------- hero ---------------- */
.hero{
  position:relative;
  min-height:100svh;
  overflow:hidden;
  isolation:isolate;
  background:var(--bg);
}
.hero__bg{
  position:absolute; inset:-4%;
  background:url('../img/ducktape-hero.png') center 45%/cover no-repeat;
  filter:brightness(.34) saturate(.7) blur(26px);
  transform:scale(1.12);
  z-index:0;
  will-change:transform;
}
/* corridor slats + glow, sits over the blurred plate */
.hero__env{
  position:absolute; inset:0; z-index:1; pointer-events:none;
  background:
    radial-gradient(46% 52% at 50% 46%, rgba(46,159,214,.20), transparent 68%),
    repeating-linear-gradient(90deg,
      rgba(255,255,255,.035) 0 1px, transparent 1px 4px, rgba(255,255,255,.012) 4px 5px, transparent 5px 132px),
    linear-gradient(180deg, rgba(7,11,18,.55) 0%, transparent 30%, rgba(7,11,18,.7) 100%);
}
.hero::after{  /* vignette */
  content:''; position:absolute; inset:0; z-index:2; pointer-events:none;
  background:
    radial-gradient(120% 90% at 50% 38%, transparent 26%, rgba(7,11,18,.66) 74%, var(--bg) 100%),
    linear-gradient(180deg, rgba(7,11,18,.85) 0%, rgba(7,11,18,0) 28%);
}
.hero__grain{
  position:absolute; inset:0; z-index:7; pointer-events:none; opacity:.22;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  mix-blend-mode:overlay;
}

.hero__type{
  position:absolute; left:0; right:0; top:32%; z-index:3;
  text-align:center; will-change:transform;
}

.hero__title{
  margin:0;
  padding-inline:var(--pad);
  display:flex; justify-content:flex-start;
}
.hero__title img{
  width:clamp(260px, 47vw, 700px); height:auto;
  margin-left:clamp(0px, 3vw, 60px);
  filter:drop-shadow(0 26px 60px rgba(0,0,0,.6));
  opacity:0; transform:translateY(20px);
  animation:heroIn 1.1s var(--ease) .25s forwards;
}

@keyframes heroIn{ to{ opacity:1; transform:translateY(0); } }

.hero__chars{
  position:absolute; z-index:4;
  bottom:clamp(0px, 5vh, 64px); left:calc(50% + clamp(40px, 11vw, 240px));
  height:72%; width:auto; max-width:none;
  transform:translateX(-50%);
  filter:drop-shadow(-26px 20px 34px rgba(0,0,0,.62)) drop-shadow(0 40px 70px rgba(0,0,0,.55));
  opacity:0;
  animation:charsIn 1.3s var(--ease) .1s forwards;
  will-change:transform, opacity;
  pointer-events:none;
}
@keyframes charsIn{
  from{ opacity:0; }
  to  { opacity:1; }
}

.hero__veil{
  position:absolute; inset:auto 0 0 0; height:38%; z-index:5; pointer-events:none;
  background:linear-gradient(180deg, rgba(7,11,18,0), rgba(7,11,18,.86) 55%, var(--bg) 100%);
}


/* ---------------- buttons ---------------- */
.btn{
  --btn-bg:transparent;
  --btn-fill:var(--accent);
  display:inline-flex; align-items:center; justify-content:center;
  padding:14px 26px;
  font-family:var(--font-display); font-weight:800; font-size:12px;
  letter-spacing:.16em; text-transform:uppercase;
  border:1px solid var(--accent);
  background:transparent;
  position:relative; overflow:hidden; isolation:isolate;
  transition:color .3s var(--ease), border-color .3s var(--ease);
}
.btn::before{
  content:''; position:absolute; inset:0; z-index:-2;
  background:var(--btn-bg);
}
.btn::after{
  content:''; position:absolute; inset:0; z-index:-1;
  background:var(--btn-fill);
  transform:translateY(101%); transition:transform .4s var(--ease);
}
.btn:hover::after{ transform:translateY(0); }
.btn--primary{ --btn-bg:var(--accent); --btn-fill:#fff; color:#04070C; }
.btn--primary:hover{ color:#04070C; border-color:#fff; }
.btn--ghost{ color:var(--ink); }
.btn--ghost:hover{ color:#04070C; }
.btn--icon{ gap:10px; }
.btn--icon .icon{ width:17px; height:17px; }

/* ---- steam wishlist cta (steam store / steamdb look) ---- */
.steam-cta{
  --steam-green:#5FA124;
  --steam-green-dp:#457A16;
  display:inline-flex; align-items:center; flex-wrap:wrap;
  background:#1B2838; border:1px solid rgba(255,255,255,.07); border-radius:3px;
  padding:4px;
}
.steam-cta__date{
  display:flex; align-items:center; gap:.38em;
  margin:0; padding:0 14px 0 10px;
  font-size:13.5px; font-weight:400; line-height:1.3; color:#C7D5E0; white-space:nowrap;
}
.btn-steam{
  display:inline-flex; align-items:center; justify-content:center;
  gap:9px; padding:8px 16px; border-radius:3px;
  font-family:var(--font-display); font-size:13.5px; font-weight:500;
  letter-spacing:0; color:#fff; white-space:nowrap;
  background:linear-gradient(to bottom, var(--steam-green) 0%, var(--steam-green-dp) 100%);
  transition:background .25s var(--ease), box-shadow .25s var(--ease);
}
.btn-steam__mark{ width:16px; height:16px; flex:none; }
.btn-steam:hover,
.btn-steam:focus-visible{
  background:linear-gradient(to bottom, #74BC2E 0%, #55931C 100%);
  box-shadow:0 6px 16px rgba(95,161,36,.26);
  color:#fff;
}
.btn-steam:active{ background:linear-gradient(to bottom, var(--steam-green-dp) 0%, #38620F 100%); }

/* ---------------- sections ---------------- */
.section{ padding:clamp(64px, 8.5vw, 124px) 0; position:relative; }

.sec-label{
  display:flex; align-items:center; gap:12px;
  font-family:var(--font-mono); font-size:11px; letter-spacing:.24em;
  color:var(--muted); margin-bottom:18px; text-transform:uppercase;
}
.sec-label span{
  color:#04070C; background:var(--accent);
  padding:2px 7px; font-weight:600;
}
.sec-title{
  font-size:clamp(2.2rem, 6vw, 4.6rem);
  font-stretch:118%; letter-spacing:-.03em; text-transform:uppercase;
}
.sec-title em{ font-style:normal; color:var(--accent); }
.sec-head{ margin-bottom:clamp(36px,5vw,64px); }
.sec-note{ margin:16px 0 0; color:var(--muted); font-size:15px; max-width:52ch; }
.lead{ font-size:clamp(17px,1.6vw,21px); color:#D3DDE6; }

/* games */
.games{ background:var(--bg-2); }
.game{
  width:calc(100% - var(--pad));
  max-width:1560px;
  margin-inline:auto;
  display:grid; grid-template-columns:minmax(0,1.05fr) minmax(0,1fr);
  align-items:stretch; gap:0;
  border:1px solid var(--line);
  background:var(--panel);
}
.games > .game{ margin-bottom:clamp(48px,6vw,88px); }
.game__media{ position:relative; overflow:hidden; min-height:420px; }
.game__media .shot__main{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  transition:opacity .28s var(--ease);
}

/* shot gallery */
.shot{ position:absolute; inset:0; }
.shot__main.is-swapping{ opacity:0; }

.shot__video{ position:absolute; inset:0; z-index:4; background:#000; }
.shot__video iframe{ width:100%; height:100%; border:0; display:block; }

.shot__play{
  position:absolute; z-index:3; inset:0; margin:auto;
  width:78px; height:78px; padding:0; cursor:pointer;
  border:1px solid rgba(255,255,255,.28); border-radius:50%;
  background:rgba(7,11,18,.42); backdrop-filter:blur(4px);
  transition:background .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
}
.shot__play::before{
  content:''; position:absolute; inset:0; margin:auto;
  width:0; height:0;
  border-left:22px solid var(--ink);
  border-top:13px solid transparent; border-bottom:13px solid transparent;
  transform:translateX(5px); /* optical centre of a triangle sits left of its box */
}
.shot__play:hover{
  background:rgba(95,161,36,.9); border-color:transparent; transform:scale(1.06);
}
.shot__play[hidden]{ display:none; }

.thumb-play{
  position:absolute; z-index:2; inset:0; margin:auto;
  width:0; height:0;
  border-left:11px solid #fff;
  border-top:7px solid transparent; border-bottom:7px solid transparent;
  filter:drop-shadow(0 1px 3px rgba(0,0,0,.8));
}
.shot__thumbs button.is-video::after{
  content:''; position:absolute; inset:0; background:rgba(7,11,18,.3);
}

.shot__count{
  position:absolute; z-index:3; top:18px; right:18px;
  font-family:var(--font-mono); font-size:11px; letter-spacing:.14em;
  color:rgba(237,242,247,.55);
  background:rgba(7,11,18,.5); backdrop-filter:blur(6px);
  border:1px solid rgba(255,255,255,.09); border-radius:100px;
  padding:5px 11px;
}
.shot__count b{ color:var(--ink); font-weight:600; }

.shot__nav{
  position:absolute; z-index:3; top:50%; width:42px; height:42px;
  transform:translateY(-50%); padding:0; cursor:pointer;
  border:1px solid rgba(255,255,255,.12); border-radius:50%;
  background:rgba(7,11,18,.42); backdrop-filter:blur(6px);
  /* visible enough to be discoverable on touch, where there is no hover */
  opacity:.5; transition:opacity .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.shot__nav::before{
  content:''; position:absolute; inset:0; margin:auto;
  width:9px; height:9px; border-top:2px solid var(--ink); border-right:2px solid var(--ink);
}
.shot__nav--prev{ left:16px; }
.shot__nav--prev::before{ transform:translateX(2px) rotate(-135deg); }
.shot__nav--next{ right:16px; }
.shot__nav--next::before{ transform:translateX(-2px) rotate(45deg); }
.game__media:hover .shot__nav, .shot__nav:focus-visible{ opacity:1; }
.shot__nav:hover{ background:rgba(7,11,18,.78); border-color:rgba(255,255,255,.3); }

.shot__thumbs{
  position:absolute; z-index:3; left:18px; right:18px; bottom:18px;
  display:flex; gap:8px;
}
/* six shots share the strip and cap out, so they never wrap to a stray row */
.shot__thumbs button{
  position:relative; flex:1 1 0; min-width:0; max-width:86px;
  aspect-ratio:16/9; padding:0; cursor:pointer; overflow:hidden;
  border:0; border-radius:4px; background:none;
  box-shadow:0 0 0 1px rgba(255,255,255,.14), 0 6px 16px rgba(0,0,0,.4);
  opacity:.5;
  transition:opacity .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.shot__thumbs button:hover{ opacity:.85; transform:translateY(-2px); }
.shot__thumbs button.is-active{
  opacity:1; transform:translateY(-2px);
  box-shadow:0 0 0 2px var(--accent), 0 8px 20px rgba(0,0,0,.5);
}
.shot__thumbs button img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
}
.game__media::after{
  content:''; position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(7,11,18,0) 62%, rgba(7,11,18,.72) 100%),
    linear-gradient(90deg, rgba(7,11,18,.04), rgba(15,22,34,.42));
}
.game__info{ padding:clamp(28px,4vw,64px); }
.game__logo{ width:min(320px,62%); margin-bottom:20px; }
.game__tag{
  font-family:var(--font-mono); font-size:12px; letter-spacing:.16em;
  color:var(--accent); text-transform:uppercase; margin-bottom:20px;
}
.game__info > p{ color:var(--muted); max-width:56ch; }
.game__info strong{ color:var(--ink); }
.chips{ display:flex; flex-wrap:wrap; gap:8px; margin:28px 0; }
.chips span{
  font-family:var(--font-mono); font-size:10px; letter-spacing:.16em;
  border:1px solid var(--line); padding:6px 11px; color:var(--muted);
}
.game__cta{ display:flex; flex-wrap:wrap; gap:12px; }

/* in-development rows */
.dev-list{
  margin-top:clamp(28px,4vw,56px);
  border-top:1px solid var(--line);
}
.dev{
  position:relative;
  display:grid; grid-template-columns:minmax(0,1fr) minmax(240px,320px);
  gap:clamp(20px,4vw,60px);
  padding:clamp(26px,3.4vw,44px) 0;
  border-bottom:1px solid var(--line);
  transition:background .45s var(--ease);
}
.dev::before{
  content:''; position:absolute; left:calc(var(--pad) * -1); right:calc(var(--pad) * -1); top:0; bottom:0;
  background:linear-gradient(90deg, rgba(46,159,214,.07), transparent 60%);
  opacity:0; transition:opacity .45s var(--ease); pointer-events:none;
}
.dev:hover::before{ opacity:1; }

.dev__head{ display:flex; align-items:baseline; gap:18px; }
.dev__title{
  font-size:clamp(1.8rem,4.2vw,3.1rem); font-stretch:116%;
  letter-spacing:-.03em; line-height:.92; text-transform:uppercase;
  transition:color .3s var(--ease);
}
.dev__tag{
  margin:14px 0 0;
  font-family:var(--font-mono); font-size:11px; letter-spacing:.14em;
  color:var(--muted); text-transform:uppercase;
}
.dev__text{ margin:14px 0 0; color:#A9B7C6; font-size:15px; max-width:46ch; }

.dev__side{ display:flex; flex-direction:column; justify-content:center; gap:22px; }

/* stage tracker */
.stage{
  list-style:none; margin:0; padding:0;
  display:grid; grid-template-columns:repeat(4,1fr);
  position:relative;
}
.stage::before{
  content:''; position:absolute; left:6px; right:6px; top:5px;
  height:1px; background:var(--line);
}
.stage li{
  position:relative; padding-top:20px;
  font-family:var(--font-mono); font-size:9px; letter-spacing:.1em;
  color:#4B5A6B; text-align:left;
}
.stage li::before{
  content:''; position:absolute; left:0; top:0;
  width:11px; height:11px; border-radius:50%;
  border:1px solid #33414F; background:var(--bg-2);
}
.stage li.is-done{ color:#6E7F91; }
.stage li.is-done::before{ background:#33414F; border-color:#33414F; }
.stage li.is-active{ color:var(--accent); }
.stage li.is-active::before{
  background:var(--accent); border-color:var(--accent);
  box-shadow:0 0 0 4px rgba(46,159,214,.18);
}

.dev__meta{
  display:flex; flex-wrap:wrap; gap:8px;
}
.dev__meta span{
  font-family:var(--font-mono); font-size:9.5px; letter-spacing:.14em;
  border:1px solid var(--line); padding:6px 10px; color:#7E8D9D;
}

/* contact */
.contact{
  background:
    radial-gradient(70% 100% at 50% 100%, rgba(46,159,214,.16), transparent 70%),
    var(--bg-2);
  text-align:center;
}
.contact__inner{ display:flex; flex-direction:column; align-items:center; }
.contact__title{
  font-size:clamp(2.6rem,9vw,7rem); font-stretch:122%; letter-spacing:-.035em;
  margin-bottom:18px;
}
.contact .lead{ max-width:48ch; }
.mailto{
  display:inline-block; margin:26px 0 34px;
  font-family:var(--font-display); font-weight:800;
  font-size:clamp(18px,2.6vw,30px); letter-spacing:-.01em;
  color:var(--accent);
  border-bottom:2px solid transparent; transition:border-color .3s var(--ease);
}
.mailto:hover{ border-color:var(--accent); }
.socials{ display:flex; flex-wrap:wrap; gap:10px; justify-content:center; }
.socials a{
  width:48px; height:48px; display:grid; place-items:center;
  border:1px solid var(--line); color:var(--muted);
  transition:color .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}
.socials a:hover{
  color:#04070C; background:var(--accent); border-color:var(--accent);
  transform:translateY(-3px);
}
/* png marks can't follow currentColor, so match the muted state with opacity */
.socials a img.icon{ opacity:.62; transition:opacity .3s var(--ease); }
.socials a:hover img.icon{ opacity:1; }

/* footer */
.site-footer{ border-top:1px solid var(--line); padding:44px 0; background:var(--bg); }
.footer__grid{
  display:flex; align-items:center; justify-content:space-between;
  gap:24px; flex-wrap:wrap;
}
.footer__logo{ width:150px; opacity:.9; }
.site-footer small{ font-family:var(--font-mono); font-size:11px; color:#5C6C7D; letter-spacing:.06em; }

/* reveal */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in{ opacity:1; transform:none; }

/* ---------------- responsive ---------------- */
@media (max-width:1000px){
  .dev{ grid-template-columns:1fr; gap:26px; }

  .game{ grid-template-columns:1fr; }
  .game__media{ min-height:320px; }
}
@media (max-width:720px){
  :root{ --header-h:62px; }
  .brand{ top:13px; }
  .brand img{ width:104px; }
  .menu-btn span{ width:24px; }
  .hero__type{ top:30%; }
  .hero__title img{ width:82vw; margin-left:0; }
  .hero__chars{ height:auto; width:132%; bottom:8%; left:calc(50% + 7vw); }
  .soon .btn{ margin-left:0; }
  /* eight thumbs would shrink to ~35px here, under any sane touch target */
  .shot__thumbs{
    overflow-x:auto; overscroll-behavior-x:contain;
    scrollbar-width:none; -ms-overflow-style:none;
  }
  .shot__thumbs::-webkit-scrollbar{ display:none; }
  .shot__thumbs button{ flex:0 0 56px; max-width:none; }

  .steam-cta{ width:100%; padding:4px; }
  .steam-cta__date{ padding:6px 8px 8px; }
  .btn-steam{ flex:1 1 100%; }
  .footer__grid{ flex-direction:column; align-items:flex-start; }
  .dev__head{ gap:12px; }
  .stage li{ font-size:8px; }
  .socials a{ width:44px; height:44px; }
}

@media (prefers-reduced-motion:reduce){
  *{ animation-duration:.01ms !important; transition-duration:.01ms !important; }
  html{ scroll-behavior:auto; }
  .hero__title .line, .hero__chars{ opacity:1; transform:none; }
  .hero__chars{ transform:translateX(-50%); }
}
