/* ==========================================================================
   Little Stories — Design System & Styles
   Mobile-first. No frameworks. Extend tokens here before adding one-off values.
   ========================================================================== */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Brand colours (from the Little Stories logo: sunshine orange/yellow, story blue, heart pink) */
  --color-primary: #1F6FEB;
  --color-primary-strong: #1557C8;
  --color-secondary: #FFC43D;
  --color-secondary-strong: #F29100;
  --color-accent: #E8416B;
  --color-orange: #FF9F1C;
  --color-sky-strong: #1E9BE8;
  --color-green: #22A45D;
  --color-teal: #139CA2;

  --color-navy: #1C2150;
  --color-navy-deep: #121B4D;
  --color-text: #1C2150;
  --color-text-soft: #3E4575;
  --color-muted: #5F6588;

  --color-background: #FFF7EA;
  --color-paper: #FFFFFF;
  --color-sky: #E6F2FF;
  --color-card: #FFFFFF;
  --color-line: rgba(28, 33, 80, 0.09);

  /* Tints for themed cards */
  --tint-blue: #DDEBFF;
  --tint-orange: #FFE8CC;
  --tint-yellow: #FFF0BF;
  --tint-pink: #FFE0EA;
  --tint-purple: #D6EEFB;   /* legacy name: now a sky tint, no purple in the palette */
  --tint-green: #D9F4E3;
  --tint-teal: #D3F2F0;
  --tint-mint: #D5F2E8;
  --tint-lilac: #E3F4FA;
  --tint-cream: #F8EEDF;

  /* Typography */
  --font-display: "Baloo Da 2", "Nunito", ui-rounded, system-ui, sans-serif;
  --font-body: "Nunito", "Noto Sans Bengali", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-bangla: "Noto Sans Bengali", "Baloo Da 2", system-ui, sans-serif;

  --text-xs: 0.8125rem;
  --text-sm: 0.9375rem;
  --text-md: 1.0625rem;
  --text-lg: clamp(1.125rem, 1rem + 0.4vw, 1.25rem);

  /* Shape & depth */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-pill: 999px;

  --shadow-soft: 0 1px 2px rgba(28, 33, 80, 0.05), 0 8px 24px -12px rgba(28, 33, 80, 0.18);
  --shadow-card: 0 2px 4px rgba(28, 33, 80, 0.04), 0 18px 40px -22px rgba(28, 33, 80, 0.32);
  --shadow-lift: 0 4px 8px rgba(28, 33, 80, 0.05), 0 28px 56px -26px rgba(28, 33, 80, 0.4);

  /* Layout & spacing (4px base) */
  --container-width: 1240px;
  --gutter: clamp(20px, 5vw, 40px);
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-section: clamp(72px, 10vw, 124px);
  --header-h: 72px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 2. Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;                               /* fallback when JavaScript is off */
  scroll-padding-top: calc(var(--header-h) + 12px);
}
html.js { scroll-behavior: auto; }                       /* script.js animates in-page links itself */

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-background);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-locked { overflow: hidden; }

img, svg, picture { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--color-navy);
  line-height: 1.1;
  text-wrap: balance;
}

p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--color-primary-strong); text-underline-offset: 3px; }

:where(ul[role="list"], .nav-list, .chips, .hero-badges, .social, .legal, .footer-col ul, .ask-card ul) {
  list-style: none; margin: 0; padding: 0;
}

[lang="bn"] { font-family: var(--font-bangla); line-height: 1.6; }

:focus-visible { outline: 3px solid var(--color-primary); outline-offset: 3px; border-radius: 6px; }

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

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--color-navy); color: #fff;
  padding: 10px 16px; border-radius: var(--radius-sm);
  font-weight: 800; text-decoration: none; transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

.container {
  width: 100%;
  max-width: calc(var(--container-width) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.center { text-align: center; }
.icon { width: 1.15em; height: 1.15em; fill: currentColor; flex-shrink: 0; }

/* Clouds (shared) */
.cloud {
  position: absolute; display: block;
  width: 150px; height: 44px; border-radius: 44px;
  background: rgba(255, 255, 255, 0.92);
  animation: drift 26s ease-in-out infinite alternate;
}
.cloud::before, .cloud::after { content: ""; position: absolute; background: inherit; border-radius: 50%; }
.cloud::before { width: 64px; height: 64px; left: 22px; top: -30px; }
.cloud::after { width: 46px; height: 46px; left: 72px; top: -20px; }

/* ---------- 3. Buttons ---------- */
.btn {
  --btn-bg: var(--color-paper);
  --btn-fg: var(--color-navy);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  min-height: 48px; padding: 0.75em 1.35em;
  border: 0; border-radius: var(--radius-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  font: 800 1rem/1.2 var(--font-body); letter-spacing: 0.01em;
  text-decoration: none; cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background-color 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn .icon { transition: transform 0.25s var(--ease-out); }
.btn:hover .icon { transform: scale(1.12); }

.btn-lg { min-height: 56px; padding: 0.9em 1.7em; font-size: 1.02rem; }
.btn-sm { min-height: 42px; padding: 0.55em 1.15em; font-size: 0.9375rem; }

.btn-primary {
  --btn-bg: linear-gradient(180deg, #FFD256 0%, #FFB81F 100%);
  background: var(--btn-bg);
  box-shadow: inset 0 -4px 0 rgba(214, 105, 0, 0.35), inset 0 2px 0 rgba(255, 255, 255, 0.55), 0 12px 24px -12px rgba(242, 145, 0, 0.95);
}
.btn-primary:hover { box-shadow: inset 0 -4px 0 rgba(214, 105, 0, 0.35), inset 0 2px 0 rgba(255, 255, 255, 0.55), 0 18px 30px -14px rgba(242, 145, 0, 1); }

.btn-outline { --btn-fg: var(--color-primary-strong); box-shadow: inset 0 0 0 2.5px var(--color-primary), 0 10px 22px -16px rgba(31, 111, 235, 0.7); }
.btn-outline:hover { --btn-bg: #F0F6FF; }

.btn-white { --btn-fg: var(--color-primary-strong); box-shadow: var(--shadow-soft); }
.btn-white:hover { box-shadow: var(--shadow-card); }

.btn-youtube { --btn-bg: #E0122F; --btn-fg: #fff; box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.15), 0 12px 26px -14px rgba(224, 18, 47, 0.9); }
.btn-youtube:hover { --btn-bg: #EC1A38; }

.btn-outline-light { --btn-bg: transparent; --btn-fg: #fff; box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); }
.btn-outline-light:hover { --btn-bg: rgba(255, 255, 255, 0.12); box-shadow: inset 0 0 0 2px #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.btn-row.center { justify-content: center; }

/* ---------- 4. Shared section pieces ---------- */
.section { position: relative; padding-block: var(--space-section); }

.section-head { margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { max-width: 780px; margin-inline: auto; text-align: center; }
.section-head.split { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: var(--space-4) var(--space-7); }

.eyebrow {
  display: inline-flex; align-items: center;
  margin: 0 0 var(--space-3);
  font-size: var(--text-xs); font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-primary-strong);
}
.eyebrow::before, .section-head.center .eyebrow::after {
  content: ""; width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0;
}
.eyebrow::before { background: var(--color-accent); box-shadow: 13px 0 0 -1px var(--color-green); margin-right: 22px; }
.section-head.center .eyebrow::after { background: var(--color-orange); box-shadow: 13px 0 0 -1px var(--color-secondary); margin-left: 10px; margin-right: 13px; }
.eyebrow-light { color: #FFD166; }

.section-title { font-weight: 800; font-size: clamp(2.1rem, 1.4rem + 3vw, 3.3rem); letter-spacing: -0.012em; line-height: 1.06; }

.section-sub { font-size: var(--text-lg); color: var(--color-muted); margin: var(--space-4) 0 0; }
.section-sub [lang="bn"] { display: block; color: var(--color-text-soft); font-weight: 500; margin-top: 0.2em; }
.section-sub strong { color: var(--color-navy); }

.lead { font-size: var(--text-lg); color: var(--color-text); }

.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chips li {
  padding: 0.28em 0.8em; border-radius: var(--radius-pill);
  background: var(--color-paper); border: 1px solid var(--color-line);
  font-size: 0.85rem; font-weight: 700; color: var(--color-text-soft);
}
.chips-lg li { font-size: 0.95rem; padding: 0.4em 1em; }

/* Colour themes — shared by cards across sections */
.f-orange, .v-orange, .si-orange, .j-orange { --tint: var(--tint-orange); --accent: #E36A00; }
.f-blue, .s-blue, .v-blue, .si-blue, .j-blue, .c-blue { --tint: var(--tint-blue); --accent: #1B63D6; }
.f-yellow, .s-yellow, .v-yellow, .j-yellow { --tint: var(--tint-yellow); --accent: #B26E00; }
.f-pink, .s-pink, .v-pink, .si-pink, .j-pink, .c-pink { --tint: var(--tint-pink); --accent: #D6336C; }
.f-purple, .s-purple, .v-purple, .j-purple, .c-lavender { --tint: var(--tint-purple); --accent: #0A78B5; }
.f-green, .s-green, .v-green, .si-green, .j-green { --tint: var(--tint-green); --accent: #188A4B; }
.f-teal, .s-teal, .v-teal, .c-mint { --tint: var(--tint-mint); --accent: #0B8470; }
.f-lilac { --tint: var(--tint-lilac); --accent: #0B6F8F; }
.f-cream { --tint: var(--tint-cream); --accent: #8A5A2B; }

.twinkle { position: absolute; width: 18px; height: 18px; fill: currentColor; color: #FFC43D; animation: twinkle 3.6s ease-in-out infinite; }

@keyframes twinkle { 0%, 100% { opacity: 0.35; transform: scale(0.7) rotate(0deg); } 50% { opacity: 1; transform: scale(1) rotate(20deg); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes drift { from { transform: translateX(0); } to { transform: translateX(40px); } }
@keyframes sway { 0%, 100% { transform: rotate(-8deg); } 50% { transform: rotate(8deg); } }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.55; } 100% { transform: scale(1.6); opacity: 0; } }

/* ---------- 5. Header & navigation ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: saturate(1.5) blur(14px);
  backdrop-filter: saturate(1.5) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.site-header.is-scrolled { border-color: var(--color-line); box-shadow: 0 10px 30px -24px rgba(28, 33, 80, 0.5); }

.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: var(--space-5); }

.brand { position: relative; z-index: 2; display: inline-flex; flex-shrink: 0; border-radius: 14px; }
.brand img { height: 56px; width: auto; transition: transform 0.4s var(--ease-out); }
.brand:hover img { transform: rotate(-3deg) scale(1.04); }

.nav-toggle {
  display: inline-grid; place-items: center;
  width: 48px; height: 48px; border: 0; border-radius: 14px;
  background: var(--color-paper); box-shadow: inset 0 0 0 1px var(--color-line), var(--shadow-soft);
  cursor: pointer; color: var(--color-navy);
}
.nav-toggle-bars { position: relative; width: 22px; height: 16px; }
.nav-toggle-bars span { position: absolute; left: 0; width: 100%; height: 2.5px; border-radius: 2px; background: currentColor; transition: transform 0.3s var(--ease-out), opacity 0.2s; }
.nav-toggle-bars span:nth-child(1) { top: 0; }
.nav-toggle-bars span:nth-child(2) { top: 6.75px; width: 70%; }
.nav-toggle-bars span:nth-child(3) { bottom: 0; }
.is-open .nav-toggle-bars span:nth-child(1) { transform: translateY(6.75px) rotate(45deg); }
.is-open .nav-toggle-bars span:nth-child(2) { opacity: 0; }
.is-open .nav-toggle-bars span:nth-child(3) { transform: translateY(-6.75px) rotate(-45deg); }

.primary-nav {
  position: fixed; left: 0; right: 0; top: var(--header-h);
  height: calc(100dvh - var(--header-h));
  display: flex; flex-direction: column; gap: var(--space-5);
  padding: var(--space-5) var(--gutter) var(--space-7);
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF4E4 100%);
  border-top: 1px solid var(--color-line);
  overflow-y: auto;
  visibility: hidden; opacity: 0; transform: translateY(-10px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0s linear 0.3s;
}
.site-header.is-open .primary-nav { visibility: visible; opacity: 1; transform: none; transition-delay: 0s; }

.nav-list { display: flex; flex-direction: column; gap: var(--space-1); }
.nav-list a {
  display: flex; align-items: center; gap: 0.5em; padding: 14px 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.6rem;
  color: var(--color-navy); text-decoration: none; border-bottom: 1px dashed var(--color-line);
}
.nav-list a:hover { color: var(--color-primary-strong); }

.soon-pill {
  display: inline-block; padding: 0.15em 0.6em; border-radius: var(--radius-pill);
  background: var(--tint-pink); color: #B32450;
  font-family: var(--font-body); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
}
.nav-cta { align-self: flex-start; }

@media (min-width: 960px) {
  :root { --header-h: 76px; }
  .brand {
    align-self: flex-start;
    margin-bottom: -30px;
    padding: 6px 18px 12px;
    background: #fff;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 16px 30px -18px rgba(28, 33, 80, 0.35);
  }
  .brand img { height: 88px; }
  .nav-toggle { display: none; }
  .primary-nav {
    position: static; height: auto; flex: 1; flex-direction: row; align-items: center; gap: var(--space-5);
    padding: 0; background: none; border: 0; overflow: visible;
    visibility: visible; opacity: 1; transform: none;
  }
  .nav-list { flex-direction: row; gap: 2px; margin-inline: auto; }
  .nav-list a {
    position: relative; padding: 8px 14px; border: 0;
    font-family: var(--font-body); font-size: 0.975rem; font-weight: 800; color: var(--color-navy);
    border-radius: var(--radius-pill);
  }
  .nav-list a::after {
    content: ""; position: absolute; left: 50%; bottom: 2px; width: 0; height: 3px; border-radius: 3px;
    background: var(--color-secondary); transform: translateX(-50%); transition: width 0.3s var(--ease-out);
  }
  .nav-list a:hover { color: var(--color-primary-strong); }
  .nav-list a:hover::after { width: 22px; }
  .nav-cta { align-self: center; }
}

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(24px, 5vw, 40px);
  background:
    radial-gradient(50% 45% at 18% 30%, rgba(255, 255, 255, 0.85), transparent 70%),
    linear-gradient(180deg, #C9E5FF 0%, #E2F1FF 55%, #F4F8FF 100%);
}

.hero-sky { position: absolute; inset: 0; pointer-events: none; }
.cloud-1 { top: 12%; left: -40px; }
.cloud-2 { top: 7%; left: 36%; transform: scale(0.7); opacity: 0.85; animation-duration: 32s; }
.tw-1 { top: 14%; left: 30%; width: 22px; height: 22px; }
.tw-2 { top: 64%; left: 2%; animation-delay: 1.2s; color: #FF8FB1; }
.tw-3 { top: 9%; left: 46%; width: 16px; height: 16px; animation-delay: 2s; }

.hero-grid { position: relative; z-index: 1; display: grid; align-items: center; }
.hero-copy { position: relative; z-index: 2; }

.hero-welcome {
  margin: 0 0 2px;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.1rem, 0.95rem + 0.8vw, 1.55rem); line-height: 1.1;
  color: var(--color-navy);
}

.hero-title {
  display: grid; grid-template-columns: auto 1fr; align-items: center; column-gap: 0.06em;
  font-weight: 800;
  font-size: clamp(3.9rem, 2.2rem + 8vw, 7.4rem);
  line-height: 0.86; letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}
/* Wordmark follows the logo: flat logo orange and blue, no gradients or glow, solid logo sun */
.ht-little { color: #FF6B00; }
.ht-stories { grid-column: 1 / -1; color: #0070FF; }
.ht-sun { width: 0.62em; height: 0.62em; margin-top: -0.42em; animation: sway 7s ease-in-out infinite; transform-origin: 50% 70%; }
/* Bangla name follows the wordmark: same display font, logo orange + logo blue, no pill */
.ht-bn {
  grid-column: 1 / -1; justify-self: start;
  margin-top: 0.12em;
  font-family: "Baloo Da 2", var(--font-bangla);
  font-size: clamp(1.7rem, 1.2rem + 2vw, 2.6rem); font-weight: 800; line-height: 1.25; letter-spacing: 0;
}
.ht-bn-little { color: #FF6B00; }
.ht-bn-stories { color: #0070FF; }

.hero-tagline {
  margin: 0 0 var(--space-3);
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.2rem); line-height: 1.15;
  color: var(--color-navy);
}
.hero-tagline span { color: var(--color-accent); }

/* Bangla slogan mirrors the English tagline above it: same display font, weight, size and navy/pink split */
.hero-bn {
  margin: 0 0 var(--space-4);
  font-family: "Baloo Da 2", var(--font-bangla); font-weight: 700;
  font-size: clamp(1.1rem, 0.9rem + 0.9vw, 1.5rem);     /* one step below the English tagline so it supports, not competes */
  line-height: 1.35;
  color: var(--color-navy);
}
.hero-bn .bn-part { white-space: nowrap; }             /* only ever break after the comma */
.hero-bn .bn-accent { color: var(--color-accent); }

.hero-lede { max-width: 40ch; font-size: var(--text-lg); color: var(--color-text-soft); margin-bottom: var(--space-5); }

.hero-copy .btn-row .btn { flex: 1 1 100%; }

.hero-badges { display: flex; justify-content: space-between; gap: 8px; max-width: 360px; margin-top: 24px; }
.hero-badges li {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 0.76rem; font-weight: 800; color: var(--color-navy);
}
.hero-badges svg {
  width: 48px; height: 48px; padding: 8px;
  border-radius: 18px; background: #fff; box-shadow: 0 10px 20px -14px rgba(28, 33, 80, 0.5);
  transition: transform 0.35s var(--ease-out);
}
.hero-badges li:hover svg { transform: translateY(-4px) rotate(-6deg); }

/* Hero scene (full-bleed illustration) */
.hero-art { position: relative; margin: var(--space-5) calc(var(--gutter) * -1) 0; }
.hero-scene { position: relative; aspect-ratio: 1084 / 765; }
.hero-mask {
  position: absolute; inset: 0;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 16%, #000 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 16%, #000 80%, transparent 100%);
}
.hero-mask picture, .hero-img { width: 100%; height: 100%; }
.hero-img { object-fit: cover; background: transparent; }

.name-tag {
  position: absolute; z-index: 2; translate: -50% 0;
  display: inline-flex; align-items: baseline; gap: 0.35em;
  padding: 0.3em 0.85em; border-radius: var(--radius-pill);
  background: var(--color-paper); box-shadow: var(--shadow-soft);
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(0.8rem, 0.7rem + 0.4vw, 1rem); line-height: 1.3;
  color: var(--color-navy); white-space: nowrap;
  animation: float 5s ease-in-out infinite;
}
.name-tag b { font-family: "Baloo Da 2", var(--font-bangla); font-weight: 600; color: var(--color-accent); }
.name-tag::after { content: ""; position: absolute; left: 50%; bottom: -6px; width: 12px; height: 12px; background: inherit; transform: translateX(-50%) rotate(45deg); border-radius: 0 0 3px 0; }
.tag-ayaan { left: 29%; top: 9%; }
.tag-adeeva { left: 56%; top: 18%; animation-delay: -2.5s; }

.hero-spark { position: absolute; z-index: 3; left: 6%; top: 10%; width: 30px; height: 30px; fill: #3B82F6; animation: twinkle 3s ease-in-out infinite; }
.hero-heart { position: absolute; z-index: 3; right: 8%; bottom: 20%; width: 34px; height: 34px; fill: var(--color-accent); filter: drop-shadow(0 6px 10px rgba(232, 65, 107, 0.35)); animation: float 4.5s ease-in-out infinite; }

.hero-wave { position: relative; z-index: 3; display: block; width: 100%; height: clamp(54px, 8vw, 120px); margin-top: clamp(-70px, -5vw, -30px); }

@media (min-width: 560px) {
  .hero-copy .btn-row .btn { flex: 0 0 auto; }
}

@media (min-width: 960px) {
  .hero { padding-top: 0; }
  .hero-grid { grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); min-height: clamp(600px, 48vw, 720px); padding-top: 56px; padding-bottom: clamp(56px, 6vw, 96px); }
  .hero-badges { gap: 22px; max-width: none; justify-content: flex-start; }
  .hero-badges li { font-size: 0.82rem; }
  .hero-badges svg { width: 54px; height: 54px; }
  .hero-art {
    align-self: stretch; display: flex; align-items: center;
    margin: 0 calc(-1 * (max(0px, (100vw - var(--container-width) - var(--gutter) * 2) / 2) + var(--gutter))) 0 -6%;
  }
  .hero-scene { width: 100%; aspect-ratio: 1200 / 747; }
  .hero-mask {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 30%), linear-gradient(to bottom, transparent 0%, #000 10%, #000 78%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(to right, transparent 0%, #000 30%), linear-gradient(to bottom, transparent 0%, #000 10%, #000 78%, transparent 100%);
    mask-composite: intersect;
  }
  .hero-copy .btn-row { flex-wrap: nowrap; }
  .hero-copy .btn-lg { padding-inline: 1.3em; }
  .tag-ayaan { left: 37%; top: 9%; }
  .tag-adeeva { left: 61%; top: 18%; }
  .hero-spark { left: 14%; top: 42%; }
  .hero-heart { right: 4%; bottom: 26%; }
}

/* ---------- 7. Intro ---------- */
.intro {
  padding-top: clamp(32px, 5vw, 56px);
  background:
    radial-gradient(420px 260px at 6% 30%, rgba(255, 143, 177, 0.14), transparent 70%),
    radial-gradient(460px 280px at 96% 14%, rgba(80, 160, 255, 0.14), transparent 70%),
    radial-gradient(420px 260px at 60% 100%, rgba(255, 196, 61, 0.14), transparent 70%),
    var(--color-background);
}

.joy-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-4); }
.joy {
  position: relative; overflow: hidden; isolation: isolate;
  padding: 24px 14px 22px;
  border-radius: 26px;
  background: #fff;
  text-align: center;
  box-shadow: 0 18px 36px -26px rgba(28, 33, 80, 0.45), inset 0 0 0 1px rgba(28, 33, 80, 0.04);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.joy::before {
  content: ""; position: absolute; z-index: -1;
  left: -20%; right: -20%; bottom: -58%; height: 90%;
  border-radius: 50%; background: var(--tint);
}
.joy:hover { transform: translateY(-6px) rotate(-0.8deg); box-shadow: var(--shadow-lift); }
.joy svg { width: 60px; height: 60px; margin: 0 auto 12px; transition: transform 0.45s var(--ease-out); }
.joy:hover svg { transform: scale(1.12) rotate(-6deg); }
.joy h3 { font-size: 1.25rem; font-weight: 800; color: var(--accent); margin-bottom: 4px; }
.joy p { font-size: 0.875rem; line-height: 1.45; color: var(--color-muted); }

.intro-story { display: grid; gap: var(--space-5); align-items: center; max-width: 1060px; margin: clamp(40px, 6vw, 64px) auto 0; }

.bn-quote {
  position: relative; margin: 0;
  padding: var(--space-5) var(--space-5) var(--space-5) calc(var(--space-5) + 6px);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF1F5 100%);
  box-shadow: var(--shadow-card);
  font-family: "Baloo Da 2", var(--font-bangla); font-weight: 600;
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.45rem); line-height: 1.55;
  color: var(--color-text-soft);
}
.bn-quote::before { content: "“"; position: absolute; top: -26px; left: 18px; font-family: Georgia, serif; font-size: 5rem; line-height: 1; color: var(--color-accent); }

.intro-note { font-size: var(--text-lg); color: var(--color-text-soft); margin: 0; }

@media (min-width: 720px) { .joy-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 900px) { .intro-story { grid-template-columns: 1fr 1fr; gap: var(--space-7); } }
@media (min-width: 1140px) { .joy-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); } }

/* ---------- 8. Characters ---------- */
.characters { background: linear-gradient(180deg, var(--color-background) 0%, #FFFFFF 280px, #FFFFFF 100%); }

.cast-grid { display: grid; gap: var(--space-5); }
.cast-grid > li { display: flex; }

.cast-card {
  display: flex; flex-direction: column; width: 100%;
  padding: 10px 10px 22px;
  border-radius: 30px;
  background: var(--tint);
  border: 3px solid #fff;
  box-shadow: 0 22px 44px -30px rgba(28, 33, 80, 0.5);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.cast-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }

.cast-art { position: relative; border-radius: 22px; overflow: hidden; background: #BFE0F5; }
.cast-art img { width: 100%; aspect-ratio: 1 / 0.9; object-fit: cover; object-position: 50% 10%; transition: transform 0.8s var(--ease-out); }
.cast-card:hover .cast-art img { transform: scale(1.05); }

.cast-badge {
  position: absolute; left: 10px; top: 10px;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 0.3em 0.8em; border-radius: var(--radius-pill);
  background: var(--accent); color: #fff;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  box-shadow: 0 6px 14px -6px rgba(0, 0, 0, 0.35);
}
.cast-badge svg { width: 13px; height: 13px; fill: #FFD166; }

.cast-body { padding: 16px 10px 0; }
.cast-name { font-weight: 800; font-size: clamp(1.7rem, 1.4rem + 0.8vw, 2rem); color: var(--accent); margin-bottom: 10px; }
.cast-name [lang="bn"] { margin-left: 0.3em; font-family: "Baloo Da 2", var(--font-bangla); font-weight: 600; font-size: 0.62em; color: var(--color-text-soft); }
.cast-body .chips li { background: rgba(255, 255, 255, 0.9); border: 0; font-size: 0.78rem; }
.cast-body p { margin-top: 12px; font-size: 0.95rem; line-height: 1.55; color: var(--color-text-soft); }

.friends { margin-top: clamp(56px, 7vw, 88px); }
.friends-title { font-size: clamp(1.4rem, 1.2rem + 0.8vw, 1.8rem); font-weight: 700; margin-bottom: var(--space-5); }

.friends-row, .story-grid {
  display: grid; grid-auto-flow: column; gap: var(--space-4);
  overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory;
  margin-inline: calc(var(--gutter) * -1);
  padding: 4px var(--gutter) var(--space-5);
  scroll-padding-inline: var(--gutter);
  scrollbar-width: none;
}
.friends-row::-webkit-scrollbar, .story-grid::-webkit-scrollbar { display: none; }
.friends-row { grid-auto-columns: minmax(170px, 46%); }

.friend-card {
  scroll-snap-align: start;
  padding: 10px 10px 18px; border-radius: var(--radius-lg);
  background: var(--tint); border: 3px solid #fff;
  box-shadow: 0 16px 34px -28px rgba(28, 33, 80, 0.5);
  text-align: center;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.friend-card:hover { transform: translateY(-5px) rotate(-0.6deg); box-shadow: var(--shadow-card); }
.friend-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: 50% 18%; border-radius: var(--radius-md); background: #fff; }
.friend-card h4 { margin: 0.7em 0 0.25em; font-size: 1.2rem; font-weight: 800; line-height: 1.15; color: var(--accent); }
.friend-card h4 [lang="bn"] { display: block; font-size: 0.85rem; font-weight: 500; color: var(--color-text-soft); line-height: 1.5; }
.friend-card p { font-size: 0.9rem; line-height: 1.45; color: var(--color-muted); padding-inline: 4px; }

.swipe-hint { display: flex; align-items: center; gap: 6px; font-size: var(--text-sm); font-weight: 700; color: var(--color-muted); margin: 0; }

@media (min-width: 560px) {
  .cast-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .friends-row { grid-auto-columns: minmax(200px, 31%); }
}
@media (min-width: 960px) {
  .friends-row { grid-auto-flow: row; grid-template-columns: repeat(4, 1fr); overflow: visible; margin-inline: 0; padding: 0; gap: var(--space-5); }
  .swipe-hint { display: none; }
}
@media (min-width: 1100px) { .cast-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* ---------- 9. Stories ---------- */
.stories { overflow: hidden; background: linear-gradient(180deg, #DDEEFF 0%, #EAF4FF 55%, #F5F9FF 100%); }
.stories-sky { position: absolute; inset: 0; pointer-events: none; }
.cloud-a { top: 56px; right: 6%; }
.cloud-b { top: 46%; left: -50px; transform: scale(0.8); opacity: 0.7; animation-duration: 34s; }
.stories .container { position: relative; }

.story-grid { grid-auto-columns: minmax(260px, 82%); }
.story-grid > li { scroll-snap-align: start; display: flex; }

.story-card {
  position: relative;
  display: flex; flex-direction: column; width: 100%;
  border-radius: 26px; background: var(--color-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.story-card:hover, .story-card:focus-within { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.story-card:focus-within { outline: 3px solid var(--color-primary); outline-offset: 3px; }

.story-thumb { position: relative; overflow: hidden; background: var(--tint); }
.story-thumb img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.story-card:hover .story-thumb img { transform: scale(1.06); }
.story-thumb::after { content: ""; position: absolute; inset: 55% 0 0; background: linear-gradient(to top, rgba(10, 16, 50, 0.35), transparent); pointer-events: none; }

.story-play {
  position: absolute; z-index: 1; left: 14px; bottom: 14px;
  display: grid; place-items: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent); border: 3px solid #fff;
  box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s var(--ease-out);
}
.story-play svg { width: 18px; height: 18px; fill: #fff; margin-left: 3px; }
.story-card:hover .story-play { transform: scale(1.12); }

.story-emoji {
  position: absolute; z-index: 1; right: 12px; top: 12px;
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 14px;
  background: #fff; box-shadow: var(--shadow-soft);
  font-size: 1.35rem; line-height: 1; transform: rotate(6deg);
}

.story-body { display: flex; flex-direction: column; flex: 1; padding: 18px 22px 22px; }
.story-body h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 6px; color: var(--accent); }
.story-body p { color: var(--color-muted); font-size: var(--text-sm); }

.story-link {
  margin-top: auto; padding-top: var(--space-3);
  display: inline-flex; align-items: center; gap: 0.4em; align-self: flex-start;
  font-weight: 800; color: var(--color-navy); text-decoration: none;
}
.story-link::after { content: ""; position: absolute; inset: 0; border-radius: 26px; }   /* whole card is clickable */
.story-link:focus-visible { outline: none; }
.story-link .icon { color: var(--accent); transition: transform 0.25s var(--ease-out); }
.story-card:hover .story-link .icon { transform: translateX(4px); }

@media (min-width: 640px) {
  .story-grid { grid-auto-flow: row; grid-template-columns: 1fr 1fr; overflow: visible; margin-inline: 0; padding: 0; gap: var(--space-5); }
}
@media (min-width: 1024px) { .story-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-6) var(--space-5); } }

/* ---------- 10. Values ---------- */
.values {
  background:
    radial-gradient(420px 420px at 6% 12%, rgba(255, 196, 61, 0.2), transparent 70%),
    radial-gradient(460px 460px at 96% 88%, rgba(232, 65, 107, 0.12), transparent 70%),
    radial-gradient(420px 420px at 90% 8%, rgba(30, 155, 232, 0.12), transparent 70%),
    #FFFFFF;
}
.values-title { font-size: clamp(2.6rem, 1.6rem + 4.4vw, 4.4rem); line-height: 0.98; }
.values-title span { color: var(--color-accent); }

.value-grid { display: grid; gap: var(--space-3); }
.value {
  display: flex; align-items: flex-start; gap: var(--space-4);
  padding: 18px;
  border-radius: 22px;
  background: var(--tint);
  border: 2px solid rgba(255, 255, 255, 0.9);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.value:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }

.value-icon {
  display: grid; place-items: center; flex-shrink: 0;
  width: 54px; height: 54px; border-radius: 18px;
  background: var(--accent); color: #fff;
  box-shadow: 0 10px 18px -10px var(--accent);
  transition: transform 0.4s var(--ease-out);
}
.value:hover .value-icon { transform: rotate(-8deg) scale(1.06); }
.value-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.value h3 { font-size: 1.22rem; font-weight: 800; margin: 2px 0 2px; }
.value h3 [lang="bn"] { margin-left: 0.35em; font-size: 0.8rem; font-weight: 600; color: var(--accent); }
.value p { font-size: var(--text-sm); color: var(--color-text-soft); line-height: 1.5; }

@media (min-width: 620px) { .value-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .value-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-4); } .value { padding: 22px; } }

/* ---------- 11. Watch ---------- */
.watch {
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(620px 420px at 8% 0%, rgba(120, 200, 255, 0.35), transparent 70%),
    radial-gradient(560px 420px at 100% 100%, rgba(255, 196, 61, 0.28), transparent 70%),
    linear-gradient(135deg, #0D3F9E 0%, #1557C8 50%, #1479C9 100%);
}
.watch .section-title { color: #fff; }
.watch :focus-visible { outline-color: #FFD166; }

.watch-stars .twinkle { color: #FFD166; }
.ws-1 { top: 14%; left: 6%; }
.ws-2 { top: 26%; left: 46%; width: 14px; height: 14px; animation-delay: 1s; }
.ws-3 { bottom: 16%; left: 38%; animation-delay: 2.1s; color: #FF9EBB; }
.ws-4 { top: 8%; right: 8%; width: 24px; height: 24px; animation-delay: 0.6s; }

.watch-grid { position: relative; display: grid; gap: var(--space-7); align-items: center; }
.watch-bn { font-family: "Baloo Da 2", var(--font-bangla); font-weight: 600; font-size: clamp(1.3rem, 1.1rem + 0.8vw, 1.7rem); color: #FFD166; margin: var(--space-3) 0; }
.watch-lede { font-size: var(--text-lg); color: rgba(255, 255, 255, 0.88); max-width: 42ch; margin-bottom: var(--space-6); }

.video-card { margin: 0; }
.video-thumb {
  position: relative; display: block;
  border-radius: var(--radius-lg); overflow: hidden;
  background: #0B1236;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.14), 0 40px 80px -30px rgba(0, 0, 0, 0.6);
  transform: rotate(-1deg);
  transition: transform 0.5s var(--ease-out);
}
.video-thumb:hover { transform: rotate(0deg) scale(1.01); }
.video-thumb img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.video-thumb:hover img { transform: scale(1.04); }
.video-thumb.is-playing { transform: none; aspect-ratio: 16 / 9; }
.video-frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.play-btn {
  position: absolute; left: 50%; top: 50%;
  display: grid; place-items: center;
  width: clamp(64px, 9vw, 88px); aspect-ratio: 1; border-radius: 50%;
  background: #fff; translate: -50% -50%;
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s var(--ease-out);
}
.play-btn::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 3px solid #fff; animation: pulse 2.2s ease-out infinite; }
.play-btn svg { width: 42%; height: 42%; fill: #E0122F; margin-left: 6%; }
.video-thumb:hover .play-btn { transform: scale(1.1); }

.video-card figcaption { margin-top: var(--space-5); text-align: center; color: rgba(255, 255, 255, 0.85); font-size: var(--text-sm); }
.video-card figcaption strong { color: #FFD166; }

@media (min-width: 960px) { .watch-grid { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: var(--space-8); } }

/* ---------- 12. Parents ---------- */
.parents-section {
  background:
    radial-gradient(420px 320px at 0% 60%, rgba(255, 196, 61, 0.2), transparent 70%),
    radial-gradient(420px 320px at 100% 10%, rgba(34, 164, 93, 0.12), transparent 70%),
    var(--color-background);
}
.parents-grid { display: grid; gap: var(--space-7); align-items: center; }

.parents-art { position: relative; isolation: isolate; max-width: 520px; margin-inline: auto; width: 100%; }
.parents-art::before {
  content: ""; position: absolute; inset: 22px -14px -18px 18px; z-index: -1;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #FFD256, #FF9EBB);
  transform: rotate(3deg);
}
.parents-art img { width: 100%; aspect-ratio: 840 / 900; object-fit: cover; border-radius: var(--radius-xl); border: 5px solid #fff; box-shadow: var(--shadow-card); }

.parents-bubble {
  position: absolute; right: 10px; bottom: 22px; margin: 0; padding: 14px 20px;
  border-radius: 24px 24px 6px 24px;
  background: var(--color-paper); box-shadow: var(--shadow-card);
  font-family: "Baloo Da 2", var(--font-bangla); font-weight: 700;
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.35rem); line-height: 1.3;
  color: #C42A55; animation: float 6s ease-in-out infinite;
}

.parents-copy .section-title span { color: var(--color-accent); }
.parents-copy .lead { margin-top: var(--space-5); }
.parents-copy > p:not(.lead):not(.eyebrow) { color: var(--color-muted); }
.parents-copy .chips li:nth-child(7n+1) { background: var(--tint-pink); }
.parents-copy .chips li:nth-child(7n+2) { background: var(--tint-blue); }
.parents-copy .chips li:nth-child(7n+3) { background: var(--tint-yellow); }
.parents-copy .chips li:nth-child(7n+4) { background: var(--tint-green); }
.parents-copy .chips li:nth-child(7n+5) { background: var(--tint-purple); }
.parents-copy .chips li:nth-child(7n+6) { background: var(--tint-orange); }
.parents-copy .chips li:nth-child(7n+7) { background: var(--tint-mint); }
.parents-copy .chips li { border-color: transparent; color: var(--color-navy); }

.ask-card { margin: var(--space-5) 0 var(--space-6); padding: 20px 24px; border-radius: var(--radius-md); background: var(--color-paper); border: 2px dashed #FFC43D; }
.ask-title { font-weight: 800; color: var(--color-navy); margin-bottom: var(--space-2); }
.ask-card li { position: relative; padding-left: 1.4em; color: var(--color-text-soft); font-weight: 600; }
.ask-card li + li { margin-top: 4px; }
.ask-card li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 9px; height: 9px; border-radius: 50%; background: var(--color-orange); }

@media (min-width: 960px) {
  .parents-grid { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: var(--space-8); }
  .parents-bubble { right: -22px; }
}

/* ---------- 13. Coming soon (future shop) ---------- */
.soon { background: var(--color-paper); }
.soon-panel {
  position: relative;
  padding: clamp(92px, 9vw, 88px) clamp(18px, 4vw, 56px) clamp(40px, 6vw, 72px);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #FFE7A8 0%, #FFD6E2 50%, #CFEAFF 100%);
  overflow: hidden;
}
.soon-panel::before, .soon-panel::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; border: 2px dashed rgba(28, 33, 80, 0.12); }
.soon-panel::before { width: 380px; height: 380px; left: -140px; bottom: -180px; }
.soon-panel::after { width: 300px; height: 300px; right: -100px; top: -120px; }

.soon-friends picture {
  position: absolute; top: 22px; z-index: 1;
  width: clamp(72px, 10vw, 128px); aspect-ratio: 1; border-radius: 50%; overflow: hidden;
  border: 5px solid #fff; box-shadow: var(--shadow-card);
  animation: float 6s ease-in-out infinite;
}
.soon-friends img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.soon-left { left: clamp(16px, 6vw, 72px); }
.soon-right { right: clamp(16px, 6vw, 72px); animation-delay: -3s !important; }

.soon-badge {
  display: inline-flex; align-items: center; gap: 0.45em; margin: 0 0 var(--space-4);
  padding: 0.45em 1em; border-radius: var(--radius-pill);
  background: var(--color-navy); color: #FFD166;
  font-size: var(--text-xs); font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
}
.soon .section-sub { color: var(--color-text-soft); }

.soon-grid { position: relative; display: grid; gap: var(--space-4); margin-bottom: var(--space-7); }
.soon-item {
  position: relative; padding: 26px 22px 22px;
  border-radius: var(--radius-lg); background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 16px 36px -28px rgba(28, 33, 80, 0.6);
  text-align: center;
  transition: transform 0.4s var(--ease-out), background-color 0.3s;
}
.soon-item:hover { transform: translateY(-6px) rotate(-0.8deg); background: #fff; }
.soon-emoji {
  display: grid; place-items: center; margin: 0 auto var(--space-4);
  width: 76px; height: 76px; border-radius: 26px;
  background: var(--tint); font-size: 2.2rem; line-height: 1;
  transition: transform 0.4s var(--ease-out);
}
.soon-item:hover .soon-emoji { transform: scale(1.08) rotate(6deg); }
.soon-item h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: var(--space-2); color: var(--accent); }
.soon-item p { font-size: var(--text-sm); color: var(--color-muted); margin-bottom: var(--space-4); }
.soon-tag { display: inline-block; padding: 0.2em 0.75em; border-radius: var(--radius-pill); background: var(--tint); color: var(--accent); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.soon-note { margin-top: var(--space-4); font-size: var(--text-sm); color: var(--color-text-soft); }

@media (min-width: 560px) { .soon-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) {
  .soon-grid { grid-template-columns: repeat(4, 1fr); }
  .soon-panel { padding-top: clamp(56px, 6vw, 88px); }
  .soon-friends picture { top: 48px; }
}

/* ---------- 14. About & at a glance ---------- */
.about { background: linear-gradient(180deg, #FFFFFF 0%, var(--color-background) 100%); }
.about-grid { display: grid; gap: var(--space-7); align-items: start; }
.about-copy .lead { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.35rem, 1.1rem + 1vw, 1.8rem); line-height: 1.3; color: var(--color-navy); margin-top: var(--space-5); }
.about-copy > p:not(.lead):not(.eyebrow):not(.about-sign) { color: var(--color-text-soft); }
.about-sign { margin-top: var(--space-6); font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; color: var(--color-primary-strong); }
.about-sign [lang="bn"] { color: var(--color-accent); font-size: 0.85em; }

.glance {
  position: relative;
  padding: 28px clamp(20px, 3vw, 32px) 18px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-card);
}
.glance-title { display: flex; align-items: center; gap: 0.45em; font-size: 1.4rem; font-weight: 700; margin-bottom: var(--space-3); }
.glance-title .icon { color: var(--color-secondary); width: 1em; height: 1em; }
.glance dl { margin: 0; }
.glance dl > div { padding: 14px 0; border-bottom: 1px dashed rgba(28, 33, 80, 0.14); }
.glance dl > div:last-child { border-bottom: 0; }
.glance dt { font-weight: 800; color: var(--color-navy); }
.glance dd { margin: 4px 0 0; font-size: var(--text-sm); color: var(--color-muted); line-height: 1.55; }

@media (min-width: 960px) {
  .about-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: var(--space-8); }
  .glance { position: sticky; top: calc(var(--header-h) + 24px); }
}

/* ---------- 15. FAQ ---------- */
.faq { background: var(--color-background); }
.faq-wrap { max-width: calc(860px + var(--gutter) * 2); }
.faq-list { display: grid; gap: var(--space-3); }

.faq-item { border-radius: var(--radius-md); background: #fff; border: 1px solid var(--color-line); transition: box-shadow 0.3s; }
.faq-item[open] { box-shadow: var(--shadow-card); }
.faq-item summary { position: relative; list-style: none; cursor: pointer; padding: 20px 64px 20px 22px; border-radius: var(--radius-md); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 { display: inline; font-size: clamp(1.1rem, 1rem + 0.35vw, 1.25rem); font-weight: 700; line-height: 1.3; }
.faq-item summary::after {
  content: ""; position: absolute; right: 18px; top: 50%;
  width: 32px; height: 32px; margin-top: -16px; border-radius: 50%;
  background:
    linear-gradient(var(--color-navy), var(--color-navy)) center / 12px 2.5px no-repeat,
    linear-gradient(var(--color-navy), var(--color-navy)) center / 2.5px 12px no-repeat,
    var(--color-secondary);
  transition: transform 0.35s var(--ease-out);
}
.faq-item:nth-child(3n+2) summary::after { background: linear-gradient(#fff, #fff) center / 12px 2.5px no-repeat, linear-gradient(#fff, #fff) center / 2.5px 12px no-repeat, var(--color-accent); }
.faq-item:nth-child(3n+3) summary::after { background: linear-gradient(#fff, #fff) center / 12px 2.5px no-repeat, linear-gradient(#fff, #fff) center / 2.5px 12px no-repeat, var(--color-primary); }
.faq-item[open] summary::after { transform: rotate(135deg); }
.faq-item summary:hover h3 { color: var(--color-primary-strong); }
.faq-item > p { padding: 0 22px 22px; color: var(--color-text-soft); }

/* ---------- 16. Final CTA with landscape ---------- */
.finale {
  position: relative; overflow: hidden; text-align: center;
  padding-top: var(--space-section);
  padding-bottom: clamp(190px, 22vw, 290px);
  background: linear-gradient(180deg, var(--color-background) 0%, #DCEEFF 45%, #C7E4FF 100%);
}
.finale-sky { position: absolute; inset: 0; pointer-events: none; }
.cloud-f1 { top: 22%; left: 6%; transform: scale(0.9); }
.cloud-f2 { top: 12%; right: 9%; transform: scale(0.65); animation-duration: 30s; }
.finale-inner { position: relative; z-index: 2; }

.finale-cast { display: flex; justify-content: center; align-items: flex-end; margin-bottom: var(--space-6); }
.fc { position: relative; flex-shrink: 0; overflow: hidden; border: 5px solid #fff; box-shadow: var(--shadow-card); background: #fff; animation: float 6s ease-in-out infinite; }
.fc img { width: 100%; height: 100%; object-fit: cover; }
.fc-ayaan, .fc-adeeva { width: clamp(108px, 16vw, 168px); aspect-ratio: 4 / 5; border-radius: 999px 999px 32px 32px; z-index: 2; }
.fc-ayaan { transform: rotate(-4deg); margin-right: -10px; }
.fc-adeeva { transform: rotate(4deg); margin-left: -10px; animation-delay: -3s; z-index: 3; }
.fc-momo, .fc-zozo { width: clamp(68px, 10vw, 104px); aspect-ratio: 1; border-radius: 50%; z-index: 1; }
.fc-momo { transform: rotate(-10deg); margin-right: -14px; animation-delay: -1.5s; }
.fc-zozo { transform: rotate(10deg); margin-left: -14px; animation-delay: -4.5s; }
.fc-momo img, .fc-zozo img { object-position: 50% 30%; }

.finale-title { max-width: 20ch; margin: 0 auto var(--space-4); font-size: clamp(2.1rem, 1.3rem + 3.6vw, 3.8rem); font-weight: 800; line-height: 1.04; }
.finale-title span { color: var(--color-accent); }
.finale-bn { margin: 0 auto var(--space-4); font-family: "Baloo Da 2", var(--font-bangla); font-weight: 600; font-size: clamp(1.2rem, 1rem + 0.9vw, 1.7rem); line-height: 1.5; color: var(--color-text-soft); }
.finale-tag { margin-bottom: var(--space-6); font-family: var(--font-display); font-weight: 800; font-size: clamp(1.3rem, 1.1rem + 0.8vw, 1.6rem); color: var(--color-primary-strong); }
.finale-tag span { color: var(--color-accent); }

.finale-scene { position: absolute; left: 0; right: 0; bottom: 0; height: clamp(160px, 20vw, 260px); pointer-events: none; }
.finale-land { position: absolute; left: 0; bottom: 0; width: 100%; height: 100%; }
.trees { position: absolute; bottom: 10%; width: clamp(150px, 22vw, 320px); height: auto; aspect-ratio: 300 / 260; }
.trees-left { left: -3%; }
.trees-right { right: -3%; transform: scaleX(-1); }

.kind-sign {
  position: absolute; left: clamp(120px, 17vw, 300px); bottom: 34%;
  display: none; flex-direction: column;
  padding: 10px 18px;
  background: linear-gradient(180deg, #E2B377, #C98F52);
  border: 4px solid #A8713D; border-radius: 12px;
  box-shadow: 0 10px 20px -10px rgba(90, 54, 20, 0.6);
  font-family: var(--font-display); font-weight: 700; font-size: clamp(0.95rem, 0.7rem + 0.5vw, 1.2rem); line-height: 1.25;
  color: #5A3614;
  transform: rotate(-5deg);
}
.kind-sign::after { content: ""; position: absolute; z-index: -1; left: 50%; top: 100%; width: 12px; height: 70px; background: #9A6A3C; transform: translateX(-50%); }

.doodle-note {
  position: absolute; right: clamp(120px, 14vw, 260px); bottom: 62%;
  display: none; margin: 0;
  font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; line-height: 1.15;
  color: var(--color-navy); transform: rotate(8deg);
}
.doodle-note span { color: var(--color-accent); }

@media (min-width: 1024px) { .kind-sign, .doodle-note { display: flex; } .doodle-note { display: block; } }

/* ---------- 17. Footer ---------- */
.site-footer { background: var(--color-navy-deep); color: rgba(255, 255, 255, 0.8); padding-top: clamp(56px, 7vw, 80px); font-size: var(--text-sm); }
.site-footer a { color: rgba(255, 255, 255, 0.88); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer :focus-visible { outline-color: #FFD166; }

.footer-grid { display: grid; gap: var(--space-6); }
.footer-brand img { width: 132px; height: auto; margin-bottom: var(--space-3); }
.footer-name { font-family: var(--font-display); font-weight: 800; font-size: 1.45rem; color: #fff; margin-bottom: 0; }
.footer-name [lang="bn"] { margin-left: 0.3em; font-size: 0.72em; font-weight: 500; color: #FFD166; }
.footer-tag { color: rgba(255, 255, 255, 0.72); }

.footer-h { font-family: var(--font-body); font-size: var(--text-xs); font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: #FFD166; margin-bottom: var(--space-4); }
.footer-col li + li { margin-top: 10px; }
.footer-col a { display: inline-flex; align-items: center; gap: 10px; min-height: 28px; }

.social li + li { margin-top: 12px; }
.social .icon { width: 38px; height: 38px; padding: 9px; border-radius: 50%; background: rgba(255, 255, 255, 0.1); transition: background-color 0.25s, transform 0.25s var(--ease-out); }
.social li:nth-child(1) a:hover .icon { background: #1877F2; }
.social li:nth-child(2) a:hover .icon { background: #FF0033; }
.social a:hover .icon { transform: translateY(-2px); }

.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-3) var(--space-5);
  margin-top: clamp(40px, 5vw, 64px); padding-top: var(--space-5);
  padding-bottom: calc(var(--space-6) + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-bottom p { margin: 0; }
.to-top { display: inline-flex; align-items: center; gap: 6px; min-height: 40px; font-weight: 700; }
.to-top span { display: inline-block; transition: transform 0.25s var(--ease-out); }
.to-top:hover span { transform: translateY(-3px); }

@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }

/* ---------- 18. Reveal-on-scroll (added by script.js only) ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.js .reveal.is-visible { opacity: 1; transform: none; }

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

/* ---------- 20. Print ---------- */
@media print {
  .site-header, .hero-sky, .hero-wave, .watch-stars, .nav-toggle, .finale-scene { display: none !important; }
  body { background: #fff; }
}

/* ---------- 21. New positioning: leads, best friend, supporting cast ---------- */
.c-orange { --tint: var(--tint-orange); --accent: #C2560A; }
.cast-art { background: #D3DEEA; }
.cast-card.is-lead .cast-name { font-size: clamp(2rem, 1.6rem + 1.3vw, 2.7rem); }
.cast-badge.is-friend { background: #C2560A; }
.cast-tuku .cast-art img { object-position: 50% 30%; }

@media (min-width: 560px) {
  .cast-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cast-tuku { grid-column: 1 / -1; }
  .cast-tuku .cast-card { flex-direction: row; align-items: center; gap: 22px; padding: 12px; }
  .cast-tuku .cast-art { flex: 0 0 42%; }
  .cast-tuku .cast-art img { aspect-ratio: 1 / 1; }
  .cast-tuku .cast-body { padding: 8px 12px 8px 0; }
}
@media (min-width: 1100px) {
  .cast-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .cast-lead, .cast-tuku { grid-column: span 6; }
  .cast-support { grid-column: span 3; }
  .cast-lead .cast-card { flex-direction: row; align-items: center; gap: 24px; padding: 12px; }
  .cast-lead .cast-art { flex: 0 0 46%; }
  .cast-lead .cast-art img { aspect-ratio: 4 / 5; object-position: 50% 15%; }
  .cast-lead .cast-body { padding: 10px 16px 10px 0; }
  .cast-tuku .cast-art img { aspect-ratio: 4 / 5; }
}

/* Hero name tags for the new cover */
.tag-ayaan { left: 29%; top: 7%; }
.tag-adeeva { left: 57%; top: 7%; }
.tag-tuku { left: 84%; top: 30%; animation-delay: -1.2s; }
@media (min-width: 960px) {
  .tag-ayaan { left: 33%; top: 14%; }
  .tag-adeeva { left: 58%; top: 14%; }
  .tag-tuku { left: 84%; top: 30%; }
  .hero-mask {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 22%), linear-gradient(to bottom, transparent 0%, #000 10%, #000 78%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 22%), linear-gradient(to bottom, transparent 0%, #000 10%, #000 78%, transparent 100%);
  }
}

/* Final CTA cast: Adeeva, Ayaan, Tuku */
.fc-adeeva { transform: rotate(-4deg); margin: 0 -10px 0 0; z-index: 2; animation-delay: 0s; }
.fc-ayaan { transform: rotate(4deg); margin: 0 0 0 -10px; z-index: 3; animation-delay: -3s; }
.fc-tuku { width: clamp(84px, 12vw, 124px); aspect-ratio: 1; border-radius: 50%; z-index: 4; transform: rotate(8deg); margin-left: -18px; animation-delay: -4.5s; }
.fc-tuku img { object-position: 50% 35%; }
