/* Neco-Arc // $NECO on Arc
   A manga page: white paper, ink borders, blue halftone, red for the eyes. */

:root {
  --paper: #ffffff;
  --ink: #111111;
  --red: #E0212F;
  --blue: #2F6BFF;
  --blue-soft: #BFE0FF;
  --blue-pale: #E7F2FF;
  --yellow: #F7D96E;
  --yellow-2: #FFD23F;
  --pink: #FFC7DA;
  --lilac: #E9DAFF;
  --skin: #FFE7D1;
  --muted: #5b5f6b;
  --f-display: 'Luckiest Guy', 'Bangers', Impact, 'Arial Black', sans-serif;
  --f-body: 'Nunito', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace;
  --bounce: cubic-bezier(.34, 1.56, .64, 1);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --bw: 4px;
  --sy: 0;
  --bp: 0;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 500 17px/1.55 var(--f-body);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
main { overflow-x: clip; }   /* the tilted gutters overhang the viewport by design; clip them without creating a scroll container */
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
h1, h2, h3, p { margin: 0; }
.mono { font-family: var(--f-mono); font-weight: 500; letter-spacing: .02em; }
.wrap { width: min(1180px, 100% - 40px); margin: 0 auto; }
.i-fill { width: 20px; height: 20px; fill: currentColor; }
.i-stroke { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- comic UI bits ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 54px; padding: 12px 26px;
  border: var(--bw) solid var(--ink); border-radius: 16px;
  background: #fff; color: var(--ink);
  font-weight: 900; font-size: 18px; letter-spacing: .01em;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .15s var(--ease), box-shadow .15s var(--ease), background .2s;
  white-space: nowrap;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); }
.btn:active { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--ink); }
.btn--red { background: var(--red); color: #fff; }
.btn--blue { background: var(--blue); color: #fff; }
.btn--yellow { background: var(--yellow-2); }
.btn--sm { min-height: 44px; padding: 8px 18px; font-size: 16px; border-radius: 12px; box-shadow: 4px 4px 0 var(--ink); }
.btn.is-soon { position: relative; }
.btn.is-soon::after {
  content: 'soon'; position: absolute; top: -12px; right: -10px;
  padding: 2px 8px; border: 3px solid var(--ink); border-radius: 999px;
  background: var(--yellow); color: var(--ink);
  font: 900 11px/1.3 var(--f-body); letter-spacing: .08em; text-transform: uppercase;
  transform: rotate(6deg);
}
.icon-btn {
  display: inline-grid; place-items: center; width: 54px; height: 54px;
  border: var(--bw) solid var(--ink); border-radius: 16px; background: #fff;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .15s var(--ease), box-shadow .15s var(--ease);
}
.icon-btn:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); }
.icon-btn:active { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--ink); }
.icon-btn--lg { width: 64px; height: 64px; }
.icon-btn--lg .i-fill { width: 26px; height: 26px; }
.icon-btn.is-soon, .top__x.is-soon { opacity: .6; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border: 3px solid var(--ink); border-radius: 999px;
  background: #fff; font-weight: 900; font-size: 14px; letter-spacing: .01em;
  box-shadow: 3px 3px 0 var(--ink);
}
.chip--red { background: var(--red); color: #fff; }
.chip--yellow { background: var(--yellow-2); }

.h2 {
  font: 400 clamp(46px, 7vw, 92px)/.92 var(--f-display);
  letter-spacing: .01em; color: #fff;
  -webkit-text-stroke: 2px var(--ink); paint-order: stroke fill;
  text-shadow: 5px 5px 0 var(--ink), 9px 9px 0 var(--blue);
  margin-bottom: 18px;
}
.h2 em { font-style: normal; color: var(--red); }
.sub { font-weight: 700; font-size: clamp(17px, 1.6vw, 21px); color: var(--muted); max-width: 52ch; margin-bottom: clamp(36px, 5vw, 64px); }

/* ---------- reveal ---------- */
.js .rv { opacity: 0; transform: translateY(26px) scale(.97); }
.js .rv.in { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .9s var(--bounce); transition-delay: calc(var(--i, 0) * 90ms); }

/* ---------- header ---------- */
.top { position: sticky; top: 0; z-index: 60; background: #fff; border-bottom: var(--bw) solid var(--ink); }
.top__wrap { display: flex; align-items: center; justify-content: space-between; min-height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__pfp {
  display: grid; place-items: end center; width: 46px; height: 46px; overflow: hidden;
  border: 3px solid var(--ink); border-radius: 50%; background: var(--blue-soft);
}
.brand__pfp svg { width: 44px; margin-bottom: -2px; }
.brand__name { font: 400 26px/1 var(--f-display); letter-spacing: .02em; padding-top: 4px; }
.top__nav { display: flex; align-items: center; gap: 4px; }
.top__nav a:not(.top__x) { padding: 8px 14px; border-radius: 10px; font-weight: 900; font-size: 16px; transition: background .2s; }
.top__nav a:not(.top__x):hover { background: var(--blue-pale); }
.top__x { display: grid; place-items: center; width: 42px; height: 42px; margin-left: 6px; border: 3px solid var(--ink); border-radius: 12px; box-shadow: 3px 3px 0 var(--ink); background: #fff; transition: transform .15s, box-shadow .15s; }
.top__x:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--ink); }
.top__x .i-fill { width: 18px; height: 18px; }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(28px, 5vw, 72px) 0 clamp(120px, 12vw, 170px);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 5vw), 0 100%);
  background: #fff;
}
/* the hero backdrop: a slow pop-art sunburst, three drifting colour washes, mis-registered CMY dots,
   coloured speed lines and two light sweeps. All structural, all behind the copy. */
.hero__bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero__rays { position: absolute; left: 50%; top: 50%; width: 230vmax; height: 230vmax; transform: translate(-50%, -50%) rotate(0deg); background: repeating-conic-gradient(from 0deg, rgba(255, 210, 63, .30) 0deg 5deg, rgba(255, 255, 255, 0) 5deg 14deg); animation: heroSpin 150s linear infinite; }
@keyframes heroSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }
.hero__blob { position: absolute; width: 48vw; height: 48vw; min-width: 440px; min-height: 440px; border-radius: 50%; }
.hero__blob--y { left: -14%; top: -22%; background: radial-gradient(circle, rgba(255, 210, 63, .62), rgba(255, 210, 63, 0) 66%); animation: blobA 26s ease-in-out infinite alternate; }
.hero__blob--r { right: -12%; top: -14%; background: radial-gradient(circle, rgba(224, 33, 47, .30), rgba(224, 33, 47, 0) 66%); animation: blobB 31s ease-in-out infinite alternate; }
.hero__blob--b { left: 28%; bottom: -34%; background: radial-gradient(circle, rgba(47, 107, 255, .34), rgba(47, 107, 255, 0) 66%); animation: blobC 23s ease-in-out infinite alternate; }
@keyframes blobA { to { transform: translate(20vw, 14vh) scale(1.18); } }
@keyframes blobB { to { transform: translate(-16vw, 18vh) scale(.88); } }
@keyframes blobC { to { transform: translate(-18vw, -16vh) scale(1.22); } }
.hero__dots { position: absolute; inset: -160px; }
.hero__dots--b { background: radial-gradient(circle, rgba(47, 107, 255, .5) 1.6px, transparent 2.2px) 0 0 / 14px 14px; animation: dotsA 30s linear infinite; }
.hero__dots--r { background: radial-gradient(circle, rgba(224, 33, 47, .36) 1.5px, transparent 2.1px) 0 0 / 18px 18px; animation: dotsB 38s linear infinite reverse; }
.hero__dots--y { background: radial-gradient(circle, rgba(255, 190, 0, .6) 2.1px, transparent 2.7px) 0 0 / 24px 24px; animation: dotsB 46s linear infinite; }
@keyframes dotsA { to { transform: translate(140px, 70px); } }
@keyframes dotsB { to { transform: translate(144px, 72px); } }
.speed { position: absolute; inset: 0; width: 100%; height: 100%; }
.speed .whoosh { animation: whoosh 9s linear infinite; }
.speed .whoosh--fast { animation-duration: 5.2s; }
@keyframes whoosh { to { transform: translateX(-1600px); } }
.hero__sweep { position: absolute; top: -20%; left: 0; height: 140%; width: 16vw; min-width: 150px; background: linear-gradient(90deg, rgba(255, 210, 63, 0), rgba(255, 210, 63, .38), rgba(255, 210, 63, 0)); animation: sweep 15s linear infinite; }
.hero__sweep--2 { width: 8vw; min-width: 80px; background: linear-gradient(90deg, rgba(224, 33, 47, 0), rgba(224, 33, 47, .18), rgba(224, 33, 47, 0)); animation-duration: 21s; animation-delay: -8s; }
@keyframes sweep { from { transform: translateX(-60vw) skewX(-24deg); } to { transform: translateX(170vw) skewX(-24deg); } }
.hero__wrap {
  position: relative; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: clamp(20px, 3vw, 48px); align-items: center; min-height: min(78vh, 760px);
}
.eyebrow { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.title {
  font: 400 clamp(56px, 8.6vw, 122px)/.9 var(--f-display);
  letter-spacing: .01em; color: var(--yellow-2);
  -webkit-text-stroke: 2.5px var(--ink); paint-order: stroke fill;
  text-shadow: 6px 6px 0 var(--ink), 12px 12px 0 var(--blue);
  margin: 0 0 22px; white-space: nowrap;
}
.title__w { white-space: nowrap; }
.title__dash { color: var(--red); }
.title .l { display: inline-block; transform-origin: 50% 85%; }
.js .title .l { animation: stamp .75s var(--bounce) both; animation-delay: calc(var(--i) * 70ms + .15s); }
.title .l.done { animation: none; transition: transform .25s var(--bounce); }
.title .l.done:hover { transform: rotate(-7deg) scale(1.1) translateY(-4px); }
@keyframes stamp { from { opacity: 0; transform: scale(2.2) rotate(-12deg); } 60% { opacity: 1; } to { opacity: 1; transform: none; } }
.lede { font-size: clamp(17px, 1.5vw, 20px); font-weight: 700; max-width: 54ch; color: #2c2f36; margin-bottom: 26px; }

.ca { position: relative; padding: 14px 16px 16px; border: var(--bw) solid var(--ink); border-radius: 18px; background: #fff; box-shadow: 8px 8px 0 var(--blue); margin-bottom: 26px; max-width: 640px; }
.ca__peek { position: absolute; bottom: calc(100% - 6px); left: var(--x, 60%); width: 66px; pointer-events: none; }
.ca__peek svg { width: 100%; }
.ca__label { display: block; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.ca__row { display: flex; align-items: center; gap: 10px; }
.ca__row code { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font: 700 15px/1.3 var(--f-mono); }
.ca__row code.is-empty { color: var(--muted); font-weight: 500; }
.ca__copy { display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; border: 3px solid var(--ink); border-radius: 10px; background: var(--yellow); font-size: 13px; font-weight: 700; box-shadow: 3px 3px 0 var(--ink); transition: transform .15s, box-shadow .15s; }
.ca__copy:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--ink); }
.ca__copy:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.ca__copy:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: 3px 3px 0 var(--ink); }
.cta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 22px; }
.gauge { display: inline-flex; align-items: center; gap: 12px; font-size: 13px; color: var(--muted); }
.gauge__k { letter-spacing: .14em; text-transform: uppercase; }
.gauge__v { font-weight: 700; font-size: 18px; color: var(--red); min-width: 2ch; }
.gauge__hint { padding-left: 12px; border-left: 2px solid rgba(17, 17, 17, .18); }
.gauge__mute { display: grid; place-items: center; width: 32px; height: 32px; border: 2px solid var(--ink); border-radius: 8px; background: #fff; }
.gauge__mute[aria-pressed="true"] .wave { display: none; }

/* the stage */
.stage { position: relative; aspect-ratio: 1; width: min(100%, 560px); margin: 0 auto; display: grid; place-items: center; }
.copy { position: relative; z-index: 2; }
.copy::before { content: ''; position: absolute; inset: -30px -70px -30px -90px; z-index: -1; border-radius: 50%; background: radial-gradient(ellipse at 45% 50%, rgba(255, 255, 255, .86) 32%, rgba(255, 255, 255, 0) 72%); pointer-events: none; }
.pop { position: absolute; inset: -3%; width: 106%; height: 106%; max-width: none; pointer-events: none; overflow: visible; }
.pop__wedges, .pop__dash, .pop__pulse, .pop__dots { transform-box: fill-box; transform-origin: 50% 50%; }
.pop__wedges { animation: spin 38s linear infinite; }
.pop__dash { animation: spin 22s linear infinite reverse; }
.pop__dots { animation: spin 120s linear infinite; }
.pop__pulse { animation: pulse 3.4s ease-out infinite; }
.stage.is-burenyu .pop__wedges { animation: spin 38s linear infinite, popflash .8s ease-out; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0% { transform: scale(1); opacity: .95; } 70% { transform: scale(1.44); opacity: 0; } 100% { transform: scale(1.44); opacity: 0; } }
@keyframes popflash { 0% { filter: brightness(1); } 20% { filter: brightness(1.7) saturate(1.5); } 100% { filter: brightness(1); } }
.burst { position: absolute; left: 2%; top: 2%; width: 96%; height: 96%; opacity: 0; transform: scale(.3); pointer-events: none; }
.burst__b { transform-origin: 0 0; transform: scale(.72) rotate(11deg); }
.stage.is-burenyu .burst { animation: burst .8s ease-out; }
@keyframes burst { 0% { opacity: 0; transform: scale(.3) rotate(0); } 18% { opacity: 1; transform: scale(1.02) rotate(6deg); } 100% { opacity: 0; transform: scale(1.18) rotate(14deg); } }
.neco-main { position: relative; width: 60%; margin-bottom: 6.5%; z-index: 2; animation: bob 2.8s ease-in-out infinite; filter: drop-shadow(7px 9px 0 rgba(47, 107, 255, .32)); }
@keyframes bob { 50% { transform: translateY(-9px); } }
.stage.is-burenyu .neco-main { animation: squash .8s var(--bounce); }
@keyframes squash { 0% { transform: scale(1); } 20% { transform: scale(1.22, .78) translateY(14px); } 45% { transform: scale(.86, 1.2) translateY(-24px); } 70% { transform: scale(1.06, .94) translateY(2px); } 100% { transform: scale(1); } }
.stage__hit { position: absolute; z-index: 4; width: 60%; height: 82%; border: 0; background: transparent; border-radius: 40%; cursor: pointer; -webkit-tap-highlight-color: transparent; }
.stage__hit:focus-visible { outline: 3px dashed var(--red); outline-offset: 8px; }
.sfx {
  position: absolute; z-index: 5; top: 6%; right: -2%; pointer-events: none;
  font: 400 clamp(38px, 5.4vw, 78px)/1 var(--f-display); color: var(--yellow);
  -webkit-text-stroke: 2px var(--ink); paint-order: stroke fill;
  text-shadow: 4px 4px 0 var(--ink);
  opacity: 0; transform: rotate(-12deg) scale(0);
}
.stage.is-burenyu .sfx { animation: sfx 1s var(--bounce); }
@keyframes sfx { 0% { opacity: 0; transform: rotate(-24deg) scale(0); } 25% { opacity: 1; transform: rotate(-10deg) scale(1.15); } 70% { opacity: 1; transform: rotate(-12deg) scale(1); } 100% { opacity: 0; transform: rotate(-8deg) scale(1.2) translateY(-30px); } }
.clones { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.clone { position: absolute; transform: translate(-50%, -50%) rotate(var(--r, 0deg)) scale(1); animation: pop .6s var(--bounce) both; }
.clone.is-out { transition: transform .45s ease-in, opacity .45s; transform: translate(-50%, -50%) rotate(var(--r, 0deg)) scale(0); opacity: 0; }
@keyframes pop { from { transform: translate(-50%, -50%) rotate(var(--r, 0deg)) scale(0); } }

/* ---------- gutters between the pages ---------- */
.gutter {
  position: relative; z-index: 6; height: 46px; margin: -24px 0 -22px;
  border-top: var(--bw) solid var(--ink); border-bottom: var(--bw) solid var(--ink);
  background: repeating-linear-gradient(-45deg, var(--red) 0 16px, var(--yellow-2) 16px 32px);
  background-size: 45.25px 100%;
  animation: stripes 1.1s linear infinite;
  transform: rotate(-1.2deg) scaleX(1.05);
}
.gutter--2 { transform: rotate(1.1deg) scaleX(1.05); background: repeating-linear-gradient(45deg, var(--blue) 0 16px, var(--yellow-2) 16px 32px); background-size: 45.25px 100%; animation-direction: reverse; }
.gutter--3 { transform: rotate(-.8deg) scaleX(1.05); background: repeating-linear-gradient(-45deg, var(--red) 0 16px, #fff 16px 32px); background-size: 45.25px 100%; }
@keyframes stripes { to { background-position: 45.25px 0; } }
.gutter__hang { position: absolute; top: 100%; left: var(--x, 72%); width: clamp(76px, 8vw, 112px); transform: translateY(-23.4%); transform-origin: 50% 0; animation: sway 3.4s ease-in-out infinite alternate; pointer-events: none; }
@keyframes sway { from { transform: translateY(-23.4%) rotate(-5deg); } to { transform: translateY(-23.4%) rotate(5deg); } }
.gutter__crawl { position: absolute; bottom: calc(100% + 2px); left: 0; width: clamp(96px, 9vw, 136px); animation: crawl 34s linear infinite; pointer-events: none; }
@keyframes crawl { from { transform: translateX(-150px); } to { transform: translateX(100vw); } }

/* ---------- manga page ---------- */
.manga { position: relative; padding: clamp(96px, 11vw, 150px) 0 clamp(110px, 12vw, 170px); background: #fff; }
.manga .h2 { text-shadow: 5px 5px 0 var(--ink), 9px 9px 0 var(--red); }
.page { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(22px, 3vw, 34px); }
.panel {
  --ps: var(--red);
  position: relative; background: #fff; padding: 14px;
  border: var(--bw) solid var(--ink); box-shadow: 10px 10px 0 var(--ps);
  transform: rotate(var(--tilt, 0deg));
}
.panel:nth-child(3n+2) { --ps: var(--blue); }
.panel:nth-child(3n) { --ps: var(--yellow-2); }
.panel:nth-child(3n+2) .panel__n { background: var(--blue); }
.panel:nth-child(3n) .panel__n { background: var(--yellow-2); color: var(--ink); }
.js .panel { opacity: 0; transform: rotate(var(--tilt, 0deg)) scale(.86) translateY(30px); }
.js .panel.in { opacity: 1; transform: rotate(var(--tilt, 0deg)); transition: opacity .6s var(--ease), transform .9s var(--bounce); }
.panel--wide { grid-column: span 2; }
.panel__ink { position: absolute; inset: -6px; width: calc(100% + 12px); height: calc(100% + 12px); pointer-events: none; overflow: visible; z-index: 3; }
.panel__ink rect { x: 3px; y: 3px; width: calc(100% - 6px); height: calc(100% - 6px); fill: none; stroke: var(--red); stroke-width: 5; stroke-dasharray: 1; stroke-dashoffset: 1; }
.panel.in .panel__ink rect { transition: stroke-dashoffset 1.3s ease .25s, opacity .4s ease 1.7s; stroke-dashoffset: 0; opacity: 0; }
.panel__n {
  position: absolute; z-index: 4; top: -18px; left: -18px;
  display: grid; place-items: center; width: 46px; height: 46px;
  border: var(--bw) solid var(--ink); border-radius: 50%; background: var(--red); color: #fff;
  font: 400 24px/1 var(--f-display); padding-top: 4px; box-shadow: 4px 4px 0 var(--ink);
}
.panel__art { position: relative; height: clamp(200px, 21vw, 290px); overflow: hidden; border: 3px solid var(--ink); background: #fff; }
.panel__cap { font-size: 16px; line-height: 1.45; font-weight: 700; padding: 14px 4px 2px; }
.panel__cap b { font-weight: 900; }
.scene { position: absolute; inset: 0; }
.scene > svg { width: 100%; height: 100%; }
.scene__cat { position: absolute; pointer-events: none; }
.scene__cat svg { width: 100%; }
.scene.has-img { background-size: cover; background-position: center; }
.scene--moon.has-img > svg { display: none; }
.scene--cafe.has-img .cafe__wall { display: none; }
.scene--fight.has-img .floor { display: none; }
.scene--fight.has-img .fighter { bottom: 5%; }

/* 1: the moon */
.scene--moon .stars circle { animation: twinkle 3s ease-in-out infinite; }
.scene--moon .stars circle:nth-child(3n) { animation-delay: 1s; }
.scene--moon .stars circle:nth-child(3n+1) { animation-delay: 2s; }
@keyframes twinkle { 50% { opacity: .2; } }
.scene--moon .moon-glow { animation: glow 5s ease-in-out infinite; transform-origin: 400px 140px; transform-box: view-box; }
@keyframes glow { 50% { transform: scale(1.12); opacity: .7; } }
.scene--moon .windows rect { animation: twinkle 2.2s steps(2) infinite; }
.scene__cat--moon { right: 8%; bottom: 20%; width: 21%; }
/* 2: being drawn */
.scene--draw { background-color: #fff; background-image: linear-gradient(rgba(47, 107, 255, .16) 1px, transparent 1px), linear-gradient(90deg, rgba(47, 107, 255, .16) 1px, transparent 1px); background-size: 22px 22px; }
.draw { position: absolute; left: 50%; bottom: 6%; width: 52%; transform: translateX(-50%); }
.draw path, .draw ellipse, .draw circle, .draw rect { stroke-dasharray: 1; stroke-dashoffset: 1; fill-opacity: 0; transition: stroke-dashoffset 2s ease, fill-opacity .5s ease 1.8s; }
.panel.in .draw path, .panel.in .draw ellipse, .panel.in .draw circle, .panel.in .draw rect { stroke-dashoffset: 0; fill-opacity: 1; }
/* 3: the fighting game */
.scene--fight { background: linear-gradient(180deg, #FFD3E4 0%, #E9DAFF 60%, #BFE0FF 100%); }
.hud { position: absolute; top: 12px; left: 12px; right: 12px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 10px; z-index: 2; }
.hp { height: 14px; border: 3px solid var(--ink); background: #fff; overflow: hidden; }
.hp i { display: block; height: 100%; width: 100%; background: var(--yellow); transition: width 3s cubic-bezier(.6, 0, .3, 1) .6s; }
.hp--l i { background: var(--red); }
.hp--l { transform: scaleX(-1); }
.panel.in .hp--l i { width: 24%; }
.panel.in .hp--r i { width: 88%; }
.hud__t { font-weight: 700; font-size: 16px; padding: 2px 8px; border: 3px solid var(--ink); background: #fff; }
.fighter { position: absolute; bottom: 12%; width: 32%; animation: hop 1.1s ease-in-out infinite; transform-origin: 50% 100%; }
.fighter svg { width: 100%; }
.fighter--l { left: 8%; }
.fighter--r { right: 8%; animation-delay: .55s; }
@keyframes hop { 0%, 100% { transform: translateY(0) scale(1, 1); } 30% { transform: translateY(-14%) scale(.94, 1.06); } 60% { transform: translateY(0) scale(1.06, .94); } }
.floor { position: absolute; left: 0; right: 0; bottom: 0; height: 14%; background: repeating-linear-gradient(90deg, #d9cfe6 0 14px, #c8bde0 14px 28px); border-top: 3px solid var(--ink); }
/* 4: the café */
.scene--cafe { background: #F7EBDD; }
.cafe__wall { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(17, 17, 17, .09) 1.2px, transparent 1.7px); background-size: 16px 16px; }
.cafe__heads { position: absolute; left: 6%; right: 6%; bottom: 36%; display: flex; justify-content: space-around; align-items: flex-end; }
.cafe__head { width: 26%; transform: translateY(14%); animation: peekbob 3.6s ease-in-out infinite; animation-delay: var(--d, 0s); }
.cafe__head svg { width: 100%; }
@keyframes peekbob { 0%, 100% { transform: translateY(16%); } 50% { transform: translateY(2%); } }
.cafe__counter { position: absolute; left: 0; right: 0; bottom: 0; height: 40%; background: #8B5A3B; border-top: 4px solid var(--ink); }
.cafe__counter::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 22%; background: #A66F4A; border-bottom: 3px solid var(--ink); }
.cup { position: absolute; right: 12%; top: -34px; width: 64px; }
.cup .steam path { animation: steam 2.4s ease-in-out infinite; transform-box: fill-box; transform-origin: 50% 100%; }
.cup .steam path:nth-child(2) { animation-delay: .6s; }
.cup .steam path:nth-child(3) { animation-delay: 1.2s; }
@keyframes steam { 0% { opacity: 0; transform: translateY(6px) scale(.8); } 40% { opacity: .7; } 100% { opacity: 0; transform: translateY(-12px) scale(1.2); } }
/* 5: the internet finds her */
.scene--remake { background: #fff; }
.screen { position: absolute; inset: 0 0 12px; }
.screen .hit { position: absolute; width: var(--w, 18%); transform: translate(-50%, -50%) rotate(var(--r, 0deg)); animation: pop .55s var(--bounce) both; }
.screen__bar { position: absolute; left: 0; right: 0; bottom: 0; height: 12px; background: #eee; border-top: 3px solid var(--ink); }
.screen__bar i { display: block; height: 100%; width: 0; background: var(--red); }
.panel.in .screen__bar i { animation: load 9s linear infinite; }
@keyframes load { to { width: 100%; } }
/* 6: on arc */
.scene--arc { background: #fff; background-image: radial-gradient(circle, rgba(47, 107, 255, .3) 1.4px, transparent 1.9px); background-size: 14px 14px; }
.arc__line { stroke-dasharray: 1; stroke-dashoffset: 1; }
.panel.in .arc__line { transition: stroke-dashoffset 1.6s var(--ease) .4s; stroke-dashoffset: 0; }
.scene__cat--arc { left: 50%; top: 4%; width: 34%; transform: translateX(-50%); animation: bob 2.6s ease-in-out infinite; }
.arc__tag { position: absolute; left: 12px; bottom: 8px; font: 400 40px/1 var(--f-display); color: #fff; -webkit-text-stroke: 2px var(--ink); paint-order: stroke fill; text-shadow: 3px 3px 0 var(--ink); }

/* ---------- maker ---------- */
.maker { position: relative; overflow: hidden; padding: clamp(96px, 11vw, 150px) 0 clamp(110px, 12vw, 170px); background: #8FCBFF; }
.maker__tone { position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(circle, rgba(255, 255, 255, .6) 1.6px, transparent 2.2px); background-size: 14px 14px; animation: drift 30s linear infinite reverse; }
.maker .h2 { text-shadow: 5px 5px 0 var(--ink), 9px 9px 0 var(--red); }
.maker .sub { color: #14213d; }
.maker .wrap { position: relative; }
.mk { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 3vw, 44px); align-items: start; }
.mk__stagewrap { position: sticky; top: 90px; }
.mk__stage { position: relative; aspect-ratio: 1; overflow: hidden; border: var(--bw) solid var(--ink); background: #fff; box-shadow: 12px 12px 0 var(--ink); }
.mk__bg { position: absolute; inset: 0; opacity: 0; transition: opacity .45s ease; }
.mk__stage[data-bg="tone"] .mk__bg--tone, .mk__stage[data-bg="speed"] .mk__bg--speed, .mk__stage[data-bg="train"] .mk__bg--train, .mk__stage[data-bg="moon"] .mk__bg--moon { opacity: 1; }
.mk__bg--tone { background: #fff radial-gradient(circle, rgba(47, 107, 255, .5) 2px, transparent 2.8px) 0 0/18px 18px; -webkit-mask-image: radial-gradient(60% 60% at 50% 55%, transparent 18%, #000 75%); mask-image: radial-gradient(60% 60% at 50% 55%, transparent 18%, #000 75%); }
.mk__bg--speed { background: #fff repeating-conic-gradient(from 0deg at 50% 52%, var(--ink) 0deg .9deg, transparent .9deg 5deg); -webkit-mask-image: radial-gradient(circle at 50% 52%, transparent 24%, #000 68%); mask-image: radial-gradient(circle at 50% 52%, transparent 24%, #000 68%); }
.mk__bg--train { background: linear-gradient(180deg, #FFC7DA 0%, #E9DAFF 44%, #BFE0FF 68%, #7FB7FF 68.5%, #4E8FE8 100%); }
.mk__bg--train.has-img { background-size: cover; background-position: center; }
.mk__sun { position: absolute; left: 50%; top: 48%; width: 24%; aspect-ratio: 1; border-radius: 50%; transform: translate(-50%, -50%); background: radial-gradient(circle at 40% 40%, #FFF1B8, #FFB3C7 70%, #F58BB0); }
.mk__sea { position: absolute; left: 0; right: 0; top: 68%; bottom: 0; background: repeating-linear-gradient(180deg, transparent 0 18px, rgba(255, 255, 255, .28) 18px 21px); }
.mk__bg--train.has-img .mk__sun, .mk__bg--train.has-img .mk__sea, .mk__bg--moon.has-img .mk__moon { display: none; }
.mk__bg--moon { background: #0E1533 radial-gradient(circle, rgba(255, 255, 255, .8) 1px, transparent 1.6px) 0 0/34px 34px; }
.mk__bg--moon.has-img { background-size: cover; background-position: center; }
.mk__moon { position: absolute; left: 50%; top: 34%; width: 46%; aspect-ratio: 1; border-radius: 50%; transform: translate(-50%, -50%); background: radial-gradient(circle at 42% 38%, #FF5A64, #E0212F 55%, #8E0F1A); box-shadow: 0 0 80px 20px rgba(224, 33, 47, .35); }
.mk__cat { position: absolute; left: 50%; bottom: 7%; width: 56%; transform: translateX(-50%); z-index: 2; filter: drop-shadow(8px 10px 0 rgba(17, 17, 17, .18)); }
.mk__stage[data-pose="crawl"] .mk__cat { width: 74%; bottom: 10%; }
.mk__stage[data-pose="sit"] .mk__cat { width: 60%; }
.mk__clones { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.mk__clones .clone { z-index: 1; }
.mk__cap { position: absolute; z-index: 3; left: 6%; right: 6%; bottom: 3%; text-align: center; font: 400 clamp(26px, 4.4vw, 52px)/1 var(--f-display); color: #fff; -webkit-text-stroke: 2px var(--ink); paint-order: stroke fill; text-shadow: 4px 4px 0 var(--ink); pointer-events: none; overflow-wrap: anywhere; }
.mk__brand { position: absolute; z-index: 3; right: 10px; top: 8px; font: 400 22px/1 var(--f-display); color: #fff; -webkit-text-stroke: 1.5px var(--ink); paint-order: stroke fill; text-shadow: 2px 2px 0 var(--ink); }
.mk__countbtn { display: block; width: 100%; margin-top: 22px; padding: 10px 12px; border: 0; background: transparent; text-align: center; font-size: 13px; color: var(--muted); }
.mk__countbtn b { color: var(--red); font-size: 16px; }
.mk__countbtn span { text-decoration: underline; text-underline-offset: 3px; }
.mk__form { display: grid; gap: 18px; padding: clamp(18px, 2.4vw, 28px); border: var(--bw) solid var(--ink); border-radius: 22px; background: #fff; box-shadow: 10px 10px 0 var(--ink); }
.opts { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; border: 0; min-width: 0; }
.opts legend { width: 100%; padding: 0; margin-bottom: 8px; font-family: var(--f-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.opt { padding: 8px 14px; border: 3px solid var(--ink); border-radius: 999px; background: #fff; font-weight: 900; font-size: 14px; box-shadow: 3px 3px 0 var(--ink); transition: transform .15s, box-shadow .15s, background .2s, color .2s; }
.opt:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--ink); }
.opt[aria-pressed="true"] { background: var(--blue); color: #fff; transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.opt--toggle[aria-pressed="true"] { background: var(--blue); }
.swatches { display: flex; gap: 10px; width: 100%; margin-top: 6px; }
.swatch { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 800; }
.swatch input { width: 34px; height: 30px; padding: 0; border: 3px solid var(--ink); border-radius: 8px; background: #fff; cursor: pointer; }
.swatch input::-webkit-color-swatch-wrapper { padding: 2px; }
.swatch input::-webkit-color-swatch { border: 0; border-radius: 3px; }
.field { display: grid; gap: 8px; }
.field__l { font-family: var(--f-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.field__i { width: 100%; min-height: 50px; padding: 0 14px; border: 3px solid var(--ink); border-radius: 12px; background: #fff; font: 900 20px/1 var(--f-body); outline: none; transition: box-shadow .15s; }
.field__i:focus { box-shadow: 4px 4px 0 var(--blue); }
.mk__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- how to buy ---------- */
.buy { position: relative; overflow: hidden; padding: clamp(96px, 11vw, 150px) 0 clamp(120px, 12vw, 180px); background: linear-gradient(180deg, #FFD3E4 0%, #E9DAFF 45%, #C9E4FF 100%); }
.buy .h2 { text-shadow: 5px 5px 0 var(--ink), 9px 9px 0 var(--red); }
.buy .wrap { position: relative; }
.sky { position: absolute; inset: 0; pointer-events: none; }
.sun { position: absolute; left: 62%; top: 6%; width: clamp(160px, 22vw, 320px); aspect-ratio: 1; border-radius: 50%; border: var(--bw) solid var(--ink); background: radial-gradient(circle at 40% 40%, #FFF1B8, #FFB3C7 75%); transform: translateY(calc(var(--bp) * -70px)); }
.cloud { position: absolute; height: 46px; width: 150px; border-radius: 999px; background: #fff; border: var(--bw) solid var(--ink); box-shadow: 4px 4px 0 var(--ink); animation: cloud 40s linear infinite; }
.cloud::before, .cloud::after { content: ''; position: absolute; bottom: 8px; width: 60px; height: 60px; border-radius: 50%; background: #fff; border: var(--bw) solid var(--ink); border-bottom: 0; z-index: -1; }
.cloud::before { left: 22px; }
.cloud::after { left: 66px; width: 74px; height: 74px; }
.cloud--1 { top: 12%; left: -10%; }
.cloud--2 { top: 34%; left: 20%; width: 120px; animation-duration: 52s; animation-delay: -20s; transform: scale(.8); }
.cloud--3 { top: 20%; left: 70%; animation-duration: 46s; animation-delay: -35s; }
@keyframes cloud { to { transform: translateX(120vw); } }
.track { position: relative; height: 120px; margin: 10px 0 34px; }
.track__line { position: absolute; left: 0; right: 0; bottom: 8px; width: 100%; height: 40px; overflow: visible; }
.stops { position: absolute; left: 0; right: 0; bottom: 8px; height: 40px; display: flex; justify-content: space-between; padding: 0 10%; }
.stops i { width: 26px; height: 26px; margin-top: 7px; border-radius: 50%; border: var(--bw) solid var(--ink); background: #fff; }
.train { position: absolute; bottom: 20px; left: calc(var(--tp, 0) * (100% - 170px)); width: 170px; transition: left .35s var(--ease); }
.train svg { width: 100%; }
.train .wheels { transform-box: fill-box; transform-origin: center; }
.train__win { position: absolute; left: 37.5%; top: 21%; width: 25%; overflow: hidden; height: 32%; }
.train__win svg { width: 108%; margin-left: -4%; margin-top: 4%; }
.steps { list-style: none; margin: 0 0 40px; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(18px, 2.4vw, 28px); counter-reset: steps; }
.step { position: relative; padding: 32px 22px 26px; border: var(--bw) solid var(--ink); border-radius: 22px; background: #fff; box-shadow: 8px 8px 0 var(--ink); transition: transform .3s var(--bounce); }
.step:hover { transform: translateY(-6px) rotate(-1deg); }
.step__n { position: absolute; top: -20px; left: 18px; display: grid; place-items: center; width: 46px; height: 46px; border: var(--bw) solid var(--ink); border-radius: 50%; background: var(--blue); color: #fff; font: 400 24px/1 var(--f-display); padding-top: 4px; box-shadow: 4px 4px 0 var(--ink); }
.step h3 { font: 400 30px/1 var(--f-display); letter-spacing: .01em; margin: 6px 0 12px; }
.step p { font-size: 15.5px; line-height: 1.5; font-weight: 700; color: #2c2f36; }
.step .btn { margin-top: 16px; }
.step:nth-child(1) { background: var(--red); color: #fff; }
.step:nth-child(2) { background: var(--blue); color: #fff; }
.step:nth-child(3) { background: var(--yellow-2); }
.step:nth-child(1) p, .step:nth-child(2) p { color: #fff; }
.step:nth-child(1) .step__n, .step:nth-child(2) .step__n { background: #fff; color: var(--ink); }
.step:nth-child(3) .step__n { background: var(--red); color: #fff; }
.step__sleeper { position: absolute; right: 8%; bottom: calc(100% - 6px); width: 118px; pointer-events: none; }
.step__sleeper svg { width: 100%; }
.ticket { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); border: var(--bw) solid var(--ink); border-radius: 22px; background: #fff; box-shadow: 10px 10px 0 var(--ink); overflow: hidden; }
.ticket__main { padding: 26px 28px; }
.ticket__eyebrow { display: block; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
.ticket__rows { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 24px; margin: 0; }
.ticket__rows div { padding: 12px 14px; border: 3px solid var(--ink); border-radius: 12px; }
.ticket__wide { grid-column: span 2; }
.ticket__rows dt { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.ticket__rows dd { margin: 4px 0 0; font: 400 26px/1 var(--f-display); letter-spacing: .01em; }
.ticket__ca { font: 700 15px/1.3 var(--f-mono) !important; word-break: break-all; }
.ticket__stub { position: relative; display: grid; gap: 12px; align-content: center; padding: 26px 28px 26px 40px; border-left: var(--bw) dashed var(--ink); background: var(--yellow); }
.ticket__stub::before, .ticket__stub::after { content: ''; position: absolute; left: -16px; width: 28px; height: 28px; border-radius: 50%; background: var(--blue-pale); border: var(--bw) solid var(--ink); }
.ticket__stub::before { top: -16px; }
.ticket__stub::after { bottom: -16px; }
.ticket__stub .mono { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #5b4a12; }
.ticket__stub b { display: block; margin-top: 2px; font: 400 22px/1.1 var(--f-display); letter-spacing: .01em; color: var(--ink); text-transform: none; }
.ticket__stubcat { position: absolute; right: 18px; top: -8px; width: 82px; transform: rotate(8deg); }
.ticket__stubcat svg { width: 100%; }

/* ---------- the lurker ---------- */
.lurker { --lw: clamp(80px, 8vw, 120px); position: fixed; z-index: 55; width: 0; height: 0; pointer-events: none; }
.lurker[data-edge="bottom"] { top: 100%; left: var(--pos, 50%); --rot: 0deg; }
.lurker[data-edge="left"] { top: var(--pos, 50%); left: 0; --rot: 90deg; }
.lurker[data-edge="right"] { top: var(--pos, 50%); left: 100%; --rot: -90deg; }
.lurker__cat { position: absolute; left: calc(var(--lw) / -2); bottom: 0; width: var(--lw); transform-origin: 50% 100%; transform: rotate(var(--rot)) translateY(110%); transition: transform .7s var(--bounce); }
.lurker.is-out .lurker__cat { transform: rotate(var(--rot)) translateY(10%); }
.lurker.is-moving .lurker__cat { transition: none; }
.lurker__cat svg { width: 100%; max-width: none; }

/* ---------- toast ---------- */
.toast { position: fixed; z-index: 90; left: 50%; bottom: 26px; padding: 12px 18px; border: 3px solid var(--ink); border-radius: 12px; background: var(--yellow); font-size: 14px; font-weight: 700; box-shadow: 4px 4px 0 var(--ink); transform: translate(-50%, 30px); opacity: 0; pointer-events: none; transition: transform .3s var(--bounce), opacity .3s; }
.toast.is-on { transform: translate(-50%, 0); opacity: 1; }

/* ---------- the cat herself ---------- */
.neco { display: block; width: 100%; height: auto; overflow: visible; }
.neco .n-shut { opacity: 0; }
.neco .n-shut.is-shut, .neco.is-blink .n-shut { opacity: 1; }
.neco.is-blink .n-open { opacity: 0; }
.n-pupil { transition: transform .12s ease-out; }
.no-fine .n-pupil { animation: n-look 9s ease-in-out infinite; }
@keyframes n-look { 0%, 100% { transform: translate(0, 0); } 18% { transform: translate(9px, 2px); } 36% { transform: translate(-8px, 4px); } 55% { transform: translate(2px, -6px); } 78% { transform: translate(-6px, -3px); } }
.n-tail { transform-box: fill-box; transform-origin: 0% 100%; animation: n-tail 2.2s ease-in-out infinite alternate; }
.n-tail--crawl { transform-origin: 0% 100%; animation-duration: 1.6s; }
@keyframes n-tail { from { transform: rotate(-9deg); } to { transform: rotate(11deg); } }
.n-ahoge { transform-box: fill-box; transform-origin: 0% 100%; animation: n-ahoge 1.9s ease-in-out infinite alternate; }
@keyframes n-ahoge { from { transform: rotate(-8deg); } to { transform: rotate(9deg); } }
.n-ear--L { transform-box: fill-box; transform-origin: 100% 100%; animation: n-earL 7s ease-in-out infinite; }
.n-ear--R { transform-box: fill-box; transform-origin: 0% 100%; animation: n-earR 7.6s ease-in-out infinite 3.1s; }
@keyframes n-earL { 0%, 86%, 100% { transform: rotate(0); } 90% { transform: rotate(-14deg); } 94% { transform: rotate(6deg); } 97% { transform: rotate(-3deg); } }
@keyframes n-earR { 0%, 86%, 100% { transform: rotate(0); } 90% { transform: rotate(14deg); } 94% { transform: rotate(-6deg); } 97% { transform: rotate(3deg); } }
.neco--crawl .n-foot--A, .neco--crawl .n-hand--A { animation: n-step .46s ease-in-out infinite alternate; }
.neco--crawl .n-foot--B, .neco--crawl .n-hand--B { animation: n-step .46s ease-in-out infinite alternate-reverse; }
.neco--crawl .n-body, .neco--crawl .n-head { animation: n-bob .46s ease-in-out infinite alternate; }
@keyframes n-step { from { transform: translateY(0); } to { transform: translateY(-9px); } }
@keyframes n-bob { from { transform: translateY(0); } to { transform: translateY(-4px); } }
.neco--loaf .n-tail { animation-duration: 3.4s; }

/* ---------- responsive ---------- */
@media (max-width: 1060px) {
  .hero__wrap { grid-template-columns: 1fr; min-height: 0; }
  .stage { order: -1; width: min(78vw, 460px); }
  .title { font-size: clamp(56px, 10.4vw, 122px); }
  .mk { grid-template-columns: 1fr; }
  .mk__stagewrap { position: static; max-width: 560px; margin: 0 auto; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .scene__cat--moon { width: 26%; }
}
@media (max-width: 760px) {
  .wrap { width: min(1180px, 100% - 32px); }
  .top__nav a:not(.top__x) { display: none; }
  .brand__name { font-size: 22px; }
  .hero { padding-bottom: 96px; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), 0 100%); }
  .title { font-size: clamp(44px, 15.4vw, 110px); text-shadow: 4px 4px 0 var(--ink), 8px 8px 0 var(--blue); }
  .lede { font-size: 16.5px; }
  .ca { box-shadow: 6px 6px 0 var(--blue); }
  .ca__peek { width: 54px; }
  .cta .btn { flex: 1 1 auto; }
  .gauge { flex-wrap: wrap; }
  .page { grid-template-columns: 1fr; }
  .panel--wide { grid-column: auto; }
  .panel { box-shadow: 7px 7px 0 var(--ps); }
  .panel__art { height: clamp(210px, 60vw, 300px); }
  .h2 { font-size: clamp(44px, 12vw, 72px); }
  .steps { grid-template-columns: 1fr; gap: 34px; }
  .step__sleeper { width: 96px; }
  .ticket { grid-template-columns: 1fr; }
  .ticket__stub { border-left: 0; border-top: var(--bw) dashed var(--ink); padding: 26px 22px; }
  .ticket__stub::before, .ticket__stub::after { top: -16px; bottom: auto; left: auto; }
  .ticket__stub::before { left: -16px; }
  .ticket__stub::after { right: -16px; }
  .ticket__stubcat { top: 10px; bottom: auto; right: 12px; width: 64px; }
  .ticket__rows { grid-template-columns: 1fr 1fr; gap: 10px; }
  .ticket__rows dd { font-size: 22px; }
  .track { height: 96px; }
  .train { width: 130px; left: calc(var(--tp, 0) * (100% - 130px)); }
  .mk__actions .btn { flex: 1 1 46%; padding: 12px 14px; font-size: 16px; }
  .swatches { flex-wrap: wrap; }
  .gutter__hang { left: 66%; }
  .foot__loaf { width: 90px; left: 6%; }
  .sun { left: 72%; top: 1%; width: 110px; }
  .cloud--3 { top: 46%; }
  .buy .sub { display: inline-block; padding: 6px 10px; background: rgba(255, 255, 255, .7); border-radius: 10px; }
  .sfx { right: -6%; }
  .clone { display: none; }
  .clone:nth-child(-n+4) { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .rv, .js .panel { opacity: 1; transform: rotate(var(--tilt, 0deg)); }
  .draw path, .draw ellipse, .draw circle, .draw rect { stroke-dashoffset: 0; fill-opacity: 1; }
  .arc__line { stroke-dashoffset: 0; }
}
