:root {
  --paper: #f5f0e7;
  --cream: #e9e2d7;
  --white: #fffdf8;
  --ink: #18191d;
  --soft-ink: #25262b;
  --muted: #6e6b64;
  --red: #ed533f;
  --red-dark: #bd392c;
  --yellow: #f4c84a;
  --green: #54b87a;
  --line: rgba(24, 25, 29, .15);
  --shell: min(1240px, calc(100% - 56px));
  --shadow: 12px 14px 0 rgba(24, 25, 29, .12);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, a { font: inherit; }
a { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; z-index: 100; left: 16px; top: -80px; padding: 12px 16px; background: var(--ink); color: #fff; }
.skip-link:focus { top: 16px; }

/* Header */
.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  background: rgba(245, 240, 231, .94);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
  backdrop-filter: blur(14px);
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(24,25,29,.06); }
.nav { height: 86px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 38px; }
.brand { display: inline-flex; align-items: center; gap: 12px; width: max-content; text-decoration: none; font-size: 18px; font-weight: 1000; letter-spacing: -.06em; }
.brand-mark { position: relative; width: 32px; height: 32px; border: 2px solid var(--ink); border-radius: 10px; background: var(--white); box-shadow: 2px 3px 0 var(--ink); }
.brand-mark i { position: absolute; top: 10px; width: 4px; height: 10px; border-radius: 3px; background: var(--ink); }
.brand-mark i:first-child { left: 8px; }
.brand-mark i:last-child { right: 8px; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { position: relative; text-decoration: none; font-size: 10px; font-weight: 900; letter-spacing: .11em; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 3px; background: var(--red); transition: right .25s var(--ease); }
.nav-links a:hover::after { right: 0; }
.nav-actions { justify-self: end; display: flex; align-items: center; gap: 10px; }
.sound-toggle { min-width: 58px; height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 6px; border: 1px solid var(--line); background: transparent; color: var(--muted); font-size: 11px; font-weight: 950; cursor: pointer; }
.sound-toggle span { font-size: 7px; letter-spacing: .08em; }
.sound-toggle[aria-pressed="true"] { border-color: var(--green); background: rgba(84,184,122,.1); color: var(--ink); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 58px; padding: 0 24px; border: 2px solid var(--ink); text-decoration: none; font-size: 11px; font-weight: 950; letter-spacing: .1em; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s; }
.button:hover { transform: translate(-3px, -3px); box-shadow: 6px 7px 0 var(--ink); }
.button--small { min-height: 48px; padding-inline: 19px; }
.button--ink { background: var(--ink); color: #fff; }
.button--red { background: var(--red); color: #fff; border-color: var(--red-dark); }
.button--red:hover { box-shadow: 6px 7px 0 var(--red-dark); }
.button--cream { background: var(--paper); color: var(--ink); }
.play-icon { width: 0; height: 0; border-top: 6px solid transparent; border-bottom: 6px solid transparent; border-left: 9px solid currentColor; }

/* Hero */
.hero { min-height: calc(100svh - 86px); display: grid; grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr); align-items: center; gap: clamp(48px, 7vw, 100px); padding-block: clamp(60px, 8vw, 110px); }
.kicker, .section-number { margin: 0 0 24px; color: var(--muted); font-size: 9px; font-weight: 950; letter-spacing: .17em; }
.kicker { display: flex; align-items: center; gap: 10px; }
.kicker span { width: 28px; height: 3px; background: var(--red); }
.hero h1 { margin: 0; font-size: clamp(86px, 9.4vw, 148px); font-weight: 1000; letter-spacing: -.095em; line-height: .72; }
.hero h1 > span { display: block; }
.hero h1 > span:last-child { color: var(--red); }
.hero h1 i { color: var(--ink); font-style: normal; }
.hero-tagline { margin: 40px 0 14px; font-size: clamp(21px, 2vw, 29px); font-weight: 900; letter-spacing: -.04em; }
.hero-tagline strong { color: var(--red); }
.hero-intro { max-width: 540px; margin: 0; color: var(--muted); font-size: 16px; font-weight: 540; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.quiet-link { text-decoration: none; font-size: 10px; font-weight: 950; letter-spacing: .1em; }
.quiet-link span { display: inline-block; margin-left: 7px; color: var(--red); transition: transform .2s; }
.quiet-link:hover span { transform: translateY(4px); }
.availability { display: flex; align-items: center; gap: 9px; margin: 24px 0 0; color: #878279; font-size: 8px; font-weight: 850; letter-spacing: .1em; }
.availability i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(84,184,122,.15); }

.hero-preview { position: relative; width: 100%; border: 2px solid var(--ink); background: var(--white); box-shadow: 15px 17px 0 rgba(24,25,29,.13); }
.preview-chrome { min-height: 62px; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 25px; padding: 0 20px; border-bottom: 2px solid var(--ink); }
.preview-level, .preview-deaths { display: flex; flex-direction: column; gap: 4px; }
.preview-level span, .preview-deaths span { color: var(--muted); font-size: 7px; font-weight: 950; letter-spacing: .14em; }
.preview-level strong { font-size: 12px; letter-spacing: -.02em; }
.preview-live { display: flex; align-items: center; gap: 8px; color: var(--green); font-size: 7px; font-weight: 950; letter-spacing: .11em; }
.preview-live i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(84,184,122,.13); }
.preview-deaths { align-items: flex-end; padding-left: 18px; border-left: 1px solid var(--line); }
.preview-deaths strong { color: var(--red); font-size: 16px; line-height: 1; }
.game-stage { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #202126; cursor: pointer; }
.stage-grid { position: absolute; inset: 0; opacity: .42; background-image: linear-gradient(rgba(255,255,255,.075) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.075) 1px,transparent 1px); background-size: 36px 36px; }
.stage-glow { position: absolute; inset: 0; background: radial-gradient(circle at 76% 24%,rgba(84,184,122,.13),transparent 27%),radial-gradient(circle at 28% 70%,rgba(237,83,63,.08),transparent 30%); }
.stage-cloud { position: absolute; width: 72px; height: 18px; border-radius: 30px; background: rgba(255,255,255,.065); }
.stage-cloud::before, .stage-cloud::after { content: ""; position: absolute; bottom: 0; border-radius: 50%; background: inherit; }
.stage-cloud::before { left: 13px; width: 28px; height: 28px; }
.stage-cloud::after { right: 9px; width: 22px; height: 22px; }
.cloud-one { left: 10%; top: 31%; }
.cloud-two { right: 10%; top: 34%; transform: scale(.72); }
.teaser-objective { position: absolute; z-index: 7; left: 20px; top: 18px; display: flex; flex-direction: column; gap: 5px; padding-left: 11px; border-left: 3px solid var(--red); }
.teaser-objective span { color: rgba(255,255,255,.4); font-size: 6px; font-weight: 950; letter-spacing: .15em; }
.teaser-objective strong { color: #fff; font-size: 10px; letter-spacing: .08em; }
.teaser-result { position: absolute; z-index: 7; right: 100px; top: 18px; padding: 9px 11px; border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.7); font-size: 7px; font-weight: 950; letter-spacing: .11em; }
.stage-floor { position: absolute; z-index: 2; bottom: 0; height: 24%; background: #65666c; border-top: 4px solid #e1e1e2; box-shadow: inset 0 12px 0 rgba(255,255,255,.025); }
.stage-floor--start { left: 0; width: 45%; }
.stage-floor--finish { right: 0; width: 29%; }
.stage-floor::after { content: ""; position: absolute; inset: 14px 0 auto; height: 1px; background: rgba(255,255,255,.07); }
.spikes { position: absolute; z-index: 3; left: 46%; bottom: 0; display: flex; align-items: end; }
.spikes i { width: 0; height: 0; margin-left: -3px; border-left: 23px solid transparent; border-right: 23px solid transparent; border-bottom: 69px solid var(--red); filter: drop-shadow(0 5px 0 var(--red-dark)); }
.start-line { position: absolute; z-index: 3; left: 37%; bottom: 24%; width: 3px; height: 50px; background: var(--yellow); }
.start-line span { position: absolute; left: 50%; top: -17px; color: var(--yellow); font-size: 6px; font-weight: 950; letter-spacing: .12em; transform: translateX(-50%); }
.goal { position: absolute; z-index: 4; right: 8%; bottom: 24%; width: 7px; height: 38%; background: var(--green); box-shadow: 0 0 24px rgba(84,184,122,.28); }
.goal span { position: absolute; left: 7px; top: 0; width: 36px; height: 25px; background: var(--green); clip-path: polygon(0 0,100% 24%,0 100%); }
.goal b { position: absolute; right: 13px; top: -23px; color: rgba(255,255,255,.5); font-size: 6px; letter-spacing: .12em; }
.landing-target { position: absolute; z-index: 3; right: 18%; bottom: calc(24% - 7px); width: 60px; height: 14px; border: 2px solid rgba(84,184,122,.52); border-radius: 50%; }
.landing-target i { position: absolute; left: 50%; top: 50%; width: 9px; height: 9px; border: 2px solid var(--green); border-radius: 50%; transform: translate(-50%,-50%); }
.jump-arc { position: absolute; z-index: 4; left: 29%; top: 35%; width: 42%; height: 34%; transform: rotate(-5deg); }
.jump-arc i { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.2); opacity: .65; }
.jump-arc i:nth-child(1) { left: 0; bottom: 0; }.jump-arc i:nth-child(2) { left: 22%; bottom: 48%; }.jump-arc i:nth-child(3) { left: 48%; bottom: 70%; }.jump-arc i:nth-child(4) { left: 74%; bottom: 50%; }.jump-arc i:nth-child(5) { right: 0; bottom: 7%; }
.blob, .mini-blob, .picker-blob { position: relative; display: block; border: 3px solid var(--ink); border-radius: 30% 30% 26% 26%; background: var(--white); box-shadow: inset 0 -7px 0 rgba(24,25,29,.05), 4px 5px 0 rgba(0,0,0,.18); }
.blob > i, .mini-blob > i, .picker-blob > i { position: absolute; top: 34%; width: 12%; height: 27%; min-width: 4px; border-radius: 50%; background: var(--ink); }
.blob > i:first-child, .mini-blob > i:first-child, .picker-blob > i:first-child { left: 29%; }
.blob > i:last-child, .mini-blob > i:last-child, .picker-blob > i:last-child { right: 29%; }
.hero-blob { position: absolute; z-index: 5; left: 17%; bottom: 24%; width: 72px; height: 72px; transition: transform .66s var(--ease); }
.blob-shadow { position: absolute; z-index: 3; left: calc(17% + 7px); bottom: calc(24% - 8px); width: 58px; height: 14px; border-radius: 50%; background: rgba(0,0,0,.28); transition: transform .66s, opacity .66s; }
.game-stage.did-jump .hero-blob { transform: translate(460%,-155%) rotate(12deg) scale(.9,1.1); }
.game-stage.did-jump .blob-shadow { transform: translate(460%) scale(.58); opacity: .28; }
.game-stage.did-jump .teaser-result { border-color: rgba(84,184,122,.55); background: rgba(84,184,122,.12); color: #a9f0c4; }
.game-stage.did-jump .jump-arc i { background: rgba(255,255,255,.58); }
.stage-tap { position: absolute; z-index: 8; left: 50%; top: 72px; transform: translateX(-50%); min-width: 158px; min-height: 44px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; border: 1px solid rgba(255,255,255,.34); background: rgba(24,25,29,.86); color: #fff; cursor: pointer; backdrop-filter: blur(8px); }
.stage-tap span { font-size: 8px; font-weight: 950; letter-spacing: .13em; }
.stage-tap small { color: rgba(255,255,255,.42); font-size: 6px; font-weight: 850; letter-spacing: .12em; }
.stage-tap:hover { background: var(--red); border-color: var(--red); }
.teaser-stamp { position: absolute; z-index: 10; right: -18px; top: 84px; width: 90px; height: 69px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 2px solid var(--ink); background: var(--yellow); box-shadow: 5px 6px 0 var(--ink); transform: rotate(3deg); }
.teaser-stamp span { font-size: 6px; font-weight: 950; letter-spacing: .13em; }
.teaser-stamp strong { margin-top: 3px; font-size: 15px; letter-spacing: -.04em; }
.preview-footer { min-height: 64px; display: grid; grid-template-columns: repeat(3,1fr) auto; align-items: center; border-top: 2px solid var(--ink); }
.preview-footer > div { height: 100%; display: flex; flex-direction: column; justify-content: center; gap: 4px; padding: 0 14px; border-right: 1px solid var(--line); }
.preview-footer span { color: var(--muted); font-size: 6px; font-weight: 950; letter-spacing: .12em; }
.preview-footer strong { font-size: 8px; letter-spacing: .06em; }
.preview-footer a { align-self: stretch; display: flex; align-items: center; gap: 10px; padding: 0 17px; background: var(--ink); color: #fff; text-decoration: none; font-size: 7px; font-weight: 950; letter-spacing: .1em; }
.preview-footer a:hover { background: var(--red); }
.preview-footer a b { color: var(--yellow); font-size: 14px; }

/* Proof row */
.proof { border-block: 2px solid var(--ink); background: var(--cream); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid > div { min-height: 112px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 14px; padding: 0 24px; border-left: 1px solid var(--line); }
.proof-grid > div:last-child { border-right: 1px solid var(--line); }
.proof-grid strong { color: var(--red); font-size: 37px; letter-spacing: -.06em; }
.proof-grid span { max-width: 120px; font-size: 8px; font-weight: 950; line-height: 1.5; letter-spacing: .1em; }

/* Sections */
.section { padding-block: clamp(100px, 11vw, 160px); }
.section-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 70px; align-items: end; margin-bottom: 70px; }
.section-heading h2, .levels-copy h2 { margin: 0; font-size: clamp(62px, 8vw, 116px); font-weight: 1000; letter-spacing: -.08em; line-height: .82; }
.section-heading h2 em, .levels-copy h2 em { color: var(--red); font-style: normal; }
.section-heading > p { max-width: 450px; margin: 0 0 8px; color: var(--muted); font-size: 17px; font-weight: 540; line-height: 1.7; }

.how { background: var(--paper); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card { position: relative; min-height: 430px; display: flex; flex-direction: column; justify-content: flex-end; padding: 32px; border: 2px solid var(--ink); overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.feature-card:hover { transform: translateY(-7px); box-shadow: 8px 10px 0 rgba(24,25,29,.12); }
.feature-card--cream { background: var(--cream); }
.feature-card--dark { background: var(--ink); color: #fff; }
.feature-card--red { background: var(--red); color: #fff; border-color: var(--red-dark); }
.card-number { position: absolute; left: 25px; top: 22px; font-size: 9px; font-weight: 950; letter-spacing: .12em; opacity: .6; }
.feature-card h3 { margin: 28px 0 10px; font-size: 24px; letter-spacing: -.05em; }
.feature-card p { margin: 0; max-width: 320px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.feature-card--dark p, .feature-card--red p { color: rgba(255,255,255,.67); }
.tap-demo, .trap-demo, .retry-demo { position: absolute; left: 0; right: 0; top: 70px; height: 220px; }
.tap-demo { display: grid; place-items: center; }
.tap-demo .mini-blob { width: 94px; height: 94px; animation: bob 1.8s var(--ease) infinite; }
.tap-demo span { position: absolute; right: 20%; top: 20%; padding: 7px 10px; border: 1px solid var(--ink); font-size: 8px; font-weight: 950; letter-spacing: .14em; }
.trap-demo { border-bottom: 13px solid #64656a; }
.trap-demo div { position: absolute; left: 15%; bottom: 0; width: 50px; height: 50px; border: 3px solid #fff; border-radius: 16px; background: var(--paper); }
.trap-demo div::before, .trap-demo div::after { content: ""; position: absolute; top: 16px; width: 5px; height: 13px; border-radius: 4px; background: var(--ink); }
.trap-demo div::before { left: 12px; }.trap-demo div::after { right: 12px; }
.trap-demo > i { position: absolute; bottom: 0; width: 0; height: 0; border-left: 29px solid transparent; border-right: 29px solid transparent; border-bottom: 76px solid var(--red); }
.trap-demo > i:nth-of-type(1) { left: 47%; }.trap-demo > i:nth-of-type(2) { left: 61%; }.trap-demo > i:nth-of-type(3) { left: 75%; }
.retry-demo { display: grid; place-items: center; align-content: center; }
.retry-demo strong { font-size: 108px; line-height: .8; text-shadow: 5px 6px 0 var(--red-dark); }
.retry-demo span { margin-top: 20px; font-size: 8px; font-weight: 950; letter-spacing: .15em; }
@keyframes bob { 50% { transform: translateY(-35px) rotate(5deg) scale(.95,1.05); } }

/* Level campaign */
.levels { background: var(--ink); color: #fff; }
.levels-grid { display: grid; grid-template-columns: minmax(0, .86fr) minmax(520px, 1.14fr); gap: clamp(70px, 10vw, 150px); align-items: center; }
.levels-copy .section-number { color: rgba(255,255,255,.42); }
.levels-copy > p:not(.section-number) { max-width: 520px; margin: 30px 0 35px; color: rgba(255,255,255,.59); font-size: 17px; line-height: 1.7; }
.level-board { padding: 24px; border: 2px solid rgba(255,255,255,.85); background: var(--soft-ink); box-shadow: 14px 16px 0 rgba(237,83,63,.8); }
.level-board-top { display: flex; align-items: center; justify-content: space-between; padding: 5px 3px 21px; color: rgba(255,255,255,.5); font-size: 8px; font-weight: 950; letter-spacing: .14em; }
.level-board-top strong { color: #fff; }
.level-board ol { list-style: none; margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.13); }
.level-board li { min-height: 66px; display: grid; grid-template-columns: 55px 1fr auto; align-items: center; padding: 0 18px; border-bottom: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.45); }
.level-board li span { font-size: 17px; font-weight: 950; }
.level-board li strong { font-size: 10px; letter-spacing: .1em; }
.level-board li i { font-size: 7px; font-style: normal; font-weight: 950; letter-spacing: .12em; }
.level-board li.active { margin-inline: -8px; padding-inline: 25px; background: var(--paper); color: var(--ink); box-shadow: 5px 6px 0 rgba(0,0,0,.3); }
.level-board li.active i { color: var(--red); }
.level-board li.boss { background: rgba(237,83,63,.13); color: var(--red); }

.level-teasers { margin-top: clamp(90px,11vw,150px); }
.teaser-header { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 26px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.16); }
.teaser-header > div:first-child { display: flex; flex-direction: column; gap: 6px; }
.teaser-header span { color: rgba(255,255,255,.42); font-size: 8px; font-weight: 950; letter-spacing: .14em; }
.teaser-header strong { font-size: 14px; letter-spacing: -.02em; }
.carousel-buttons { display: flex; gap: 8px; }
.carousel-buttons button { width: 44px; height: 40px; border: 1px solid rgba(255,255,255,.35); background: transparent; color: #fff; cursor: pointer; }
.carousel-buttons button:hover { border-color: var(--red); background: var(--red); }
.teaser-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(310px,36%); gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.teaser-track::-webkit-scrollbar { display: none; }
.level-teaser { scroll-snap-align: start; border: 1px solid rgba(255,255,255,.28); background: var(--soft-ink); }
.level-teaser > div { position: relative; height: 220px; overflow: hidden; background-image: linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px); background-size: 32px 32px; }
.level-teaser > div > b { position: absolute; left: 0; right: 0; bottom: 0; height: 48px; background: #67686d; border-top: 3px solid #ddd; }
.teaser-blob { position: absolute; z-index: 3; left: 12%; bottom: 48px; width: 52px; height: 52px; }
.teaser-spike { position: absolute; z-index: 3; left: 55%; bottom: 48px; width: 0; height: 0; border-left: 24px solid transparent; border-right: 24px solid transparent; border-bottom: 64px solid var(--red); }
.level-teaser .teaser-spike:nth-of-type(2) { left: 68%; }.level-teaser .teaser-spike:nth-of-type(3) { left: 81%; }
.teaser-two .teaser-spike { top: 0; bottom: auto; transform: rotate(180deg); }
.teaser-three > div { transform: rotate(180deg); }.teaser-three p { transform: none; }
.level-teaser p { display: flex; justify-content: space-between; align-items: center; gap: 15px; margin: 0; padding: 18px; }
.level-teaser p span { color: var(--red); font-size: 8px; font-weight: 950; letter-spacing: .12em; }
.level-teaser p strong { font-size: 10px; letter-spacing: .08em; }

/* Daily leaderboard */
.daily { background: var(--green); color: #fff; }
.daily .section-number { color: rgba(255,255,255,.55); }
.daily-heading h2 em { color: #d7ffe6; }
.daily-heading > p { color: rgba(255,255,255,.68); }
.daily-grid { display: grid; grid-template-columns: minmax(360px,.74fr) minmax(540px,1.26fr); gap: 28px; align-items: stretch; }
.daily-card, .leaderboard-card { border: 2px solid #fff; background: var(--ink); box-shadow: 12px 14px 0 rgba(0,0,0,.14); }
.daily-card { display: flex; flex-direction: column; }
.daily-card-top { min-height: 54px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; border-bottom: 1px solid rgba(255,255,255,.17); font-size: 8px; font-weight: 950; letter-spacing: .13em; }
.daily-card-top b { display: flex; align-items: center; gap: 8px; color: #a9f0c4; }
.daily-card-top b i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(84,184,122,.16); }
.daily-visual { position: relative; height: 285px; overflow: hidden; background: var(--soft-ink); background-image: linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px); background-size: 38px 38px; }
.daily-visual > b { position: absolute; left: 0; right: 0; bottom: 0; height: 62px; background: #67686d; border-top: 4px solid #ddd; }
.daily-blob { position: absolute; z-index: 2; left: 13%; bottom: 62px; width: 62px; height: 62px; }
.daily-spikes { position: absolute; z-index: 2; left: 48%; bottom: 62px; display: flex; }
.daily-spikes i { width: 0; height: 0; border-left: 23px solid transparent; border-right: 23px solid transparent; border-bottom: 64px solid var(--red); }
.daily-info { padding: 26px; }
.daily-info > span { color: rgba(255,255,255,.48); font-size: 8px; font-weight: 950; letter-spacing: .14em; }
.daily-info > span b { color: var(--red); }
.daily-info h3 { min-height: 58px; margin: 12px 0 23px; font-size: 26px; line-height: 1.05; letter-spacing: -.045em; }
.daily-info .button { width: 100%; }
.leaderboard-card { padding: 25px; }
.leaderboard-title { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding-bottom: 18px; }
.leaderboard-title span { color: var(--green); font-size: 8px; font-weight: 950; letter-spacing: .14em; }
.leaderboard-title h3 { margin: 5px 0 0; font-size: 32px; letter-spacing: -.05em; }
.leaderboard-title > button { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.25); background: transparent; color: #fff; cursor: pointer; }
.leaderboard-title > button:hover { border-color: var(--green); color: var(--green); }
.board-status { min-height: 34px; display: flex; align-items: center; padding: 0 11px; background: rgba(84,184,122,.1); color: #a9f0c4; font-size: 8px; font-weight: 900; letter-spacing: .1em; }
.board-status.is-error { background: rgba(237,83,63,.12); color: #ff988a; }
.board-status.is-soon { background: rgba(244,200,74,.12); color: #f4d878; }
.board-status.is-live::before { content: ""; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--green); }
.leaderboard-scroll { overflow-x: auto; }
.leaderboard-card table { width: 100%; border-collapse: collapse; }
.leaderboard-card th { height: 42px; color: rgba(255,255,255,.35); font-size: 7px; font-weight: 950; letter-spacing: .11em; text-align: left; }
.leaderboard-card th:nth-child(3), .leaderboard-card th:nth-child(4), .leaderboard-card td:nth-child(3), .leaderboard-card td:nth-child(4) { text-align: right; }
.leaderboard-card td { height: 44px; border-top: 1px solid rgba(255,255,255,.12); font-size: 10px; font-weight: 850; }
.leaderboard-card td:first-child { width: 48px; color: var(--red); }
.leaderboard-card td:nth-child(2) { letter-spacing: .05em; }
.leaderboard-card .empty-row td { color: rgba(255,255,255,.35); font-size: 8px; }
.score-form { display: grid; grid-template-columns: 1fr 1fr auto; gap: 10px; margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.15); }
.score-form label { display: flex; flex-direction: column; gap: 7px; color: rgba(255,255,255,.46); font-size: 7px; font-weight: 950; letter-spacing: .1em; }
.score-form input { min-width: 0; height: 48px; border: 1px solid rgba(255,255,255,.25); border-radius: 0; background: var(--soft-ink); color: #fff; padding: 0 12px; font: inherit; font-size: 12px; }
.score-form .button { min-height: 48px; align-self: end; padding-inline: 14px; }
.score-form .button:disabled { opacity: .4; cursor: not-allowed; }
.callsign-row { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 13px; background: rgba(255,255,255,.05); }
.callsign-row label { flex-direction: row; align-items: center; gap: 9px; }
.callsign-row strong { color: #fff; font-size: 10px; letter-spacing: .06em; }
.callsign-row button { border: 0; background: transparent; color: var(--green); font-size: 7px; font-weight: 950; letter-spacing: .12em; cursor: pointer; }
.board-footer { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 17px; color: rgba(255,255,255,.35); font-size: 7px; font-weight: 900; letter-spacing: .1em; }
.board-footer button { border: 0; background: transparent; color: var(--green); font-size: 7px; font-weight: 950; letter-spacing: .1em; cursor: pointer; }
.board-footer button:disabled { color: rgba(255,255,255,.25); cursor: not-allowed; }

/* Blob picker */
.blobs { background: var(--cream); }
.blob-picker { display: grid; grid-template-columns: repeat(5, 1fr); border: 2px solid var(--ink); }
.blob-choice { position: relative; height: 280px; display: grid; place-items: center; border: 0; border-right: 1px solid var(--line); background: var(--paper); cursor: pointer; transition: background .2s, transform .2s var(--ease); }
.blob-choice:last-child { border-right: 0; }
.blob-choice:hover, .blob-choice.selected { z-index: 2; background: #fff; box-shadow: inset 0 -8px 0 var(--red); }
.blob-choice .picker-blob { width: 92px; height: 92px; transition: transform .2s var(--ease); }
.blob-choice:hover .picker-blob, .blob-choice.selected .picker-blob { transform: translateY(-8px) scale(1.04,.97); }
.blob-choice > b { position: absolute; left: 18px; bottom: 15px; font-size: 11px; }
.blob-choice > small { position: absolute; right: 14px; top: 14px; padding: 6px 7px; background: var(--ink); color: #fff; font-size: 7px; font-weight: 950; letter-spacing: .1em; }
.blob-choice.selected > small { background: var(--green); }
.picker-blob.blob--yellow { background: var(--yellow); }
.picker-blob.blob--dark { background: #393a42; }
.picker-blob.blob--dark i { background: #fff; }
.picker-blob.blob--red { background: var(--red); }
.picker-blob.blob--mystery { display: grid; place-items: center; background: var(--ink); color: #fff; }
.picker-blob.blob--mystery i { position: static; width: auto; height: auto; min-width: 0; background: transparent; color: #fff; font-size: 38px; font-style: normal; font-weight: 950; }
.picker-caption { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; font-size: 9px; font-weight: 950; letter-spacing: .12em; }
.picker-caption strong { color: var(--red); }
.picker-caption span { color: var(--muted); }

/* Level creator teaser */
.creator { background: var(--paper); }
.creator-grid { display: grid; grid-template-columns: minmax(0,.82fr) minmax(520px,1.18fr); gap: clamp(70px,9vw,130px); align-items: center; }
.creator-copy h2, .iphone-copy h2 { margin: 0; font-size: clamp(60px,7.4vw,108px); font-weight: 1000; letter-spacing: -.08em; line-height: .82; }
.creator-copy h2 em, .iphone-copy h2 em { color: var(--red); font-style: normal; }
.creator-copy > p:not(.section-number), .iphone-copy > p:not(.section-number) { max-width: 560px; margin: 28px 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.coming-pill { display: inline-flex; align-items: center; min-height: 38px; padding: 0 13px; border: 1px solid var(--ink); font-size: 8px; font-weight: 950; letter-spacing: .13em; }
.creator-board { border: 2px solid var(--ink); background: var(--white); box-shadow: 12px 14px 0 rgba(24,25,29,.12); }
.creator-toolbar { min-height: 54px; display: flex; align-items: center; gap: 7px; padding: 0 13px; border-bottom: 2px solid var(--ink); }
.creator-toolbar span { padding: 9px 10px; border: 1px solid var(--line); color: var(--muted); font-size: 7px; font-weight: 950; letter-spacing: .1em; }
.creator-toolbar span.selected { border-color: var(--red); background: var(--red); color: #fff; }
.creator-canvas { position: relative; height: 390px; overflow: hidden; background: var(--soft-ink); }
.creator-gridlines { position: absolute; inset: 0; opacity: .45; background-image: linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px); background-size: 36px 36px; }
.creator-blob { position: absolute; z-index: 3; left: 10%; bottom: 25%; width: 58px; height: 58px; }
.placed-platform { position: absolute; z-index: 2; height: 18%; background: #67686d; border-top: 4px solid #ddd; }
.platform-a { left: 0; bottom: 7%; width: 42%; }.platform-b { right: 0; bottom: 25%; width: 34%; }
.placed-spike { position: absolute; z-index: 3; width: 0; height: 0; border-left: 27px solid transparent; border-right: 27px solid transparent; border-bottom: 72px solid var(--red); filter: drop-shadow(0 5px 0 var(--red-dark)); }
.spike-a { left: 49%; bottom: 7%; }.spike-b { left: 60%; bottom: 7%; }.spike-c { right: 9%; bottom: 43%; transform: rotate(180deg); }
.cursor-hand { position: absolute; z-index: 4; left: 58%; bottom: 33%; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--white); color: var(--red); font-size: 24px; font-weight: 500; box-shadow: 3px 4px 0 rgba(0,0,0,.25); }
.creator-bottom { min-height: 49px; display: flex; align-items: center; justify-content: space-between; padding: 0 16px; color: var(--muted); font-size: 7px; font-weight: 950; letter-spacing: .11em; }
.creator-bottom b { color: var(--green); }

/* iPhone teaser */
.iphone { overflow: hidden; background: var(--cream); }
.iphone-grid { display: grid; grid-template-columns: minmax(420px,.85fr) minmax(0,1fr); gap: clamp(70px,11vw,160px); align-items: center; }
.phone-wrap { position: relative; min-height: 720px; display: grid; place-items: center; }
.phone { position: relative; width: 330px; height: 680px; padding: 13px; border: 3px solid var(--ink); border-radius: 54px; background: #0c0d0f; box-shadow: 22px 28px 0 rgba(24,25,29,.12); transform: rotate(-4deg); }
.phone-island { position: absolute; z-index: 5; left: 50%; top: 22px; width: 96px; height: 27px; border-radius: 20px; background: #0c0d0f; transform: translateX(-50%); }
.phone-screen { position: relative; height: 100%; overflow: hidden; border-radius: 40px; background: var(--soft-ink); background-image: linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px); background-size: 34px 34px; }
.phone-level { position: absolute; z-index: 3; left: 22px; top: 62px; color: rgba(255,255,255,.7); font-size: 8px; font-weight: 950; letter-spacing: .13em; }
.phone-ground { position: absolute; left: 0; right: 0; bottom: 19%; height: 70px; background: #67686d; border-top: 4px solid #ddd; }
.phone-blob { position: absolute; z-index: 3; left: 17%; bottom: calc(19% + 70px); width: 58px; height: 58px; }
.phone-spikes { position: absolute; z-index: 3; right: 13%; bottom: calc(19% + 70px); display: flex; }
.phone-spikes i { width: 0; height: 0; border-left: 25px solid transparent; border-right: 25px solid transparent; border-bottom: 69px solid var(--red); }
.phone-screen > strong { position: absolute; left: 22px; bottom: 33px; color: #fff; font-size: 58px; line-height: .72; letter-spacing: -.08em; }
.app-icon { position: absolute; right: 0; top: 10%; display: grid; place-items: center; width: 140px; height: 140px; border: 2px solid var(--ink); border-radius: 32px; background: var(--paper); box-shadow: 9px 11px 0 var(--ink); transform: rotate(7deg); }
.app-icon .picker-blob { width: 78px; height: 78px; }
.coming-button:disabled { opacity: 1; cursor: default; }
.coming-button:disabled:hover { transform: none; box-shadow: none; }
.iphone-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 15px 25px; margin: 38px 0 0; padding: 25px 0 0; border-top: 1px solid var(--line); list-style: none; }
.iphone-list li { font-size: 9px; font-weight: 950; letter-spacing: .08em; }
.iphone-list span { margin-right: 8px; color: var(--green); }

/* Honest update and tester sections */
.updates { border-block: 2px solid var(--ink); background: var(--paper); }
.updates-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.updates article { min-height: 145px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 25px 32px; border-left: 1px solid var(--line); }
.updates article:last-child { border-right: 1px solid var(--line); }
.updates article > span { margin-bottom: 8px; color: var(--red); font-size: 7px; font-weight: 950; letter-spacing: .14em; }
.updates article strong { font-size: 15px; letter-spacing: -.02em; }
.updates article a, .updates article b { margin-top: 13px; color: var(--muted); text-decoration: none; font-size: 8px; font-weight: 950; letter-spacing: .1em; }
.updates article a:hover { color: var(--red); }
.tester-wall { background: var(--paper); }
.tester-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.tester-cards article { min-height: 270px; display: flex; flex-direction: column; justify-content: space-between; padding: 26px; border: 2px solid var(--ink); background: var(--cream); }
.tester-cards article > span { color: var(--red); font-size: 9px; font-weight: 950; letter-spacing: .12em; }
.tester-cards article strong { max-width: 300px; font-size: 24px; line-height: 1.1; letter-spacing: -.045em; }
.tester-cards article small, .tester-cards article a { color: var(--muted); text-decoration: none; font-size: 8px; font-weight: 950; letter-spacing: .12em; }
.tester-cards article.tester-cta { background: var(--red); color: #fff; border-color: var(--red-dark); }
.tester-cards article.tester-cta > span, .tester-cards article.tester-cta a { color: #fff; }

/* Final call to action */
.final-cta { position: relative; min-height: 82svh; display: grid; place-items: center; isolation: isolate; overflow: hidden; background: var(--paper); }
.final-inner { padding-block: 100px; text-align: center; }
.final-inner > p { margin: 0 0 16px; color: var(--muted); font-size: 9px; font-weight: 950; letter-spacing: .18em; }
.final-inner h2 { margin: 0 0 48px; font-size: clamp(118px, 18vw, 246px); font-weight: 1000; letter-spacing: -.1em; line-height: .68; }
.final-inner .button { position: relative; z-index: 3; }
.cta-spike { position: absolute; z-index: -1; right: -80px; top: -30px; width: 0; height: 0; border-left: 190px solid transparent; border-right: 190px solid transparent; border-top: 480px solid var(--red); transform: rotate(10deg); filter: drop-shadow(-12px 0 0 var(--red-dark)); opacity: .95; }
.cta-blob { position: absolute; z-index: -1; left: 10%; bottom: 14%; width: 92px; height: 92px; transform: rotate(-14deg); }

/* Footer */
.site-footer { padding: 75px 0 30px; background: var(--ink); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr .7fr .7fr; gap: 50px; align-items: start; padding-bottom: 65px; }
.footer-grid .brand-mark { border-color: #fff; background: var(--paper); box-shadow: 2px 3px 0 #fff; }
.footer-grid > p { margin: 3px 0 0; font-size: 17px; font-weight: 950; line-height: 1.3; }
.footer-grid > div { display: flex; flex-direction: column; gap: 12px; }
.footer-grid > div a { width: max-content; color: rgba(255,255,255,.52); text-decoration: none; font-size: 10px; font-weight: 750; }
.footer-grid > div a:hover { color: var(--red); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.38); font-size: 8px; font-weight: 850; letter-spacing: .13em; }

:focus-visible { outline: 3px solid var(--red); outline-offset: 4px; }

@media (max-width: 1050px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 90px; }
  .hero-copy { max-width: 720px; }
  .hero-preview { width: min(780px, calc(100% - 36px)); margin: 30px auto 0; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid > div { border-bottom: 1px solid var(--line); }
  .section-heading, .levels-grid, .daily-grid, .creator-grid, .iphone-grid { grid-template-columns: 1fr; }
  .section-heading > p { max-width: 600px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 350px; }
  .tap-demo, .trap-demo, .retry-demo { left: 45%; top: 60px; }
  .levels-copy { max-width: 780px; }
  .level-board { width: min(100%, 720px); }
  .teaser-track { grid-auto-columns: minmax(310px,48%); }
  .daily-card, .leaderboard-card { width: min(100%,760px); }
  .blob-picker { grid-template-columns: repeat(3, 1fr); }
  .blob-choice:nth-child(3) { border-right: 0; }
  .blob-choice:nth-child(n+4) { border-top: 1px solid var(--line); }
  .creator-copy, .iphone-copy { max-width: 760px; }
  .creator-board { width: min(100%,760px); }
  .iphone-grid { gap: 50px; }
  .phone-wrap { min-height: 700px; }
  .updates-grid { grid-template-columns: 1fr 1fr; }
  .updates article:nth-child(3) { grid-column: 1 / -1; border-top: 1px solid var(--line); }
}

@media (max-width: 680px) {
  :root { --shell: calc(100% - 30px); --shadow: 7px 8px 0 rgba(24,25,29,.12); }
  .nav { height: 72px; }
  .brand { font-size: 15px; }
  .brand-mark { width: 29px; height: 29px; }
  .nav .button { min-height: 42px; padding: 0 13px; font-size: 8px; }
  .sound-toggle { min-width: 40px; width: 40px; height: 42px; }
  .sound-toggle span { display: none; }
  .hero { padding-block: 65px 90px; gap: 42px; }
  .hero h1 { font-size: clamp(77px, 26vw, 112px); }
  .hero-tagline { margin-top: 32px; font-size: 21px; }
  .hero-intro { font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 20px; }
  .hero-actions .button { width: 100%; }
  .quiet-link { text-align: center; }
  .availability { align-items: flex-start; line-height: 1.5; }
  .hero-preview { width: calc(100% - 4px); margin-top: 10px; }
  .preview-chrome { min-height: 56px; grid-template-columns: 1fr auto; gap: 12px; padding-inline: 12px; }
  .preview-live { display: none; }
  .preview-deaths { padding-left: 12px; }
  .game-stage { aspect-ratio: 1.2 / 1; }
  .teaser-objective { left: 12px; top: 12px; }
  .teaser-result { display: none; }
  .teaser-stamp { right: -6px; top: 68px; width: 72px; height: 55px; box-shadow: 4px 5px 0 var(--ink); }
  .teaser-stamp strong { font-size: 12px; }
  .stage-floor { height: 25%; }
  .stage-floor--start { width: 43%; }
  .stage-floor--finish { width: 28%; }
  .spikes { left: 44%; }
  .hero-blob { width: 50px; height: 50px; }
  .blob-shadow { width: 40px; }
  .spikes i { border-left-width: 17px; border-right-width: 17px; border-bottom-width: 46px; }
  .start-line { left: 34%; bottom: 25%; height: 40px; }
  .goal { bottom: 25%; height: 35%; }
  .landing-target { right: 15%; bottom: calc(25% - 6px); width: 48px; }
  .jump-arc { left: 27%; top: 34%; width: 46%; }
  .stage-tap { top: 60px; min-width: 138px; min-height: 41px; }
  .game-stage.did-jump .hero-blob { transform: translate(390%,-140%) rotate(12deg) scale(.9,1.1); }
  .game-stage.did-jump .blob-shadow { transform: translate(390%) scale(.58); }
  .preview-footer { min-height: 0; grid-template-columns: repeat(3,1fr); }
  .preview-footer > div { min-height: 48px; padding-inline: 8px; }
  .preview-footer a { grid-column: 1 / -1; min-height: 44px; justify-content: center; }
  .proof-grid > div { min-height: 90px; padding-inline: 13px; }
  .proof-grid strong { font-size: 30px; }
  .proof-grid span { font-size: 7px; }
  .section { padding-block: 92px; }
  .section-heading { gap: 28px; margin-bottom: 48px; }
  .section-heading h2, .levels-copy h2 { font-size: clamp(57px, 17vw, 86px); }
  .section-heading > p { font-size: 15px; }
  .feature-card { min-height: 410px; padding: 25px; }
  .tap-demo, .trap-demo, .retry-demo { left: 0; top: 65px; }
  .levels-grid { gap: 65px; }
  .levels-copy > p:not(.section-number) { font-size: 15px; }
  .level-board { padding: 15px; box-shadow: 8px 9px 0 rgba(237,83,63,.8); }
  .level-board li { min-height: 59px; grid-template-columns: 40px 1fr auto; padding-inline: 10px; }
  .level-board li strong { font-size: 8px; }
  .level-teasers { margin-top: 80px; }
  .teaser-track { grid-auto-columns: 87%; }
  .level-teaser > div { height: 190px; }
  .daily-grid { gap: 18px; }
  .daily-card, .leaderboard-card { box-shadow: 7px 8px 0 rgba(0,0,0,.14); }
  .daily-visual { height: 240px; }
  .leaderboard-card { padding: 16px; }
  .leaderboard-title h3 { font-size: 27px; }
  .score-form { grid-template-columns: 1fr 1fr; }
  .score-form .button { grid-column: 1 / -1; }
  .callsign-row { align-items: flex-start; flex-direction: column; }
  .callsign-row label { align-items: flex-start; flex-direction: column; }
  .board-footer { align-items: flex-start; flex-direction: column; }
  .blob-picker { grid-template-columns: repeat(2, 1fr); }
  .blob-choice { height: 210px; }
  .blob-choice:nth-child(2n) { border-right: 0; }
  .blob-choice:nth-child(3) { border-right: 1px solid var(--line); }
  .blob-choice:nth-child(n+3) { border-top: 1px solid var(--line); }
  .blob-choice .picker-blob { width: 72px; height: 72px; }
  .picker-caption { align-items: flex-start; flex-direction: column; gap: 10px; }
  .creator-copy h2, .iphone-copy h2 { font-size: clamp(55px,17vw,82px); }
  .creator-copy > p:not(.section-number), .iphone-copy > p:not(.section-number) { font-size: 15px; }
  .creator-canvas { height: 320px; }
  .creator-toolbar { gap: 5px; overflow-x: auto; }
  .creator-toolbar span { padding-inline: 8px; }
  .phone-wrap { min-height: 600px; transform: scale(.85); margin-block: -45px; }
  .phone { width: 300px; height: 620px; }
  .app-icon { right: -14px; width: 110px; height: 110px; }
  .app-icon .picker-blob { width: 62px; height: 62px; }
  .iphone-list { grid-template-columns: 1fr; }
  .updates-grid, .tester-cards { grid-template-columns: 1fr; }
  .updates article, .updates article:last-child { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .updates article:nth-child(3) { grid-column: auto; }
  .tester-cards article { min-height: 235px; }
  .final-cta { min-height: 74svh; }
  .final-inner h2 { font-size: clamp(106px, 38vw, 166px); }
  .cta-spike { right: -240px; opacity: .48; }
  .cta-blob { left: 2%; bottom: 7%; width: 64px; height: 64px; }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 45px; }
  .footer-grid .brand { grid-column: 1 / -1; }
  .footer-grid > p { display: none; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 11px; }
}

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