@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/inter/inter_28pt_medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/inter/inter_28pt_bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/inter/inter_28pt_extra_bold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/inter/inter_28pt_black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --canvas: #f0efe9;
  --grid: #dcdad2;
  --ink: #000000;
  --coral: #ff5c5c;
  --sky: #3b9eff;
  --canary: #ffd13b;
  --mint: #49db8a;
  --paper: #ffffff;
  --shadow: rgba(0, 0, 0, 0.14);
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --type-title: clamp(46px, 8vw, 92px);
  --type-hero-title: clamp(58px, 11vw, 132px);
  --type-page-title: clamp(42px, 8vw, 78px);
  --type-section-title: clamp(34px, 5vw, 58px);
  --type-subtitle: clamp(22px, 3vw, 34px);
  --type-lede: clamp(20px, 2.6vw, 30px);
  --type-body: 18px;
  --type-body-large: clamp(18px, 2.3vw, 23px);
  --type-small: 14px;
  --leading-tight: 0.94;
  --leading-title: 0.92;
  --leading-copy: 1.58;
  --tracking-normal: 0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--type-body);
  font-weight: 500;
  line-height: var(--leading-copy);
  letter-spacing: var(--tracking-normal);
}

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

.site-header,
.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header {
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1;
}

.brand-mark {
  width: 30px;
  height: 30px;
  display: inline-block;
  background:
    linear-gradient(90deg, var(--paper) 0 50%, var(--coral) 50% 100%) 0 0 / 100% 50% no-repeat,
    linear-gradient(90deg, var(--paper) 0 50%, var(--sky) 50% 100%) 0 100% / 100% 50% no-repeat;
  border: 4px solid var(--ink);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: var(--type-small);
  font-weight: 800;
  line-height: 1.2;
}

.menu-toggle {
  display: none;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border: 4px solid var(--ink);
  background: var(--canary);
  box-shadow: 5px 5px 0 var(--ink);
  cursor: pointer;
}

.menu-toggle-line {
  display: block;
  width: 28px;
  height: 4px;
  background: var(--ink);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.nav-links a,
.site-footer a {
  border-bottom: 3px solid transparent;
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.site-footer a:hover {
  border-bottom-color: var(--ink);
}

.hero {
  width: min(1120px, calc(100% - 32px));
  min-height: calc(100vh - 150px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 480px);
  align-items: center;
  gap: 56px;
  padding: 32px 0 64px;
}

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

.eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
blockquote,
ul,
ol,
figure {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: var(--type-title);
  font-weight: 900;
  line-height: var(--leading-title);
  letter-spacing: var(--tracking-normal);
}

h2 {
  margin-bottom: 12px;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.15;
}

p,
li {
  font-size: var(--type-body);
  line-height: var(--leading-copy);
}

strong {
  font-weight: 900;
}

blockquote {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 6px solid var(--ink);
  background: var(--grid);
  font-size: var(--type-body-large);
  font-weight: 800;
  line-height: 1.38;
}

.type-title {
  font-family: var(--font-display);
  font-size: var(--type-title);
  font-weight: 900;
  line-height: var(--leading-title);
}

.type-hero-title {
  font-family: var(--font-display);
  font-size: var(--type-hero-title);
  font-weight: 900;
  line-height: 0.88;
}

.type-page-title {
  font-family: var(--font-display);
  font-size: var(--type-page-title);
  font-weight: 900;
  line-height: 1;
}

.type-section-title {
  font-family: var(--font-display);
  font-size: var(--type-section-title);
  font-weight: 900;
  line-height: 0.98;
}

.type-subtitle {
  font-size: var(--type-subtitle);
  font-weight: 900;
  line-height: 1.12;
}

.type-lede {
  font-size: var(--type-lede);
  font-weight: 800;
  line-height: 1.35;
}

.type-body {
  font-size: var(--type-body);
  font-weight: 500;
  line-height: var(--leading-copy);
}

.type-body-large {
  font-size: var(--type-body-large);
  font-weight: 500;
  line-height: 1.62;
}

.type-small-label {
  font-size: var(--type-small);
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.type-quote {
  font-size: var(--type-body-large);
  font-weight: 800;
  line-height: 1.38;
}

.subtitle {
  margin-bottom: 18px;
  font-size: var(--type-subtitle);
  font-weight: 900;
  line-height: 1.12;
}

.lede,
.stack p,
.copy-list {
  font-size: var(--type-body);
  line-height: var(--leading-copy);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 4px solid var(--ink);
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--ink);
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1;
}

.button:hover {
  transform: translate(2px, 2px);
  box-shadow: 4px 4px 0 var(--ink);
}

.button.primary {
  background: var(--canary);
}

.phone-frame {
  justify-self: center;
  width: min(100%, 430px);
  aspect-ratio: 9 / 16;
  padding: 28px;
  border: 5px solid var(--ink);
  background: #6f6e69;
  box-shadow: 14px 14px 0 var(--ink);
}

.game-card {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  justify-items: center;
  gap: 30px;
  padding: 54px 0;
  background: var(--canvas);
}

.score-preview {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
}

.grid-preview {
  width: min(100%, 320px);
  aspect-ratio: 1;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  border: 4px solid var(--ink);
  background: var(--ink);
  gap: 4px;
}

.grid-preview span,
.dock-slot,
.dock-slot i {
  background: var(--grid);
}

.grid-preview span.red,
.dock-slot i.red {
  background: var(--coral);
}

.grid-preview span.blue,
.dock-slot i.blue {
  background: var(--sky);
}

.grid-preview span.yellow,
.dock-slot i.yellow {
  background: var(--canary);
}

.grid-preview span.green,
.dock-slot i.green {
  background: var(--mint);
}

.dock-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(100%, 340px);
}

.dock-slot {
  position: relative;
  aspect-ratio: 1;
  border: 4px solid var(--ink);
}

.dock-slot i {
  position: absolute;
  display: block;
  width: 28px;
  height: 28px;
  border: 4px solid var(--ink);
}

.dock-slot:first-child i:nth-child(1) { left: 22px; top: 22px; }
.dock-slot:first-child i:nth-child(2) { left: 50px; top: 22px; }
.dock-slot:first-child i:nth-child(3) { left: 22px; top: 50px; }
.dock-slot:first-child i:nth-child(4) { left: 50px; top: 50px; }

.dock-slot .wide {
  left: 18px;
  top: 30px;
  width: 76px;
}

.dock-slot .center {
  left: 42px;
  top: 58px;
}

.dock-slot .tall {
  left: 42px;
  top: 24px;
  height: 62px;
}

.hero-screenshot-card,
.screenshot-tile {
  margin: 0;
  border: 5px solid var(--ink);
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--ink);
}

.hero-screenshot-card {
  justify-self: center;
  width: min(100%, 480px);
  padding: 18px;
  transform: rotate(1.5deg);
}

.hero-screenshot-card img,
.screenshot-tile img {
  width: 100%;
  display: block;
  border: 4px solid var(--ink);
  background: var(--canvas);
  object-fit: cover;
}

.hero-screenshot-card img {
  aspect-ratio: 2064 / 2752;
}

.hero-screenshot-card figcaption,
.screenshot-tile figcaption {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.screenshot-showcase {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 72px;
}

.section-kicker {
  max-width: 680px;
  margin-bottom: 28px;
}

.section-kicker h2 {
  font-size: var(--type-section-title);
  line-height: 0.98;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.screenshot-tile {
  padding: 14px;
}

.screenshot-tile.tall img {
  aspect-ratio: 1284 / 2778;
}

.screenshot-tile.wide {
  grid-column: span 2;
}

.screenshot-tile.wide img {
  aspect-ratio: 2064 / 2752;
}

.feature-band {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-band article,
.content-page {
  border: 5px solid var(--ink);
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--ink);
}

.feature-band article {
  padding: 26px;
}

.content-page {
  width: min(860px, calc(100% - 32px));
  margin: 42px auto 72px;
  padding: clamp(28px, 6vw, 64px);
}

.content-page h1 {
  font-size: var(--type-page-title);
}

.legal-page {
  max-width: 900px;
}

.legal-page h1 {
  line-height: 1;
}

.stack {
  margin-top: 36px;
}

.copy-list {
  padding-left: 24px;
}

.copy-list li + li {
  margin-top: 10px;
}

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

.press-facts div,
.asset-grid article {
  border: 4px solid var(--ink);
  background: var(--grid);
  padding: 18px;
}

.press-facts dt {
  margin-bottom: 6px;
  font-size: var(--type-small);
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.press-facts dd {
  margin: 0;
  font-size: var(--type-body);
  font-weight: 800;
  line-height: 1.3;
}

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

.asset-grid p {
  margin-bottom: 0;
}

.text-link {
  border-bottom: 3px solid var(--ink);
  font-weight: 900;
}

.marketing-page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 72px;
}

.marketing-hero {
  min-height: calc(100vh - 126px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  align-items: center;
  gap: 48px;
  padding: 28px 0 58px;
}

.marketing-hero h1 {
  max-width: 720px;
}

.promo-shot,
.demo-card,
.copy-strip {
  border: 5px solid var(--ink);
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--ink);
}

.promo-shot {
  margin: 0;
  padding: 22px;
}

.promo-shot figcaption {
  margin-top: 18px;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  line-height: 1.35;
}

.mini-phone {
  width: min(100%, 340px);
  margin: 0 auto;
  aspect-ratio: 9 / 14;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 22px;
  padding: 28px;
  background: var(--canvas);
  border: 5px solid var(--ink);
}

.mini-score {
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.mini-grid {
  align-self: center;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 3px;
  aspect-ratio: 1;
  background: var(--ink);
  border: 4px solid var(--ink);
}

.mini-grid span {
  background: var(--grid);
}

.mini-grid .red { background: var(--coral); }
.mini-grid .blue { background: var(--sky); }
.mini-grid .yellow { background: var(--canary); }
.mini-grid .green { background: var(--mint); }

.mini-grid .line {
  animation: clearPulse 950ms ease-in-out infinite alternate;
}

.burst-row {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.burst-row i {
  display: block;
  width: 24px;
  height: 24px;
  border: 4px solid var(--ink);
  background: var(--canary);
  transform: rotate(12deg);
}

.burst-row i:nth-child(2) {
  background: var(--sky);
  transform: translateY(8px) rotate(-16deg);
}

.burst-row i:nth-child(3) {
  background: var(--coral);
  transform: translateY(-4px) rotate(22deg);
}

.burst-row i:nth-child(4) {
  background: var(--mint);
  transform: translateY(6px) rotate(-8deg);
}

.burst-row i:nth-child(5) {
  background: var(--canary);
  transform: rotate(18deg);
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.demo-card {
  padding: 22px;
}

.demo-card img {
  width: 100%;
  display: block;
  border: 4px solid var(--ink);
  background: var(--canvas);
  margin-bottom: 20px;
}

.demo-card p {
  font-size: 17px;
  line-height: var(--leading-copy);
}

.copy-strip {
  margin-top: 28px;
  padding: clamp(28px, 5vw, 48px);
  text-align: center;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 22px 0;
}

.pill-list span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 4px solid var(--ink);
  background: var(--canary);
  font-weight: 900;
  line-height: 1.1;
}

.pill-list span:nth-child(2) {
  background: var(--mint);
}

.pill-list span:nth-child(3) {
  background: var(--sky);
}

.pill-list span:nth-child(4) {
  background: var(--coral);
}

.pill-list span:nth-child(5) {
  background: var(--paper);
}

.mini-info {
  margin-top: 28px;
  margin-bottom: 0;
}

.conversion-page {
  max-width: 1180px;
}

.conversion-hero {
  min-height: calc(100vh - 116px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: center;
  gap: clamp(44px, 8vw, 96px);
  padding: clamp(54px, 9vw, 112px) 0 clamp(70px, 10vw, 130px);
}

.conversion-copy {
  max-width: 760px;
}

.proof-label {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 9px 12px;
  border: 4px solid var(--ink);
  background: var(--mint);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.conversion-hero h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: var(--type-hero-title);
  line-height: 0.88;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 34px;
  font-size: var(--type-lede);
  line-height: 1.35;
  font-weight: 800;
}

.conversion-cta,
.app-store-button {
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
}

.conversion-cta {
  padding: 0 28px;
  border: 5px solid var(--ink);
  background: var(--canary);
  box-shadow: 8px 8px 0 var(--ink);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.conversion-cta:hover {
  transform: translate(3px, 3px);
  box-shadow: 5px 5px 0 var(--ink);
}

.app-store-button {
  gap: 14px;
  width: min(100%, 292px);
  padding: 12px 18px;
  border: 5px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  box-shadow: 8px 8px 0 var(--canary);
  font-family: var(--font-display);
  line-height: 1;
}

.app-store-button small,
.app-store-button strong {
  display: block;
}

.app-store-button small {
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 800;
}

.app-store-button strong {
  font-size: 26px;
  font-weight: 900;
}

.app-store-button.is-pending {
  cursor: default;
}

.app-store-icon {
  width: 46px;
  height: 46px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

.app-store-icon span {
  display: block;
  border: 3px solid var(--paper);
}

.app-store-icon span:nth-child(1) { background: var(--coral); }
.app-store-icon span:nth-child(2) { background: var(--canary); }
.app-store-icon span:nth-child(3) { background: var(--mint); }
.app-store-icon span:nth-child(4) { background: var(--sky); }

.gameplay-showcase,
.shatter-feature {
  border: 5px solid var(--ink);
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--ink);
}

.gameplay-showcase {
  position: relative;
  margin: 0;
  padding: 22px;
}

.gameplay-showcase video,
.shatter-feature video {
  width: 100%;
  display: block;
  border: 5px solid var(--ink);
  background: var(--canvas);
  object-fit: cover;
}

.gameplay-showcase video {
  aspect-ratio: 9 / 16;
}

.gameplay-showcase figcaption {
  margin-top: 18px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.sketch-board {
  position: relative;
  margin: 0;
  padding: 22px;
  background: var(--paper);
  border: 5px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
}

.sketch-board figcaption {
  margin-top: 18px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.sketch-arrow,
.note-arrow {
  position: absolute;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 8;
  transform: rotate(-4deg);
}

.sketch-arrow {
  top: -62px;
  left: -72px;
  width: 170px;
}

.long-copy {
  width: min(880px, 100%);
  margin: 0 auto;
  padding: 22px 0 72px;
}

.copy-block {
  position: relative;
  margin-bottom: clamp(54px, 8vw, 94px);
}

.copy-block h2 {
  margin-bottom: 22px;
  font-size: var(--type-section-title);
  line-height: 0.98;
}

.copy-block p,
.proof-list {
  max-width: 760px;
  font-size: var(--type-body-large);
  line-height: 1.62;
}

.copy-block p + p {
  margin-top: 22px;
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 0 clamp(60px, 9vw, 100px);
}

.fact-strip div {
  min-height: 160px;
  display: grid;
  align-content: center;
  justify-items: center;
  border: 5px solid var(--ink);
  background: var(--paper);
  box-shadow: 7px 7px 0 var(--ink);
}

.fact-strip strong {
  font-size: clamp(56px, 8vw, 92px);
  font-weight: 900;
  line-height: 0.9;
}

.fact-strip span {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.visual-card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 0 auto clamp(64px, 10vw, 122px);
}

.visual-card {
  min-height: 340px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: clamp(24px, 4vw, 38px);
  border: 5px solid var(--ink);
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--ink);
  text-align: center;
}

.visual-card:nth-child(1) {
  background: var(--mint);
}

.visual-card:nth-child(2) {
  background: var(--canary);
}

.visual-card:nth-child(3) {
  background: var(--sky);
}

.visual-card svg {
  width: min(100%, 132px);
  margin-bottom: 28px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 7;
  stroke-linecap: square;
  stroke-linejoin: round;
}

.visual-card h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 0.98;
}

.visual-card p {
  max-width: 230px;
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.split-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  align-items: center;
  gap: clamp(30px, 6vw, 72px);
}

.proof-list {
  margin: 0;
  padding-left: 28px;
}

.proof-list li + li {
  margin-top: 16px;
}

.direction-card {
  width: 100%;
  display: block;
  border: 5px solid var(--ink);
  background: var(--canvas);
  box-shadow: 8px 8px 0 var(--ink);
  transform: rotate(2deg);
}

.founder-note {
  padding: clamp(30px, 6vw, 56px);
  border: 5px solid var(--ink);
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--ink);
}

.note-arrow {
  right: 28px;
  top: -70px;
  width: 138px;
}

.single-cta-panel {
  width: min(880px, 100%);
  margin: 0 auto 88px;
  padding: clamp(34px, 6vw, 64px);
  border: 5px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}

.single-cta-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 0.95;
}

.single-cta-panel p {
  max-width: 640px;
  margin: 0 auto;
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.5;
}

.shatter-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(26px, 5vw, 58px);
  margin: 0 auto 88px;
  padding: clamp(26px, 5vw, 52px);
}

.shatter-copy h2 {
  margin: 0;
  font-size: clamp(52px, 9vw, 110px);
  font-weight: 900;
  line-height: 0.88;
}

.shatter-feature video {
  aspect-ratio: 4 / 5;
}

@keyframes clearPulse {
  from {
    filter: brightness(1);
    transform: scale(1);
  }

  to {
    filter: brightness(1.28);
    transform: scale(0.92);
  }
}

.site-footer {
  min-height: 82px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

@media (max-width: 860px) {
  .site-header {
    position: relative;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    padding: 18px 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .menu-toggle[aria-expanded="true"] {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 var(--ink);
  }

  .nav-links {
    position: absolute;
    top: calc(100% - 8px);
    right: 0;
    z-index: 10;
    width: min(280px, 100%);
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border: 5px solid var(--ink);
    background: var(--paper);
    box-shadow: 8px 8px 0 var(--ink);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    min-height: 52px;
    display: flex;
    align-items: center;
    border-bottom: 3px solid var(--ink);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 36px;
  }

  .hero-copy {
    max-width: none;
  }

  .phone-frame {
    width: min(100%, 360px);
    padding: 20px;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .hero-screenshot-card {
    width: min(100%, 390px);
    box-shadow: 8px 8px 0 var(--ink);
    transform: rotate(0.75deg);
  }

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

  .screenshot-tile.wide {
    grid-column: span 2;
  }

  .feature-band {
    grid-template-columns: 1fr;
  }

  .marketing-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

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

  .conversion-hero,
  .split-copy,
  .shatter-feature {
    grid-template-columns: 1fr;
  }

  .sketch-arrow,
  .note-arrow {
    display: none;
  }

  .fact-strip {
    grid-template-columns: 1fr;
  }

  .visual-card-row {
    grid-template-columns: 1fr;
  }

  .press-facts,
  .asset-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .brand {
    gap: 10px;
    font-size: 16px;
  }

  .brand-mark {
    width: 26px;
    height: 26px;
    border-width: 3px;
  }

  .button {
    width: 100%;
  }

  .app-store-button {
    width: 100%;
  }

  .game-card {
    padding: 36px 0;
  }

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

  .screenshot-tile.wide {
    grid-column: auto;
  }

  .grid-preview {
    width: min(100%, 260px);
    gap: 3px;
  }

  .dock-preview {
    gap: 10px;
  }
}
