:root {
  color-scheme: only light;
  --bg: #000;
  --fg: #fff;
  --shadow: rgba(255, 255, 255, 0.16);
  --ink: #050505;
  --paper: #f7f7f3;
  --coin: #fcf000;
  --coin-dark: #342719;
  --coin-side: #c9c23d;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--fg);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.lang-toggle {
  position: fixed;
  top: clamp(18px, 4.8vh, 48px);
  left: 50%;
  z-index: 50;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(14px, 2vw, 22px);
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font: 800 clamp(0.86rem, 1.2vw, 1.05rem) / 1 "Avenir Next Rounded", "Avenir Next", Avenir, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.58);
  transform: translateX(-50%);
  mix-blend-mode: difference;
  box-shadow: none;
  cursor: pointer;
}

.lang-toggle::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 50%;
  height: 2px;
  border-radius: 0;
  background: currentColor;
  transition: transform 180ms ease;
}

.lang-toggle[data-lang="en"]::before {
  transform: translateX(100%);
}

.lang-toggle__item {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  height: auto;
  min-width: 24px;
}

.site-shell {
  min-height: 100vh;
  background: var(--bg);
}

.hero {
  min-height: 52vh;
  display: grid;
  place-items: center;
  padding: clamp(54px, 7vw, 86px) clamp(20px, 4vw, 48px) clamp(24px, 4vw, 50px);
  background: var(--bg);
}

.hero__inner {
  width: min(620px, 100%);
  display: grid;
  grid-template-columns: minmax(112px, 0.76fr) minmax(210px, 1.52fr);
  align-items: center;
  gap: clamp(20px, 4vw, 58px);
}

.logo {
  margin: 0;
  color: var(--fg);
  font-family: "Avenir Next Rounded", "Avenir Next", Avenir, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.5rem, 6.7vw, 5.1rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
  text-shadow: 0 0 10px var(--shadow);
}

.cat-face {
  --look-x: 0px;
  --look-y: 0px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.44fr 1fr;
  align-items: center;
  justify-items: center;
  gap: clamp(10px, 2.6vw, 36px);
}

.eye {
  position: relative;
  width: clamp(64px, 8.6vw, 109px);
  aspect-ratio: 0.9;
  overflow: hidden;
  border-radius: 50%;
  background: var(--fg);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.12));
  animation: blink 7.2s infinite;
}

.eye--right {
  animation-delay: 0.08s;
}

.pupil {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 44%;
  aspect-ratio: 1;
  border-radius: 47% 47% 49% 49%;
  background: var(--bg);
  transform: translate(
    calc(-50% + var(--look-x)),
    calc(-50% + var(--look-y))
  );
  transition: transform 90ms linear;
}

.ear {
  position: absolute;
  top: -8%;
  width: 31%;
  height: 29%;
  background: var(--bg);
  border-radius: 3px 100% 0 0;
}

.ear--left {
  left: 18%;
  transform: rotate(19deg) skewY(-7deg);
}

.ear--right {
  right: 18%;
  transform: scaleX(-1) rotate(19deg) skewY(-7deg);
}

.nose {
  width: clamp(22px, 2.6vw, 34px);
  height: clamp(13px, 1.6vw, 20px);
  opacity: 0.1;
  background: var(--fg);
  clip-path: polygon(14% 12%, 50% 43%, 86% 12%, 67% 100%, 50% 72%, 33% 100%);
  transform: translateY(44%);
}

@keyframes blink {
  0%,
  87%,
  100% {
    clip-path: inset(0 0 0 0 round 50%);
    transform: scaleY(1);
  }

  90% {
    clip-path: inset(39% 0 39% 0 round 44%);
    transform: scaleY(0.86);
  }

  91.4% {
    clip-path: inset(46% 0 46% 0 round 38%);
    transform: scaleY(0.72);
  }

  93.8% {
    clip-path: inset(0 0 0 0 round 50%);
    transform: scaleY(1);
  }
}

.about-section {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(34px, 5vw, 70px);
  background: var(--paper);
  background-image: linear-gradient(var(--paper), var(--paper));
  color: var(--ink);
  color-scheme: only light;
  forced-color-adjust: none;
}

.about-section__inner {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr);
  align-items: center;
  gap: clamp(34px, 7vw, 88px);
}

.about-copy {
  display: grid;
  justify-items: start;
  gap: clamp(30px, 6vh, 62px);
}

.mini-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-family: "Avenir Next Rounded", "Avenir Next", Avenir, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.mini-logo__coin {
  display: block;
  width: 1.45em;
  height: 1.45em;
  flex: 0 0 auto;
  object-fit: contain;
  filter: none;
}

.about-copy h2 {
  margin: 0;
  font-size: clamp(4.8rem, 10.8vw, 8.6rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
}

.about-copy p {
  margin: 0;
  font-family: "Courier New", ui-monospace, SFMono-Regular, monospace;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.2;
  letter-spacing: 0.16em;
}

.coin-scene {
  --coin-size: clamp(260px, 35vw, 430px);
  position: relative;
  width: min(100%, calc(var(--coin-size) * 1.25));
  min-height: calc(var(--coin-size) * 1.04);
  display: grid;
  place-items: center;
}

.coin-video {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, calc(var(--coin-size) * 1.25));
  aspect-ratio: 54 / 43;
  object-fit: contain;
  transform: translateY(-2%);
}

.coin-shadow {
  position: absolute;
  left: 50%;
  bottom: 3%;
  width: calc(var(--coin-size) * 0.64);
  height: calc(var(--coin-size) * 0.11);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  filter: blur(1px);
  transform: translateX(-50%);
  animation: shadow-pulse 7.86s linear infinite;
}

.how-section {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(34px, 5vw, 70px);
  background: #f9f9f6;
  background-image: linear-gradient(#f9f9f6, #f9f9f6);
  color: #050505;
  color-scheme: only light;
  forced-color-adjust: none;
}

.how-section__inner {
  position: relative;
  width: min(1180px, 100%);
  min-height: min(650px, 82vh);
}

.exchange-note {
  position: absolute;
  left: 0;
  top: 18%;
  z-index: 2;
  font-size: clamp(1.2rem, 2.25vw, 2rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
  transform: rotate(-19deg);
  transform-origin: left center;
}

.waving-cat {
  position: absolute;
  left: clamp(24px, 4vw, 52px);
  top: 38%;
  z-index: 1;
  width: clamp(120px, 14vw, 172px);
  aspect-ratio: 1;
  overflow: hidden;
  animation: cat-jitter-walk 1s steps(2, end) infinite;
}

.waving-cat img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.how-copy {
  position: absolute;
  left: clamp(210px, 19vw, 250px);
  right: 0;
  top: 0;
}

.how-copy h2 {
  margin: 0;
  color: #f9f9f6;
  -webkit-text-stroke: clamp(1.4px, 0.22vw, 3px) #050505;
  -webkit-text-fill-color: #f9f9f6;
  text-stroke: clamp(1.4px, 0.22vw, 3px) #050505;
  text-shadow:
    1px 0 #050505,
    -1px 0 #050505,
    0 1px #050505,
    0 -1px #050505,
    1px 1px #050505,
    -1px -1px #050505,
    1px -1px #050505,
    -1px 1px #050505;
  font-size: clamp(6.2rem, 13vw, 12.8rem);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: 0;
}

.how-copy h2 span {
  display: block;
}

.how-copy p {
  margin: clamp(52px, 7vh, 72px) 0 0;
  font-family: "Courier New", ui-monospace, SFMono-Regular, monospace;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.25;
  letter-spacing: 0.16em;
}

.signal-section {
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #020202;
  color: #fff;
}

.signal-video {
  width: 100%;
  height: 100vh;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.snake-section {
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(28px, 4vw, 64px);
  background: #000;
  color: #f5f5f5;
}

.snake-section__inner {
  position: relative;
  width: min(100%, 980px);
  min-height: min(600px, 82vh);
}

.snake-section__copy {
  position: absolute;
  left: 13.5%;
  top: 7%;
  z-index: 3;
  margin: 0;
  font-family: "Courier New", ui-monospace, SFMono-Regular, monospace;
  font-size: clamp(1.18rem, 2.1vw, 1.82rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0.02em;
  color: #f3f3f3;
}

.snake-cat {
  position: absolute;
  left: 10.5%;
  top: 24.5%;
  z-index: 2;
  width: clamp(168px, 17.5vw, 208px);
  height: auto;
  display: block;
  overflow: visible;
  fill: #f7f7f7;
  transition: opacity 180ms ease;
}

.snake-cat__tail,
.snake-cat__mouth,
.snake-cat__whisker {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.snake-cat__tail {
  stroke: #f7f7f7;
  stroke-width: 10;
}

.snake-cat__mouth,
.snake-cat__whisker {
  stroke: #050505;
  stroke-width: 3.4;
}

.snake-cat__eye,
.snake-cat__nose {
  fill: #050505;
}

.snake-food {
  position: absolute;
  left: 0.5%;
  top: 58%;
  z-index: 2;
  width: clamp(24px, 2.7vw, 34px);
  height: auto;
  overflow: visible;
  transition: opacity 180ms ease;
}

.snake-food__coin {
  fill: #f7f7f7;
}

.snake-food__rim {
  fill: none;
  stroke: #f7f7f7;
  stroke-width: 4;
  stroke-linecap: round;
}

.snake-button {
  position: absolute;
  left: 50%;
  top: 52%;
  z-index: 4;
  width: clamp(248px, 31vw, 312px);
  height: clamp(64px, 7vw, 78px);
  border: 0;
  border-radius: 999px;
  background: #c7c7cc;
  color: #050505;
  font: 900 clamp(2rem, 3.4vw, 2.65rem) / 1 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  transform: translate(-50%, -50%);
  box-shadow: none;
  cursor: pointer;
  transition:
    top 180ms ease,
    bottom 180ms ease,
    width 180ms ease,
    height 180ms ease,
    font-size 180ms ease,
    opacity 180ms ease;
}

.snake-game-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.snake-section.is-playing .snake-game-canvas {
  opacity: 1;
  pointer-events: auto;
}

.snake-section.is-playing .snake-cat,
.snake-section.is-playing .snake-food {
  opacity: 0;
}

.snake-section.is-playing .snake-button {
  top: auto;
  bottom: 4%;
  width: clamp(140px, 18vw, 190px);
  height: clamp(42px, 4.8vw, 52px);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  transform: translateX(-50%);
  opacity: 0.86;
}

.wait-section {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f9f9f7;
  color: #050505;
  color-scheme: only light;
  forced-color-adjust: none;
}

.wait-section__panel {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(34px, 5vw, 72px);
  background: #f9f9f7;
  color: #050505;
  color-scheme: only light;
  forced-color-adjust: none;
}

.wait-section h2 {
  margin: 0;
  color: transparent;
  -webkit-text-stroke: clamp(1.4px, 0.24vw, 3px) #050505;
  -webkit-text-fill-color: transparent;
  text-stroke: clamp(1.4px, 0.24vw, 3px) #050505;
  font-size: clamp(5rem, 8.4vw, 9rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
  text-align: center;
  text-wrap: balance;
}

.wait-section h2 span {
  display: block;
}

.ca-section {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(36px, 5vw, 72px);
  background: #fff;
  color: #050505;
  color-scheme: only light;
  forced-color-adjust: none;
}

.ca-section__inner {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: clamp(30px, 5vw, 78px);
}

.ca-copy {
  display: grid;
  gap: clamp(16px, 2.2vw, 28px);
}

.ca-kicker {
  margin: 0;
  font-family: "Courier New", Courier, monospace;
  font-size: clamp(0.95rem, 1.4vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ca-copy h2 {
  margin: 0;
  color: #050505;
  font-size: clamp(5.8rem, 12vw, 11rem);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: 0;
}

.ca-copy h2 span {
  display: block;
}

.ca-copy h2 span:last-child {
  color: #f0cf24;
  -webkit-text-stroke: clamp(1.6px, 0.22vw, 3px) #050505;
  -webkit-text-fill-color: #f0cf24;
  text-stroke: clamp(1.6px, 0.22vw, 3px) #050505;
}

.ca-token-card {
  display: block;
  width: min(100%, 670px);
  padding: clamp(16px, 2.2vw, 26px);
  border: 4px solid #050505;
  border-radius: 8px;
  background: #f0cf24;
  color: #f9f9f7;
  box-shadow: 10px 10px 0 #050505;
}

.ca-token-card span {
  display: block;
  margin-bottom: clamp(10px, 1.2vw, 14px);
  color: #050505;
  font-family: "Courier New", Courier, monospace;
  font-size: clamp(0.82rem, 1.2vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ca-copy code {
  display: block;
  color: #050505;
  font-family: "Courier New", Courier, monospace;
  font-size: clamp(0.9rem, 1.55vw, 1.2rem);
  font-weight: 900;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ca-video {
  display: block;
  width: min(48vw, 520px);
  aspect-ratio: 1;
  object-fit: contain;
  mix-blend-mode: multiply;
  background: transparent;
  filter: none;
}

.final-video-section {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  background: #000;
}

.final-video {
  display: block;
  width: 100vw;
  max-width: none;
  max-height: none;
  height: auto;
  object-fit: contain;
  background: #000;
}

.next-section {
  min-height: 100vh;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: clamp(36px, 6vw, 84px);
  background: #fbfbfa;
  background-image: linear-gradient(#fbfbfa, #fbfbfa);
  color: #050505;
  color-scheme: only light;
  forced-color-adjust: none;
}

.next-section__inner {
  width: min(850px, 100%);
  transform: translate(-5%, -2%);
}

.next-section h2 {
  margin: 0;
  color: #fbfbfa;
  -webkit-text-stroke: clamp(1.5px, 0.24vw, 3px) #050505;
  -webkit-text-fill-color: #fbfbfa;
  text-stroke: clamp(1.5px, 0.24vw, 3px) #050505;
  text-shadow:
    1px 0 #050505,
    -1px 0 #050505,
    0 1px #050505,
    0 -1px #050505,
    1px 1px #050505,
    -1px -1px #050505,
    1px -1px #050505,
    -1px 1px #050505;
  font-size: clamp(5.2rem, 9.7vw, 8.7rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
}

.next-section h2 span {
  display: block;
}

.next-section h2 span:last-child {
  font-size: 1.13em;
}

.box-section {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(36px, 6vw, 82px);
  background: #fff;
  color: #050505;
  color-scheme: only light;
  forced-color-adjust: none;
}

.box-section__inner {
  width: min(920px, 100%);
  display: grid;
  justify-items: center;
  gap: clamp(24px, 3.4vw, 42px);
}

.box-spinner {
  width: min(680px, 82vw);
  aspect-ratio: 760 / 520;
  perspective: 1200px;
}

.box-spinner svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  transform-box: fill-box;
  transform-origin: center;
  transform-style: preserve-3d;
  animation: box-horizontal-spin 2.1s linear infinite;
}

.box-model {
  transform-box: fill-box;
  transform-origin: center;
}

.box-line {
  fill: #fff;
  stroke: #050505;
  stroke-width: 9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.box-top,
.box-side {
  fill: #fff;
}

.box-handle {
  fill: none;
  stroke-width: 22;
}

.box-face-mark {
  fill: none;
  stroke: #050505;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.box-shadow {
  fill: rgba(0, 0, 0, 0.1);
  filter: blur(4px);
}

.box-caption {
  margin: 0;
  font-family: "Courier New", Courier, monospace;
  font-size: clamp(1.05rem, 1.9vw, 1.7rem);
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-align: center;
}

.arrival-section {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(42px, 6vw, 86px);
  background: #fff;
  color: #050505;
  color-scheme: only light;
  forced-color-adjust: none;
  overflow: hidden;
}

.arrival-section__inner {
  width: min(1040px, 100%);
  display: grid;
  grid-template-columns: minmax(360px, 1.12fr) minmax(310px, 0.88fr);
  align-items: center;
  gap: clamp(44px, 6vw, 92px);
}

.arrival-section h2 {
  margin: 0;
  font-size: clamp(5.4rem, 8.4vw, 8.6rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.arrival-section h2 span {
  display: block;
}

.arrival-badge {
  position: relative;
  justify-self: center;
  width: clamp(294px, 31vw, 410px);
  aspect-ratio: 1;
}

.arrival-ring,
.arrival-cat {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.arrival-ring {
  overflow: visible;
  transform-origin: center;
  animation: arrival-text-spin 9s linear infinite;
}

.arrival-ring text {
  fill: #151515;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.arrival-cat {
  inset: 14%;
  width: 72%;
  height: 72%;
  object-fit: contain;
  transform: translateY(2%);
}

.arrival-cat__body,
.arrival-cat__paw,
.arrival-cat__face,
.arrival-cat__whisker,
.arrival-cat__belly {
  fill: #fff;
  stroke: #050505;
  stroke-width: 12;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.arrival-cat__shade {
  fill: rgba(0, 0, 0, 0.14);
  stroke: none;
}

.arrival-cat__paw,
.arrival-cat__face,
.arrival-cat__whisker,
.arrival-cat__belly {
  fill: none;
}

.arrival-cat__eye {
  fill: #050505;
}

.revolution-section {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(42px, 6vw, 76px);
  background: #c80b10 url("assets/kote-revolution-bg.jpg") center / cover no-repeat;
  color: #fff;
  isolation: isolate;
}

.revolution-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.2;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 32% 74%, rgba(0, 0, 0, 0.22));
  mix-blend-mode: multiply;
  pointer-events: none;
}

.revolution-section::after {
  content: none;
}

.revolution-section__inner {
  width: min(1120px, 100%);
  min-height: min(680px, 86vh);
  position: relative;
  margin: 0 auto;
}

.revolution-orb {
  display: none;
}

.revolution-copy {
  position: absolute;
  left: 13%;
  top: 23%;
  z-index: 2;
  max-width: 560px;
}

.revolution-copy h2 {
  margin: 0;
  font-size: clamp(3.15rem, 5.15vw, 5.8rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0;
}

.revolution-copy p {
  margin: clamp(28px, 3vw, 42px) 0 0;
  font-family: "Courier New", Courier, monospace;
  font-size: clamp(1.1rem, 1.8vw, 1.72rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0;
}

.revolution-cat {
  position: absolute;
  right: -8%;
  bottom: -8%;
  z-index: 1;
  width: clamp(440px, 54vw, 720px);
  transform-origin: 54% 88%;
  animation: revolution-cat-walk 1.25s steps(2, end) infinite;
}

.revolution-cat svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.revolution-cat__body,
.revolution-cat__beret,
.revolution-cat__beret-front,
.revolution-cat__side,
.revolution-cat__stripes,
.revolution-cat__spots,
.revolution-cat__eye,
.revolution-cat__nose,
.revolution-cat__mouth {
  fill: none;
  stroke: #030303;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.revolution-cat__body,
.revolution-cat__beret,
.revolution-cat__beret-front {
  fill: #030303;
  stroke-width: 0;
}

.revolution-cat__face {
  fill: #c90009;
}

.revolution-cat__shadow {
  fill: #8b0005;
}

.revolution-cat__badge {
  fill: #e00012;
}

.revolution-cat__badge-hole {
  fill: #050505;
}

.revolution-cat__side,
.revolution-cat__stripes,
.revolution-cat__spots {
  stroke-width: 20;
}

.revolution-cat__eye,
.revolution-cat__nose {
  fill: #030303;
  stroke-width: 0;
}

.revolution-cat__mouth {
  stroke-width: 18;
}

.signal-scene {
  position: relative;
  width: 100%;
  min-height: 100vh;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 38% 54%, rgba(255, 255, 255, 0.2), transparent 8%),
    radial-gradient(ellipse at 28% 48%, rgba(255, 255, 255, 0.12), transparent 13%),
    radial-gradient(ellipse at 58% 36%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(180deg, #020202 0%, #080808 43%, #171717 72%, #090909 100%);
}

.signal-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.26;
  background:
    linear-gradient(90deg, transparent 0 49%, rgba(255, 255, 255, 0.1) 50%, transparent 51%) 0 0 / 7px 7px,
    radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.2), transparent 55%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.signal-sky {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.star {
  position: absolute;
  width: clamp(3px, 0.35vw, 6px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.44);
}

.star--one {
  left: 64%;
  top: 10%;
}

.star--two {
  left: 79%;
  top: 9%;
}

.star--three {
  left: 84%;
  top: 16%;
}

.star--four {
  left: 72%;
  top: 23%;
}

.cloud {
  position: absolute;
  border-radius: 50%;
  filter: blur(13px);
  opacity: 0.46;
  background: rgba(120, 120, 120, 0.45);
}

.cloud--one {
  left: 7%;
  top: 42%;
  width: clamp(190px, 29vw, 470px);
  height: clamp(58px, 8vw, 124px);
  transform: rotate(-8deg);
}

.cloud--two {
  left: 23%;
  top: 30%;
  width: clamp(160px, 25vw, 390px);
  height: clamp(48px, 7vw, 108px);
  transform: rotate(9deg);
}

.cloud--three {
  right: 2%;
  top: 41%;
  width: clamp(170px, 28vw, 430px);
  height: clamp(54px, 8vw, 120px);
  opacity: 0.34;
}

.beam {
  position: absolute;
  left: 55%;
  bottom: 4%;
  width: clamp(190px, 28vw, 520px);
  height: clamp(520px, 72vw, 960px);
  transform-origin: 50% 100%;
  background: linear-gradient(8deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.05) 49%, transparent 74%);
  clip-path: polygon(47% 100%, 56% 100%, 100% 0, 0 0);
  filter: blur(2px);
  mix-blend-mode: screen;
}

.beam--wide {
  transform: rotate(-38deg);
  opacity: 0.72;
}

.beam--narrow {
  width: clamp(120px, 18vw, 310px);
  transform: rotate(-25deg);
  opacity: 0.46;
}

.signal-badge {
  position: absolute;
  left: clamp(210px, 27vw, 520px);
  top: clamp(48px, 10vh, 120px);
  z-index: 5;
  width: clamp(210px, 24vw, 390px);
  overflow: visible;
  fill: #cfcfcf;
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.42)) drop-shadow(0 0 26px rgba(255, 255, 255, 0.11));
  transform: rotate(-8deg);
}

.signal-badge__cut,
.signal-badge__eye,
.signal-badge__face {
  stroke: #050505;
  stroke-width: 12;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.signal-badge__eye,
.signal-badge__face {
  fill: #050505;
}

.signal-badge__face {
  fill: none;
  stroke-width: 9;
}

.city {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  height: clamp(96px, 16vh, 180px);
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.05));
}

.city::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: rgba(0, 0, 0, 0.68);
}

.building {
  position: absolute;
  bottom: 0;
  width: clamp(44px, 5vw, 78px);
  background: #030303;
  box-shadow: 0 -14px 24px rgba(255, 255, 255, 0.06);
}

.building::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 100%;
  width: 2px;
  height: clamp(32px, 6vw, 76px);
  background: #070707;
}

.building--one {
  left: 8%;
  height: 42%;
}

.building--two {
  left: 13%;
  height: 58%;
}

.building--three {
  left: 19%;
  height: 40%;
}

.building--four {
  left: 31%;
  height: 31%;
}

.building--five {
  left: 45%;
  height: 38%;
}

.building--six {
  left: 55%;
  height: 55%;
}

.building--seven {
  left: 61%;
  height: 34%;
}

.building--eight {
  left: 69%;
  height: 46%;
}

.roof {
  position: absolute;
  right: 0;
  bottom: clamp(76px, 15vh, 160px);
  z-index: 7;
  width: clamp(290px, 35vw, 560px);
  height: clamp(180px, 22vw, 320px);
}

.roof-cat {
  position: absolute;
  left: 0;
  bottom: 43%;
  width: clamp(130px, 16vw, 220px);
  overflow: visible;
  fill: #000;
  stroke: #000;
  stroke-width: 12;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.45));
}

.roof__platform {
  position: absolute;
  left: 7%;
  right: 0;
  top: 47%;
  height: clamp(12px, 1.5vw, 22px);
  background: #000;
}

.roof__support {
  position: absolute;
  top: 49%;
  width: clamp(12px, 1.25vw, 20px);
  height: 60%;
  background: #000;
  transform-origin: top center;
}

.roof__support::before {
  content: "";
  position: absolute;
  left: -220%;
  top: 44%;
  width: 500%;
  height: clamp(10px, 1vw, 16px);
  background: #000;
  transform: rotate(56deg);
}

.roof__support--left {
  left: 32%;
  transform: rotate(18deg);
}

.roof__support--right {
  right: 8%;
  transform: rotate(-18deg);
}

@keyframes shadow-pulse {
  0%,
  100% {
    opacity: 0.28;
    transform: translateX(-50%) scaleX(1);
  }

  50% {
    opacity: 0.13;
    transform: translateX(-50%) scaleX(0.72);
  }
}

@keyframes cat-jitter-walk {
  0%,
  100% {
    transform: translateX(0) rotate(-1deg);
  }

  25% {
    transform: translateX(12px) rotate(1deg);
  }

  50% {
    transform: translateX(4px) rotate(-1deg);
  }

  75% {
    transform: translateX(-10px) rotate(1deg);
  }
}

@keyframes revolution-cat-walk {
  0%,
  100% {
    transform: translateX(0) translateY(0) rotate(-0.4deg);
  }

  25% {
    transform: translateX(-18px) translateY(3px) rotate(0.7deg);
  }

  50% {
    transform: translateX(-6px) translateY(0) rotate(-0.8deg);
  }

  75% {
    transform: translateX(14px) translateY(4px) rotate(0.5deg);
  }
}

@keyframes box-horizontal-spin {
  from {
    transform: rotateY(0deg);
  }

  to {
    transform: rotateY(360deg);
  }
}

@keyframes arrival-text-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 760px) {
  body {
    overscroll-behavior-x: none;
  }

  .lang-toggle {
    top: 18px;
    left: 50%;
    right: auto;
    gap: 14px;
    width: auto;
    height: auto;
    border-width: 0;
    font-size: 0.86rem;
    box-shadow: none;
  }

  .hero {
    min-height: 52svh;
    place-items: center;
    padding: clamp(58px, 9svh, 72px) clamp(18px, 5vw, 32px) clamp(22px, 5svh, 38px);
  }

  .hero__inner {
    grid-template-columns: 1fr;
    align-content: center;
    gap: clamp(16px, 4svh, 28px);
  }

  .logo {
    justify-self: center;
    font-size: clamp(2.4rem, 13vw, 3.7rem);
  }

  .cat-face {
    width: min(100%, 420px);
    justify-self: center;
    grid-template-columns: 1fr 0.24fr 1fr;
    gap: clamp(12px, 4vw, 24px);
  }

  .eye {
    width: clamp(58px, 17vw, 76px);
  }

  .nose {
    width: clamp(18px, 5vw, 26px);
    height: clamp(11px, 3vw, 16px);
  }

  .about-section {
    min-height: 100svh;
    place-items: center;
    padding: clamp(28px, 6svh, 44px) clamp(18px, 5vw, 30px);
  }

  .about-section__inner {
    grid-template-columns: 1fr;
    align-content: center;
    justify-items: start;
    gap: clamp(22px, 4svh, 34px);
  }

  .about-copy {
    width: 100%;
    gap: clamp(18px, 3.6svh, 28px);
  }

  .mini-logo {
    font-size: clamp(1.28rem, 6vw, 1.72rem);
  }

  .about-copy h2 {
    font-size: clamp(3.35rem, 16vw, 5.05rem);
    line-height: 0.92;
  }

  .about-copy p {
    font-size: clamp(0.95rem, 4vw, 1.18rem);
    letter-spacing: 0.12em;
  }

  .coin-scene {
    justify-self: center;
    --coin-size: clamp(178px, 58vw, 258px);
    min-height: calc(var(--coin-size) * 0.86);
  }

  .how-section {
    min-height: 100svh;
    padding: clamp(28px, 6svh, 44px) clamp(16px, 5vw, 28px);
  }

  .how-section__inner {
    min-height: min(720px, 88svh);
  }

  .exchange-note {
    left: 2px;
    top: 12%;
    font-size: clamp(0.92rem, 5vw, 1.35rem);
  }

  .waving-cat {
    left: 0;
    top: 35%;
    width: clamp(82px, 25vw, 112px);
    overflow: hidden;
  }

  .how-copy {
    left: clamp(96px, 28vw, 128px);
    top: 6%;
  }

  .how-copy h2 {
    -webkit-text-stroke-width: clamp(1px, 0.5vw, 1.8px);
    text-stroke-width: clamp(1px, 0.5vw, 1.8px);
    font-size: clamp(2.95rem, 12.8vw, 4.35rem);
    line-height: 0.9;
  }

  .how-copy p {
    margin-top: clamp(24px, 5svh, 42px);
    margin-left: calc(-1 * clamp(54px, 15vw, 78px));
    max-width: min(100%, 31ch);
    font-size: clamp(0.9rem, 3.6vw, 1.08rem);
    letter-spacing: 0.08em;
  }

  .signal-section,
  .signal-scene,
  .snake-section,
  .wait-section,
  .ca-section,
  .final-video-section,
  .revolution-section,
  .box-section,
  .arrival-section,
  .next-section {
    min-height: 100svh;
  }

  .signal-video {
    height: 100svh;
    object-fit: contain;
    object-position: center center;
    background: #000;
  }

  .box-section {
    padding: clamp(28px, 6svh, 48px) clamp(18px, 5vw, 30px);
  }

  .box-section__inner {
    gap: clamp(18px, 3svh, 30px);
    transform: translateY(-2%);
  }

  .box-spinner {
    width: min(94vw, 500px);
  }

  .box-caption {
    font-size: clamp(0.9rem, 4.4vw, 1.2rem);
    letter-spacing: 0.06em;
  }

  .arrival-section {
    padding: clamp(28px, 6svh, 46px) clamp(20px, 6vw, 32px);
  }

  .arrival-section__inner {
    min-height: min(690px, 88svh);
    grid-template-columns: 1fr;
    align-content: center;
    justify-items: center;
    gap: clamp(24px, 4.5svh, 40px);
  }

  .arrival-section h2 {
    justify-self: start;
    font-size: clamp(3.65rem, 16.8vw, 5.6rem);
    line-height: 1.02;
  }

  .arrival-badge {
    width: clamp(220px, 68vw, 318px);
  }

  .arrival-ring text {
    font-size: 24px;
  }

  .revolution-section {
    padding: clamp(24px, 5svh, 42px) clamp(18px, 5vw, 30px);
  }

  .revolution-section__inner {
    min-height: min(640px, 88svh);
  }

  .revolution-orb {
    left: 2%;
    top: 38%;
    width: clamp(50px, 15vw, 72px);
  }

  .revolution-copy {
    left: 5%;
    top: 17%;
    max-width: min(330px, 88vw);
  }

  .revolution-copy h2 {
    font-size: clamp(2.65rem, 12.6vw, 4.35rem);
    line-height: 1.08;
  }

  .revolution-copy p {
    margin-top: clamp(22px, 4.5svh, 34px);
    max-width: 24ch;
    font-size: clamp(0.9rem, 4vw, 1.2rem);
  }

  .revolution-cat {
    right: -34%;
    bottom: -2%;
    width: clamp(350px, 108vw, 520px);
  }

  .snake-section {
    padding: clamp(24px, 6svh, 44px) clamp(18px, 5vw, 30px);
  }

  .wait-section__panel {
    min-height: 100svh;
    padding: clamp(22px, 5svh, 42px) clamp(18px, 5vw, 30px);
  }

  .wait-section h2 {
    -webkit-text-stroke-width: clamp(1.2px, 0.48vw, 1.8px);
    text-stroke-width: clamp(1.2px, 0.48vw, 1.8px);
    font-size: clamp(3.15rem, 14vw, 5rem);
    line-height: 1;
  }

  .ca-section {
    padding: clamp(26px, 5svh, 42px) clamp(18px, 5vw, 30px);
  }

  .ca-section__inner {
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: clamp(24px, 4svh, 34px);
  }

  .ca-copy {
    gap: clamp(12px, 2.4svh, 22px);
  }

  .ca-copy h2 {
    font-size: clamp(4.8rem, 24vw, 7.2rem);
    line-height: 0.82;
  }

  .ca-copy h2 span:last-child {
    -webkit-text-stroke-width: clamp(1.2px, 0.45vw, 1.8px);
    text-stroke-width: clamp(1.2px, 0.45vw, 1.8px);
  }

  .ca-token-card {
    padding: clamp(14px, 4vw, 20px);
    border-width: 3px;
    box-shadow: 7px 7px 0 #050505;
  }

  .ca-copy code {
    font-size: clamp(0.78rem, 3.3vw, 0.98rem);
    line-height: 1.42;
  }

  .ca-video {
    justify-self: center;
    width: min(76vw, 330px);
    max-height: 36svh;
  }

  .final-video-section {
    padding: 0;
  }

  .final-video {
    width: 100vw;
    max-height: none;
  }

  .snake-section__inner {
    width: min(100%, 520px);
    min-height: min(610px, 88svh);
  }

  .snake-section__copy {
    left: 9%;
    top: 7%;
    font-size: clamp(1rem, 4.9vw, 1.42rem);
    line-height: 1.18;
  }

  .snake-cat {
    left: 9%;
    top: 24.5%;
    width: clamp(150px, 50vw, 198px);
  }

  .snake-food {
    left: 7%;
    top: 61%;
    width: clamp(24px, 8vw, 31px);
  }

  .snake-button {
    top: 62%;
    width: clamp(212px, 66vw, 282px);
    height: clamp(58px, 16vw, 72px);
    font-size: clamp(1.75rem, 8.4vw, 2.34rem);
  }

  .snake-section.is-playing .snake-button {
    bottom: 5%;
    width: clamp(124px, 36vw, 156px);
    height: clamp(38px, 11vw, 46px);
    font-size: clamp(0.9rem, 4vw, 1.05rem);
  }

  .next-section {
    padding: clamp(28px, 6svh, 48px) clamp(22px, 6vw, 34px);
    align-items: start;
  }

  .next-section__inner {
    width: min(100%, 520px);
    transform: none;
    padding-top: clamp(132px, 27svh, 220px);
  }

  .next-section h2 {
    -webkit-text-stroke-width: clamp(1.1px, 0.45vw, 1.8px);
    text-stroke-width: clamp(1.1px, 0.45vw, 1.8px);
    font-size: clamp(3.35rem, 15vw, 5.2rem);
    line-height: 1.16;
  }

  .signal-scene {
    background:
      radial-gradient(ellipse at 38% 55%, rgba(255, 255, 255, 0.2), transparent 11%),
      radial-gradient(ellipse at 15% 50%, rgba(255, 255, 255, 0.11), transparent 18%),
      linear-gradient(180deg, #020202 0%, #080808 48%, #171717 76%, #090909 100%);
  }

  .signal-badge {
    left: clamp(56px, 18vw, 94px);
    top: clamp(82px, 14svh, 132px);
    width: clamp(190px, 62vw, 260px);
  }

  .beam {
    left: 49%;
    bottom: 6%;
    height: clamp(460px, 118vw, 650px);
  }

  .beam--wide {
    transform: rotate(-32deg);
  }

  .beam--narrow {
    transform: rotate(-20deg);
  }

  .star--one {
    left: 58%;
    top: 8%;
  }

  .star--two {
    left: 78%;
    top: 10%;
  }

  .star--three {
    left: 87%;
    top: 18%;
  }

  .star--four {
    left: 69%;
    top: 25%;
  }

  .cloud--one {
    left: -12%;
    top: 43%;
    width: 76vw;
  }

  .cloud--two {
    left: 28%;
    top: 32%;
    width: 68vw;
  }

  .cloud--three {
    right: -24%;
    top: 48%;
    width: 82vw;
  }

  .city {
    height: clamp(108px, 18svh, 148px);
  }

  .roof {
    right: -44%;
    bottom: clamp(94px, 17svh, 136px);
    width: clamp(360px, 112vw, 450px);
    height: clamp(200px, 55vw, 260px);
  }

  .roof-cat {
    left: 4%;
    width: clamp(118px, 35vw, 150px);
  }

  .building {
    width: clamp(34px, 12vw, 54px);
  }
}

@media (max-width: 380px) {
  .logo {
    font-size: clamp(2.2rem, 12.5vw, 3.1rem);
  }

  .eye {
    width: clamp(52px, 16.5vw, 66px);
  }

  .about-copy h2 {
    font-size: clamp(3.05rem, 15vw, 3.65rem);
  }

  .coin-scene {
    --coin-size: clamp(170px, 56vw, 220px);
  }

  .how-copy h2 {
    font-size: clamp(2.62rem, 12.4vw, 3.25rem);
  }

  .how-copy {
    left: clamp(86px, 27vw, 106px);
  }

  .how-copy p {
    font-size: clamp(0.82rem, 3.5vw, 0.95rem);
  }

  .signal-badge {
    left: 42px;
    width: clamp(170px, 58vw, 220px);
  }

  .roof {
    right: -52%;
  }

  .snake-section__copy {
    left: 7%;
    font-size: clamp(0.88rem, 4.7vw, 1.08rem);
  }

  .snake-cat {
    left: 6%;
    width: clamp(134px, 48vw, 158px);
  }

  .snake-button {
    width: clamp(194px, 64vw, 236px);
    height: clamp(54px, 15vw, 62px);
    font-size: clamp(1.55rem, 8vw, 1.94rem);
  }

  .next-section h2 {
    font-size: clamp(2.9rem, 15.4vw, 4.2rem);
  }

  .box-spinner {
    width: min(96vw, 420px);
  }

  .box-caption {
    font-size: clamp(0.78rem, 3.8vw, 0.98rem);
  }

  .arrival-section h2 {
    font-size: clamp(3rem, 15.2vw, 3.9rem);
  }

  .arrival-badge {
    width: clamp(198px, 66vw, 250px);
  }

  .revolution-copy h2 {
    font-size: clamp(2.35rem, 12vw, 3.2rem);
  }

  .revolution-copy p {
    font-size: clamp(0.78rem, 3.7vw, 0.98rem);
  }

  .revolution-cat {
    right: -40%;
    width: clamp(330px, 112vw, 430px);
  }
}

@media (max-width: 480px) {
  .site-shell > section {
    overflow: hidden;
  }

  .hero__inner {
    min-height: 36svh;
  }

  .about-section__inner {
    min-height: 88svh;
  }

  .about-copy {
    align-self: end;
  }

  .coin-scene {
    align-self: start;
  }

  .how-section__inner {
    width: 100%;
    max-width: 420px;
    min-height: 86svh;
    display: grid;
    grid-template-rows: auto auto auto;
    align-content: center;
    row-gap: clamp(20px, 4svh, 34px);
  }

  .exchange-note {
    position: relative;
    left: 0;
    top: 0;
    grid-column: 1;
    grid-row: 1;
    width: max-content;
    max-width: 40%;
    transform: rotate(-18deg);
  }

  .how-copy {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    grid-column: 1;
    grid-row: 1 / 4;
    align-self: center;
    width: 100%;
    padding-left: clamp(104px, 30vw, 118px);
  }

  .how-copy h2 {
    font-size: clamp(2.5rem, 11.2vw, 3.5rem);
  }

  .how-copy p {
    max-width: 25ch;
    margin-top: clamp(22px, 4svh, 34px);
    margin-left: 0;
    letter-spacing: 0.1em;
    font-size: clamp(0.78rem, 3.25vw, 0.98rem);
  }

  .waving-cat {
    position: relative;
    left: clamp(10px, 3vw, 18px);
    top: auto;
    grid-column: 1;
    grid-row: 3;
    align-self: start;
    width: clamp(82px, 25vw, 110px);
  }

  .next-section__inner,
  .box-section__inner,
  .arrival-section__inner,
  .revolution-section__inner,
  .ca-section__inner,
  .snake-section__inner {
    width: min(100%, 430px);
  }

  .next-section h2 {
    font-size: clamp(3rem, 14.8vw, 4.55rem);
  }

  .wait-section h2 {
    -webkit-text-stroke-width: clamp(1.1px, 0.45vw, 1.6px);
    text-stroke-width: clamp(1.1px, 0.45vw, 1.6px);
    font-size: clamp(2.9rem, 13vw, 4.1rem);
  }

  .revolution-section__inner {
    min-height: 88svh;
  }

  .revolution-copy {
    top: 14%;
  }

  .revolution-cat {
    bottom: 0;
  }

  .box-spinner {
    transform: translateX(1%);
  }

  .arrival-section__inner {
    gap: clamp(18px, 3.5svh, 30px);
  }

  .arrival-section h2 {
    justify-self: stretch;
  }

  .snake-section__copy {
    max-width: 24ch;
  }
}

@media (max-width: 760px) and (orientation: landscape) {
  .hero,
  .about-section,
  .how-section,
  .next-section,
  .revolution-section,
  .box-section,
  .arrival-section,
  .wait-section,
  .ca-section,
  .final-video-section,
  .snake-section {
    min-height: 560px;
  }

  .hero {
    min-height: 320px;
  }

  .about-section__inner,
  .arrival-section__inner {
    grid-template-columns: 0.95fr 1.05fr;
    min-height: 0;
  }

  .about-copy h2 {
    font-size: clamp(3rem, 10vw, 4.5rem);
  }

  .coin-scene {
    --coin-size: clamp(180px, 32vw, 250px);
  }

  .arrival-section h2 {
    font-size: clamp(3.1rem, 10.5vw, 4.8rem);
  }

  .arrival-badge {
    width: clamp(220px, 36vw, 290px);
  }

  .wait-section__panel {
    min-height: 560px;
  }

  .wait-section h2 {
    font-size: clamp(3rem, 10vw, 4.6rem);
    line-height: 1;
  }

  .ca-section__inner {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .ca-copy h2 {
    font-size: clamp(4.4rem, 13vw, 7rem);
  }

  .ca-token-card {
    box-shadow: 7px 7px 0 #050505;
  }

  .ca-video {
    max-height: 420px;
  }

  .final-video {
    width: 100vw;
    max-height: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eye {
    animation: none;
  }

  .pupil {
    transition: none;
  }

  .coin-video,
  .coin-shadow,
  .waving-cat,
  .box-spinner svg,
  .arrival-ring,
  .revolution-cat {
    animation: none;
  }
}
