:root {
  --ink: #f3efe4;
  --muted: #b8b5aa;
  --coal: #11130f;
  --charcoal: #191b18;
  --moss: #30372b;
  --brass: #d6a84e;
  --ember: #b74b38;
  --teal: #58c6b8;
  --line: rgba(243, 239, 228, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --cursor-x: 50vw;
  --cursor-y: 50vh;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
section {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  background: var(--coal);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: linear-gradient(180deg, #11130f, #0b0d0a 56%, #11130f);
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  padding: 10px 12px;
  background: var(--brass);
  color: #14130e;
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(17, 19, 15, 0.84), rgba(17, 19, 15, 0));
  transition: background 180ms ease, border-color 180ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(17, 19, 15, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 760;
  letter-spacing: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.brand-text {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 14px;
  color: rgba(243, 239, 228, 0.82);
  font-size: 14px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.nav-cta {
  border: 1px solid var(--line);
  background: rgba(243, 239, 228, 0.08);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(17, 19, 15, 0.52);
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(320px, 0.78fr);
  gap: clamp(32px, 6vw, 116px);
  align-items: center;
  padding: 112px clamp(20px, 5vw, 76px) 104px;
  overflow: hidden;
  perspective: 1200px;
  background:
    linear-gradient(116deg, rgba(88, 198, 184, 0.15) 0%, rgba(88, 198, 184, 0.02) 34%, transparent 52%),
    linear-gradient(244deg, rgba(214, 168, 78, 0.22) 0%, rgba(214, 168, 78, 0.05) 28%, transparent 56%),
    linear-gradient(180deg, #11130f 0%, #171916 48%, #0b0d0a 100%);
}

.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(17, 19, 15, 0.92) 0%, rgba(17, 19, 15, 0.44) 50%, rgba(17, 19, 15, 0.72) 100%),
    linear-gradient(0deg, rgba(17, 19, 15, 0.88) 0%, rgba(17, 19, 15, 0.1) 54%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  transform: translate3d(calc(var(--mx, 0) * 8px), calc(var(--my, 0) * 5px), 0);
}

.hero-snapshot {
  position: relative;
  z-index: 3;
  justify-self: stretch;
  display: grid;
  gap: 14px;
  max-width: 720px;
  transform: translate3d(calc(var(--mx, 0) * -5px), calc(var(--my, 0) * -3px), 0);
}

.snapshot-main {
  border: 1px solid var(--line);
  background: rgba(243, 239, 228, 0.055);
  backdrop-filter: blur(12px);
}

.snapshot-main {
  min-height: 310px;
  display: grid;
  align-content: end;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(145deg, rgba(214, 168, 78, 0.16), rgba(88, 198, 184, 0.07) 48%, rgba(243, 239, 228, 0.045)),
    rgba(17, 19, 15, 0.34);
}

.snapshot-main span {
  color: var(--brass);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.snapshot-main strong {
  margin: 18px 0 18px;
  color: var(--ink);
  font-size: clamp(46px, 5.6vw, 88px);
  line-height: 0.9;
  letter-spacing: 0;
}

.snapshot-main p {
  max-width: 480px;
  margin: 0;
  color: rgba(243, 239, 228, 0.78);
  font-size: 18px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 20px;
  font-size: clamp(54px, 10vw, 128px);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  font-size: 24px;
  line-height: 1.08;
}

.hero-copy {
  max-width: 590px;
  color: rgba(243, 239, 228, 0.84);
  font-size: clamp(18px, 2vw, 24px);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  font-weight: 760;
  position: relative;
  overflow: hidden;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: translateX(-120%);
  transition: transform 420ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(214, 168, 78, 0.18);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(120%);
}

.button-primary {
  background: var(--brass);
  color: #14130e;
}

.button-secondary {
  border-color: rgba(243, 239, 228, 0.32);
  background: rgba(17, 19, 15, 0.36);
}

.status-strip {
  position: absolute;
  left: clamp(20px, 5vw, 76px);
  right: clamp(20px, 5vw, 76px);
  bottom: 18px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  color: rgba(243, 239, 228, 0.72);
}

.status-strip span {
  min-width: 0;
  padding: 14px 18px 0 0;
  font-size: 14px;
}

.status-strip strong {
  display: block;
  color: var(--ink);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section {
  padding: 96px clamp(20px, 5vw, 76px);
}

.intro,
.games,
.services,
.craft,
.manifesto,
.signal {
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}

.intro {
  background: var(--coal);
}

.intro-grid,
.section-heading,
.manifesto,
.signal {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: start;
}

.intro-grid p,
.section-heading p,
.manifesto-panel p,
.signal-copy p {
  color: var(--muted);
  font-size: 18px;
}

.craft {
  background: linear-gradient(180deg, #171916, #222018 52%, #171916);
}

.games {
  background:
    linear-gradient(126deg, transparent 0 18%, rgba(88, 198, 184, 0.08) 19%, transparent 32%),
    linear-gradient(234deg, transparent 0 54%, rgba(183, 75, 56, 0.08) 55%, transparent 70%),
    linear-gradient(180deg, #11130f 0%, #171916 46%, #11130f 100%);
}

.services {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(214, 168, 78, 0.16), transparent 26rem),
    linear-gradient(135deg, #10120f 0%, #171916 48%, #10120f 100%);
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(243, 239, 228, 0.05) 12.15% 12.25%, transparent 12.4% 100%),
    linear-gradient(180deg, transparent 0 58%, rgba(88, 198, 184, 0.08) 58.2% 58.4%, transparent 58.6% 100%);
  opacity: 0.52;
}

.services-lead,
.services-board {
  position: relative;
  z-index: 1;
}

.services-lead {
  max-width: 980px;
}

.services-lead h2 {
  max-width: 13ch;
  margin-bottom: 22px;
}

.services-lead p {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}

.services-board {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 18px;
  margin-top: 46px;
}

.service-primary,
.service-card {
  border: 1px solid var(--line);
  background: rgba(243, 239, 228, 0.06);
  box-shadow: var(--shadow);
}

.service-primary {
  min-height: 560px;
  display: grid;
  align-content: end;
  padding: clamp(28px, 5vw, 56px);
  background:
    linear-gradient(145deg, rgba(214, 168, 78, 0.16), rgba(88, 198, 184, 0.08) 44%, rgba(17, 19, 15, 0.84)),
    #151712;
}

.service-label {
  width: fit-content;
  margin-bottom: 20px;
  border: 1px solid rgba(214, 168, 78, 0.46);
  padding: 9px 11px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.service-primary h3 {
  max-width: 13ch;
  margin-bottom: 20px;
  font-size: clamp(38px, 6vw, 76px);
}

.service-primary p {
  max-width: 760px;
  color: rgba(243, 239, 228, 0.78);
  font-size: 18px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  border-top: 1px solid rgba(243, 239, 228, 0.22);
  padding-top: 12px;
  color: rgba(243, 239, 228, 0.84);
  font-size: 14px;
}

.service-stack {
  display: grid;
  gap: 18px;
}

.service-card {
  min-height: 174px;
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateX(8px);
  border-color: color-mix(in srgb, var(--brass) 54%, transparent);
  background: rgba(243, 239, 228, 0.09);
}

.service-card .card-number {
  margin-bottom: 26px;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.game-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.game-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --card-glow-x: 50%;
  --card-glow-y: 20%;
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #151712;
  box-shadow: var(--shadow);
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.game-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(circle at var(--card-glow-x) var(--card-glow-y), rgba(243, 239, 228, 0.16), transparent 20rem);
  opacity: 0;
  transition: opacity 180ms ease;
}

.game-card:hover,
.game-card:focus-within {
  border-color: color-mix(in srgb, var(--brass) 48%, transparent);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.5);
}

.game-card:hover::before,
.game-card:focus-within::before {
  opacity: 1;
}

.game-art {
  position: relative;
  aspect-ratio: 460 / 215;
  overflow: hidden;
  isolation: isolate;
  background: #0c0f0b;
}

.game-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.03);
  transition: transform 500ms ease, filter 500ms ease;
}

.game-card:hover .game-art img,
.game-card:focus-within .game-art img {
  filter: saturate(1.18) contrast(1.08);
  transform: scale(1.1);
}

.game-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(17, 19, 15, 0) 42%, rgba(17, 19, 15, 0.72) 100%),
    linear-gradient(90deg, rgba(17, 19, 15, 0.48), rgba(17, 19, 15, 0.08) 58%, rgba(17, 19, 15, 0.42));
}

.game-art::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 22px;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, var(--brass), color-mix(in srgb, var(--teal) 52%, transparent), transparent);
}

.thunder .game-art {
  border-top: 3px solid color-mix(in srgb, var(--teal) 58%, transparent);
}

.primal .game-art {
  border-top: 3px solid color-mix(in srgb, var(--ember) 64%, transparent);
}

.game-copy {
  position: relative;
  z-index: 2;
  padding: 28px;
  background: linear-gradient(180deg, rgba(17, 19, 15, 0.92), #11130f);
  transform: translateZ(28px);
}

.game-stage {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.game-copy h3 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 50px);
}

.game-copy p {
  color: var(--muted);
  font-size: 17px;
}

.game-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.game-tags li {
  border: 1px solid rgba(243, 239, 228, 0.2);
  padding: 8px 10px;
  color: rgba(243, 239, 228, 0.78);
  font-size: 13px;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.game-card:hover .game-tags li {
  border-color: color-mix(in srgb, var(--brass) 42%, transparent);
  color: var(--ink);
  transform: translateY(-2px);
}

.steam-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--brass);
  font-size: 14px;
  font-weight: 780;
}

.steam-link:hover,
.steam-link:focus-visible {
  color: var(--ink);
}

.craft-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.craft-card {
  min-height: 280px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(243, 239, 228, 0.055);
  box-shadow: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.craft-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 24px 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--brass), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.craft-card:hover,
.craft-card.active {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--brass) 58%, transparent);
  background: linear-gradient(145deg, color-mix(in srgb, var(--brass) 16%, transparent), color-mix(in srgb, var(--teal) 9%, transparent));
  box-shadow: var(--shadow);
}

.craft-card:hover::after,
.craft-card.active::after {
  transform: scaleX(1);
}

.card-number {
  display: block;
  margin-bottom: 72px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.craft-card p {
  color: var(--muted);
}

.manifesto {
  background: #10120f;
  align-items: stretch;
}

.manifesto-panel {
  padding-right: clamp(0px, 4vw, 80px);
}

.metrics {
  display: grid;
  gap: 12px;
}

.metrics div {
  min-height: 116px;
  display: grid;
  align-content: center;
  border-left: 3px solid var(--ember);
  padding: 20px 24px;
  background: rgba(243, 239, 228, 0.06);
  transition: transform 180ms ease, background 180ms ease;
}

.metrics div:hover {
  transform: translateX(8px);
  background: rgba(243, 239, 228, 0.09);
}

.metrics strong {
  display: block;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
}

.metrics span {
  color: var(--muted);
}

.signal {
  background: linear-gradient(90deg, var(--moss), #181915);
  align-items: center;
}

.signal .button {
  justify-self: end;
}

.legal-page {
  min-height: 100vh;
  padding-top: 76px;
}

.legal-hero {
  background:
    radial-gradient(circle at 80% 12%, rgba(214, 168, 78, 0.14), transparent 26rem),
    linear-gradient(180deg, #11130f, #171916);
}

.legal-hero h1 {
  max-width: none;
  margin-bottom: 18px;
  font-size: clamp(52px, 8vw, 112px);
}

.legal-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
}

.legal-content {
  background: #10120f;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 18px;
}

.legal-card {
  border: 1px solid var(--line);
  padding: clamp(24px, 4vw, 38px);
  background: rgba(243, 239, 228, 0.055);
}

.legal-card-wide {
  grid-column: 1 / -1;
}

.legal-card h2 {
  margin-bottom: 24px;
  font-size: clamp(28px, 4vw, 44px);
}

.legal-card dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.legal-card dt {
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.legal-card dd {
  margin: 5px 0 0;
  color: rgba(243, 239, 228, 0.84);
  font-size: 18px;
}

.legal-card a {
  color: var(--brass);
}

.legal-card p {
  max-width: 780px;
  color: rgba(243, 239, 228, 0.84);
  font-size: 18px;
}

.legal-note {
  margin-top: 18px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 76px);
  border-top: 1px solid var(--line);
  color: rgba(243, 239, 228, 0.68);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ink);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms ease, transform 620ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 840px) {
  html,
  section {
    scroll-margin-top: 74px;
  }

  .site-header {
    padding: 12px 16px;
    background: rgba(17, 19, 15, 0.9);
    border-bottom: 1px solid rgba(243, 239, 228, 0.1);
    backdrop-filter: blur(14px);
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .brand-text {
    font-size: 14px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 22;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 21;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 12px;
    background: rgba(17, 19, 15, 0.96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-width: min(280px, calc(100vw - 48px));
    border-bottom: 1px solid rgba(243, 239, 228, 0.1);
    padding: 14px 0;
    text-align: center;
    font-size: 24px;
  }

  .site-nav .nav-cta {
    margin-top: 8px;
    border: 1px solid var(--line);
    padding: 14px 18px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 96px 18px 28px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(17, 19, 15, 0.86), rgba(17, 19, 15, 0.46)),
      linear-gradient(0deg, rgba(17, 19, 15, 0.96) 0%, rgba(17, 19, 15, 0.18) 58%);
  }

  .hero-content {
    max-width: 100%;
    transform: none;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 10px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  h1 {
    max-width: 8.5ch;
    margin-bottom: 16px;
    font-size: clamp(52px, 18vw, 92px);
    line-height: 0.9;
  }

  h2 {
    font-size: clamp(32px, 11vw, 52px);
    line-height: 1;
  }

  h3 {
    font-size: 22px;
  }

  .hero-copy {
    max-width: 33rem;
    font-size: 18px;
  }

  .status-strip,
  .intro-grid,
  .section-heading,
  .manifesto,
  .signal,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .hero-snapshot {
    max-width: none;
    transform: none;
  }

  .snapshot-main {
    min-height: 176px;
  }

  .status-strip {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 2px;
    gap: 0;
  }

  .craft-grid {
    grid-template-columns: 1fr;
  }

  .services-board,
  .game-showcase {
    grid-template-columns: 1fr;
  }

  .service-primary {
    min-height: auto;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .craft-card {
    min-height: 184px;
  }

  .card-number {
    margin-bottom: 28px;
  }

  .signal .button {
    justify-self: start;
  }

}

@media (max-width: 560px) {
  .brand-text {
    max-width: 170px;
    white-space: normal;
    line-height: 1.05;
  }

  .button {
    width: 100%;
  }

  .snapshot-main {
    padding: 18px;
  }

  .snapshot-main strong {
    margin-top: 12px;
    font-size: clamp(42px, 13vw, 62px);
  }

  .snapshot-main p {
    font-size: 16px;
  }

  .status-strip {
    border-top: 0;
    gap: 10px;
  }

  .status-strip span {
    border-top: 1px solid var(--line);
    padding: 12px 0 0;
  }

  .section {
    padding: 64px 18px;
  }

  .intro-grid,
  .section-heading,
  .manifesto,
  .signal {
    gap: 20px;
  }

  .intro-grid p,
  .section-heading p,
  .manifesto-panel p,
  .signal-copy p,
  .services-lead p,
  .service-primary p,
  .legal-hero p,
  .legal-card p,
  .legal-card dd {
    font-size: 16px;
  }

  .game-showcase,
  .services-board,
  .craft-grid,
  .metrics {
    gap: 14px;
    margin-top: 28px;
  }

  .game-copy,
  .service-card,
  .craft-card,
  .metrics div {
    padding: 20px;
  }

  .game-copy h3 {
    font-size: clamp(28px, 10vw, 38px);
  }

  .game-tags li {
    padding: 7px 9px;
    font-size: 12px;
  }

  .service-primary {
    padding: 22px;
  }

  .service-primary h3 {
    max-width: 100%;
    font-size: clamp(34px, 11vw, 48px);
  }

  .legal-page {
    padding-top: 58px;
  }

  .legal-hero h1 {
    font-size: clamp(42px, 14vw, 64px);
  }

  .legal-card {
    padding: 20px;
  }

  .legal-card h2 {
    font-size: 28px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 380px) {
  .brand-text {
    max-width: 132px;
    font-size: 13px;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding-inline: 14px;
  }

  h1 {
    font-size: clamp(46px, 17vw, 64px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .section {
    padding-inline: 14px;
  }

  .footer-links {
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
