:root {
  --pink: #ff2d8a;
  --pink-hot: #ff1480;
  --pink-deep: #c41068;
  --pink-ink: #6e1144;
  --blush: #ffe6f1;
  --foam: #fff8fb;
  --cream: #fff4f8;
  --stroke: #fff;
  --drool: #7ad3ff;
  --hill: #ef6aa8;
  --hill-deep: #c73a7a;
  --shadow: 0 14px 0 rgba(196, 16, 104, 0.18);
  --font-display: "Bagel Fat One", "Sniglet", system-ui, sans-serif;
  --font-round: "Sniglet", "Quicksand", system-ui, sans-serif;
  --font-body: "Quicksand", "Sniglet", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--pink-ink);
  font-family: var(--font-body);
  background: var(--blush);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  font: inherit;
  cursor: pointer;
}

.world {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 700px at 12% -10%, #fff 0%, transparent 55%),
    radial-gradient(900px 600px at 92% 8%, #ffc3de 0%, transparent 50%),
    linear-gradient(180deg, #fff4f8 0%, #ffd9ea 42%, #ffc7e2 100%);
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.45;
  animation: floaty 14s ease-in-out infinite;
}

.orb-a {
  width: 220px;
  height: 220px;
  left: 6%;
  top: 18%;
  background: radial-gradient(circle at 30% 30%, #fff, #ff8ec4 70%, transparent);
}

.orb-b {
  width: 160px;
  height: 160px;
  right: 8%;
  top: 36%;
  background: radial-gradient(circle at 30% 30%, #fff, #ff4ea0 70%, transparent);
  animation-delay: -4s;
}

.orb-c {
  width: 280px;
  height: 280px;
  left: 40%;
  bottom: 8%;
  background: radial-gradient(circle at 30% 30%, #fff7, #ff9ad0 60%, transparent);
  animation-delay: -8s;
}

.spark-field,
.bubble-field {
  position: absolute;
  inset: 0;
}

.spark {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #fff;
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
  animation: twinkle 2.8s ease-in-out infinite;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.05) 46%, rgba(255, 180, 220, 0.12));
  animation: rise 16s linear infinite;
}

.hills {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
}

.hill {
  position: absolute;
  bottom: -80px;
  width: 70vw;
  height: 240px;
  border-radius: 50%;
  animation: hill-breathe 10s ease-in-out infinite;
}

.hill-1 {
  left: -12%;
  background: #f48abb;
}

.hill-2 {
  left: 28%;
  width: 80vw;
  background: #e45c9d;
  animation-delay: -3s;
}

.hill-3 {
  right: -18%;
  width: 62vw;
  background: #c73a7a;
  animation-delay: -6s;
}

.weed {
  position: absolute;
  bottom: 18px;
  width: 18px;
  height: 46px;
  background: #9c2460;
  border-radius: 40% 40% 20% 20%;
  transform-origin: bottom center;
  animation: sway 3.6s ease-in-out infinite;
}

.weed::before,
.weed::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 16px;
  background: #9c2460;
  border-radius: 50%;
  top: 4px;
}

.weed::before { left: -14px; transform: rotate(-24deg); }
.weed::after { right: -14px; transform: rotate(24deg); }
.w1 { left: 8%; }
.w2 { left: 26%; animation-delay: -1s; }
.w3 { right: 22%; animation-delay: -1.8s; }
.w4 { right: 8%; animation-delay: -0.4s; }

.cursor-goo {
  position: fixed;
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff, var(--pink));
  box-shadow: 0 0 24px rgba(255, 45, 138, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 40;
}

body.has-pointer .cursor-goo {
  opacity: 0.7;
}

.nav,
main,
.foot {
  position: relative;
  z-index: 2;
}

.nav {
  position: sticky;
  top: 14px;
  z-index: 20;
  margin: 14px auto 0;
  width: min(1120px, calc(100% - 28px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px;
  background: rgba(255, 248, 251, 0.78);
  border: 4px solid #fff;
  border-radius: 999px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav.is-tight {
  transform: scale(0.98);
  box-shadow: 0 8px 0 rgba(196, 16, 104, 0.16);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-stamp {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  background: #f2f0f3;
  box-shadow: 0 4px 0 rgba(196, 16, 104, 0.2);
}

.brand-stamp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--pink);
  letter-spacing: 0.02em;
}

.brand-symbol {
  font-family: var(--font-round);
  font-size: 0.78rem;
  color: var(--pink-deep);
}

.links {
  display: flex;
  gap: 8px;
}

.links a {
  font-family: var(--font-round);
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 999px;
  background: #ffe0ef;
  border: 2px solid #fff;
  transition: transform 0.2s ease, background 0.2s ease;
}

.links a:hover {
  transform: translateY(-2px) rotate(-2deg);
  background: #fff;
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stamp {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #ffd0e4;
  transition: transform 0.2s ease;
}

.stamp img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.stamp:hover {
  transform: scale(1.08) rotate(8deg);
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 2px solid #ffd0e4;
  border-radius: 14px;
  background: #fff;
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
}

.burger i {
  display: block;
  height: 3px;
  border-radius: 99px;
  background: var(--pink);
}

.hero {
  width: min(980px, calc(100% - 32px));
  margin: 28px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.street-sign {
  position: relative;
  background: var(--pink);
  color: #fff;
  border: 4px solid #fff;
  border-radius: 18px;
  padding: 8px 28px 10px;
  box-shadow: 0 8px 0 rgba(196, 16, 104, 0.24);
  transform: rotate(-2deg);
}

.sign-town,
.sign-nick {
  margin: 0;
  line-height: 1;
}

.sign-town {
  font-family: var(--font-round);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.8;
}

.sign-nick {
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.sign-bolt {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  border-radius: 50%;
  background: #ffe38f;
  box-shadow: inset 0 -2px 0 #e0b84a;
}

.sign-bolt.left { left: 8px; }
.sign-bolt.right { right: 8px; }

.bubble-title {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 12vw, 7.4rem);
  line-height: 0.86;
  color: var(--pink);
  letter-spacing: 0.01em;
  -webkit-text-stroke: 8px #fff;
  paint-order: stroke fill;
  filter: drop-shadow(6px 8px 0 #ff9ec8);
  animation: title-pop 1.1s cubic-bezier(0.2, 1.4, 0.3, 1) both;
}

.heart-i,
.heart-o {
  position: relative;
}

.heart-i::before,
.heart-o::after {
  content: "";
  position: absolute;
  width: 0.28em;
  height: 0.28em;
  background: var(--pink);
  border: 4px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 2px 2px 0 #ff9ec8;
}

.heart-i::before {
  top: 0.04em;
  left: 50%;
  margin-left: -0.14em;
}

.heart-o::after {
  top: 0.18em;
  left: 50%;
  margin-left: -0.14em;
  width: 0.22em;
  height: 0.22em;
}

.ticker-chip {
  margin: 10px 0 0;
  font-family: var(--font-round);
  background: #fff;
  border: 3px solid #ffd0e4;
  border-radius: 999px;
  padding: 6px 16px;
  color: var(--pink-deep);
}

.statue {
  position: relative;
  width: min(420px, 86vw);
  margin: 10px 0 0;
  perspective: 700px;
}

.statue-glow {
  position: absolute;
  inset: 12% 8% 18%;
  background: radial-gradient(circle, #fff 0%, #ff8ec4 40%, transparent 70%);
  filter: blur(18px);
  animation: pulse 3.4s ease-in-out infinite;
}

.statue-plate {
  position: relative;
  border-radius: 48% 52% 46% 54%;
  overflow: hidden;
  background: #eceaed;
  border: 6px solid #fff;
  box-shadow: 0 18px 0 rgba(196, 16, 104, 0.16);
  transform-origin: center 70%;
  animation: breathe 3.2s ease-in-out infinite;
}

.statue-plate img {
  width: 100%;
  display: block;
}

.drool {
  position: absolute;
  width: 14px;
  height: 22px;
  left: 58%;
  top: 58%;
  background: var(--drool);
  border-radius: 40% 40% 60% 60%;
  box-shadow: 0 0 0 3px #fff;
  animation: drool 2.4s ease-in-out infinite;
}

.puddle {
  width: 72%;
  height: 28px;
  margin: -6px auto 0;
  background: radial-gradient(ellipse, rgba(255, 45, 138, 0.28), transparent 70%);
  filter: blur(2px);
}

.flies {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.fly {
  position: absolute;
  width: 10px;
  height: 6px;
  background: #221016;
  border-radius: 50%;
  animation: buzz 2.2s linear infinite;
}

.fly::before,
.fly::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 5px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  top: -3px;
}

.fly::before { left: -4px; }
.fly::after { right: -4px; }

.tagline {
  margin: 18px 0 0;
  font-family: var(--font-round);
  font-size: clamp(1.15rem, 3vw, 1.7rem);
  line-height: 1.35;
  max-width: 16ch;
}

.tagline em {
  font-style: normal;
  color: var(--pink);
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: min(560px, 100%);
}

.ca-plate {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px 10px 14px;
  background: #fff;
  border: 4px solid #ffd0e4;
  border-radius: 20px;
  box-shadow: 0 8px 0 rgba(196, 16, 104, 0.12);
}

.ca-dot {
  font-family: var(--font-round);
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 999px;
  background: #ffe0ef;
  color: var(--pink-deep);
  text-transform: lowercase;
}

.ca-plate code {
  flex: 1;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-btn {
  border: 0;
  background: var(--pink);
  color: #fff;
  border-radius: 14px;
  padding: 8px 14px;
  font-family: var(--font-round);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.gum-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--font-round);
  font-size: 1.02rem;
  border: 4px solid #fff;
  box-shadow: 0 8px 0 rgba(196, 16, 104, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.gum-btn img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.gum-btn.pink {
  background: var(--pink);
  color: #fff;
}

.gum-btn.ghost {
  background: #fff;
  color: var(--pink-ink);
}

.gum-btn:hover {
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 0 11px 0 rgba(196, 16, 104, 0.18);
}

.sol-chip {
  height: 36px;
  padding: 4px 10px;
  background: #fff;
  border: 3px solid #ffd0e4;
  border-radius: 999px;
  display: grid;
  place-items: center;
}

.sol-chip img {
  height: 26px;
  width: 26px;
  object-fit: contain;
}

.chalk-run {
  margin: 36px 0 10px;
  overflow: hidden;
  border-block: 4px dashed #ff9ec8;
  background: rgba(255, 255, 255, 0.45);
}

.chalk-track {
  display: flex;
  gap: 28px;
  width: max-content;
  padding: 12px 0;
  animation: marquee 28s linear infinite;
}

.chalk-track span {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--pink);
  white-space: nowrap;
}

.section-head {
  width: min(1120px, calc(100% - 32px));
  margin: 72px auto 28px;
  text-align: center;
}

.kicker {
  margin: 0 0 6px;
  font-family: var(--font-round);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--pink-deep);
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  color: var(--pink);
  -webkit-text-stroke: 5px #fff;
  paint-order: stroke fill;
  filter: drop-shadow(4px 5px 0 #ff9ec8);
  line-height: 0.95;
}

.dossier {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  background: #fff8fb;
  border: 5px solid #fff;
  border-radius: 32px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.tabs {
  display: flex;
  gap: 8px;
  padding: 12px 16px 0;
  background: #ffd7ea;
}

.tab {
  font-family: var(--font-round);
  background: #ffb3d4;
  color: var(--pink-ink);
  padding: 8px 16px;
  border-radius: 14px 14px 0 0;
}

.tab.on {
  background: #fff8fb;
}

.dossier-body {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 28px;
  padding: 28px;
}

.dossier-photo {
  background: #f3f1f4;
  border: 4px solid #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 0 rgba(196, 16, 104, 0.1);
}

.dossier-photo img {
  width: 100%;
}

.dossier-photo p {
  margin: 0;
  padding: 10px;
  text-align: center;
  font-family: var(--font-round);
  color: var(--pink-deep);
}

.dossier-copy h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--pink);
}

.dossier-copy p {
  margin: 0 0 12px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.facts {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 8px;
}

.facts li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: #ffe6f1;
  border-radius: 14px;
  border: 2px solid #fff;
}

.facts span {
  font-family: var(--font-round);
  color: var(--pink-deep);
}

.hopscotch {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.chalk-path {
  position: absolute;
  inset: 18% 2% auto;
  width: 96%;
  height: 180px;
  z-index: 0;
  pointer-events: none;
}

.chalk-path path {
  fill: none;
  stroke: #ff8ec4;
  stroke-width: 6;
  stroke-dasharray: 12 14;
  stroke-linecap: round;
  opacity: 0.55;
}

.square {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 5px solid #fff;
  border-radius: 28px;
  padding: 22px 18px 20px;
  box-shadow: var(--shadow);
  text-align: center;
  overflow: hidden;
}

.square::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px dashed #ffb3d4;
  border-radius: 20px;
  pointer-events: none;
}

.s1 { transform: rotate(-2deg); }
.s2 { transform: rotate(2deg) translateY(18px); }
.s3 { transform: rotate(-1.5deg); }
.s4 { transform: rotate(2.5deg) translateY(12px); }

.square .num {
  position: absolute;
  top: 12px;
  left: 16px;
  z-index: 1;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-family: var(--font-display);
}

.square img {
  width: 54px;
  height: 54px;
  margin: 18px auto 10px;
  object-fit: contain;
}

.square h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--pink);
}

.square p {
  margin: 0;
  line-height: 1.45;
}

.chart-jump {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-family: var(--font-round);
  background: #fff;
  border: 3px solid #ffd0e4;
  border-radius: 999px;
  padding: 6px 12px;
}

.chart-jump img {
  width: 18px;
  height: 18px;
}

.bubble-tv {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.tv-ear {
  position: absolute;
  top: 18%;
  width: 28px;
  height: 70px;
  background: var(--pink);
  border: 4px solid #fff;
}

.tv-ear.left {
  left: -16px;
  border-radius: 18px 0 0 18px;
}

.tv-ear.right {
  right: -16px;
  border-radius: 0 18px 18px 0;
}

.tv-screen {
  background: #1b1016;
  border: 8px solid #fff;
  border-radius: 36px;
  min-height: 560px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.tv-screen iframe {
  width: 100%;
  height: 560px;
  border: 0;
}

.poster-wall {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 40px;
  background: #fff;
  border: 8px solid #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.banner {
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
}

.tape {
  position: absolute;
  width: 84px;
  height: 28px;
  background: rgba(255, 236, 170, 0.82);
  z-index: 2;
  box-shadow: 0 2px 0 rgba(160, 110, 20, 0.15);
}

.tape.tl { top: 12px; left: 18px; transform: rotate(-18deg); }
.tape.tr { top: 16px; right: 22px; transform: rotate(14deg); }
.tape.bl { bottom: 86px; left: 24px; transform: rotate(10deg); }
.tape.br { bottom: 90px; right: 28px; transform: rotate(-12deg); }

.poster-stickers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 16px;
}

.sticker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #ffe6f1;
  border: 3px solid #fff;
  font-family: var(--font-round);
  box-shadow: 0 6px 0 rgba(196, 16, 104, 0.12);
  transition: transform 0.2s ease;
}

.sticker img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.sticker.x { transform: rotate(-3deg); }
.sticker.buy { transform: rotate(2deg); background: var(--pink); color: #fff; }
.sticker.dex { transform: rotate(-1.5deg); }

.sticker:hover {
  transform: translateY(-3px) rotate(0deg);
}

.foot {
  width: min(1120px, calc(100% - 32px));
  margin: 20px auto 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255, 248, 251, 0.8);
  border: 4px solid #fff;
  border-radius: 28px;
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  color: var(--pink);
}

.foot-brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
}

.foot p {
  margin: 0;
  max-width: 36ch;
  text-align: center;
}

.foot-links {
  display: flex;
  gap: 8px;
}

.foot-links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 50%;
  border: 2px solid #ffd0e4;
}

.foot-links img {
  width: 20px;
  height: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
}

.reveal.is-in {
  animation: pop-in 0.7s cubic-bezier(0.2, 1.2, 0.3, 1) both;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-24px) translateX(12px); }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.6) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.15) rotate(20deg); }
}

@keyframes rise {
  0% { transform: translateY(20vh); opacity: 0; }
  15% { opacity: 0.8; }
  100% { transform: translateY(-110vh); opacity: 0; }
}

@keyframes hill-breathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

@keyframes sway {
  0%, 100% { transform: rotate(-6deg); }
  50% { transform: rotate(8deg); }
}

@keyframes title-pop {
  from { transform: scale(0.7) rotate(-6deg); opacity: 0; }
  to { transform: scale(1) rotate(0deg); opacity: 1; }
}

@keyframes breathe {
  0%, 100% { transform: scale(1) rotate(-1deg); }
  50% { transform: scale(1.03) rotate(1.4deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.85; }
}

@keyframes drool {
  0%, 100% { height: 16px; transform: translateY(0); }
  50% { height: 28px; transform: translateY(6px); }
}

@keyframes buzz {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(18px, -10px) rotate(20deg); }
  50% { transform: translate(-8px, -18px) rotate(-10deg); }
  75% { transform: translate(12px, 6px) rotate(14deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes pop-in {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 900px) {
  .links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 12px;
    background: #fff8fb;
    border: 4px solid #fff;
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

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

  .burger {
    display: flex;
  }

  .dossier-body,
  .hopscotch {
    grid-template-columns: 1fr;
  }

  .s1, .s2, .s3, .s4 {
    transform: none;
  }

  .chalk-path {
    display: none;
  }

  .tv-ear {
    display: none;
  }

  .tv-screen,
  .tv-screen iframe {
    min-height: 420px;
  }

  .tape.bl,
  .tape.br {
    display: none;
  }
}

@media (max-width: 640px) {
  .nav {
    top: 8px;
  }

  .brand-copy {
    display: none;
  }

  .bubble-title {
    -webkit-text-stroke: 5px #fff;
  }

  .ca-plate {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
