:root {
  --ink: #111111;
  --coal: #171717;
  --paper: #f7f9fb;
  --white: #ffffff;
  --line: rgba(17, 17, 17, 0.14);
  --line-light: rgba(255, 255, 255, 0.22);
  --sun: #ffcf35;
  --ember: #ff5c2a;
  --aqua: #16b8b1;
  --leaf: #55b85a;
  --rose: #e83f61;
  --royal: #2867ff;
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.24);
  --header-height: 76px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
  line-height: 1;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

p {
  overflow-wrap: anywhere;
}

ul {
  margin: 0;
  padding-left: 1.2rem;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--sun);
  border: 2px solid var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.scroll-progress {
  position: fixed;
  z-index: 80;
  left: 0;
  top: 0;
  width: calc(var(--page-progress, 0) * 100%);
  height: 4px;
  background: linear-gradient(90deg, var(--sun), var(--aqua), var(--rose));
  pointer-events: none;
}

.site-header {
  position: fixed;
  z-index: 70;
  top: 14px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(17, 17, 17, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.site-header.is-scrolled {
  background: rgba(17, 17, 17, 0.88);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: var(--sun);
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  font-weight: 900;
  line-height: 1;
}

.brand-mark-game {
  color: var(--white);
  background: var(--royal);
  border-color: rgba(255, 255, 255, 0.3);
}

.brand-copy {
  display: grid;
  min-width: 0;
}

.brand-copy strong {
  font-size: 1rem;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-copy span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  line-height: 1.3;
}

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

.site-nav a,
.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.92rem;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.site-nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.header-cta {
  color: var(--ink);
  background: var(--sun);
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
  background: var(--white);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 44px;
  grid-template-rows: repeat(3, 2px);
  align-content: center;
  justify-items: center;
  row-gap: 5px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  font: inherit;
  font-size: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 118px 0 56px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(23, 23, 23, 0.92), rgba(23, 23, 23, 0.76)),
    #171717;
  isolation: isolate;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.hero-checker {
  position: absolute;
  inset: -12%;
  opacity: 0.22;
  background-image:
    linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.2) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.2) 75%);
  background-position:
    0 0,
    0 30px,
    30px -30px,
    -30px 0;
  background-size: 60px 60px;
  transform: translate3d(0, var(--parallax-y, 0), 0) rotate(-10deg);
}

.hero-ribbons {
  position: absolute;
  inset: -20% -10% auto;
  height: 70%;
  opacity: 0.5;
  background:
    linear-gradient(108deg, transparent 0 13%, rgba(255, 207, 53, 0.38) 13% 16%, transparent 16% 31%, rgba(22, 184, 177, 0.32) 31% 34%, transparent 34% 68%, rgba(232, 63, 97, 0.34) 68% 71%, transparent 71%),
    linear-gradient(162deg, transparent 0 40%, rgba(255, 92, 42, 0.42) 40% 43%, transparent 43%);
  transform: translate3d(0, var(--parallax-y, 0), 0);
}

.hero-burst {
  position: absolute;
  right: -7%;
  top: 6%;
  width: min(720px, 62vw);
  opacity: 0.3;
  filter: saturate(1.14) contrast(1.05);
  mix-blend-mode: screen;
  transform: translate3d(0, var(--parallax-y, 0), 0) rotate(7deg);
}

.hero-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: 30px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 24px;
  max-width: 650px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  color: var(--ink);
  background: var(--sun);
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 12ch;
  font-size: 4.8rem;
}

.hero-lede {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 2px solid currentColor;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--ink);
  background: var(--sun);
  border-color: var(--sun);
  box-shadow: 0 12px 28px rgba(255, 207, 53, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--white);
  border-color: var(--white);
}

.button-secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.button-outline-dark {
  color: var(--ink);
  background: transparent;
  border-color: rgba(17, 17, 17, 0.24);
}

.button-outline-dark:hover,
.button-outline-dark:focus-visible {
  color: var(--white);
  background: var(--coal);
  border-color: var(--coal);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 4px 0 0;
}

.hero-facts div {
  min-height: 88px;
  padding: 13px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 4px 0 0;
  color: var(--white);
  font-weight: 900;
}

.hero-stage {
  position: relative;
  min-height: 600px;
  transform:
    perspective(900px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform 220ms ease;
}

.hero-cast {
  position: absolute;
  right: -130px;
  bottom: -105px;
  width: min(760px, 62vw);
  max-width: none;
  filter: drop-shadow(0 36px 54px rgba(0, 0, 0, 0.45));
  transform: translate3d(0, var(--parallax-y, 0), 70px);
}

.floating-piece {
  position: absolute;
  width: 175px;
  opacity: 0.82;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.34));
  pointer-events: none;
}

.floating-piece-king {
  left: 7%;
  top: 8%;
  animation: float-one 6s ease-in-out infinite;
}

.floating-piece-knight {
  right: 8%;
  top: 20%;
  animation: float-two 7s ease-in-out infinite;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 74px;
  height: 40px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
  transform: translateX(-50%);
}

.scroll-cue::after {
  content: "";
  position: absolute;
  bottom: -18px;
  width: 2px;
  height: 18px;
  background: var(--sun);
}

.section-band {
  padding: 112px 0;
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 56px;
}

.game-showcase {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(22, 184, 177, 0.1), transparent 35%),
    var(--paper);
}

.game-showcase::before {
  content: "";
  position: absolute;
  inset: 54px 0 auto;
  height: 2px;
  background:
    linear-gradient(90deg, transparent, rgba(17, 17, 17, 0.2), transparent);
}

.showcase-copy,
.studio-copy,
.section-heading {
  display: grid;
  gap: 20px;
}

.showcase-copy h2,
.studio-copy h2,
.section-heading h2,
.world-copy h2,
.contact h2 {
  font-size: 3.45rem;
}

.showcase-copy p,
.studio-copy p,
.world-copy p,
.contact p {
  max-width: 62ch;
  color: rgba(17, 17, 17, 0.72);
  font-size: 1.08rem;
}

.release-notes {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.release-notes div {
  min-height: 84px;
  display: grid;
  gap: 3px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 8px solid var(--aqua);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(17, 17, 17, 0.08);
}

.release-notes div:nth-child(2) {
  border-left-color: var(--sun);
}

.release-notes div:nth-child(3) {
  border-left-color: var(--rose);
}

.release-notes strong {
  font-size: 1rem;
}

.release-notes span {
  color: rgba(17, 17, 17, 0.66);
}

.showcase-art {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
}

.showcase-art::before {
  content: "";
  position: absolute;
  inset: 58px -30px 78px;
  background:
    linear-gradient(45deg, rgba(255, 207, 53, 0.28), transparent 34%),
    linear-gradient(140deg, transparent 0 60%, rgba(232, 63, 97, 0.22) 60% 100%),
    var(--white);
  clip-path: polygon(7% 0, 100% 10%, 92% 100%, 0 88%);
  transform: rotate(-2deg);
}

.app-icon-lockup {
  position: absolute;
  z-index: 3;
  left: 0;
  top: 24px;
  display: grid;
  gap: 10px;
  width: 190px;
  padding: 12px;
  color: var(--white);
  background: var(--coal);
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(17, 17, 17, 0.24);
}

.app-icon-lockup img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.app-icon-lockup span {
  font-size: 0.86rem;
  font-weight: 900;
}

.board-art {
  position: relative;
  z-index: 2;
  width: min(460px, 88%);
  filter: drop-shadow(0 30px 34px rgba(0, 0, 0, 0.24));
  transform: translate3d(0, var(--parallax-y, 0), 0) rotate(6deg);
}

.blast-logo {
  position: absolute;
  z-index: 4;
  right: -8px;
  bottom: 34px;
  width: min(390px, 78%);
  filter: drop-shadow(0 24px 32px rgba(17, 17, 17, 0.26));
}

.world-break {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 90px 20px;
  color: var(--white);
  background: var(--coal);
}

.world-break::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.82), rgba(17, 17, 17, 0.2) 62%),
    linear-gradient(0deg, rgba(17, 17, 17, 0.9), transparent 38%);
}

.world-image {
  position: absolute;
  inset: -10% 0 auto;
  width: 100%;
  height: 118%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.06);
}

.world-copy {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  display: grid;
  gap: 20px;
  margin: 0 auto;
}

.world-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.studio {
  background:
    linear-gradient(180deg, rgba(85, 184, 90, 0.12), transparent 50%),
    var(--white);
}

.studio-ledger {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.studio-ledger div {
  min-height: 138px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 18px;
  color: var(--white);
  background: var(--coal);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.15);
}

.studio-ledger div:nth-child(2) {
  background: var(--royal);
}

.studio-ledger div:nth-child(3) {
  color: var(--ink);
  background: var(--sun);
}

.studio-ledger div:nth-child(4) {
  background: var(--aqua);
}

.studio-ledger span {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  opacity: 0.76;
}

.studio-ledger strong {
  font-size: 1.18rem;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.craft {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(116deg, rgba(255, 207, 53, 0.22), transparent 28%),
    linear-gradient(58deg, transparent 0 64%, rgba(22, 184, 177, 0.28) 64% 100%),
    var(--coal);
}

.craft .section-shell {
  display: grid;
  gap: 42px;
}

.craft .eyebrow {
  color: var(--ink);
}

.craft-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.craft-card {
  min-height: 292px;
  display: grid;
  align-content: space-between;
  gap: 20px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.craft-card span {
  color: var(--sun);
  font-size: 0.86rem;
  font-weight: 900;
}

.craft-card h3 {
  font-size: 1.42rem;
}

.craft-card p {
  color: rgba(255, 255, 255, 0.76);
}

.contact {
  padding: 116px 20px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(232, 63, 97, 0.12), transparent 34%),
    linear-gradient(126deg, transparent 0 60%, rgba(255, 207, 53, 0.26) 60% 100%),
    var(--paper);
}

.contact-shell {
  width: min(920px, 100%);
  display: grid;
  gap: 24px;
  margin: 0 auto;
  text-align: center;
  justify-items: center;
}

.contact .button-primary {
  color: var(--ink);
  border-color: var(--ink);
}

.support {
  background:
    linear-gradient(180deg, rgba(40, 103, 255, 0.08), transparent 42%),
    var(--white);
}

.support .section-shell {
  display: grid;
  gap: 42px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.support-card {
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
  color: var(--ink);
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.support-card:hover,
.support-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(40, 103, 255, 0.28);
  box-shadow: 0 24px 42px rgba(17, 17, 17, 0.14);
}

.support-card span {
  color: var(--royal);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.support-card h3 {
  font-size: 1.42rem;
}

.support-card p {
  color: rgba(17, 17, 17, 0.72);
}

.policy-page {
  background:
    linear-gradient(120deg, rgba(22, 184, 177, 0.1), transparent 34%),
    var(--paper);
}

.policy-shell {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
}

.policy-hero {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px 0 58px;
  color: var(--white);
  background: var(--coal);
}

.policy-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.36;
}

.policy-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.92), rgba(17, 17, 17, 0.4)),
    linear-gradient(0deg, rgba(17, 17, 17, 0.95), transparent 45%);
}

.policy-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.policy-hero .policy-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.policy-back-link {
  width: fit-content;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
  text-decoration: none;
}

.policy-back-link:hover,
.policy-back-link:focus-visible {
  color: var(--sun);
}

.policy-hero h1 {
  max-width: 12ch;
  font-size: 4rem;
}

.policy-updated {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.policy-content {
  display: grid;
  gap: 18px;
  padding: 76px 0 104px;
}

.policy-content h2 {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 1.72rem;
  line-height: 1.1;
}

.policy-content h3 {
  margin-top: 12px;
  font-size: 1.14rem;
  line-height: 1.2;
}

.policy-content p,
.policy-content li {
  color: rgba(17, 17, 17, 0.76);
}

.policy-content a {
  color: var(--royal);
  font-weight: 800;
}

.policy-content li + li {
  margin-top: 8px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px min(5vw, 58px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.footer-brand .brand-copy span {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer p {
  font-size: 0.92rem;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

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

.footer-links a[aria-current="page"] {
  color: var(--sun);
}

.footer-note {
  color: rgba(255, 255, 255, 0.54);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

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

[data-parallax] {
  --parallax-y: 0px;
  will-change: transform;
}

@keyframes float-one {
  0%,
  100% {
    transform: translate3d(0, 0, 90px) rotate(-8deg);
  }

  50% {
    transform: translate3d(10px, -18px, 90px) rotate(5deg);
  }
}

@keyframes float-two {
  0%,
  100% {
    transform: translate3d(0, 0, 110px) rotate(9deg);
  }

  50% {
    transform: translate3d(-14px, 16px, 110px) rotate(-7deg);
  }
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .nav-open .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 98px;
    display: grid;
    gap: 8px;
    padding: 14px;
    background: rgba(17, 17, 17, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-open .site-nav a {
    min-height: 48px;
    justify-content: flex-start;
    padding: 0 14px;
    background: rgba(255, 255, 255, 0.06);
  }

  .hero {
    min-height: 84svh;
    padding-bottom: 42px;
  }

  .hero-inner,
  .two-column {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero h1 {
    max-width: 13ch;
    font-size: 3.7rem;
  }

  .hero-stage {
    min-height: 390px;
  }

  .hero-cast {
    right: -80px;
    bottom: -105px;
    width: min(700px, 94vw);
  }

  .floating-piece {
    width: 130px;
  }

  .showcase-copy h2,
  .studio-copy h2,
  .section-heading h2,
  .world-copy h2,
  .contact h2 {
    font-size: 2.7rem;
  }

  .showcase-art {
    min-height: 540px;
  }

  .craft-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 66px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: var(--header-height);
    padding: 10px;
  }

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

  .brand-copy strong {
    font-size: 0.95rem;
  }

  .brand-copy span {
    display: none;
  }

  .hero {
    min-height: 82svh;
    padding: 104px 0 34px;
  }

  .hero-inner,
  .section-shell {
    width: min(100% - 28px, 1180px);
  }

  .hero-copy {
    gap: 18px;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: 2.85rem;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-stage {
    position: absolute;
    right: -34%;
    bottom: -92px;
    z-index: 1;
    width: 94%;
    min-height: 310px;
    opacity: 0.52;
    pointer-events: none;
  }

  .hero-cast {
    right: 0;
    bottom: 0;
    width: 100%;
  }

  .floating-piece {
    display: none;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    max-width: 280px;
  }

  .hero-facts div {
    min-height: 70px;
    padding: 10px 12px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 280px;
  }

  .showcase-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 320px;
  }

  .button {
    width: 100%;
    min-height: 48px;
  }

  .scroll-cue {
    display: none;
  }

  .section-band {
    padding: 76px 0;
  }

  .showcase-copy h2,
  .studio-copy h2,
  .section-heading h2,
  .world-copy h2,
  .contact h2 {
    font-size: 2.18rem;
  }

  .showcase-copy p,
  .studio-copy p,
  .world-copy p,
  .contact p {
    font-size: 1rem;
  }

  .showcase-art {
    min-height: 450px;
  }

  .showcase-art::before {
    inset: 70px 0 50px;
  }

  .app-icon-lockup {
    width: 138px;
    left: 8px;
    top: 22px;
  }

  .board-art {
    width: min(320px, 78%);
  }

  .blast-logo {
    right: 0;
    bottom: 40px;
    width: min(310px, 76%);
  }

  .world-break {
    min-height: 560px;
    padding: 70px 14px;
  }

  .world-break::after {
    background:
      linear-gradient(90deg, rgba(17, 17, 17, 0.88), rgba(17, 17, 17, 0.52)),
      linear-gradient(0deg, rgba(17, 17, 17, 0.95), transparent 52%);
  }

  .studio-ledger,
  .craft-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .studio-ledger div,
  .craft-card {
    min-height: 170px;
  }

  .contact {
    padding: 84px 14px;
  }

  .policy-shell {
    width: min(100% - 28px, 980px);
  }

  .policy-hero {
    min-height: 360px;
    padding: 110px 0 42px;
  }

  .policy-hero h1 {
    font-size: 2.7rem;
  }

  .policy-content {
    padding: 54px 0 76px;
  }

  .policy-content h2 {
    font-size: 1.46rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 18px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 2.45rem;
  }

  .showcase-copy h2,
  .studio-copy h2,
  .section-heading h2,
  .world-copy h2,
  .contact h2 {
    font-size: 1.92rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-parallax] {
    --parallax-y: 0px !important;
  }
}
