: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;
}

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

.hero {
  min-height: 92vh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 56px);
  background: var(--bg);
}

.hero__inner {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(190px, 0.76fr) minmax(360px, 1.52fr);
  align-items: center;
  gap: clamp(36px, 8vw, 116px);
}

.logo {
  margin: 0;
  color: var(--fg);
  font-size: clamp(4.4rem, 13vw, 10.2rem);
  font-weight: 300;
  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(20px, 5vw, 72px);
}

.eye {
  position: relative;
  width: clamp(116px, 17vw, 218px);
  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(42px, 5vw, 68px);
  height: clamp(24px, 3vw, 40px);
  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-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.mini-logo__coin {
  display: block;
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.18));
}

.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(110px, 13vw, 160px);
  aspect-ratio: 1;
}

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

.waving-cat__body {
  fill: #000;
  fill-rule: nonzero;
}

.waving-cat__arm,
.waving-cat__leg {
  fill: none;
  stroke: #000;
  stroke-width: 14;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.waving-cat__eye {
  fill: #fff;
}

.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;
  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;
}

.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;
}

.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);
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 100svh;
    place-items: center;
    padding: clamp(32px, 8svh, 56px) clamp(18px, 5vw, 32px);
  }

  .hero__inner {
    grid-template-columns: 1fr;
    align-content: center;
    gap: clamp(34px, 7svh, 54px);
  }

  .logo {
    justify-self: center;
    font-size: clamp(4rem, 22vw, 6.4rem);
  }

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

  .eye {
    width: clamp(98px, 29vw, 128px);
  }

  .nose {
    width: clamp(28px, 8vw, 38px);
    height: clamp(18px, 5vw, 24px);
  }

  .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;
    gap: clamp(22px, 4svh, 34px);
  }

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

  .about-copy h2 {
    font-size: clamp(3.5rem, 16.5vw, 5.25rem);
    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(190px, 60vw, 270px);
    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: 34%;
    width: clamp(86px, 26vw, 118px);
  }

  .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(4.2rem, 19vw, 6.1rem);
    line-height: 0.86;
  }

  .how-copy p {
    margin-top: clamp(38px, 8svh, 56px);
    margin-left: calc(-1 * clamp(70px, 18vw, 96px));
    max-width: min(100%, 34ch);
    font-size: clamp(0.9rem, 3.6vw, 1.08rem);
    letter-spacing: 0.08em;
  }

  .signal-section,
  .signal-scene,
  .snake-section,
  .next-section {
    min-height: 100svh;
  }

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

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

  .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: 53%;
    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: center;
  }

  .next-section__inner {
    width: min(100%, 520px);
    transform: translate(0, -3%);
  }

  .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.45rem, 15.7vw, 5.7rem);
    line-height: 1.22;
  }

  .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(3.6rem, 20vw, 4.7rem);
  }

  .eye {
    width: clamp(88px, 28vw, 106px);
  }

  .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(3.6rem, 18vw, 4.5rem);
  }

  .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);
  }
}

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

  .pupil {
    transition: none;
  }

  .coin-video,
  .coin-shadow {
    animation: none;
  }
}
