:root {
  --yellow: #f9c80e;
  --red: #e62b1e;
  --blue: #0ca6cf;
  --purple: #b16ee2;
  --ink: #111214;
  --paper: #fffdf4;
  --muted: #ebe8dc;
  --white: #fff;
  --border: 4px solid var(--ink);
  --shadow: 8px 8px 0 var(--ink);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
[id] { scroll-margin-top: 96px; }
.top-anchor { position: absolute; top: 0; left: 0; width: 1px; height: 1px; pointer-events: none; }
a:focus-visible, button:focus-visible, [role="button"]:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: .75rem 1rem;
  color: var(--white);
  background: var(--ink);
}
.skip-link:focus { top: 1rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: .6rem clamp(1rem, 4vw, 4rem);
  background: rgba(255, 253, 244, .95);
  border-bottom: var(--border);
  backdrop-filter: blur(10px);
}

.brand { display: inline-flex; align-items: center; color: var(--ink); font-size: clamp(.78rem, 1.15vw, 1rem); line-height: 1; letter-spacing: -.02em; text-decoration: none; white-space: nowrap; }
.brand strong { font-weight: 900; }

.main-nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2rem); }
.main-nav a {
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
}
.main-nav a:hover { text-decoration: underline; text-decoration-thickness: 3px; text-underline-offset: 5px; }
.zar-mini-logo { flex: 0 0 auto; width: 34px; height: 28px; padding: 2px; object-fit: contain; background: var(--white); border-radius: 7px; }
.nav-links .nav-zar-link { display: flex; align-items: center; gap: .45rem; }
.nav-zar-logo { width: 29px; height: 25px; }

.language-switcher { display: flex; border: 2px solid var(--ink); }
.language-switcher button {
  min-width: 42px;
  padding: .48rem .55rem;
  color: var(--ink);
  background: var(--white);
  border: 0;
  font: inherit;
  font-size: .75rem;
  font-weight: 900;
  cursor: pointer;
}
.language-switcher button + button { border-left: 2px solid var(--ink); }
.language-switcher button:hover, .language-switcher button.is-active { color: var(--white); background: var(--ink); }

.theme-switch { display: inline-flex; justify-self: start; width: 126px; min-width: 126px; min-height: 52px; cursor: pointer; }
.theme-switch-track {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 126px;
  height: 52px;
  padding: 0 10px;
  overflow: hidden;
  background-color: #d7d5cc;
  background-image: radial-gradient(rgba(17,18,20,.35) 15%, transparent 16%), radial-gradient(rgba(17,18,20,.35) 15%, transparent 16%);
  background-position: 0 0, 5px 5px;
  background-size: 10px 10px;
  border: 3px solid var(--ink);
  border-radius: 999px;
}
.theme-switch-thumb {
  position: absolute;
  top: -3px;
  left: -3px;
  z-index: 1;
  width: 66px;
  height: 52px;
  overflow: hidden;
  background: var(--blue);
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--ink);
  transition: background .3s ease, transform .3s cubic-bezier(.25,.46,.45,.94);
}
.theme-switch-crescent { position: absolute; top: 8px; right: 9px; width: 31px; height: 31px; background: var(--white); border-radius: 50%; transform: scale(0); transform-origin: top right; transition: transform .35s ease; }
.theme-switch-crescent::after { position: absolute; top: -5px; left: -7px; width: 31px; height: 31px; background: #273244; border-radius: 50%; content: ""; }
.theme-switch-label { position: relative; z-index: 2; color: var(--ink); font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: .76rem; font-style: italic; letter-spacing: .04em; text-shadow: 1px 1px 0 var(--white); user-select: none; }
.theme-switch-day { color: var(--white); text-shadow: 1px 1px 0 var(--ink); }
.theme-switch input:checked + .theme-switch-track .theme-switch-thumb, html[data-theme="dark"] .theme-switch-thumb { background: #273244; transform: translateX(60px); }
.theme-switch input:checked + .theme-switch-track .theme-switch-crescent, html[data-theme="dark"] .theme-switch-crescent { transform: scale(1); }
.theme-switch input:checked + .theme-switch-track .theme-switch-day, html[data-theme="dark"] .theme-switch-day { color: var(--ink); text-shadow: 1px 1px 0 var(--white); }
.theme-switch input:checked + .theme-switch-track .theme-switch-night, html[data-theme="dark"] .theme-switch-night { color: var(--white); text-shadow: 1px 1px 0 var(--ink); }
.theme-switch input:focus-visible + .theme-switch-track { outline: 3px solid var(--blue); outline-offset: 4px; }

.menu-button { display: none; width: 46px; height: 42px; padding: 8px; background: var(--yellow); border: 3px solid var(--ink); cursor: pointer; }
.menu-button span:not(.sr-only) { display: block; height: 3px; margin: 4px 0; background: var(--ink); }

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: clamp(3rem, 7vw, 7rem) clamp(1.25rem, 7vw, 8rem);
  background-color: var(--yellow);
  background-image: radial-gradient(var(--ink) 1.4px, transparent 1.4px);
  background-size: 13px 13px;
  border-bottom: var(--border);
  overflow: hidden;
}
.hero > * { min-width: 0; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(249,200,14,.94) 0%, rgba(249,200,14,.9) 46%, rgba(249,200,14,.28) 100%);
}
.hero-content { position: relative; z-index: 3; max-width: 660px; }
.hero .reveal { opacity: 1; transform: none; }
.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: .3rem .65rem;
  font-weight: 900;
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--white);
  border: 2px solid var(--ink);
  transform: rotate(-1.5deg);
}
.hero h1, h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  line-height: .9;
  letter-spacing: .015em;
  text-transform: uppercase;
}
.hero h1 { font-size: clamp(4.4rem, 9.5vw, 10rem); text-shadow: 5px 5px 0 var(--white); }
.hero h1 span { color: var(--red); -webkit-text-stroke: 3px var(--ink); text-shadow: 5px 5px 0 var(--ink); }
.hero-copy { max-width: 590px; margin: 2rem 0; font-size: clamp(1.05rem, 1.6vw, 1.35rem); font-weight: 700; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.5rem; }

.section-jump {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  z-index: 6;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: var(--white);
  background: var(--red);
  border: 4px solid var(--ink);
  border-radius: 50%;
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 2rem;
  font-weight: 900;
  text-decoration: none;
  transform: translateX(-50%) rotate(4deg);
  transition: transform .15s ease, box-shadow .15s ease;
}
.section-jump:hover { box-shadow: 2px 2px 0 var(--ink); transform: translate(-50%, 3px) rotate(4deg); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  padding: 1rem 1.25rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .15s ease, box-shadow .15s ease;
}
.button:hover { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--ink); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { color: var(--ink); background: var(--white); }
.button-yellow { color: var(--ink); background: var(--yellow); }

.text-link { font-weight: 900; text-underline-offset: 5px; text-decoration-thickness: 2px; }
.text-link:hover { color: var(--red); }

.hero-art { position: relative; z-index: 1; justify-self: end; width: min(100%, 680px); padding: clamp(1rem, 2vw, 2rem); }
.hero-logo-frame { position: relative; z-index: 2; aspect-ratio: 796 / 508; overflow: hidden; background: var(--paper); border: 7px solid var(--ink); box-shadow: 14px 14px 0 var(--ink); transform: rotate(2deg); }
.hero-logo-frame img { width: 100%; height: 100%; object-fit: contain; transform: scale(1.08); }
.burst {
  position: absolute;
  inset: -8%;
  z-index: -1;
  background: var(--red);
  clip-path: polygon(50% 0%, 58% 25%, 72% 6%, 76% 31%, 97% 17%, 87% 41%, 100% 50%, 87% 59%, 97% 83%, 76% 69%, 72% 94%, 58% 75%, 50% 100%, 42% 75%, 28% 94%, 24% 69%, 3% 83%, 13% 59%, 0% 50%, 13% 41%, 3% 17%, 24% 31%, 28% 6%, 42% 25%);
  transform: rotate(8deg);
}
.sticker { position: absolute; z-index: 4; display: grid; place-items: center; text-align: center; font-family: Impact, sans-serif; line-height: .95; }
.sticker-alpha { right: -1rem; bottom: -.8rem; width: 130px; aspect-ratio: 1; color: var(--white); background: var(--blue); border: 5px solid var(--ink); border-radius: 50%; box-shadow: 6px 6px 0 var(--ink); transform: rotate(-9deg); }

.comic-shape { position: absolute; z-index: -1; border: var(--border); }
.comic-shape-one { top: 9%; left: -5%; width: 130px; height: 80px; background: var(--purple); transform: rotate(17deg); }
.comic-shape-two { right: 48%; bottom: 4%; width: 80px; height: 80px; background: var(--blue); transform: rotate(36deg); }

.section { padding: clamp(4.5rem, 9vw, 9rem) clamp(1.25rem, 7vw, 8rem); }
.section-heading { max-width: 900px; margin-bottom: clamp(2.5rem, 5vw, 5rem); }
.section-heading h2, .about h2 { font-size: clamp(3.1rem, 7vw, 7rem); }
.section-heading > p:last-child { max-width: 620px; font-size: 1.12rem; }

.about { background: var(--paper); }
.about-card { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.about-card .lead { margin-top: 0; font-size: clamp(1.35rem, 2vw, 2rem); font-weight: 900; line-height: 1.25; }
.about-card p:not(.lead) { max-width: 690px; font-size: 1.05rem; }
.studio-points { border-top: var(--border); border-left: var(--border); box-shadow: var(--shadow); transform: rotate(1deg); }
.studio-points article { position: relative; display: grid; grid-template-columns: 58px 1fr; gap: .1rem 1rem; min-height: 120px; padding: 1.2rem; background: var(--white); border-right: var(--border); border-bottom: var(--border); }
.studio-points article:nth-child(2) { background: var(--blue); }
.studio-points article:nth-child(3) { background: var(--purple); }
.studio-points b { grid-row: 1 / 3; align-self: center; font-family: Impact, sans-serif; font-size: 2.2rem; }
.studio-points strong { align-self: end; font-size: 1.15rem; text-transform: uppercase; }
.studio-points span { align-self: start; font-weight: 700; }

.zar-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2.5rem, 7vw, 8rem); color: var(--white); background-color: var(--ink); background-image: linear-gradient(135deg, rgba(255,255,255,.04) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.04) 50%, rgba(255,255,255,.04) 75%, transparent 75%); background-size: 24px 24px; border-block: var(--border); }
.zar-copy h2 { color: var(--yellow); font-size: clamp(3.5rem, 6.6vw, 7rem); }
.zar-copy > p:not(.eyebrow) { max-width: 610px; font-size: 1.1rem; }
.eyebrow-light { color: var(--ink); background: var(--white); }
.feature-list { margin: 2.5rem 0; padding: 0; list-style: none; border-top: 2px solid rgba(255,255,255,.3); }
.feature-list li { display: flex; align-items: center; gap: 1rem; padding: 1rem 0; font-weight: 800; border-bottom: 2px solid rgba(255,255,255,.3); }
.feature-list span { color: var(--yellow); font-family: Impact, sans-serif; font-size: 1.45rem; }
.zar-media { position: relative; align-self: center; justify-self: center; width: min(100%, 650px); padding: clamp(1rem, 3vw, 2.5rem); }
.zar-media > img { position: relative; z-index: 2; width: 100%; height: auto; aspect-ratio: 630 / 500; object-fit: cover; border: 6px solid var(--white); box-shadow: 12px 12px 0 var(--red); transform: rotate(1.5deg); }
.zar-cover-burst { position: absolute; inset: -2%; z-index: 0; background: var(--yellow); clip-path: polygon(50% 0,58% 25%,72% 7%,76% 31%,97% 18%,87% 41%,100% 50%,87% 59%,97% 82%,76% 69%,72% 93%,58% 75%,50% 100%,42% 75%,28% 93%,24% 69%,3% 82%,13% 59%,0 50%,13% 41%,3% 18%,24% 31%,28% 7%,42% 25%); transform: rotate(-8deg); }
.zar-alpha-badge { position: absolute; right: 0; bottom: 0; z-index: 3; display: grid; place-items: center; width: 116px; aspect-ratio: 1; color: var(--ink); background: var(--yellow); border: 4px solid var(--white); border-radius: 50%; box-shadow: 5px 5px 0 var(--red); font-family: Impact, sans-serif; line-height: .95; text-align: center; transform: rotate(-8deg); }
.steam-panel { grid-column: 1 / -1; align-self: center; margin-top: clamp(1rem, 3vw, 3rem); }
.steam-panel > img { width: 100%; height: auto; aspect-ratio: 1920 / 360; object-fit: contain; border: 5px solid var(--white); box-shadow: 12px 12px 0 var(--red); transform: rotate(.4deg); }
.steam-note { display: flex; justify-content: space-between; gap: 1rem; margin: 2rem 0 0 1rem; padding: 1rem; color: var(--ink); background: var(--blue); border: var(--border); box-shadow: 6px 6px 0 var(--white); transform: rotate(-1deg); }
.steam-note strong { text-transform: uppercase; }

.roadmap { background-color: var(--red); background-image: radial-gradient(rgba(0,0,0,.35) 1.5px, transparent 1.5px); background-size: 12px 12px; border-bottom: var(--border); }
.roadmap .section-heading { color: var(--white); }
.roadmap .section-heading h2 { text-shadow: 5px 5px 0 var(--ink); }
.roadmap .section-heading > p:last-child { font-weight: 800; }
.roadmap-frame { margin: 0; }
.roadmap-frame a { display: block; border: 7px solid var(--ink); box-shadow: 14px 14px 0 var(--ink); transition: transform .15s ease; }
.roadmap-frame a:hover { transform: scale(1.01) rotate(-.3deg); }
.roadmap-frame img { width: 100%; }
.roadmap-frame figcaption { margin-top: 1.5rem; color: var(--white); font-weight: 800; text-align: center; }

.contact { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(3rem, 8vw, 9rem); align-items: start; background: var(--yellow); }
.contact-intro { position: sticky; top: 130px; }
.contact h2 { font-size: clamp(3.5rem, 6.5vw, 7rem); }
.contact-intro > p:not(.eyebrow) { max-width: 490px; font-size: 1.1rem; font-weight: 700; }
.contact-content { min-width: 0; }
.contact-form { position: relative; margin-bottom: 2rem; padding: clamp(1.4rem, 3vw, 2.4rem); background: var(--white); border: 1px solid rgba(17,18,20,.1); border-radius: 24px; box-shadow: 0 18px 45px rgba(17,18,20,.09); }
.contact-form-heading { max-width: 680px; margin-bottom: 1.5rem; }
.contact-form-heading h3 { margin: 0 0 .65rem; font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.05; }
.contact-form-heading p:last-child { margin: 0; color: #5c5b55; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; }
.form-grid label { display: grid; align-content: start; gap: .45rem; min-width: 0; font-size: .86rem; font-weight: 900; }
.form-grid .form-wide { grid-column: 1 / -1; }
.form-grid input, .form-grid textarea { width: 100%; min-height: 48px; padding: .8rem .9rem; color: var(--ink); background: #fffdf7; border: 2px solid #cbc9bf; border-radius: 12px; font: inherit; font-size: 1rem; }
.form-grid textarea { min-height: 160px; resize: vertical; }
.form-grid input:hover, .form-grid textarea:hover { border-color: #8e8d85; }
.form-grid input:focus, .form-grid textarea:focus { border-color: var(--blue); outline: 3px solid rgba(12,166,207,.2); }
.file-field input { padding: .55rem; border-style: dashed; cursor: pointer; }
.file-field input::file-selector-button { min-height: 44px; margin-right: .75rem; padding: .55rem .8rem; color: var(--ink); background: var(--yellow); border: 2px solid var(--ink); border-radius: 8px; font-weight: 900; cursor: pointer; }
.file-field input::file-selector-button:hover { background: var(--white); }
.file-field input[type="file"]:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
.file-field small { color: #6b6a63; font-weight: 500; }
.form-submit-row { display: flex; align-items: center; gap: 1rem 1.4rem; margin-top: 1.4rem; }
.form-submit-row .button { flex: 0 0 auto; min-height: 50px; cursor: pointer; }
.form-submit-row .button:disabled { cursor: wait; opacity: .65; }
.form-privacy { max-width: 480px; margin: 0; color: #77766f; font-size: .75rem; }
.form-status { min-height: 1.5rem; margin: .9rem 0 0; font-weight: 900; }
.form-status.is-success { color: #16713c; }
.form-status.is-error { color: #b61f16; }
.form-honey { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.social-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: var(--border); border-left: var(--border); box-shadow: 10px 10px 0 var(--ink); }
.social-grid a { display: grid; place-items: center; aspect-ratio: 1; min-height: 130px; padding: 1.5rem; background: var(--white); border-right: var(--border); border-bottom: var(--border); text-decoration: none; transition: color .15s ease, background .15s ease, transform .15s ease; }
.social-grid a:hover { color: var(--white); background: var(--social-color, var(--ink)); transform: translate(-3px, -3px); }
.social-grid svg { width: min(64px, 55%); height: auto; overflow: visible; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.social-grid svg .fill, .social-grid svg rect:not([rx]), .social-grid svg path:not(.fill-paper) { fill: currentColor; stroke: none; }
.social-grid svg .fill-paper { fill: var(--paper); stroke: none; }
.social-grid img { width: min(72px, 62%); height: auto; aspect-ratio: 1; object-fit: contain; }
.social-instagram { --social-color: #d62976; }
.social-youtube { --social-color: #ff0000; }
.social-x { --social-color: #000; }
.social-tiktok { --social-color: #000; }
.social-threads { --social-color: #000; }
.social-linkedin { --social-color: #0a66c2; }
.social-itch { --social-color: #fa5c5c; }
.social-email { --social-color: var(--blue); }

.site-footer { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 1.5rem 2.5rem; padding: 2rem clamp(1.25rem, 7vw, 8rem); color: var(--white); background: var(--ink); border-top: var(--border); }
.site-footer img { width: 100px; height: 70px; padding: .2rem; object-fit: contain; background: var(--paper); transform: scale(1.25); }
.site-footer p { font-weight: 800; }
.site-footer a { font-weight: 900; text-underline-offset: 4px; }
.site-footer small { grid-column: 1 / -1; color: #aaa; }

/* Calm studio theme. Comic styling is concentrated inside the ZAR showcase. */
.site-header {
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(17, 18, 20, .12);
}
.main-nav { gap: clamp(.75rem, 1.5vw, 1.5rem); }
.language-switcher { overflow: hidden; border: 1px solid var(--ink); border-radius: 999px; }
.language-switcher button + button { border-left-width: 1px; }

.hero {
  min-height: min(820px, calc(100vh - 82px));
  background: linear-gradient(135deg, #fffdf1 0%, #fffdf1 58%, #ffeda0 100%);
  border-bottom: 0;
}
.hero::before, .hero .comic-shape, .hero .burst { display: none; }
.hero h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(3.8rem, 7.4vw, 8rem);
  line-height: .92;
  letter-spacing: -.055em;
  text-shadow: none;
}
.hero h1 span {
  color: var(--ink);
  background: linear-gradient(transparent 62%, var(--yellow) 62%);
  -webkit-text-stroke: 0;
  text-shadow: none;
}
.eyebrow {
  padding: 0;
  color: #6b6b63;
  background: none;
  border: 0;
  transform: none;
}
.hero-copy { color: #4d4d47; font-weight: 500; }
.button { border: 0; border-radius: 999px; box-shadow: none; }
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(17,18,20,.15); }
.hero-logo-frame {
  padding: clamp(1rem, 3vw, 2rem);
  background: #fffdf1;
  border: 1px solid rgba(17,18,20,.08);
  border-radius: 34px;
  box-shadow: 0 28px 70px rgba(17,18,20,.15);
  transform: none;
}
.hero-logo-frame img { transform: scale(1.03); }
.sticker-alpha {
  right: 0;
  bottom: 0;
  width: 124px;
  color: var(--ink);
  background: var(--yellow);
  border: 0;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(17,18,20,.2);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .78rem;
  font-weight: 900;
  line-height: 1.05;
  transform: rotate(-3deg);
}

.about { background: var(--white); }
.about h2, .roadmap-link-section h2, .simple-heading h2, .contact h2 {
  font-family: Arial, Helvetica, sans-serif;
  line-height: .98;
  letter-spacing: -.045em;
  text-transform: none;
}
.about .section-heading h2 { font-size: clamp(3rem, 6vw, 6rem); }
.studio-points { display: grid; gap: 1rem; border: 0; box-shadow: none; transform: none; }
.studio-points article {
  min-height: 110px;
  background: #f5f4ee;
  border: 1px solid rgba(17,18,20,.08);
  border-radius: 18px;
}
.studio-points article:nth-child(2) { background: #e8f7fb; }
.studio-points article:nth-child(3) { background: #f3ebf9; }
.studio-points b { color: #9b9a92; font-family: Arial, Helvetica, sans-serif; font-size: 1rem; }

.zar-showcase {
  position: relative;
  isolation: isolate;
  color: var(--white);
  background-color: var(--ink);
  background-image: radial-gradient(rgba(255,255,255,.12) 1.2px, transparent 1.2px);
  background-size: 12px 12px;
  border-block: var(--border);
  overflow: hidden;
}
.zar-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(230,43,30,.12), transparent 45%, rgba(12,166,207,.12));
}
.zar-showcase .eyebrow {
  padding: .3rem .65rem;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--ink);
  transform: rotate(-1.5deg);
}
.zar-showcase .button {
  border: 3px solid var(--ink);
  border-radius: 0;
  box-shadow: 5px 5px 0 var(--white);
}
.zar-showcase .button:hover { transform: translate(3px,3px); box-shadow: 2px 2px 0 var(--white); }
.zar-intro { display: grid; grid-template-columns: 1fr .88fr; gap: clamp(3rem, 7vw, 8rem); align-items: center; }
.zar-wordmark { width: clamp(160px, 18vw, 250px); height: auto; margin: 0 0 1.5rem; border: 4px solid var(--white); box-shadow: 8px 8px 0 var(--red); transform: rotate(-1deg); }
.zar-copy h2 { color: var(--yellow); font-size: clamp(3.6rem, 6.5vw, 7rem); }
.zar-lead { max-width: 680px; font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.zar-tags { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1.5rem 0; }
.zar-tags span { padding: .4rem .7rem; color: var(--ink); background: var(--blue); border: 2px solid var(--white); font-size: .76rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; transform: rotate(-1deg); }
.zar-tags span:nth-child(even) { background: var(--purple); transform: rotate(1deg); }
.zar-character-stage { position: relative; min-height: 680px; }
.zar-character-stage > img { position: absolute; z-index: 2; right: 0; bottom: -9rem; width: min(100%, 600px); height: 760px; object-fit: contain; object-position: bottom; filter: drop-shadow(16px 14px 0 rgba(230,43,30,.9)); }
.comic-burst { position: absolute; inset: 8% -15% 5% -12%; z-index: 0; background: var(--yellow); clip-path: polygon(50% 0,57% 28%,72% 6%,76% 31%,98% 18%,87% 42%,100% 50%,87% 58%,98% 82%,76% 69%,72% 94%,57% 72%,50% 100%,43% 72%,28% 94%,24% 69%,2% 82%,13% 58%,0 50%,13% 42%,2% 18%,24% 31%,28% 6%,43% 28%); transform: rotate(8deg); }
.zar-character-stage p { position: absolute; z-index: 3; top: 3%; right: 0; max-width: 340px; margin: 0; padding: 1.6rem; color: var(--ink); background: var(--white); border: 4px solid var(--ink); border-radius: 50%; box-shadow: 7px 7px 0 var(--blue); font-size: 1.08rem; font-weight: 900; text-align: center; transform: rotate(3deg); }
.zar-gameplay { margin-top: clamp(6rem, 11vw, 11rem); }
.zar-subheading { max-width: 900px; margin-bottom: 2.5rem; }
.zar-subheading h3 { margin: 0; color: var(--yellow); font-family: Impact, sans-serif; font-size: clamp(2.8rem, 5.5vw, 5.8rem); line-height: .95; text-transform: uppercase; }
.zar-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2.5rem); }
.zar-gallery figure { margin: 0; background: var(--white); border: 5px solid var(--white); box-shadow: 9px 9px 0 var(--red); transform: rotate(-.7deg); }
.zar-gallery figure:nth-child(odd) { box-shadow: 9px 9px 0 var(--blue); transform: rotate(.7deg); }
.zar-gallery-wide { grid-column: 1 / -1; }
.zar-gallery img { width: 100%; height: auto; object-fit: cover; }
.zar-gallery-wide img { aspect-ratio: 794 / 446; }
.zar-gallery figure:not(.zar-gallery-wide) img { aspect-ratio: 1; }
.zar-gallery figcaption { padding: .9rem 1rem; color: var(--ink); font-weight: 900; }
.steam-panel { margin-top: clamp(4rem, 7vw, 7rem); }
.steam-panel > img { box-shadow: 12px 12px 0 var(--red); }

.zar-roadmap { margin-top: clamp(4rem, 7vw, 7rem); padding-top: clamp(3rem, 5vw, 5rem); border-top: 2px solid rgba(255,255,255,.24); }
.zar-roadmap .roadmap-link-card { max-width: none; color: var(--ink); background: var(--yellow); border: 5px solid var(--white); border-radius: 0; box-shadow: 12px 12px 0 var(--red); transform: rotate(-.35deg); }
.zar-roadmap .roadmap-link-card h2 { font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(3rem, 5.5vw, 6rem); letter-spacing: .01em; text-transform: uppercase; }
.zar-roadmap .roadmap-link-card p:not(.section-kicker) { color: var(--ink); font-weight: 700; }
.zar-roadmap .section-kicker { color: rgba(17,18,20,.65); }
.zar-roadmap .simple-button { border: 3px solid var(--ink); border-radius: 0; box-shadow: 5px 5px 0 var(--white); }

.roadmap-link-section { background: #eaf7fb; }
.roadmap-link-card { display: flex; align-items: center; justify-content: space-between; gap: 3rem; max-width: 1200px; margin: auto; padding: clamp(2rem, 5vw, 4rem); background: var(--white); border: 1px solid rgba(17,18,20,.1); border-radius: 28px; box-shadow: 0 24px 70px rgba(17,18,20,.09); }
.roadmap-link-card h2 { font-size: clamp(2.7rem, 5vw, 5.5rem); }
.roadmap-link-card p:not(.section-kicker) { max-width: 620px; color: #5a5a54; font-size: 1.08rem; }
.section-kicker { margin: 0 0 .75rem; color: #77766e; font-size: .8rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.simple-button { flex: 0 0 auto; display: inline-flex; align-items: center; gap: .6rem; padding: 1rem 1.3rem; color: var(--white); background: var(--ink); border-radius: 999px; font-weight: 900; text-decoration: none; }
.simple-button:hover { background: var(--blue); }

.games-section { background: #f4f3ee; }
.simple-heading { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.simple-heading h2 { font-size: clamp(3rem, 6vw, 6.5rem); }
.simple-heading > p:last-child { color: #62615b; font-size: 1.12rem; }
.games-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.2vw, 2rem); }
.game-card { display: flex; flex-direction: column; overflow: hidden; background: var(--white); border: 1px solid rgba(17,18,20,.09); border-radius: 20px; box-shadow: 0 14px 40px rgba(17,18,20,.07); transition: transform .2s ease, box-shadow .2s ease; }
.game-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(17,18,20,.13); }
.game-card-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #ecebe5; }
.game-card-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.game-card-logo { padding: 0; object-fit: cover; transition: opacity .25s ease, transform .35s ease; }
.game-card-preview { object-fit: cover; opacity: 0; transform: scale(1.03); transition: opacity .25s ease, transform .6s ease; }
.game-card-dark { background: #191919; }
.preview-hint { position: absolute; right: .8rem; bottom: .8rem; z-index: 2; padding: .42rem .65rem; color: var(--white); background: rgba(17,18,20,.84); border-radius: 999px; font-size: .68rem; font-weight: 900; opacity: 0; transform: translateY(5px); transition: opacity .2s ease, transform .2s ease; }
@media (hover: hover) {
  .game-card:hover .game-card-logo, .game-card:focus-within .game-card-logo { opacity: 0; transform: scale(.97); }
  .game-card:hover .game-card-preview, .game-card:focus-within .game-card-preview { opacity: 1; transform: scale(1); }
  .game-card:hover .preview-hint, .game-card:focus-within .preview-hint { opacity: 1; transform: translateY(0); }
}
@media (hover: none), (pointer: coarse) {
  .game-card-media { cursor: pointer; }
  .game-card-media .preview-hint { opacity: 1; transform: translateY(0); }
  .game-card-media.is-previewing .game-card-logo { opacity: 0; transform: scale(.97); }
  .game-card-media.is-previewing .game-card-preview { opacity: 1; transform: scale(1); }
}
.game-card-copy { display: flex; flex: 1; flex-direction: column; padding: 1.4rem; }
.game-genre { color: #77766e; font-size: .72rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.game-card h3 { margin: .4rem 0 .65rem; font-size: 1.65rem; }
.game-card p { margin: 0 0 1.4rem; color: #575751; }
.game-card a { align-self: flex-start; margin-top: auto; font-weight: 900; text-underline-offset: 4px; }
.game-card a:hover { color: var(--blue); }
.game-card-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: auto; }
.game-card-actions a { display: inline-flex; align-items: center; gap: .45rem; margin-top: 0; padding: .6rem .8rem; border: 1px solid rgba(17,18,20,.15); border-radius: 999px; font-size: .78rem; text-decoration: none; }
.game-card-actions a::before { width: 1.25rem; height: 1.25rem; flex: 0 0 auto; background-position: center; background-repeat: no-repeat; background-size: contain; content: ""; }
.game-card-actions a:first-child::before { background-image: url("assets/images/social/itch-io.png"); }
.game-card-actions .game-video-link::before { background-image: url("assets/images/social/youtube.png"); }
.game-card-actions a:first-child { color: var(--white); background: var(--ink); border-color: var(--ink); }
.game-card-actions a:first-child:hover { background: var(--blue); border-color: var(--blue); }
.game-card-actions .game-video-link { color: #c00; }
.game-card-actions .game-video-link:hover { color: var(--white); background: #e60000; border-color: #e60000; }

.contact { background: #fff9df; }
.contact h2 { font-size: clamp(3.3rem, 6vw, 6.5rem); }
.social-grid { gap: .8rem; border: 0; box-shadow: none; }
.social-grid a { min-height: 120px; background: var(--white); border: 1px solid rgba(17,18,20,.1); border-radius: 18px; }
.social-grid a:hover { transform: translateY(-4px); }
.site-footer { border-top: 0; }

/* Adapted comic interaction system: grouped navigation, buttons, cards, and inputs. */
.nav-links {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 12px;
  box-shadow: 5px 5px 0 var(--ink);
}
.nav-links a { position: relative; display: grid; place-items: center; min-height: 40px; padding: .55rem .72rem; transition: color .2s ease, background .25s ease, transform .2s ease; }
.nav-links a + a { border-left: 2px solid var(--ink); }
.main-nav .nav-links a:hover, .main-nav .nav-links a:focus-visible { color: var(--white); background-color: var(--red); background-image: radial-gradient(rgba(0,0,0,.25) 1.2px, transparent 1.2px); background-size: 7px 7px; text-decoration: none; text-shadow: 2px 2px 0 var(--ink); }
.main-nav .nav-links a:nth-child(2):hover, .main-nav .nav-links a:nth-child(2):focus-visible { background-color: var(--blue); }
.main-nav .nav-links a:nth-child(3):hover, .main-nav .nav-links a:nth-child(3):focus-visible { background-color: var(--purple); }
.main-nav .nav-links a:nth-child(4):hover, .main-nav .nav-links a:nth-child(4):focus-visible { background-color: #2eae63; }

.zar-showcase .button, .zar-showcase .simple-button {
  --comic-button-color: var(--red);
  padding: .85rem 1.15rem;
  color: var(--white);
  background: var(--comic-button-color);
  border: 3px solid var(--ink);
  border-radius: 10px;
  box-shadow: 5px 5px 0 var(--ink);
  font-size: .92rem;
  transition: color .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .2s ease;
}
.zar-showcase .button:hover, .zar-showcase .simple-button:hover {
  color: var(--comic-button-color);
  background: var(--white);
  border-color: var(--comic-button-color);
  box-shadow: 5px 5px 0 var(--comic-button-color);
  transform: translateY(-2px);
}
.zar-showcase .button:active, .zar-showcase .simple-button:active { color: var(--ink); background: var(--yellow); box-shadow: none; transform: translateY(4px); }
.zar-roadmap .simple-button { --comic-button-color: var(--blue); border: 3px solid var(--ink); border-radius: 10px; box-shadow: 5px 5px 0 var(--ink); }

.games-section {
  background-color: #f4f3ee;
  background-image: radial-gradient(rgba(17,18,20,.13) 1.2px, transparent 1.2px);
  background-size: 12px 12px;
  border-block: 4px solid var(--ink);
}
.games-section .simple-heading { padding: clamp(1.2rem, 2.5vw, 2rem); background: var(--yellow); border: 4px solid var(--ink); box-shadow: 10px 10px 0 var(--ink); transform: rotate(-.5deg); }
.games-section .simple-heading > p:last-child { color: var(--ink); font-weight: 700; }
.game-card {
  overflow: visible;
  padding: .85rem;
  background: #fefae8;
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: .55rem .55rem 0 var(--ink);
  transform-origin: bottom left;
  transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s ease;
}
.game-card:hover { transform: translateY(-.6rem) rotate(-1.2deg); box-shadow: .8rem .8rem 0 .08rem var(--red); }
.game-card-media { border: 3px solid var(--ink); border-radius: 4px; background-color: var(--blue); background-image: radial-gradient(rgba(0,0,0,.18) 1px, transparent 1px); background-size: 8px 8px; transition: transform .3s ease; }
.game-card:hover .game-card-media { transform: skewX(-1deg) scale(1.01); }
.game-card-copy { padding: 1rem .2rem .15rem; }
.game-card h3 { display: inline-block; align-self: flex-start; padding: .08rem .45rem; background: var(--yellow); clip-path: polygon(0 0,100% 0,95% 100%,5% 100%); }
.game-card p { position: relative; padding: .65rem .75rem; color: var(--ink); background: #fefae8; border: 2px solid var(--ink); border-radius: 8px; }
.game-card p::after { position: absolute; bottom: -.65rem; left: 1.3rem; border: .55rem solid transparent; border-top-color: var(--ink); content: ""; }
.game-card-actions { padding-top: .45rem; }
.game-card-actions a { color: var(--ink); background: var(--yellow); border: 2px solid var(--ink); border-radius: 8px; box-shadow: 3px 3px 0 var(--ink); transition: color .15s ease, background .15s ease, box-shadow .15s ease, transform .15s ease; }
.game-card-actions a:first-child { color: var(--ink); background: var(--yellow); border-color: var(--ink); }
.game-card-actions a:hover, .game-card-actions a:first-child:hover { color: var(--white); background: var(--red); border-color: var(--ink); transform: translateY(-2px); }
.game-card-actions a:active { box-shadow: none; transform: translate(3px,3px); }

.contact {
  background-color: #fff4c6;
  background-image: radial-gradient(rgba(230,43,30,.16) 1.5px, transparent 1.5px);
  background-size: 11px 11px;
  border-bottom: 4px solid var(--ink);
}
.contact-intro { padding: clamp(1rem, 2vw, 1.5rem); background: var(--yellow); border: 4px solid var(--ink); box-shadow: 9px 9px 0 var(--ink); transform: rotate(-.6deg); }
.contact-intro .eyebrow { color: var(--ink); }
.contact-form { background: #f0f0f0; border: 4px solid var(--ink); border-radius: 10px; box-shadow: 10px 10px 0 var(--ink); transform: perspective(1000px) rotateX(1deg) rotateY(-1deg); transition: transform .35s cubic-bezier(.23,1,.32,1), box-shadow .35s cubic-bezier(.23,1,.32,1); }
.contact-form:focus-within { box-shadow: 16px 16px 0 -5px var(--yellow), 16px 16px 0 var(--ink); transform: perspective(1000px) rotateX(0) rotateY(0); }
.contact-form-heading .section-kicker { display: inline-block; padding: .25rem .6rem; color: var(--ink); background: var(--yellow); border: 2px solid var(--ink); transform: rotate(-1deg); }
.form-grid label { padding: .7rem; background: #ecebe5; border: 3px solid var(--ink); box-shadow: 5px 5px 0 var(--ink); transition: transform .3s cubic-bezier(.23,1,.32,1), box-shadow .3s ease; }
.form-grid label:focus-within { box-shadow: 9px 9px 0 -3px var(--yellow), 9px 9px 0 var(--ink); transform: translate(-3px,-3px); }
.form-grid label > span { justify-self: start; padding: .15rem .42rem; color: var(--ink); background: var(--yellow); border: 2px solid var(--ink); text-transform: uppercase; }
.form-grid input, .form-grid textarea { background: var(--white); border: 3px solid var(--ink); border-radius: 0; transition: background .25s ease, box-shadow .25s ease, transform .25s ease; }
.form-grid input:focus, .form-grid textarea:focus { background: #f7f7f2; border-color: var(--ink); box-shadow: 5px 5px 0 var(--ink); outline: none; transform: translate(-3px,-3px); }
.file-field small { padding-top: .25rem; color: var(--ink); }
.contact-form .form-submit-row .button { color: var(--white); background: var(--red); border: 3px solid var(--ink); border-radius: 10px; box-shadow: 5px 5px 0 var(--ink); }
.contact-form .form-submit-row .button:hover { color: var(--red); background: var(--white); border-color: var(--red); box-shadow: 5px 5px 0 var(--red); }
.social-grid { grid-template-columns: repeat(4, minmax(76px, 1fr)); gap: .65rem; }
.social-grid a { min-height: 92px; padding: .75rem; border: 3px solid var(--ink); border-radius: 10px; box-shadow: 4px 4px 0 var(--ink); }
.social-grid svg { width: 60px; max-width: 76%; }
.social-grid img { width: 64px; max-width: 80%; }
.social-grid a:hover { box-shadow: 7px 7px 0 var(--ink); transform: translate(-3px,-3px) rotate(-1deg); }
.social-grid .social-threads, .social-grid .social-x, .social-grid .social-tiktok { background: var(--white); }
.social-grid .social-x img, .social-grid .social-tiktok img { filter: none; }
.social-grid .social-threads img { filter: none; }
.social-grid .social-threads:hover, .social-grid .social-x:hover, .social-grid .social-tiktok:hover { color: var(--white); background: #000; }
.social-grid .social-threads:hover img, .social-grid .social-x:hover img, .social-grid .social-tiktok:hover img { filter: invert(1); }

.studio-intro {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #fffdf1;
  background-image: radial-gradient(rgba(17,18,20,.13) 1.25px, transparent 1.25px);
  background-size: 12px 12px;
  border-bottom: 4px solid var(--ink);
}
.studio-intro::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(249,200,14,.2), transparent 35%, rgba(12,166,207,.08) 72%, rgba(177,110,226,.12));
  content: "";
}
.studio-intro .hero { background: transparent; border-bottom: 4px solid var(--ink); }
.studio-intro .hero::after {
  position: absolute;
  right: -8%;
  bottom: -70px;
  width: 46%;
  height: 145px;
  z-index: -1;
  background: var(--yellow);
  border: 4px solid var(--ink);
  transform: rotate(-4deg);
  content: "";
}
.studio-intro .hero-content { padding: clamp(1.2rem, 2.5vw, 2rem); background: rgba(255,253,241,.92); border: 4px solid var(--ink); box-shadow: 10px 10px 0 var(--yellow); transform: rotate(-.35deg); }
.studio-intro .hero h1 { text-shadow: 3px 3px 0 var(--white); }
.studio-intro .hero-logo-frame { background: #fffdf1; border: 4px solid var(--ink); border-radius: 12px; box-shadow: 11px 11px 0 var(--ink); transform: rotate(1deg); }
.studio-intro .sticker-alpha { border: 3px solid var(--ink); border-radius: 10px; box-shadow: 5px 5px 0 var(--ink); }
.studio-intro .about { position: relative; background: transparent; }
.studio-intro .about .section-heading { max-width: 820px; padding: clamp(1.2rem, 2.5vw, 2rem); background: var(--yellow); border: 4px solid var(--ink); box-shadow: 10px 10px 0 var(--ink); transform: rotate(.4deg); }
.studio-intro .about-card { padding: clamp(1.2rem, 3vw, 2.5rem); background: #fefae8; border: 4px solid var(--ink); box-shadow: 12px 12px 0 var(--blue); }
.studio-intro .about-copy .lead { display: inline; background: linear-gradient(transparent 70%, var(--yellow) 70%); }
.studio-intro .studio-points article { background: var(--white); border: 3px solid var(--ink); border-radius: 8px; box-shadow: 5px 5px 0 var(--ink); }
.studio-intro .studio-points article:nth-child(2) { background: #e8f7fb; }
.studio-intro .studio-points article:nth-child(3) { background: #f3ebf9; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  body.menu-open { overflow: hidden; }
  .menu-button { display: block; }
  .main-nav { position: absolute; top: 100%; left: 0; right: 0; display: none; align-items: stretch; max-height: calc(100dvh - 72px); padding: 1rem; overflow-y: auto; background: var(--paper); border-bottom: var(--border); box-shadow: 0 8px 0 rgba(17,18,20,.2); }
  .main-nav.is-open { display: grid; }
  .main-nav a { display: flex; align-items: center; min-height: 48px; padding: .7rem; }
  .nav-links { display: grid; box-shadow: 5px 5px 0 var(--ink); }
  .nav-links a { justify-content: center; }
  .nav-links a + a { border-top: 2px solid var(--ink); border-left: 0; }
  .language-switcher { justify-self: start; margin: .4rem .7rem; }
  .language-switcher button { min-width: 48px; min-height: 48px; }
  .hero { grid-template-columns: 1fr; gap: 4rem; padding-top: 4rem; }
  .hero-content { max-width: 800px; }
  .hero-art { justify-self: center; }
  .about-card, .zar-intro, .contact { grid-template-columns: 1fr; }
  .steam-panel { grid-column: auto; }
  .contact-intro { position: static; }
  .zar-character-stage { min-height: 580px; }
  .zar-character-stage > img { left: 50%; right: auto; transform: translateX(-50%); }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .roadmap-link-card { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 760px) {
  .site-header { min-height: 72px; padding-inline: 1rem; }
  .brand { width: auto; height: auto; max-width: calc(100vw - 110px); font-size: .72rem; white-space: normal; }
  .menu-button { width: 48px; height: 48px; flex: 0 0 auto; border-radius: 10px; }
  .main-nav { padding: .75rem 1rem max(1rem, env(safe-area-inset-bottom)); }
  .main-nav a { font-size: .9rem; }
  .hero { min-height: auto; gap: 3rem; padding: 3.5rem 1.1rem; }
  .hero h1 { font-size: clamp(2.9rem, 15.5vw, 4.2rem); }
  .hero h1 span { -webkit-text-stroke-width: 2px; }
  .hero-copy { margin: 1.5rem 0; font-size: 1rem; overflow-wrap: anywhere; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: .8rem; }
  .hero-actions .button { width: 100%; min-height: 52px; }
  .hero-actions .text-link { align-self: flex-start; min-height: 44px; padding-block: .7rem; }
  .hero-art { width: 100%; padding: .5rem; }
  .hero-logo-frame { border-width: 1px; box-shadow: 0 18px 45px rgba(17,18,20,.15); }
  .studio-intro .hero-content { padding: 1rem; box-shadow: 6px 6px 0 var(--yellow); }
  .studio-intro .hero-logo-frame { border-width: 3px; box-shadow: 7px 7px 0 var(--ink); }
  .section-jump { bottom: .8rem; width: 58px; height: 58px; font-size: 1.5rem; }
  .studio-intro .about .section-heading { box-shadow: 7px 7px 0 var(--ink); }
  .studio-intro .about-card { padding: 1rem; box-shadow: 8px 8px 0 var(--blue); }
  .sticker-alpha { right: -.3rem; width: 94px; border-width: 0; font-size: .7rem; }
  .section { padding-block: 4rem; padding-inline: 1.1rem; }
  .section-heading h2, .about h2, .simple-heading h2, .contact h2 { overflow-wrap: anywhere; }
  .about-card { gap: 2.5rem; }
  .studio-points article { grid-template-columns: 42px 1fr; min-height: 105px; padding: 1rem; }
  .feature-list li { align-items: flex-start; }
  .steam-note { flex-direction: column; margin-left: 0; }
  .roadmap-frame a { border-width: 4px; box-shadow: 8px 8px 0 var(--ink); }
  .social-grid { grid-template-columns: repeat(2, 1fr); gap: .65rem; }
  .social-grid a { min-height: 104px; aspect-ratio: auto; padding: .85rem; }
  .zar-wordmark { width: 150px; }
  .zar-copy h2 { font-size: clamp(3rem, 15vw, 4.6rem); overflow-wrap: anywhere; }
  .zar-character-stage { min-height: 420px; }
  .zar-character-stage > img { bottom: -4rem; width: 100%; height: 470px; }
  .zar-character-stage p { top: 0; right: 0; max-width: 200px; padding: .8rem; font-size: .78rem; }
  .zar-gameplay { margin-top: 4.5rem; }
  .zar-gallery { grid-template-columns: 1fr; }
  .zar-gallery-wide { grid-column: auto; }
  .zar-subheading h3 { font-size: clamp(2.5rem, 12vw, 4rem); }
  .games-grid { grid-template-columns: 1fr; }
  .game-card:hover { transform: none; }
  .game-card-copy { padding: 1.2rem; }
  .game-card-actions { flex-direction: column; }
  .game-card-actions a { align-self: stretch; justify-content: center; min-height: 48px; }
  .roadmap-link-card { gap: 1.5rem; padding: 1.25rem; border-radius: 20px; }
  .zar-roadmap .roadmap-link-card h2 { font-size: clamp(2.7rem, 13vw, 4.2rem); }
  .roadmap-link-card .simple-button { justify-content: center; width: 100%; min-height: 52px; }
  .contact { gap: 2.5rem; }
  .contact-form { padding: 1.15rem; border-radius: 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .form-wide { grid-column: auto; }
  .form-submit-row { align-items: stretch; flex-direction: column; }
  .form-submit-row .button { width: 100%; }
  .site-footer { padding-bottom: max(2rem, env(safe-area-inset-bottom)); }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .site-footer img { margin: auto; }
  .site-footer a { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; }
  .site-footer small { grid-column: auto; }
}

@media (max-width: 380px) {
  .brand { font-size: .65rem; }
  .hero h1 { font-size: 2.8rem; }
  .zar-character-stage { min-height: 370px; }
  .zar-character-stage > img { height: 420px; }
}

html[data-theme="dark"] body { color: #f4f0e5; background: #0e1117; }
html[data-theme="dark"] .site-header { background: rgba(14,17,23,.96); border-bottom-color: var(--yellow); }
html[data-theme="dark"] .brand { color: #f4f0e5; }
html[data-theme="dark"] .language-switcher { border-color: #f4f0e5; }
html[data-theme="dark"] .language-switcher button { color: #f4f0e5; background: #171d26; }
html[data-theme="dark"] .language-switcher button:hover, html[data-theme="dark"] .language-switcher button.is-active { color: var(--ink); background: var(--yellow); }
html[data-theme="dark"] .studio-intro {
  background-color: #10161f;
  background-image: radial-gradient(rgba(255,255,255,.12) 1.25px, transparent 1.25px);
}
html[data-theme="dark"] .studio-intro::before { background: linear-gradient(135deg, rgba(249,200,14,.08), transparent 35%, rgba(12,166,207,.1) 72%, rgba(177,110,226,.1)); }
html[data-theme="dark"] .studio-intro .hero-content { color: #f4f0e5; background: rgba(22,29,38,.96); }
html[data-theme="dark"] .studio-intro .hero h1 { color: #fff; text-shadow: 3px 3px 0 var(--ink); }
html[data-theme="dark"] .studio-intro .hero h1 span { color: var(--yellow); background: none; -webkit-text-stroke: 1px var(--ink); text-shadow: 3px 3px 0 var(--ink); }
html[data-theme="dark"] .studio-intro .hero-copy { color: #d9d4c7; }
html[data-theme="dark"] .studio-intro .eyebrow { color: var(--yellow); }
html[data-theme="dark"] .studio-intro .about-card { color: #f4f0e5; background: #171d26; }
html[data-theme="dark"] .studio-intro .studio-points article { color: #f4f0e5; background: #202936; }
html[data-theme="dark"] .studio-intro .studio-points article:nth-child(2) { background: #153a47; }
html[data-theme="dark"] .studio-intro .studio-points article:nth-child(3) { background: #342747; }
html[data-theme="dark"] .studio-points b { color: #c8c2b5; }
html[data-theme="dark"] .games-section {
  color: #f4f0e5;
  background-color: #0f141c;
  background-image: radial-gradient(rgba(255,255,255,.12) 1.2px, transparent 1.2px);
}
html[data-theme="dark"] .game-card { color: #f4f0e5; background: #171d26; box-shadow: .55rem .55rem 0 .08rem #050608; }
html[data-theme="dark"] .game-card p { color: #e4ded1; background: #202936; }
html[data-theme="dark"] .game-genre { color: #c8c2b5; }
html[data-theme="dark"] .contact {
  color: #f4f0e5;
  background-color: #121720;
  background-image: radial-gradient(rgba(230,43,30,.24) 1.5px, transparent 1.5px);
}
html[data-theme="dark"] .contact-intro { color: var(--ink); }
html[data-theme="dark"] .contact-form { color: #f4f0e5; background: #171d26; }
html[data-theme="dark"] .contact-form-heading p:last-child, html[data-theme="dark"] .form-privacy { color: #c8c2b5; }
html[data-theme="dark"] .form-grid label { color: #f4f0e5; background: #202936; }
html[data-theme="dark"] .form-grid input, html[data-theme="dark"] .form-grid textarea { color: #f4f0e5; background: #10151d; border-color: #050608; }
html[data-theme="dark"] .form-grid input:focus, html[data-theme="dark"] .form-grid textarea:focus { color: #f4f0e5; background: #151c26; }
html[data-theme="dark"] .file-field small { color: #d7d1c4; }
html[data-theme="dark"] .social-grid a { color: #f4f0e5; background: #202936; }
html[data-theme="dark"] .social-grid a:hover { color: var(--white); background: var(--social-color, #000); }
html[data-theme="dark"] .social-grid .social-x, html[data-theme="dark"] .social-grid .social-tiktok, html[data-theme="dark"] .social-grid .social-threads { background: #202936; }
html[data-theme="dark"] .social-grid .social-x img, html[data-theme="dark"] .social-grid .social-tiktok img { filter: none; }
html[data-theme="dark"] .social-grid .social-threads img { filter: invert(1); }
html[data-theme="dark"] .social-grid .social-x:hover, html[data-theme="dark"] .social-grid .social-tiktok:hover, html[data-theme="dark"] .social-grid .social-threads:hover { color: var(--white); background: #000; }
html[data-theme="dark"] .social-grid .social-x:hover img, html[data-theme="dark"] .social-grid .social-tiktok:hover img, html[data-theme="dark"] .social-grid .social-threads:hover img { filter: invert(1); }

@media (max-width: 980px) {
  html[data-theme="dark"] .main-nav { background: #10151d; border-bottom-color: var(--yellow); }
  html[data-theme="dark"] .nav-links a { color: var(--ink); }
}

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