/* =============================================================================
   ToonShala landing — premium DARK immersive theme, animated, no framework
   ============================================================================= */

:root {
  --orange: #FF6B35;
  --yellow: #FFC857;
  --purple: #7C5CFC;
  --teal: #2EC4B6;
  --ink: #0E0B1F;          /* deep night */
  --ink-2: #1A1535;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-2: rgba(255, 255, 255, 0.07);
  --stroke: rgba(255, 255, 255, 0.10);
  --stroke-2: rgba(255, 255, 255, 0.18);
  --tx: #ffffff;
  --tx-soft: rgba(255, 255, 255, 0.72);
  --tx-mut: rgba(255, 255, 255, 0.52);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --radius: 20px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: var(--tx);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background: var(--ink);
}
/* Fixed gradient backdrop as a cheap pseudo-element (no background-attachment
   jank on scroll — far smoother than background-attachment: fixed). */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1000px 700px at 85% 0%, #2a1c5e 0%, transparent 55%),
    radial-gradient(900px 600px at 0% 35%, #3a1d4d 0%, transparent 50%),
    radial-gradient(800px 600px at 100% 90%, #2a1c5e 0%, transparent 55%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 55%, var(--ink) 100%);
}

h1, h2, h3, h4, .logo, .btn-primary, .btn-secondary, .btn-light, .btn-ghost, .pill-tag {
  font-family: 'Baloo 2', 'Quicksand', sans-serif;
}

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 16px 0; transition: background .3s, box-shadow .3s, padding .3s;
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; }
.logo {
  font-size: 23px; font-weight: 800; letter-spacing: -0.01em;
  color: #fff; display: flex; align-items: center; gap: 8px;
}
.logo-mark { filter: drop-shadow(0 2px 6px rgba(255,107,53,.5)); }
.nav nav { display: flex; gap: 26px; align-items: center; }
.nav nav a { font-size: 15px; font-weight: 700; color: rgba(255,255,255,.85); transition: color .2s; }
.nav nav a:hover { color: #fff; }
.btn-ghost {
  padding: 10px 20px; border: 1.5px solid var(--orange); border-radius: 999px;
  font-weight: 700; font-size: 14px; background: var(--orange); color: #fff !important;
  box-shadow: 0 8px 20px rgba(255,107,53,.4);
  transition: transform .15s, box-shadow .2s;
}
.btn-ghost:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(255,107,53,.55); }
.btn-ghost:active { transform: scale(.96); }
/* Scrolled: stays dark + glassy to match the theme */
.nav.scrolled {
  background: rgba(14, 11, 31, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 30px rgba(0,0,0,.45);
  border-bottom: 1px solid var(--stroke);
  padding: 10px 0;
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px;
  background:
    radial-gradient(1200px 600px at 70% -10%, #2a1c5e 0%, transparent 60%),
    radial-gradient(900px 500px at 0% 100%, #3a1d4d 0%, transparent 55%),
    linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 100%);
  overflow: hidden;
}
#scene { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: 0; transition: opacity 1s ease; }
#scene.ready { opacity: 1; }
.hero-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(600px 400px at 65% 45%, rgba(255,107,53,.18), transparent 70%);
}

/* ---------- Floating hero mascots ---------- */
.hero-floats { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.float-char { position: absolute; filter: drop-shadow(0 14px 26px rgba(0,0,0,.5)); }
.float-char svg, .float-char img { width: 100%; height: auto; display: block; }
.f1 { animation: floatA 7s ease-in-out infinite; }
.f2 { animation: floatB 8s ease-in-out infinite -1s; }
.f3 { animation: floatC 9s ease-in-out infinite -2s; }
.f4 { animation: floatA 8.5s ease-in-out infinite -1.5s; }
.f5 { animation: floatB 7.5s ease-in-out infinite -0.5s; }
@keyframes floatA { 0%,100% { transform: translateY(0) rotate(-5deg); } 50% { transform: translateY(-24px) rotate(5deg); } }
@keyframes floatB { 0%,100% { transform: translateY(0) rotate(4deg); } 50% { transform: translateY(-30px) rotate(-4deg); } }
@keyframes floatC { 0%,100% { transform: translate(0,0) rotate(0); } 50% { transform: translate(-14px,-20px) rotate(7deg); } }

/* ---------- Breathing glow on the main CTA ---------- */
.hero .btn-primary { animation: ctaGlow 2.6s ease-in-out infinite; }
@keyframes ctaGlow {
  0%,100% { box-shadow: 0 12px 30px rgba(255,107,53,.45); }
  50%     { box-shadow: 0 14px 44px rgba(255,107,53,.75); }
}
.hero-inner {
  position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 50px; align-items: center; width: 100%;
}
.pill-tag {
  display: inline-block; padding: 7px 16px; margin-bottom: 22px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px); border-radius: 999px;
  font-size: 13px; font-weight: 600; color: #fff; animation: fadeUp .8s ease both;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 72px); line-height: 1.04; letter-spacing: -0.02em;
  font-weight: 800; color: #fff; margin-bottom: 22px; animation: fadeUp .8s ease .1s both;
}
.hero h1 .accent {
  background: linear-gradient(100deg, var(--orange), var(--yellow), var(--orange));
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: shimmer 5s linear infinite;
}
@keyframes shimmer { to { background-position: 220% center; } }
.hero .lede {
  font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,.78);
  max-width: 480px; margin-bottom: 32px; animation: fadeUp .8s ease .2s both;
}
.cta { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp .8s ease .3s both; }
.btn-primary {
  display: inline-flex; align-items: center; padding: 16px 30px; background: var(--orange);
  color: #fff !important; border-radius: 999px; font-weight: 700; font-size: 16px;
  box-shadow: 0 12px 30px rgba(255,107,53,.45); transition: transform .15s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(255,107,53,.6); }
.btn-primary:active { transform: translateY(-1px) scale(.98); }
.btn-secondary {
  display: inline-flex; align-items: center; padding: 16px 28px; border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.25); background: rgba(255,255,255,.06);
  color: #fff !important; font-weight: 700; font-size: 16px; transition: background .2s, transform .15s;
}
.btn-secondary:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.cta-note { margin-top: 18px; font-size: 13px; color: rgba(255,255,255,.55); animation: fadeUp .8s ease .4s both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Phone mockup ---------- */
.hero-art { display: flex; justify-content: center; perspective: 1200px; }
.phone {
  width: 270px; height: 555px; background: linear-gradient(160deg, #15112e, #241a45);
  border-radius: 44px; padding: 12px;
  box-shadow: 0 40px 90px rgba(0,0,0,.5), inset 0 0 0 2px rgba(255,255,255,.06);
  position: relative; animation: floatPhone 6s ease-in-out infinite;
  transform-style: preserve-3d; transition: transform .2s ease;
}
@keyframes floatPhone { 0%,100% { transform: translateY(0) rotateZ(0); } 50% { transform: translateY(-18px) rotateZ(-.6deg); } }
.phone-notch { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 90px; height: 22px; background: #0a0818; border-radius: 0 0 14px 14px; z-index: 3; }
.phone-screen {
  width: 100%; height: 100%; border-radius: 34px; overflow: hidden;
  background: linear-gradient(180deg, #1c1440 0%, #2a1b52 100%);
  padding: 40px 16px 18px; display: flex; flex-direction: column; gap: 12px;
}
.app-top { display: flex; justify-content: space-between; align-items: center; }
.app-hi { color: #fff; font-weight: 700; font-size: 14px; }
.app-ava { font-size: 22px; }
.app-hero-card {
  position: relative; height: 150px; border-radius: 16px;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  display: flex; flex-direction: column; justify-content: flex-end; padding: 14px;
  overflow: hidden; box-shadow: 0 12px 24px rgba(255,107,53,.35);
}
.ahc-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* readability scrim over the looping video */
.app-hero-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.55)); }
.app-hero-card > span { position: relative; z-index: 1; }
.ahc-badge {
  align-self: flex-start; background: rgba(0,0,0,.45); color: #fff; font-size: 10px; font-weight: 700;
  padding: 4px 10px; border-radius: 999px; margin-bottom: 8px; display: inline-flex; align-items: center; gap: 5px;
}
.ahc-badge::before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: #ff4d4d; box-shadow: 0 0 6px #ff4d4d; }
.ahc-title { color: #fff; font-weight: 800; font-size: 18px; font-family: 'Baloo 2',sans-serif; }
.ahc-sub { color: rgba(255,255,255,.85); font-size: 11px; }
.app-section { color: rgba(255,255,255,.75); font-size: 12px; font-weight: 700; margin-top: 2px; }
.app-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.toon { aspect-ratio: 1; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 26px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); }
.t1 { background: linear-gradient(135deg,#FF6B35,#FFC857); }
.t2 { background: linear-gradient(135deg,#7C5CFC,#C9B8FF); }
.t3 { background: linear-gradient(135deg,#2EC4B6,#A8E6CF); }
.t4 { background: linear-gradient(135deg,#FF5DA2,#FFC2E0); }
.t5 { background: linear-gradient(135deg,#3A86FF,#A0C4FF); }
.t6 { background: linear-gradient(135deg,#FF8C42,#FFD89B); }

/* ---------- Scroll cue ---------- */
.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.4); border-radius: 999px;
  z-index: 2; display: flex; justify-content: center;
}
.scroll-cue span { width: 4px; height: 8px; background: #fff; border-radius: 4px; margin-top: 7px; animation: cue 1.6s ease-in-out infinite; }
@keyframes cue { 0% { opacity: 0; transform: translateY(-4px); } 40% { opacity: 1; } 80%,100% { opacity: 0; transform: translateY(12px); } }

/* ---------- Marquee ---------- */
.marquee {
  background: rgba(0,0,0,.25); color: #fff; padding: 18px 0; overflow: hidden;
  border-top: 1px solid var(--stroke); border-bottom: 1px solid var(--stroke);
  white-space: nowrap; backdrop-filter: blur(6px);
}
.marquee-track { display: inline-flex; align-items: center; gap: 30px; animation: scrollX 28s linear infinite; font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 22px; }
.marquee-track span { opacity: .9; }
.marquee-track i { color: var(--orange); font-style: normal; }
@keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Section headings ---------- */
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; text-align: center; letter-spacing: -0.02em; margin-bottom: 10px; color: #fff; }
.section-sub { text-align: center; color: var(--tx-mut); font-size: 18px; margin-bottom: 48px; }

/* ---------- Glass panel helper look ---------- */
.features, .how, .shows, .testimonials, .faq, .stats { position: relative; }

/* ---------- Features ---------- */
.features { padding: 90px 0 30px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  padding: 34px 28px; background: var(--panel); border: 1px solid var(--stroke);
  border-radius: var(--radius); text-align: center;  transition: transform .25s, box-shadow .25s, border-color .25s, background .25s;
  transform-style: preserve-3d;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--stroke-2); background: var(--panel-2); }
.card .icon {
  font-size: 34px; width: 72px; height: 72px; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(255,107,53,.22), rgba(255,200,87,.22));
  border-radius: 999px; transition: transform .25s;
}
.card:hover .icon { transform: scale(1.14) rotate(-6deg); }
.card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; color: #fff; }
.card p { color: var(--tx-soft); font-size: 15px; }

/* ---------- How it works ---------- */
.how { padding: 90px 0 30px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step {
  position: relative; text-align: center; padding: 36px 26px 30px;
  background: var(--panel); border-radius: var(--radius); border: 1px solid var(--stroke);
 }
.step-num {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  width: 38px; height: 38px; border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--yellow)); color: #fff;
  font-family: 'Baloo 2', sans-serif; font-weight: 800;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 18px rgba(255,107,53,.4);
}
.step-ic { font-size: 44px; margin: 6px 0 14px; }
.step h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.step p { color: var(--tx-soft); font-size: 15px; }

/* ---------- Stats ---------- */
.stats { padding: 70px 0; }
.stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat { padding: 22px 10px; }
.stat .num {
  font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: clamp(36px, 5vw, 52px);
  background: linear-gradient(120deg, var(--orange), var(--yellow));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat .plus { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: clamp(28px,4vw,40px); color: var(--orange); }
.stat small { display: block; margin-top: 6px; color: var(--tx-mut); font-size: 14px; font-weight: 600; }

/* ---------- Ad slot ---------- */
/* subtle — collapses to almost nothing until a real ad fills it */
.ad-slot { padding: 8px 0; }
.ad-slot .wrap { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.ad-label { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--tx-mut); opacity: .45; }

/* ---------- Shows ---------- */
.shows { padding: 90px 0; }
.shows-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; }
.show {
  position: relative; border-radius: var(--radius); overflow: hidden;
  flex: 1 1 320px; max-width: 360px;
  aspect-ratio: 16 / 9; background: #17122e; color: #fff;
  box-shadow: 0 14px 34px rgba(0,0,0,.35); transition: transform .25s, box-shadow .25s;
}
.show:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 22px 46px rgba(0,0,0,.5); }
.show .loopvid { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.show::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.72)); }
.show-meta { position: absolute; left: 18px; bottom: 14px; z-index: 2; }
.show-meta h4 { font-size: 21px; font-weight: 800; text-shadow: 0 2px 8px rgba(0,0,0,.5); }
.show-meta p { font-size: 14px; opacity: .9; }

/* ---------- Sneak peek video gallery ---------- */
.peek { padding: 90px 0; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.vcard {
  position: relative; display: block; width: 100%; padding: 0; border: 0; cursor: pointer;
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 9; background: #000;
  box-shadow: 0 14px 34px rgba(0,0,0,.4); transition: transform .25s, box-shadow .25s;
}
.vcard:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(0,0,0,.55); }
.vthumb { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.vcard:hover .vthumb { transform: scale(1.08); }
.vcard::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.6)); }
.vplay {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2;
  width: 64px; height: 64px; border-radius: 999px; background: rgba(255,107,53,.94); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 22px; padding-left: 4px;
  box-shadow: 0 10px 26px rgba(255,107,53,.55); transition: transform .25s, background .2s;
}
.vcard:hover .vplay { transform: translate(-50%,-50%) scale(1.14); background: var(--orange); }
.vtitle {
  position: absolute; left: 16px; bottom: 14px; z-index: 2; color: #fff;
  font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 17px; text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.vdur {
  position: absolute; top: 12px; right: 12px; z-index: 2; background: rgba(0,0,0,.6); color: #fff;
  font-size: 12px; font-weight: 700; padding: 3px 9px; border-radius: 999px;
}

/* ---------- Video modal (lightbox) ---------- */
.vmodal {
  position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center;
  padding: 24px; background: rgba(8,6,18,.86); backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s;
}
.vmodal.open { opacity: 1; visibility: visible; }
.vmodal-inner { width: min(960px, 100%); transform: scale(.94); transition: transform .3s ease; }
.vmodal.open .vmodal-inner { transform: scale(1); }
.vmodal video { width: 100%; aspect-ratio: 16 / 9; display: block; background: #000; border-radius: 16px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.vmodal-title { text-align: center; color: #fff; margin-top: 14px; font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 18px; }
.vmodal-close {
  position: absolute; top: 20px; right: 24px; width: 46px; height: 46px; border: 0; border-radius: 999px;
  background: rgba(255,255,255,.14); color: #fff; font-size: 20px; cursor: pointer;
  transition: background .2s, transform .3s;
}
.vmodal-close:hover { background: rgba(255,255,255,.28); transform: rotate(90deg); }

/* ---------- Testimonials ---------- */
.testimonials { padding: 90px 0; }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote { background: var(--panel); border: 1px solid var(--stroke); border-radius: var(--radius); padding: 30px 26px; backdrop-filter: blur(10px); box-shadow: var(--shadow); }
.stars { color: var(--yellow); font-size: 18px; letter-spacing: 2px; margin-bottom: 14px; }
.quote blockquote { font-size: 16px; color: var(--tx); opacity: .92; margin-bottom: 18px; line-height: 1.6; }
.quote figcaption { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: var(--tx-mut); }
.q-ava { width: 34px; height: 34px; border-radius: 999px; background: linear-gradient(135deg, rgba(255,107,53,.3), rgba(124,92,252,.3)); display: inline-flex; align-items: center; justify-content: center; font-size: 18px; }

/* ---------- FAQ ---------- */
.faq { padding: 30px 0 90px; }
.faq .section-title { margin-bottom: 40px; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq details { background: var(--panel); border: 1px solid var(--stroke); border-radius: 14px; margin-bottom: 14px; overflow: hidden; backdrop-filter: blur(10px); transition: border-color .2s, background .2s; }
.faq details[open] { border-color: var(--stroke-2); background: var(--panel-2); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 22px;
  font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 17px; color: #fff;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq .chev { flex: none; font-size: 24px; color: var(--orange); line-height: 1; transition: transform .25s; }
.faq details[open] .chev { transform: rotate(45deg); }
.faq details p { padding: 0 22px 22px; color: var(--tx-soft); font-size: 15px; }

/* ---------- Cartoon characters ---------- */
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.toon svg { width: 82%; height: 82%; }
.characters { padding: 90px 0; }
.char-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.char-card {
  background: var(--panel); border: 1px solid var(--stroke); border-radius: var(--radius);
  padding: 24px 12px 20px; text-align: center;  transition: transform .25s, background .25s, border-color .25s;
}
.char-card:hover { transform: translateY(-8px) rotate(-1.5deg); background: var(--panel-2); border-color: var(--stroke-2); }
.char-card .ch {
  width: 88px; height: 88px; display: block; margin: 0 auto 12px;
  animation: bob 4s ease-in-out infinite; transform-origin: 50% 90%;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,.35));
}
.char-card:nth-child(2n) .ch { animation-delay: -1.3s; }
.char-card:nth-child(3n) .ch { animation-delay: -2.6s; }
.char-card:hover .ch { animation-duration: 1.1s; }
@keyframes bob { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-8px) rotate(2deg); } }
.char-card h4 { color: #fff; font-size: 17px; font-weight: 700; }
.char-card .role { color: var(--tx-mut); font-size: 12.5px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; margin: 70px 24px 80px; }
.cta-inner {
  position: relative; overflow: hidden; text-align: center;
  border-radius: 32px; padding: 80px 24px;
  background: linear-gradient(120deg, var(--orange), var(--yellow));
}
.cta-blob { position: absolute; border-radius: 50%; filter: blur(40px); opacity: .4; }
.cta-blob.b1 { width: 320px; height: 320px; background: #fff; top: -120px; left: -60px; }
.cta-blob.b2 { width: 280px; height: 280px; background: var(--purple); bottom: -120px; right: -40px; opacity: .35; }
.cta-band .wrap { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(30px, 4.5vw, 46px); font-weight: 800; color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.92); font-size: 18px; max-width: 540px; margin: 0 auto 28px; }
.btn-light { display: inline-block; padding: 16px 36px; background: #fff; color: var(--orange) !important; border-radius: 999px; font-weight: 700; font-size: 17px; box-shadow: 0 14px 34px rgba(0,0,0,.25); transition: transform .15s, box-shadow .2s; }
.btn-light:hover { transform: scale(1.06); box-shadow: 0 20px 44px rgba(0,0,0,.35); }
.btn-light:active { transform: scale(.98); }

/* ---------- CTA band characters (the gang invites you) ---------- */
.cta-chars { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.cta-char { position: absolute; filter: drop-shadow(0 16px 26px rgba(0,0,0,.4)); }
.cc-puppy   { left: 0;   bottom: -36px; width: 188px; animation: floatB 7s ease-in-out infinite; }
.cc-unicorn { right: 0;  bottom: -30px; width: 182px; animation: floatA 8s ease-in-out infinite -1s; }
.cc-tiger   { right: 7%; top: -52px;    width: 122px; animation: floatC 9s ease-in-out infinite -2s; }

/* ---------- Small section-accent mascots ---------- */
.sec-mascot {
  position: absolute; top: 10px; width: 74px; z-index: 0; opacity: .92;
  pointer-events: none; filter: drop-shadow(0 8px 14px rgba(0,0,0,.4));
}
.sec-mascot svg { width: 100%; height: auto; display: block; }
.sm-tr { right: 5%; animation: floatA 7s ease-in-out infinite; }
.sm-tl { left: 5%; animation: floatB 8s ease-in-out infinite -1.2s; }

/* ---------- Waitlist ---------- */
.waitlist { padding: 90px 0; text-align: center; }
.wl-form { display: flex; gap: 12px; max-width: 470px; margin: 0 auto 12px; }
.wl-form input {
  flex: 1; min-width: 0; padding: 16px 22px; border-radius: 999px;
  border: 1px solid var(--stroke); background: var(--panel); color: #fff;
  font-size: 16px; font-family: inherit;
}
.wl-form input::placeholder { color: var(--tx-mut); }
.wl-form input:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,107,53,.25); }
.wl-form .btn-light { background: var(--orange); color: #fff !important; white-space: nowrap; box-shadow: 0 10px 26px rgba(255,107,53,.4); }
.wl-msg { min-height: 22px; font-weight: 700; font-size: 15px; }
.wl-msg.ok { color: #51e08b; }
.wl-msg.err { color: #ff7a7a; }
.wl-share { margin-top: 22px; color: var(--tx-mut); font-size: 15px; display: flex; gap: 12px; justify-content: center; align-items: center; flex-wrap: wrap; }
.wl-wa {
  display: inline-flex; align-items: center; gap: 6px; padding: 9px 18px; border-radius: 999px;
  background: #25D366; color: #fff !important; font-weight: 700; font-size: 14px; transition: transform .15s, box-shadow .2s;
}
.wl-wa:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(37,211,102,.4); }
.wa-ic { font-size: 12px; }

/* ---------- Confetti canvas ---------- */
#confetti { position: fixed; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 200; }

/* ---------- Contact ---------- */
.contact { padding: 80px 0; text-align: center; }
.contact h2 { font-size: 30px; font-weight: 800; margin-bottom: 12px; color: #fff; }
.contact p { font-size: 17px; color: var(--tx-soft); }
.contact a { color: var(--yellow); font-weight: 800; font-size: 20px; }

/* ---------- Footer ---------- */
footer { padding: 34px 0; background: rgba(0,0,0,.35); border-top: 1px solid var(--stroke); color: var(--tx-soft); }
footer .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
footer p { display: flex; align-items: center; gap: 8px; }
footer a { color: rgba(255,255,255,.85); }
footer a:hover { color: var(--yellow); }
.small { font-size: 14px; opacity: .85; }

/* ---------- Legal pages (privacy / terms) ---------- */
.legal { padding: 120px 0 70px; }
.legal .wrap { max-width: 760px; }
.legal .back { display: inline-block; margin-bottom: 18px; font-weight: 700; color: var(--orange); font-size: 14px; }
.legal .back:hover { text-decoration: underline; }
.legal h1 { font-family: 'Baloo 2', sans-serif; font-size: clamp(32px, 5vw, 44px); font-weight: 800; letter-spacing: -0.02em; color: #fff; }
.legal .updated { color: var(--tx-mut); font-size: 14px; margin-bottom: 28px; }
.legal h2 { font-family: 'Baloo 2', sans-serif; font-size: 22px; font-weight: 700; margin: 32px 0 10px; color: #fff; }
.legal p { color: var(--tx-soft); margin-bottom: 14px; }
.legal ul { margin: 0 0 16px 22px; color: var(--tx-soft); }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--yellow); font-weight: 700; }
.legal .note { margin-top: 36px; padding: 16px 18px; font-size: 14px; background: var(--panel); border: 1px solid var(--stroke); border-left: 3px solid var(--orange); border-radius: 8px; color: var(--tx-mut); }

/* ---------- Scroll progress bar ---------- */
.progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%;
  transform: scaleX(0); transform-origin: 0 50%; will-change: transform;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  z-index: 60; box-shadow: 0 0 12px rgba(255,107,53,.6);
}

/* ---------- Button shine sweep (GPU: transform only) ---------- */
.btn-primary, .btn-light { position: relative; overflow: hidden; }
.btn-primary::after, .btn-light::after {
  content: ""; position: absolute; top: 0; left: 0; width: 45%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.45), transparent);
  transform: translateX(-160%) skewX(-20deg); pointer-events: none;
}
.btn-primary:hover::after, .btn-light:hover::after { animation: shine .8s ease; }
@keyframes shine { to { transform: translateX(420%) skewX(-20deg); } }

/* Tilt targets get a little depth */
.show, .char-card { transform-style: preserve-3d; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px) scale(.98); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); transition-delay: var(--delay, 0s); }
.reveal.in { opacity: 1; transform: translateY(0) scale(1); }

/* Playful "pop" entrance with a little overshoot for cards/shows/characters */
.card.reveal, .show.reveal, .step.reveal, .char-card.reveal, .quote.reveal {
  transform: translateY(40px) scale(.86);
  transition: opacity .6s ease, transform .6s cubic-bezier(.34, 1.56, .64, 1);
}
.card.reveal.in, .show.reveal.in, .step.reveal.in, .char-card.reveal.in, .quote.reveal.in {
  transform: translateY(0) scale(1);
}

/* Livelier character idle (squash & stretch bob) */
.char-card .ch { animation-name: bobby; animation-duration: 3.2s; }
@keyframes bobby {
  0%, 100% { transform: translateY(0) scale(1, 1); }
  45%      { transform: translateY(-10px) scale(.97, 1.04) rotate(3deg); }
  55%      { transform: translateY(-10px) scale(1.03, .97) rotate(-3deg); }
}
.char-card:hover .ch { animation-duration: .9s; }

/* ---------- Extra micro-animations ---------- */
/* slow-moving gradient on the CTA band */
.cta-inner {
  background: linear-gradient(120deg, var(--orange), var(--yellow), var(--orange));
  background-size: 200% 200%; animation: ctaShift 9s ease infinite;
}
@keyframes ctaShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* nav link underline slide-in */
.nav nav a:not(.btn-ghost) { position: relative; }
.nav nav a:not(.btn-ghost)::after {
  content: ""; position: absolute; left: 0; bottom: -3px; height: 2px; width: 100%;
  background: var(--orange); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav nav a:not(.btn-ghost):hover::after { transform: scaleX(1); }

/* logo mark wiggle on hover */
.logo:hover .logo-mark { animation: wiggle .5s ease; }
@keyframes wiggle { 0%,100% { transform: rotate(0); } 25% { transform: rotate(-12deg); } 75% { transform: rotate(12deg); } }

/* shine sweep across show cards on hover */
.show::before {
  content: ""; position: absolute; top: 0; left: 0; width: 55%; height: 100%; z-index: 1; pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.28), transparent);
  transform: translateX(-160%) skewX(-20deg); opacity: 0;
}
.show:hover::before { opacity: 1; animation: showShine .8s ease; }
@keyframes showShine { to { transform: translateX(320%) skewX(-20deg); } }

/* gentle pulse on the WhatsApp share button */
.wl-wa { animation: waPulse 2.6s ease-in-out infinite; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 14px rgba(37,211,102,.25); }
  50%     { box-shadow: 0 8px 24px rgba(37,211,102,.55); }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .stats .wrap { grid-template-columns: repeat(2, 1fr); }
  .grid, .shows-grid, .steps, .quote-grid, .video-grid { grid-template-columns: repeat(2, 1fr); }
  .char-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-floats, .sec-mascot { display: none; }
}
@media (max-width: 600px) {
  .cta-char { width: 96px !important; }
  .cc-tiger { display: none; }
  .wl-form { flex-direction: column; }
}
@media (max-width: 720px) {
  .hero { min-height: auto; padding: 130px 0 70px; text-align: center; }
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero .lede { margin-left: auto; margin-right: auto; }
  .cta { justify-content: center; }
  .grid, .shows-grid, .steps, .quote-grid, .video-grid { grid-template-columns: 1fr; }
  .char-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { row-gap: 40px; }
  .nav nav a:not(.btn-ghost) { display: none; }
  .scroll-cue { display: none; }
  .cta-band { margin: 30px 14px; padding: 60px 20px; }
  .phone { width: 240px; height: 492px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  #scene { display: none; }
}
