/* ═══════════════════════════════════════════════════════
   SLANG CREATIVE AGENCY — Coming Soon
   White × Colorful × Street Art × Gen-Z Energy
   style.css
═══════════════════════════════════════════════════════ */

/* ── 1. TOKENS ── */
:root {
  --orange:  #FF6B35;
  --blue:    #4CC9F0;
  --yellow:  #FFE14D;
  --pink:    #FF4D8D;
  --purple:  #9B5DE5;
  --lime:    #06D6A0;
  --dark:    #1A1A2E;
  --dark2:   #16213E;
  --white:   #FFFFFF;
  --cream:   #FAFAF8;
  --game-bg: #FFF8DC;
  --count-bg:#F0F7FF;

  --sticker-shadow: 5px 5px 0 var(--dark);
  --sticker-border: 3px solid var(--dark);

  --font-head: 'Fredoka', sans-serif;
  --font-hand: 'Caveat', cursive;
  --font-body: 'Nunito', sans-serif;

  --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease:   cubic-bezier(0.16, 1, 0.3, 1);

  --z-confetti: 9000;
  --z-cursor:   8000;
  --z-nav:      500;
  --z-content:  10;
}

/* ── 2. RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; cursor: none; }
button { cursor: none; border: none; background: none; font: inherit; }
img, svg { display: block; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

@media (hover: none) {
  body { cursor: auto; }
  a, button { cursor: pointer; }
  #cur, #cur-ring { display: none; }
}

/* ── 3. CONFETTI CANVAS ── */
#confettiCanvas {
  position: fixed; inset: 0; z-index: var(--z-confetti);
  pointer-events: none; width: 100%; height: 100%;
}

/* ── 4. CUSTOM CURSOR ── */
#cur {
  position: fixed; pointer-events: none; z-index: var(--z-cursor);
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--orange);
  transform: translate(-50%,-50%);
  transition: width 0.2s var(--bounce), height 0.2s var(--bounce), background 0.2s;
}

#cur.hover { width: 16px; height: 16px; background: var(--pink); }

#cur-ring {
  position: fixed; pointer-events: none; z-index: calc(var(--z-cursor) - 1);
  width: 38px; height: 38px; border-radius: 50%;
  border: 2.5px solid var(--orange);
  transform: translate(-50%,-50%);
  transition: width 0.2s var(--bounce), height 0.2s var(--bounce), border-color 0.2s;
}

#cur-ring.hover {
  width: 55px; height: 55px;
  border-color: var(--pink);
}

/* ── 5. MARQUEE STRIPS ── */
.marquee-bar {
  background: var(--dark);
  overflow: hidden; padding: 10px 0;
  border-top: 2.5px solid var(--dark);
  border-bottom: 2.5px solid var(--dark);
}

.marquee-bar.marquee-alt { background: var(--orange); }
.marquee-bar.marquee-lime { background: var(--lime); }

.marquee-track {
  display: flex; white-space: nowrap;
  animation: marquee-scroll 28s linear infinite;
}

.marquee-track.reverse { animation-direction: reverse; animation-duration: 22s; }

.marquee-track span {
  font-family: var(--font-head);
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); padding-right: 40px;
}

.marquee-alt .marquee-track span { color: var(--white); }
.marquee-lime .marquee-track span { color: var(--dark); }

/* ── 6. NAVIGATION ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
  background: rgba(250,250,248,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

#navbar.scrolled { border-bottom-color: var(--dark); }

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 700;
  color: var(--dark); letter-spacing: -0.02em;
}

.nav-right { display: flex; align-items: center; gap: 16px; }

.music-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 50px;
  background: var(--dark); color: var(--white);
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em;
  border: 2.5px solid var(--dark);
  transition: background 0.2s, color 0.2s, transform 0.2s var(--bounce);
  cursor: none; will-change: transform;
}

.music-btn:hover { transform: translateY(-2px) rotate(-2deg); }
.music-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  animation: music-pulse 1.2s ease-in-out infinite;
}

.music-btn.active .music-icon { animation: spin-slow 2s linear infinite; }

.nav-socials { display: flex; gap: 4px; }

.nav-social {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  color: var(--dark);
  transition: background 0.2s, color 0.2s, transform 0.2s var(--bounce);
  cursor: none;
}

.nav-social:hover {
  background: var(--dark); color: var(--white);
  transform: translateY(-3px) rotate(5deg);
}

/* ── 7. HERO SECTION ── */
#hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden; padding: 120px 24px 100px;
  background: var(--cream);
}

/* Paint splash blobs */
.splash {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 1;
  filter: blur(0);
}

.splash-1 {
  width: 420px; height: 380px; top: -80px; right: -60px;
  background: radial-gradient(ellipse, rgba(255,107,53,0.18) 30%, rgba(255,107,53,0.06) 70%, transparent);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  animation: blob-morph 12s ease-in-out infinite;
}

.splash-2 {
  width: 380px; height: 340px; bottom: 60px; left: -80px;
  background: radial-gradient(ellipse, rgba(76,201,240,0.2) 30%, rgba(76,201,240,0.07) 70%, transparent);
  border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
  animation: blob-morph 16s ease-in-out infinite reverse;
}

.splash-3 {
  width: 300px; height: 280px; top: 30%; left: 10%;
  background: radial-gradient(ellipse, rgba(255,228,77,0.2) 30%, transparent 70%);
  border-radius: 70% 30% 50% 50% / 40% 60% 40% 60%;
  animation: blob-morph 10s ease-in-out infinite 2s;
}

.splash-4 {
  width: 250px; height: 220px; top: 15%; right: 20%;
  background: radial-gradient(ellipse, rgba(155,93,229,0.15) 30%, transparent 70%);
  border-radius: 50% 50% 30% 70% / 60% 40% 60% 40%;
  animation: blob-morph 14s ease-in-out infinite 4s;
}

/* Floating doodles */
.doodles { position: absolute; inset: 0; pointer-events: none; z-index: 2; }

.doodle {
  position: absolute;
  animation: float-doodle 5s ease-in-out infinite;
  will-change: transform;
}

.d1  { top: 10%; left: 6%;   animation-delay: 0s;   animation-duration: 6s; }
.d2  { top: 8%;  right: 12%; animation-delay: 0.7s; animation-duration: 5s; }
.d3  { top: 40%; left: 4%;   animation-delay: 1.2s; animation-duration: 7s; }
.d4  { top: 20%; right: 6%;  animation-delay: 0.3s; animation-duration: 5.5s; }
.d5  { bottom: 30%; left: 8%;animation-delay: 1.8s; animation-duration: 6.5s; }
.d6  { bottom: 25%; right: 8%;animation-delay: 0.5s;animation-duration: 6s; }
.d7  { top: 60%; right: 12%; animation-delay: 2s;   animation-duration: 5.5s; }
.d8  { top: 72%; left: 15%;  animation-delay: 1.4s; animation-duration: 7s; }
.d9  { top: 15%; left: 28%;  animation-delay: 0.9s; animation-duration: 5s; }
.d10 { top: 85%; right: 20%; animation-delay: 2.2s; animation-duration: 6s; }
.d11 { top: 35%; right: 5%;  animation-delay: 1s;   animation-duration: 8s; }
.d12 { bottom: 15%; left: 30%;animation-delay: 0.6s;animation-duration: 6s; }

.arabic-doodle {
  font-family: var(--font-hand);
  font-size: 1.8rem; font-weight: 700;
  color: var(--purple); transform: rotate(-10deg);
  background: rgba(155,93,229,0.08);
  padding: 4px 12px; border-radius: 8px;
  border: 2px dashed rgba(155,93,229,0.3);
}

.arabic-doodle-2 {
  font-family: var(--font-hand);
  font-size: 1.6rem; font-weight: 700;
  color: var(--orange); transform: rotate(8deg);
}

/* Hero content */
.hero-content {
  position: relative; z-index: var(--z-content);
  display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 24px;
}

.arabic-sub {
  font-family: var(--font-hand);
  font-size: 1.6rem; font-weight: 700;
  color: var(--purple);
  transform: rotate(-3deg);
  opacity: 0.7;
}

/* ── 8. SLANG TITLE ── */
.slang-title {
  display: flex; align-items: baseline; gap: 0.04em;
  line-height: 0.88; user-select: none;
  font-family: var(--font-head);
  font-size: clamp(6rem, 20vw, 14rem);
  font-weight: 700; letter-spacing: -0.04em;
}

.sletter {
  display: inline-block;
  position: relative;
  cursor: none;
  transform-origin: bottom center;
  transition: transform 0.3s var(--bounce);
  animation: letter-enter 0.7s var(--bounce) both;
}

.sletter:hover { transform: translateY(-18px) rotate(-6deg) scale(1.08); }

.sl-s { color: var(--orange); animation-delay: 0.05s; }
.sl-l { color: var(--blue);   animation-delay: 0.12s; transform: translateY(-12px); }
.sl-a { color: var(--pink);   animation-delay: 0.19s; }
.sl-n { color: var(--lime);   animation-delay: 0.26s; transform: translateY(-8px); }
.sl-g { color: var(--purple); animation-delay: 0.33s; }

/* Thick outline / sticker feel on letters */
.sletter::before {
  content: attr(data-letter);
  position: absolute; inset: 0;
  -webkit-text-stroke: 8px var(--dark);
  z-index: -1; pointer-events: none;
}

/* ── 9. COMING SOON BADGE ── */
.coming-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--dark); color: var(--white);
  padding: 12px 28px; border-radius: 50px;
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow: 4px 4px 0 var(--orange);
  animation: badge-pop 0.6s var(--bounce) 0.5s both;
}

.badge-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
  animation: blink 1.4s ease-in-out infinite;
}

.coming-text { display: inline-flex; gap: 0.05em; }

.ct {
  display: inline-block;
  animation: wave-letter 2s ease-in-out infinite;
}

.ct:nth-child(1)  { animation-delay: 0s;    }
.ct:nth-child(2)  { animation-delay: 0.1s;  }
.ct:nth-child(3)  { animation-delay: 0.2s;  }
.ct:nth-child(4)  { animation-delay: 0.3s;  }
.ct:nth-child(5)  { animation-delay: 0.4s;  }
.ct:nth-child(6)  { animation-delay: 0.5s;  }
.ct:nth-child(7)  { animation-delay: 0.6s;  }
.ct:nth-child(8)  { animation-delay: 0.7s;  }
.ct:nth-child(9)  { animation-delay: 0.8s;  }
.ct:nth-child(10) { animation-delay: 0.9s;  }
.ct:nth-child(11) { animation-delay: 1.0s;  }
.ct-sp { width: 0.4em; }

/* ── 10. HERO EXTRAS ── */
.hero-tagline {
  font-family: var(--font-body); font-size: 1.1rem; font-weight: 400;
  color: rgba(26,26,46,0.65); max-width: 420px; line-height: 1.6;
}

.hero-tagline em { font-style: normal; font-weight: 700; color: var(--orange); }

.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange); color: var(--white);
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 600;
  padding: 16px 38px; border-radius: 50px;
  border: var(--sticker-border);
  box-shadow: var(--sticker-shadow);
  transition: transform 0.2s var(--bounce), box-shadow 0.2s;
  cursor: none; will-change: transform;
  text-decoration: none;
}

.hero-cta:hover {
  transform: translate(-3px,-3px);
  box-shadow: 8px 8px 0 var(--dark);
}

.hero-cta:active {
  transform: translate(2px,2px);
  box-shadow: 2px 2px 0 var(--dark);
}

.city-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-hand); font-size: 1.1rem;
  color: rgba(26,26,46,0.45);
}

/* Paint drips */
.paint-drips {
  position: absolute; bottom: -1px; left: 0; right: 0;
  z-index: 3; pointer-events: none;
}

.paint-drips svg { width: 100%; height: 80px; display: block; }

/* ── 11. SHARED SECTION STYLES ── */
.section-wrap {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
}

section { padding: 100px 0; }

.section-eyebrow {
  font-family: var(--font-hand); font-size: 1rem;
  color: var(--orange); font-weight: 600;
  margin-bottom: 8px; display: block;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700; line-height: 1.05;
  margin-bottom: 16px; letter-spacing: -0.03em;
  color: var(--dark);
}

.section-title em {
  font-style: normal; color: var(--orange);
  display: inline-block;
  animation: jiggle-text 3s ease-in-out infinite;
}

.section-sub {
  font-size: 1rem; color: rgba(26,26,46,0.55);
  margin-bottom: 48px; font-family: var(--font-hand); font-size: 1.1rem;
}

/* ── 12. REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

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

/* ── 13. GAME SECTION ── */
#game {
  background: var(--game-bg);
  border-top: 3px solid var(--dark);
  border-bottom: 3px solid var(--dark);
  position: relative; overflow: hidden;
}

.game-container {
  display: flex; flex-direction: column;
  align-items: center; gap: 12px; margin-top: 40px;
}

.game-hud {
  display: flex; align-items: center; gap: 24px;
  background: var(--white);
  border: var(--sticker-border);
  border-radius: 16px; padding: 10px 24px;
  box-shadow: var(--sticker-shadow);
  width: 100%; max-width: 490px;
}

.hud-score, .hud-best {
  display: flex; flex-direction: column; align-items: center;
}

.hud-label {
  font-family: var(--font-head); font-size: 0.6rem;
  letter-spacing: 0.15em; color: rgba(26,26,46,0.4);
  text-transform: uppercase;
}

.hud-val {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 700;
  color: var(--dark); line-height: 1;
}

.hud-lives {
  margin-left: auto; display: flex; gap: 4px;
}

.heart {
  display: inline-block; width: 22px; height: 22px;
  position: relative;
}

.heart::before {
  content: '';
  position: absolute; inset: 0;
  background-color: var(--pink);
  clip-path: path('M11 20C11 20 2 13 2 7a5 5 0 0 1 9-3 5 5 0 0 1 9 3c0 6-9 13-9 13z');
}

.heart.empty::before { background-color: rgba(26,26,46,0.15); }

.canvas-wrap {
  position: relative; width: 100%; max-width: 490px;
}

#gameCanvas {
  display: block; width: 100%; border-radius: 20px;
  border: var(--sticker-border);
  box-shadow: var(--sticker-shadow);
  background: var(--white);
}

/* Game overlay */
.game-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,248,220,0.95);
  border-radius: 18px;
  backdrop-filter: blur(4px);
  z-index: 10;
  transition: opacity 0.3s;
}

.game-overlay.hidden { opacity: 0; pointer-events: none; }

.overlay-inner {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-align: center; padding: 32px;
}

.overlay-emoji { animation: float-doodle 2s ease-in-out infinite; }

.overlay-title {
  font-family: var(--font-head); font-size: 1.6rem; font-weight: 700;
  color: var(--dark);
}

.overlay-sub {
  font-family: var(--font-body); font-size: 0.85rem;
  color: rgba(26,26,46,0.55);
}

.overlay-score {
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 600;
  color: var(--orange);
}

.overlay-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--dark); color: var(--white);
  font-family: var(--font-head); font-size: 1rem; font-weight: 600;
  padding: 14px 32px; border-radius: 50px;
  border: 2.5px solid var(--dark);
  box-shadow: 4px 4px 0 var(--orange);
  transition: transform 0.2s var(--bounce), box-shadow 0.2s;
  cursor: none; margin-top: 8px;
}

.overlay-btn:hover {
  transform: translate(-2px,-2px);
  box-shadow: 6px 6px 0 var(--orange);
}

.game-tip {
  display: flex; gap: 20px; align-items: center;
  font-family: var(--font-body); font-size: 0.78rem;
  color: rgba(26,26,46,0.45);
}

.game-tip span { display: flex; align-items: center; gap: 5px; }

/* ── 14. COUNTDOWN SECTION ── */
#countdown {
  background: var(--count-bg);
  border-top: 3px solid var(--dark);
  border-bottom: 3px solid var(--dark);
}

.countdown-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 48px;
}

.cd-card {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 8px;
  border-radius: 20px; padding: 28px 16px 20px;
  border: var(--sticker-border);
  position: relative; overflow: hidden;
  transition: transform 0.2s var(--bounce);
  cursor: default;
}

.cd-card:hover { transform: translateY(-6px) rotate(-2deg); }

.cd-orange { background: var(--orange); color: var(--white); box-shadow: 5px 5px 0 var(--dark); transform: rotate(-2deg); }
.cd-blue   { background: var(--blue);   color: var(--dark);  box-shadow: 5px 5px 0 var(--dark); transform: rotate(1.5deg); }
.cd-yellow { background: var(--yellow); color: var(--dark);  box-shadow: 5px 5px 0 var(--dark); transform: rotate(-1deg); }
.cd-pink   { background: var(--pink);   color: var(--white); box-shadow: 5px 5px 0 var(--dark); transform: rotate(2deg); }

.cd-num {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 700; line-height: 1;
  transition: transform 0.2s var(--bounce);
}

.cd-num.tick { animation: cd-bounce 0.3s var(--bounce); }

.cd-lbl {
  font-family: var(--font-head); font-size: 0.75rem;
  font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; opacity: 0.75;
}

.cd-doodle { position: absolute; bottom: 8px; right: 8px; pointer-events: none; }

/* ── 15. SERVICES SECTION ── */
#services { background: var(--cream); position: relative; }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 48px;
}

.svc-card {
  border-radius: 20px; padding: 28px 24px;
  border: var(--sticker-border);
  box-shadow: var(--sticker-shadow);
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.3s var(--bounce), box-shadow 0.3s;
  cursor: default; position: relative;
}

.svc-card:hover {
  transform: rotate(0deg) translateY(-8px) scale(1.02);
  box-shadow: 8px 8px 0 var(--dark);
  z-index: 2;
}

.svc-purple { background: rgba(155,93,229,0.08); }
.svc-blue   { background: rgba(76,201,240,0.1);  }
.svc-orange { background: rgba(255,107,53,0.08); }
.svc-lime   { background: rgba(6,214,160,0.09);  }
.svc-pink   { background: rgba(255,77,141,0.08); }

.svc-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px; background: var(--white);
  border: 2px solid var(--dark);
  margin-bottom: 18px;
  box-shadow: 3px 3px 0 var(--dark);
}

.svc-card h3 {
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 700;
  color: var(--dark); margin-bottom: 8px;
}

.svc-card p {
  font-size: 0.88rem; color: rgba(26,26,46,0.65);
  line-height: 1.55; margin-bottom: 16px;
}

.svc-tag {
  font-family: var(--font-hand); font-size: 0.82rem; font-weight: 600;
  color: rgba(26,26,46,0.45); border-top: 1.5px dashed rgba(26,26,46,0.2);
  padding-top: 12px;
}

/* ── 16. SUBSCRIBE SECTION ── */
#subscribe {
  background: var(--blue);
  border-top: 3px solid var(--dark);
  border-bottom: 3px solid var(--dark);
  position: relative; overflow: hidden;
  text-align: center;
}

.sub-doodles { position: absolute; inset: 0; pointer-events: none; }

.sub-d {
  position: absolute; font-family: var(--font-head);
  font-size: 3rem; font-weight: 700;
  color: rgba(255,255,255,0.12);
  animation: float-doodle 5s ease-in-out infinite;
}

.sub-d1 { top: 15%; left: 8%; animation-delay: 0s; }
.sub-d2 { top: 60%; right: 10%; animation-delay: 1s; }
.sub-d3 { bottom: 10%; left: 40%; animation-delay: 2s; }

.sub-form {
  max-width: 520px; margin: 0 auto;
}

.sub-row {
  display: flex; gap: 0;
  border-radius: 60px; overflow: hidden;
  border: 3px solid var(--dark);
  background: var(--white);
  box-shadow: var(--sticker-shadow);
  padding: 5px;
}

#subEmail {
  flex: 1; background: transparent; border: none; outline: none;
  padding: 13px 20px;
  font-family: var(--font-body); font-size: 0.95rem;
  color: var(--dark);
}

#subEmail::placeholder { color: rgba(26,26,46,0.35); }

.sub-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--dark); color: var(--white);
  font-family: var(--font-head); font-size: 0.95rem; font-weight: 600;
  padding: 12px 28px; border-radius: 50px;
  transition: background 0.2s, transform 0.2s var(--bounce);
  cursor: none; white-space: nowrap; flex-shrink: 0;
}

.sub-btn:hover { background: var(--orange); transform: scale(1.03); }
.sub-btn:disabled { opacity: 0.7; }

.btn-l { display: none; }
.sub-btn.loading .btn-t { display: none; }
.sub-btn.loading .btn-l { display: flex; }

.sub-error {
  margin-top: 10px; font-size: 0.82rem;
  color: var(--dark); font-family: var(--font-head);
  min-height: 1.2em; text-align: left;
}

.sub-success {
  margin-top: 16px; padding: 14px 20px;
  background: var(--white); border-radius: 16px;
  border: 2.5px solid var(--dark);
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-hand); font-size: 1rem; font-weight: 600;
  color: var(--dark); box-shadow: var(--sticker-shadow);
  text-align: left;
}

.sub-trust {
  margin-top: 20px; font-family: var(--font-body);
  font-size: 0.8rem; color: rgba(255,255,255,0.65);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}

/* ── 17. FOOTER ── */
footer {
  background: var(--dark);
  color: var(--white);
  position: relative; overflow: hidden;
  padding: 60px 0 32px;
}

.footer-doodles { position: absolute; inset: 0; pointer-events: none; }

.fd { position: absolute; }
.fd1 { top: 20%; left: 5%; animation: float-doodle 7s ease-in-out infinite; }
.fd2 { top: 50%; right: 8%; animation: float-doodle 6s ease-in-out infinite 1s; }
.fd3 { bottom: 25%; left: 20%; animation: float-doodle 8s ease-in-out infinite 2s; }
.fd4 { top: 15%; right: 20%; animation: float-doodle 5s ease-in-out infinite 0.5s; }
.fd5 { bottom: 20%; right: 30%; animation: float-doodle 7s ease-in-out infinite 1.5s; }

.footer-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}

.footer-brand { text-align: center; }

.footer-logo {
  font-family: var(--font-head); font-size: 4rem; font-weight: 700;
  letter-spacing: -0.04em; line-height: 1;
  background: linear-gradient(90deg, var(--orange), var(--blue), var(--pink), var(--lime), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.footer-city {
  font-family: var(--font-hand); font-size: 1rem;
  color: rgba(255,255,255,0.45);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}

.footer-social-wrap { display: flex; gap: 8px; }

.footer-social {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.65);
  transition: background 0.2s, color 0.2s, transform 0.2s var(--bounce);
  cursor: none;
}

.footer-social:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-4px) rotate(8deg);
}

.footer-bottom { text-align: center; }

.footer-copy {
  font-size: 0.8rem; color: rgba(255,255,255,0.3);
  font-family: var(--font-body); margin-bottom: 4px;
}

.footer-made {
  font-family: var(--font-hand); font-size: 0.9rem;
  color: rgba(255,255,255,0.2);
}

/* ── 18. MAGNETIC ── */
.magnetic { will-change: transform; }

/* ── 19. SPIN UTIL ── */
.spin-icon { animation: spin-anim 0.7s linear infinite; }

/* ── 20. KEYFRAMES ── */
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes float-doodle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-12px) rotate(3deg); }
  66%       { transform: translateY(-6px) rotate(-2deg); }
}

@keyframes blob-morph {
  0%, 100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; }
  25%       { border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%; }
  50%       { border-radius: 70% 30% 50% 50% / 40% 60% 40% 60%; }
  75%       { border-radius: 30% 70% 60% 40% / 60% 30% 70% 40%; }
}

@keyframes letter-enter {
  from { opacity: 0; transform: translateY(60px) scale(0.8) rotate(-8deg); }
  to   { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); }
}

@keyframes badge-pop {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes wave-letter {
  0%, 100% { transform: translateY(0); }
  30%       { transform: translateY(-5px); }
  60%       { transform: translateY(2px); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

@keyframes cd-bounce {
  0%   { transform: scale(1.3) rotate(-5deg); }
  100% { transform: scale(1) rotate(0deg); }
}

@keyframes jiggle-text {
  0%, 85%, 100% { transform: rotate(0deg); }
  88%  { transform: rotate(-3deg); }
  92%  { transform: rotate(3deg); }
  96%  { transform: rotate(-2deg); }
}

@keyframes music-pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.06); }
}

@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes spin-anim { to { transform: rotate(360deg); } }

/* ── 21. RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card:last-child { grid-column: 1 / -1; max-width: 340px; margin: 0 auto; }
}

@media (max-width: 768px) {
  #navbar { padding: 12px 20px; }
  .nav-socials { display: none; }

  #hero { padding: 100px 16px 80px; }
  .d3, .d4, .d5, .d11 { display: none; }

  .slang-title { font-size: clamp(4.5rem, 22vw, 7rem); gap: 0; }
  .sletter::before { -webkit-text-stroke: 5px var(--dark); }

  .coming-badge { font-size: 1rem; padding: 10px 20px; }

  .countdown-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cd-orange { transform: rotate(-1.5deg); }
  .cd-blue   { transform: rotate(1deg); }
  .cd-yellow { transform: rotate(-0.8deg); }
  .cd-pink   { transform: rotate(1.5deg); }

  .services-grid { grid-template-columns: 1fr; }
  .svc-card { transform: none !important; }
  .svc-card:last-child { max-width: none; }

  .sub-row { flex-direction: column; border-radius: 20px; padding: 8px; }
  #subEmail { padding: 12px 16px; }
  .sub-btn { border-radius: 14px; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-cta { padding: 14px 28px; font-size: 1rem; }
  .countdown-grid { gap: 10px; }
  .music-btn span { display: none; }
  .music-btn { padding: 8px 12px; }
}

/* ── 22. REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
