/* WallPop — promo site styles, polished pass.
 * Way more on-page motion: animated gradients, drifting orbs in
 * the background, shimmer on CTAs, hover-lift on every card,
 * marquee tag list, parallax-feeling section reveals. */

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #06010f;
  --bg-2: #0e0420;
  --text: rgba(255, 255, 255, 0.92);
  --text-muted: rgba(255, 255, 255, 0.62);
  --text-dim: rgba(255, 255, 255, 0.42);
  --border: rgba(255, 255, 255, 0.10);
  --pink: #FF6B6B;
  --magenta: #C147FF;
  --blue: #47A0FF;
  --teal: #2BE3D5;
  --mint: #2EE6A0;
  --yellow: #FFD960;
  --cashgreen: #00D632;
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ─── Animated gradient text ─────────────────────────────────── */
.grad-text {
  background: linear-gradient(135deg,
    var(--pink) 0%, var(--magenta) 33%,
    var(--blue) 66%, var(--mint) 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradShift 8s ease-in-out infinite;
}
@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* ─── Drifting background orbs (everywhere except hero) ─────── */
body::before, body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: -3;
  opacity: 0.45;
  animation: orbDrift 22s ease-in-out infinite;
}
body::before {
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, var(--magenta) 0%, transparent 65%);
  top: -10vw; right: -15vw;
}
body::after {
  width: 70vw; height: 70vw;
  background: radial-gradient(circle, var(--blue) 0%, transparent 65%);
  bottom: -15vw; left: -20vw;
  animation-delay: -11s;
}
@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(8vw, -6vw) scale(1.08); }
  66% { transform: translate(-6vw, 8vw) scale(0.92); }
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}
#heroCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: -2;
}
.hero-fade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(6, 1, 15, 0.0) 0%,
    rgba(6, 1, 15, 0.40) 50%,
    rgba(6, 1, 15, 0.95) 100%);
  z-index: -1;
  pointer-events: none;
}

.hero-content {
  text-align: center;
  padding: 60px 24px;
  max-width: 920px;
  position: relative;
  animation: heroIn 0.9s cubic-bezier(0.18, 0.78, 0.36, 1) both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: 1.6px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 26px;
  position: relative;
  overflow: hidden;
}
.hero-tag::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px var(--mint);
  animation: heartbeat 2s ease-in-out infinite;
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: 0.7; }
}

.hero-title {
  font-size: clamp(50px, 8vw, 108px);
  font-weight: 900;
  letter-spacing: -3.4px;
  line-height: 0.95;
  margin-bottom: 28px;
}

.hero-lead {
  font-size: clamp(16px, 1.6vw, 21px);
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 36px;
}
.hero-lead strong { color: var(--text); font-weight: 700; }

.hero-ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 32px;
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.2px;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  transition: transform 180ms cubic-bezier(0.18, 0.78, 0.36, 1),
              box-shadow 220ms ease, filter 220ms ease;
}
.btn.primary {
  background: linear-gradient(135deg, var(--pink), var(--magenta), var(--blue));
  background-size: 250% auto;
  color: white;
  box-shadow: 0 14px 50px rgba(193, 71, 255, 0.40),
              0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  animation: gradShift 6s ease-in-out infinite;
}
/* Shimmer sweep on the primary CTA */
.btn.primary::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.45) 45%,
    rgba(255, 255, 255, 0.08) 55%,
    transparent 70%);
  background-size: 250% 250%;
  background-position: 200% 0;
  pointer-events: none;
  z-index: -1;
  animation: shimmer 3.5s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 200% 0; }
  50%      { background-position: -100% 0; }
}
.btn.primary:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.10);
  box-shadow: 0 22px 60px rgba(193, 71, 255, 0.65);
}
.btn.ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border);
  color: var(--text);
  backdrop-filter: blur(6px);
}
.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.10);
  transform: translateY(-3px);
}

.hero-meta {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.4px;
}

/* ─── BADGE STRIP (quick tag cloud above gallery) ───────────── */
.badges {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  padding: 12px 24px 60px;
  max-width: 980px;
  margin: -8px auto 0;
}
.badge {
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.5px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 180ms ease;
}
.badge:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.30);
  background: rgba(255, 255, 255, 0.10);
  transform: translateY(-2px);
}

/* ─── SECTION HEADERS ────────────────────────────────────────── */
.section-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-align: center;
  display: block;
}
h2.section-title {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -2.0px;
  line-height: 1.02;
  margin-bottom: 12px;
  text-align: center;
}
.section-lead {
  text-align: center;
  color: var(--text-muted);
  margin: 0 auto 50px;
  max-width: 660px;
  font-size: 16px;
}

/* ─── GALLERY ────────────────────────────────────────────────── */
.gallery {
  padding: 60px 24px 100px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}
.cat {
  margin-bottom: 56px;
}
.cat-head {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding-left: 4px;
  display: flex; align-items: center; gap: 10px;
}
.cat-head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border), transparent);
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #111;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 280ms cubic-bezier(0.18, 0.78, 0.36, 1),
              box-shadow 280ms ease, border-color 280ms ease;
}
.card canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.card span {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.2px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
  color: white;
}
/* Animated rainbow border on hover */
.card::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: 16px;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--pink), var(--magenta), var(--blue), var(--mint));
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 280ms ease;
  pointer-events: none;
  animation: gradShift 4s ease-in-out infinite;
}
.card:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: 0 22px 70px rgba(193, 71, 255, 0.40);
}
.card:hover::before { opacity: 1; }

/* ─── CUSTOM MEDIA SHOWCASE ──────────────────────────────────── */
.custom-show {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.custom-card {
  position: relative;
  border-radius: 26px;
  padding: 50px;
  background: linear-gradient(135deg,
    rgba(255, 107, 107, 0.18),
    rgba(193, 71, 255, 0.18),
    rgba(71, 160, 255, 0.18));
  border: 1px solid var(--border);
  overflow: hidden;
}
.custom-card::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.25), transparent 60%);
  border-radius: 50%;
  top: -250px; right: -200px;
  filter: blur(80px);
  pointer-events: none;
  animation: orbDrift 18s ease-in-out infinite;
}
.custom-card .grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.drop-mock {
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  border: 2px dashed rgba(255, 255, 255, 0.30);
  display: grid; place-items: center;
  background: rgba(0, 0, 0, 0.30);
  position: relative;
  overflow: hidden;
}
.drop-mock-arrow {
  font-size: 56px;
  animation: bobV 2s ease-in-out infinite;
}
@keyframes bobV {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.drop-mock-label {
  position: absolute;
  bottom: 18px;
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}
@media (max-width: 720px) {
  .custom-card { padding: 30px; }
  .custom-card .grid-2 { grid-template-columns: 1fr; }
}

/* ─── FEATURES ───────────────────────────────────────────────── */
.features {
  padding: 100px 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.feat {
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--border);
  transition: transform 200ms ease, border-color 200ms ease;
  position: relative;
  overflow: hidden;
}
.feat::before {
  content: "";
  position: absolute;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(193, 71, 255, 0.15), transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 240ms ease;
}
.feat:hover {
  transform: translateY(-4px);
  border-color: rgba(193, 71, 255, 0.40);
}
.feat:hover::before { opacity: 1; }
.feat-emoji {
  font-size: 32px;
  margin-bottom: 12px;
  display: inline-block;
  animation: floaty 4s ease-in-out infinite;
}
.feat:nth-child(2n) .feat-emoji { animation-delay: -1.3s; }
.feat:nth-child(3n) .feat-emoji { animation-delay: -2.6s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.feat h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}
.feat p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ─── INSTALL ────────────────────────────────────────────────── */
.install {
  padding: 100px 24px;
  max-width: 760px;
  margin: 0 auto;
}
.steps {
  list-style: none;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 48px;
}
.steps li {
  counter-increment: step;
  position: relative;
  padding: 20px 22px 20px 70px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  font-size: 14.5px;
  color: var(--text-muted);
  transition: transform 180ms ease, border-color 180ms ease;
}
.steps li:hover {
  transform: translateX(4px);
  border-color: rgba(193, 71, 255, 0.40);
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 18px; top: 18px;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800; font-size: 15px;
  background: linear-gradient(135deg, var(--pink), var(--magenta));
  color: white;
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.35);
}
.steps strong { color: var(--text); }
.steps code {
  background: rgba(255, 255, 255, 0.10);
  padding: 2px 8px;
  border-radius: 5px;
  font-size: 12px;
  font-family: ui-monospace, "SF Mono", monospace;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer {
  padding: 40px 24px 60px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap; gap: 18px;
  justify-content: space-between; align-items: center;
  font-size: 13px;
  color: var(--text-muted);
  max-width: 1300px;
  margin: 0 auto;
}
.footer-tip { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.cashapp {
  background: linear-gradient(135deg, var(--cashgreen), #00B22A);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 800;
  color: white !important;
  box-shadow: 0 6px 18px rgba(0, 214, 50, 0.30);
  transition: transform 180ms ease, filter 180ms ease;
}
.cashapp:hover { filter: brightness(1.1); transform: translateY(-2px); }

/* ─── DOWNLOAD GATE ──────────────────────────────────────────── */
.dl-gate {
  position: fixed; inset: 0; background: rgba(8, 4, 18, 0.78);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  z-index: 9999; display: grid; place-items: center;
  animation: dlGateFade 0.18s ease-out; padding: 20px;
}
@keyframes dlGateFade { from { opacity: 0 } to { opacity: 1 } }
.dl-gate[hidden] { display: none !important; }
.dl-gate-card {
  position: relative; width: min(580px, 100%);
  background: linear-gradient(180deg, #1c1325 0%, #100a18 100%);
  border: 1px solid var(--border);
  border-radius: 22px; padding: 32px 32px 26px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  animation: dlGatePop 0.32s cubic-bezier(0.18, 0.78, 0.36, 1);
  color: #fff;
}
@keyframes dlGatePop {
  from { transform: scale(0.94); opacity: 0 }
  to   { transform: scale(1); opacity: 1 }
}
.dl-gate-close {
  position: absolute; top: 14px; right: 14px;
  background: transparent; border: none; color: rgba(255,255,255,0.55);
  font-size: 26px; cursor: pointer; width: 36px; height: 36px;
  border-radius: 8px; line-height: 1;
}
.dl-gate-close:hover { color: #fff; background: rgba(255,255,255,0.08); }
.dl-gate-icon { font-size: 30px; margin-bottom: 4px; }
.dl-gate-title {
  font-size: 28px; font-weight: 900;
  letter-spacing: -0.5px; margin: 0 0 12px;
  background: linear-gradient(135deg, var(--pink), var(--magenta), var(--blue));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.dl-gate-lead {
  font-size: 14px; line-height: 1.55;
  color: rgba(255,255,255,0.78); margin: 0 0 14px;
}
.dl-gate-card ol {
  font-size: 13px; line-height: 1.55;
  color: rgba(255,255,255,0.85); margin: 0 0 12px;
  padding-left: 22px;
}
.dl-gate-card ol li { margin-bottom: 4px; }
.dl-gate-note { font-size: 12px; color: rgba(255,255,255,0.55); margin: 0 0 18px; }
.dl-gate-btn {
  display: block; text-align: center;
  font-size: 15px !important; padding: 14px 22px !important;
  transition: opacity 0.2s ease, filter 0.2s ease;
}
.dl-gate-btn[data-locked="true"] {
  opacity: 0.55; pointer-events: none; filter: saturate(0.6);
}

@media (max-width: 720px) {
  .hero-title { letter-spacing: -1.6px; }
  .footer-tip { width: 100%; }
}

/* ---------- Notchy mascot cameo ---------- */
.notchy-hello {
  max-width: 720px;
  margin: 60px auto 40px;
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.notchy-stage {
  position: relative;
  width: 320px; height: 220px;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
}
.notchy-halo {
  position: absolute;
  inset: -10% -8% -20% -8%;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.85;
  background: radial-gradient(circle, #2EE6A088 0%, #2EE6A022 50%, transparent 75%);
  transition: background 0.6s ease;
  pointer-events: none;
}
.notchy-svg {
  position: relative;
  width: 280px; height: auto;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.55));
  z-index: 1;
}
.notchy-svg .ny-face { display: none; }
.notchy-svg.ny-state-idle      .ny-face-idle,
.notchy-svg.ny-state-celebrate .ny-face-celebrate,
.notchy-svg.ny-state-love      .ny-face-love,
.notchy-svg.ny-state-wink      .ny-face-wink { display: inline; }

@keyframes ny-bounce {
  0%, 100% { transform: translateY(0); }
  35% { transform: translateY(-8px) scale(1.03); }
  70% { transform: translateY(2px) scale(0.99); }
}
.notchy-svg.ny-bounce { animation: ny-bounce 0.9s cubic-bezier(0.18, 0.78, 0.36, 1); }

.notchy-label {
  font-size: 22px; font-weight: 800; letter-spacing: -0.4px;
  margin-top: 8px;
  background: linear-gradient(135deg, #FF6B6B, #C147FF, #47A0FF);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.notchy-blurb {
  color: rgba(255,255,255,0.62);
  max-width: 540px; margin: 12px auto 0;
  font-size: 14px; line-height: 1.55;
}

@keyframes ny-arm-sway-l {
  0%, 100% { transform: rotate(0deg); }
  50%      { transform: rotate(-8deg); }
}
@keyframes ny-arm-sway-r {
  0%, 100% { transform: rotate(0deg); }
  50%      { transform: rotate(8deg); }
}
.notchy-svg .ny-arm-l, .notchy-svg .ny-hand-l {
  transform-origin: 36px 60px;
  animation: ny-arm-sway-l 1.6s ease-in-out infinite;
}
.notchy-svg .ny-arm-r, .notchy-svg .ny-hand-r {
  transform-origin: 164px 60px;
  animation: ny-arm-sway-r 1.6s ease-in-out infinite;
}

/* ---------- Hero Notchy — the mascot, front and center ---------- */
.hero-notchy-wrap {
  display: flex; justify-content: center;
  margin: 0 auto 22px;
  position: relative; z-index: 5;
}
.hero-notchy-stage {
  position: relative;
  width: 360px; height: 220px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
}
.hero-notchy-halo {
  position: absolute;
  width: 360px; height: 220px;
  border-radius: 50%;
  filter: blur(36px);
  opacity: 0.85;
  background: radial-gradient(circle, #C147FFaa 0%, #C147FF33 50%, transparent 75%);
  transition: background 0.6s ease;
  pointer-events: none;
  top: -10px; left: 0;
  z-index: 1;
}
.hero-notchy-svg {
  position: relative;
  width: 320px; height: auto;
  filter: drop-shadow(0 8px 28px rgba(0,0,0,0.55))
          drop-shadow(0 0 24px rgba(255, 60, 172, 0.45));
  z-index: 2;
}
.hero-notchy-svg .ny-face { visibility: hidden; }
.hero-notchy-svg.ny-state-idle      .ny-face-idle,
.hero-notchy-svg.ny-state-celebrate .ny-face-celebrate,
.hero-notchy-svg.ny-state-love      .ny-face-love,
.hero-notchy-svg.ny-state-wink      .ny-face-wink { visibility: visible; }

@keyframes hero-ny-bounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  35% { transform: translateY(-10px) scale(1.03) rotate(-1deg); }
  70% { transform: translateY(2px) scale(0.99) rotate(0.5deg); }
}
.hero-notchy-svg.ny-bounce {
  animation: hero-ny-bounce 0.95s cubic-bezier(0.18, 0.78, 0.36, 1);
}

/* Speech bubble — comic-style with a tail pointing at Notchy */
.hero-notchy-bubble {
  position: absolute;
  top: -10px; right: -28px;
  background: linear-gradient(135deg, #FF6B6B, #C147FF, #47A0FF);
  padding: 2px;
  border-radius: 18px;
  z-index: 3;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.45));
  animation: bubble-pop 0.6s cubic-bezier(0.18, 0.78, 0.36, 1) both;
}
.hero-notchy-bubble::before {
  /* Tail pointing toward Notchy's head */
  content: '';
  position: absolute;
  bottom: -10px; left: 22px;
  width: 0; height: 0;
  border: 10px solid transparent;
  border-top-color: #C147FF;
  border-bottom: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.hero-notchy-bubble-text {
  display: inline-block;
  background: #0a0014;
  color: #fff;
  padding: 9px 16px;
  border-radius: 16px;
  font-size: 14px; font-weight: 800;
  letter-spacing: -0.2px;
  white-space: nowrap;
}
@keyframes bubble-pop {
  0%   { transform: scale(0.6) rotate(-6deg); opacity: 0; }
  60%  { transform: scale(1.06) rotate(2deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

/* Sway arms */
@keyframes hero-ny-arm-l {
  0%, 100% { transform: rotate(0deg); }
  50%      { transform: rotate(-10deg); }
}
@keyframes hero-ny-arm-r {
  0%, 100% { transform: rotate(0deg); }
  50%      { transform: rotate(10deg); }
}
.hero-notchy-svg .ny-arm-l, .hero-notchy-svg .ny-hand-l {
  transform-origin: 36px 60px;
  animation: hero-ny-arm-l 1.6s ease-in-out infinite;
}
.hero-notchy-svg .ny-arm-r, .hero-notchy-svg .ny-hand-r {
  transform-origin: 164px 60px;
  animation: hero-ny-arm-r 1.6s ease-in-out infinite;
}
