/* ============================================================
   MamaBee — landing (v2)
   Style: playful, rounded, friendly, calm
   Palette stays on-brand: honey / lavender / cream / cocoa
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --honey:        #F0B040;
  --honey-dk:     #D89A2E;
  --honey-dkr:    #B97E1F;   /* button bottom-edge */
  --honey-lt:     #FCE7B5;
  --honey-xlt:    #FDF1D2;

  --lavender:     #A89DC2;
  --lavender-dk:  #867BA0;
  --lavender-dkr: #6E6388;
  --lavender-lt:  #E0DAEC;

  --amber-warm:   #E89B5C;
  --rose-soft:    #E89AAA;
  --rose-lt:      #FBDDE4;
  --alert-red:    #E07A6F;
  --vaccine:      #D9876B;
  --mint:         #7FC8A0;
  --mint-lt:      #DBF1E4;
  --sky:          #8FC4E8;
  --sky-lt:       #DCEDF8;

  --cream:        #FFF8E8;
  --cream-tint:   #FFFCF4;
  --cream-deep:   #FEEFD0;
  --surface:      #FFFFFF;
  --cocoa:        #643018;
  --cocoa-dk:     #4A2310;

  --ink:          #3D2E20;
  --ink-muted:    #8A7A68;
  --ink-faint:    #C4B8A8;
  --divider:      #F0E6D6;

  --shadow-soft:  0 4px 16px rgba(61,46,32,0.07);
  --shadow-card:  0 10px 30px rgba(61,46,32,0.10);
  --shadow-lg:    0 26px 64px rgba(61,46,32,0.16);

  --radius:       20px;
  --radius-lg:    28px;
  --radius-xl:    40px;
  --pill:         999px;

  --grad-honey:    linear-gradient(160deg, #F6C158 0%, #E7A636 100%);
  --grad-lavender: linear-gradient(160deg, #B3A7CF 0%, #8377A2 100%);

  --font-display: "Nunito", "Quicksand", system-ui, sans-serif;
  --font-body:    "Nunito", system-ui, sans-serif;

  /* mood-controlled */
  --page-bg:      var(--cream);
  --section-alt:  var(--cream-tint);
  --glow:         rgba(240,176,64,0.60);
  --glow-2:       rgba(168,157,194,0.45);

  --maxw: 1180px;
}

:root[data-mood="cream"] {
  --page-bg:     #FFFDF7;
  --section-alt: #FBF6EC;
  --glow:        rgba(240,176,64,0.42);
  --glow-2:      rgba(168,157,194,0.36);
}
:root[data-mood="golden"] {
  --page-bg:     #FCEBCE;
  --section-alt: #FBF1DA;
  --glow:        rgba(216,154,46,0.64);
  --glow-2:      rgba(228,122,111,0.34);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--ink);
  background: var(--page-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color .5s ease;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; position: relative; }
.section--tight { padding: 64px 0; }
.section--alt { background: var(--section-alt); transition: background-color .5s ease; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 800;
  font-size: 14px; letter-spacing: 0.02em;
  color: var(--honey-dk);
  background: var(--honey-lt);
  padding: 7px 15px; border-radius: var(--pill);
  margin-bottom: 20px;
}
.eyebrow .e-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--honey-dk); }
.section-head { max-width: 680px; margin: 0 auto 60px; text-align: center; }
.section-head h2 { font-size: clamp(2.1rem, 4.6vw, 3.2rem); }
.section-head p { margin-top: 18px; font-size: 1.18rem; color: var(--ink-muted); font-weight: 600; }

/* reveal-on-scroll (hidden state JS-gated so no-JS shows everything) */
.reveal { transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
html.js-anim .reveal { opacity: 0; transform: translateY(26px); }
html.js-anim .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js-anim .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Chunky pressable buttons (the playful signature) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  min-height: 56px; padding: 0 30px; border: none; cursor: pointer;
  border-radius: 18px; white-space: nowrap;
  transition: transform .12s ease, box-shadow .12s ease, background-color .2s ease;
}
.btn:active { transform: translateY(4px); }
.btn-primary { background: var(--grad-honey); color: var(--cocoa); box-shadow: 0 6px 0 var(--honey-dkr), var(--shadow-soft); }
.btn-primary:hover { filter: brightness(1.02); }
.btn-primary:active { box-shadow: 0 2px 0 var(--honey-dkr); }
.btn-cocoa { background: var(--cocoa); color: #fff; box-shadow: 0 6px 0 var(--cocoa-dk); }
.btn-cocoa:active { box-shadow: 0 2px 0 var(--cocoa-dk); }
.btn-white { background: #fff; color: var(--cocoa); box-shadow: 0 6px 0 #e7d8c2; }
.btn-white:active { box-shadow: 0 2px 0 #e7d8c2; }
.btn-lav { background: #fff; color: var(--lavender-dkr); box-shadow: 0 6px 0 #d9d0e8; }
.btn-lav:active { box-shadow: 0 2px 0 #d9d0e8; }
.btn-sm { min-height: 48px; padding: 0 22px; font-size: 0.98rem; border-radius: 15px; box-shadow: 0 5px 0 var(--honey-dkr); }
.btn-sm:active { box-shadow: 0 1px 0 var(--honey-dkr); }
.btn-link { color: var(--cocoa); font-weight: 800; font-family: var(--font-display); display: inline-flex; align-items: center; gap: 7px; font-size: 1.05rem; }
.btn-link .arr { transition: transform .2s ease; }
.btn-link:hover .arr { transform: translateY(3px); }

/* App Store badge */
.appstore {
  display: inline-flex; align-items: center; gap: 12px;
  background: #1b1410; color: #fff; border-radius: 18px;
  padding: 11px 22px 11px 19px; min-height: 60px;
  box-shadow: 0 6px 0 #000, var(--shadow-soft);
  transition: transform .12s ease, box-shadow .12s ease;
}
.appstore:active { transform: translateY(4px); box-shadow: 0 2px 0 #000; }
.appstore svg { width: 28px; height: 28px; flex: none; }
.appstore .as-top { display: block; font-size: 11px; opacity: .82; line-height: 1.1; font-weight: 600; }
.appstore .as-big { display: block; font-family: var(--font-display); font-weight: 800; font-size: 20px; line-height: 1.15; }

/* ---------- Wave dividers ---------- */
.wave { display: block; width: 100%; height: 64px; }
.wave svg { display: block; width: 100%; height: 100%; }

/* ---------- Header ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: saturate(150%) blur(14px);
  background: color-mix(in srgb, var(--page-bg) 82%, transparent);
  transition: box-shadow .3s ease, background-color .3s ease;
}
.nav.scrolled { box-shadow: 0 6px 24px rgba(61,46,32,0.07); }
.nav-inner { display: flex; align-items: center; gap: 28px; height: 78px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 900; font-size: 1.4rem; letter-spacing: -0.02em; color: var(--ink); }
.brand .bee-logo { width: 46px; height: 46px; object-fit: contain; flex: none; filter: drop-shadow(0 3px 5px rgba(61,46,32,0.18)); transition: transform .25s cubic-bezier(.2,.8,.3,1.4); }
.brand:hover .bee-logo { transform: rotate(-8deg) scale(1.06); }
.nav-links { display: flex; gap: 8px; margin-left: 12px; }
.nav-links a { font-weight: 800; font-size: 1rem; color: var(--ink-muted); padding: 9px 15px; border-radius: 12px; white-space: nowrap; transition: color .16s ease, background-color .16s ease; }
.nav-links a:hover { color: var(--cocoa); background: var(--honey-xlt); }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { min-height: 48px; padding: 0 22px; font-size: 0.98rem; border-radius: 15px; box-shadow: 0 5px 0 var(--honey-dkr); }
.nav-cta .btn:active { box-shadow: 0 1px 0 var(--honey-dkr); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 76px 0 56px; }
.hero-grid { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 48px; align-items: center; }
.hero-copy { max-width: 580px; }
.hero h1 { font-size: clamp(2.7rem, 5.6vw, 4.4rem); }
.hero h1 .hl { color: var(--honey-dk); position: relative; white-space: nowrap; }
.hero h1 .hl::after { content: ""; position: absolute; left: -2%; right: -2%; bottom: 4%; height: 30%; background: var(--honey-lt); border-radius: var(--pill); z-index: -1; }
.hero .lede { margin-top: 24px; font-size: 1.3rem; color: var(--ink-muted); max-width: 500px; font-weight: 600; }
.hero-actions { display: flex; align-items: center; gap: 18px; margin-top: 36px; flex-wrap: wrap; }
.badge-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; color: var(--cocoa);
  font-family: var(--font-display); font-weight: 800; font-size: 0.9rem;
  padding: 9px 17px; border-radius: var(--pill); margin-bottom: 26px;
  box-shadow: var(--shadow-soft);
}
.badge-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 4px var(--mint-lt); }

/* hero visual */
.hero-visual { position: relative; display: grid; place-items: center; min-height: 560px; }
.blob {
  position: absolute; z-index: 0; pointer-events: none;
  width: 118%; height: 108%;
  background:
    radial-gradient(46% 42% at 60% 36%, var(--glow) 0%, transparent 68%),
    radial-gradient(42% 46% at 32% 74%, var(--glow-2) 0%, transparent 70%);
  filter: blur(6px);
}
.honeycomb { position: absolute; inset: 0; z-index: 0; opacity: .5; pointer-events: none; }
.hexdot { position: absolute; background: var(--honey); clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%); }
.phone {
  position: relative; z-index: 1;
  width: 312px; aspect-ratio: 312 / 640;
  background: linear-gradient(160deg, #fff 0%, #fffaf0 100%);
  border-radius: 50px; padding: 14px;
  box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255,255,255,0.9);
}
.phone::before { content: ""; position: absolute; inset: -8px; border-radius: 58px; background: radial-gradient(120% 120% at 50% 0%, rgba(255,255,255,.75), rgba(240,176,64,.20)); z-index: -1; filter: blur(2px); }
.phone-screen { width: 100%; height: 100%; border-radius: 38px; overflow: hidden; background: var(--cream); position: relative; }
.phone .notch { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 100px; height: 28px; background: #1b1410; border-radius: var(--pill); z-index: 4; }
image-slot { display: block; width: 100%; height: 100%; }

.float-chip {
  position: absolute; z-index: 2;
  background: #fff; border-radius: 18px; padding: 12px 15px;
  box-shadow: var(--shadow-card); display: flex; align-items: center; gap: 11px;
  font-size: 0.92rem; font-weight: 800; font-family: var(--font-display);
}
.float-chip .ic { width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center; flex: none; }
.float-chip small { display: block; font-family: var(--font-body); font-weight: 600; color: var(--ink-muted); font-size: 0.76rem; }
.float-chip.c1 { top: 7%; left: -7%; }
.float-chip.c2 { bottom: 17%; right: -9%; }
.float-chip.c3 { bottom: 1%; left: 1%; }
@media (prefers-reduced-motion: no-preference) {
  .float-chip { animation: bob 5s ease-in-out infinite; }
  .float-chip.c2 { animation-delay: -1.6s; }
  .float-chip.c3 { animation-delay: -3.1s; }
}
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---------- Stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { background: #fff; border-radius: var(--radius-lg); padding: 26px 22px; text-align: center; box-shadow: var(--shadow-soft); }
.stat .num { font-family: var(--font-display); font-weight: 900; font-size: 2.3rem; color: var(--honey-dk); letter-spacing: -0.02em; }
.stat .lbl { margin-top: 4px; font-weight: 700; color: var(--ink-muted); font-size: 0.98rem; }

/* ---------- Alternating feature rows ---------- */
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.row2 + .row2 { margin-top: 96px; }
.row2.flip .scene { order: 2; }
.row2-copy .eyebrow { margin-bottom: 18px; }
.row2-copy h3 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.row2-copy p { margin-top: 16px; font-size: 1.14rem; color: var(--ink-muted); font-weight: 600; }
.mini-list { margin-top: 22px; display: grid; gap: 12px; }
.mini-list li { display: flex; gap: 12px; align-items: center; font-weight: 700; font-size: 1.05rem; }
.mini-list .chk { width: 28px; height: 28px; border-radius: 9px; background: var(--mint-lt); color: var(--mint); display: grid; place-items: center; flex: none; }
.mini-list .chk svg { width: 17px; height: 17px; }

/* the colorful illustration panel that holds a screenshot */
.scene {
  position: relative; border-radius: var(--radius-xl); padding: 30px;
  min-height: 380px; display: grid; place-items: center; overflow: hidden;
  box-shadow: var(--shadow-card);
}
.scene--honey  { background: linear-gradient(150deg, #FCE7B5, #FBD98E); }
.scene--lav    { background: linear-gradient(150deg, #E6E0F0, #CFC6E2); }
.scene--mint   { background: linear-gradient(150deg, #DBF1E4, #BFE6CF); }
.scene--rose   { background: linear-gradient(150deg, #FBDDE4, #F6C3CF); }
.scene--sky    { background: linear-gradient(150deg, #DCEDF8, #BFDEF1); }
.scene .deco { position: absolute; border-radius: 50%; opacity: .5; }
.scene .deco.d1 { width: 130px; height: 130px; top: -34px; right: -30px; background: rgba(255,255,255,.55); }
.scene .deco.d2 { width: 80px; height: 80px; bottom: -22px; left: 16px; background: rgba(255,255,255,.4); }
.scene .deco.hex { width: 64px; height: 64px; border-radius: 0; clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%); background: rgba(255,255,255,.35); top: 24px; left: 24px; }
.scene .panel-phone {
  position: relative; z-index: 1; width: 244px; aspect-ratio: 244 / 500;
  background: #fff; border-radius: 38px; padding: 11px;
  box-shadow: var(--shadow-lg);
}
.scene .panel-phone .ps { width: 100%; height: 100%; border-radius: 28px; overflow: hidden; background: var(--cream); }
.scene .wide-slot { position: relative; z-index: 1; width: 100%; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 4 / 3; background: #fff; }

/* ---------- Feature grid (the categories) ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feat-card {
  background: #fff; border-radius: var(--radius-lg); padding: 28px 24px 26px;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .22s ease;
}
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.feat-ic { width: 58px; height: 58px; border-radius: 17px; display: grid; place-items: center; margin-bottom: 18px; }
.feat-ic svg { width: 28px; height: 28px; }
.feat-card h3 { font-size: 1.22rem; }
.feat-card p { margin-top: 9px; color: var(--ink-muted); font-size: 0.98rem; line-height: 1.5; font-weight: 600; }
.feat-extra { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 40px; justify-content: center; }
.feat-tag { display: inline-flex; align-items: center; gap: 9px; background: #fff; border-radius: var(--pill); padding: 11px 19px; font-size: 0.95rem; font-weight: 800; color: var(--cocoa); box-shadow: var(--shadow-soft); }
.feat-tag .tdot { width: 9px; height: 9px; border-radius: 50%; background: var(--honey); }
.feat-tag.planned { color: var(--ink-muted); }
.feat-tag.planned .tdot { background: var(--lavender); }

/* ---------- AI band (lavender) ---------- */
.ai { background: var(--grad-lavender); color: #fff; position: relative; overflow: hidden; }
.ai::after { content: ""; position: absolute; inset: 0; background: radial-gradient(54% 50% at 82% 8%, rgba(255,255,255,0.18), transparent 60%); pointer-events: none; }
.ai .eyebrow { color: #fff; background: rgba(255,255,255,0.2); }
.ai .eyebrow .e-dot { background: #fff; }
.ai .section-head h2, .ai .section-head p { color: #fff; }
.ai .section-head p { opacity: .95; }
.ai-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; position: relative; z-index: 1; }
.ai-card {
  background: rgba(255,255,255,0.14); border: 2px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-lg); padding: 30px; backdrop-filter: blur(6px);
  transition: transform .18s ease, background-color .2s ease;
}
.ai-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.2); }
.ai-card .aic { width: 52px; height: 52px; border-radius: 15px; background: #fff; display: grid; place-items: center; margin-bottom: 17px; box-shadow: 0 5px 0 rgba(0,0,0,0.08); }
.ai-card .aic svg { width: 26px; height: 26px; color: var(--lavender-dk); }
.ai-card h3 { color: #fff; font-size: 1.34rem; }
.ai-card p { margin-top: 10px; color: #f1ecf8; font-size: 1.02rem; font-weight: 600; }
.ai-privacy { margin: 34px auto 0; max-width: max-content; display: flex; align-items: center; gap: 13px; background: rgba(255,255,255,0.16); border: 2px solid rgba(255,255,255,0.3); border-radius: var(--pill); padding: 14px 24px; font-weight: 800; color: #fff; position: relative; z-index: 1; font-family: var(--font-display); }
.ai-privacy svg { width: 22px; height: 22px; flex: none; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card {
  background: #fff; border-radius: var(--radius-lg); padding: 36px 30px;
  box-shadow: var(--shadow-soft); display: flex; flex-direction: column;
  border: 3px solid transparent;
}
.price-card.feature { border-color: var(--honey); box-shadow: var(--shadow-card); position: relative; }
.price-card.feature::before { content: "Most loved"; position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--grad-honey); color: var(--cocoa); font-family: var(--font-display); font-weight: 900; font-size: 0.82rem; padding: 6px 18px; border-radius: var(--pill); box-shadow: 0 4px 0 var(--honey-dkr); }
.price-card .ptier { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--cocoa); }
.price-card .pamt { margin-top: 14px; font-family: var(--font-display); font-weight: 900; font-size: 2.9rem; color: var(--ink); letter-spacing: -0.02em; }
.price-card .pamt span { font-size: 1.05rem; font-weight: 700; color: var(--ink-muted); }
.price-card .psave { display: inline-block; margin-top: 9px; background: var(--mint-lt); color: #2f8f5d; font-weight: 800; font-size: 0.85rem; padding: 5px 13px; border-radius: var(--pill); font-family: var(--font-display); }
.price-card .pdesc { margin-top: 8px; color: var(--ink-muted); font-size: 0.98rem; font-weight: 600; min-height: 24px; }
.price-list { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.price-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; font-weight: 600; }
.price-list li .pchk { width: 24px; height: 24px; border-radius: 8px; background: var(--honey-lt); color: var(--honey-dk); display: grid; place-items: center; flex: none; margin-top: 1px; }
.price-list li .pchk svg { width: 15px; height: 15px; }
.price-card .btn { margin-top: 28px; width: 100%; }
.never-paywalled { margin-top: 32px; text-align: center; background: var(--mint-lt); border-radius: var(--radius-lg); padding: 28px; }
.never-paywalled strong { font-family: var(--font-display); color: #2f8f5d; font-size: 1.2rem; }
.never-paywalled .np-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 16px; }
.never-paywalled .np-row span { background: #fff; border-radius: var(--pill); padding: 8px 16px; font-size: 0.92rem; font-weight: 800; color: #2f8f5d; }

/* ---------- Privacy promise ---------- */
.privacy { background: var(--cocoa); color: #fdf3e3; border-radius: var(--radius-xl); padding: 60px clamp(28px, 6vw, 76px); position: relative; overflow: hidden; }
.privacy::after { content: ""; position: absolute; right: -50px; top: -50px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(240,176,64,0.34), transparent 70%); }
.privacy-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 44px; align-items: center; position: relative; z-index: 1; }
.privacy .eyebrow { background: rgba(240,176,64,0.22); color: var(--honey); }
.privacy .eyebrow .e-dot { background: var(--honey); }
.privacy h2 { color: #fff; font-size: clamp(2rem, 3.8vw, 2.8rem); }
.privacy > .privacy-grid > div > p { margin-top: 18px; color: #f0dcc2; font-size: 1.12rem; font-weight: 600; }
.privacy-points { display: grid; gap: 14px; }
.privacy-points li { display: flex; gap: 14px; align-items: flex-start; background: rgba(255,255,255,0.07); border: 2px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 18px 20px; }
.privacy-points li svg { width: 24px; height: 24px; color: var(--honey); flex: none; }
.privacy-points b { font-family: var(--font-display); color: #fff; display: block; font-size: 1.05rem; }
.privacy-points small { color: #e9d3b6; font-size: 0.92rem; font-weight: 600; }

/* ---------- Testimonials ---------- */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tst-card { background: #fff; border-radius: var(--radius-lg); padding: 32px 30px; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; }
.tst-stars { color: var(--honey); letter-spacing: 3px; font-size: 1.1rem; }
.tst-card p { margin-top: 16px; font-size: 1.08rem; color: var(--ink); line-height: 1.55; flex: 1; font-weight: 600; }
.tst-who { display: flex; align-items: center; gap: 13px; margin-top: 24px; }
.tst-av { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 900; color: #fff; flex: none; }
.tst-who b { font-family: var(--font-display); font-size: 1rem; }
.tst-who small { display: block; color: var(--ink-muted); font-size: 0.86rem; font-weight: 600; }
.tst-placeholder { text-align: center; margin-top: 20px; font-size: 0.88rem; color: var(--ink-faint); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-soft); overflow: hidden; }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 24px; font-family: var(--font-display); font-weight: 800; font-size: 1.12rem; color: var(--ink); }
.faq-q .fic { width: 30px; height: 30px; border-radius: 10px; background: var(--honey-lt); color: var(--honey-dk); display: grid; place-items: center; flex: none; transition: transform .3s ease, background-color .2s ease; font-size: 20px; line-height: 1; }
.faq-item[open] .fic { transform: rotate(45deg); background: var(--honey); color: var(--cocoa); }
.faq-a { padding: 0 24px 24px; color: var(--ink-muted); font-size: 1.04rem; font-weight: 600; max-width: 700px; }
details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; background: var(--grad-honey); border-radius: var(--radius-xl); padding: 70px 28px; position: relative; overflow: hidden; }
.cta-band .hex-bg { position: absolute; inset: 0; opacity: .25; }
.cta-band .hex-bg span { position: absolute; background: rgba(255,255,255,.5); clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%); }
.cta-band h2 { color: var(--cocoa); font-size: clamp(2.2rem, 4.4vw, 3.2rem); position: relative; z-index: 1; }
.cta-band p { color: #6b4a1e; margin-top: 16px; font-size: 1.22rem; font-weight: 700; position: relative; z-index: 1; }
.cta-band .row { display: flex; justify-content: center; gap: 16px; margin-top: 32px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ---------- Flying bee (single, contained to blank space) ---------- */
.bee {
  position: absolute; width: 44px; height: 44px;
  background: url('assets/bee.png') center/contain no-repeat;
  filter: drop-shadow(0 6px 8px rgba(61,46,32,0.16));
  pointer-events: none; will-change: transform;
}
/* Loops gently in the empty corridor between the hero copy and the phone. */
.hero-bee { top: 38%; left: 46%; z-index: 2; width: 92px; height: 92px; }
@keyframes bee-orbit {
  0%   { transform: translate(0,0) rotate(-6deg) scaleX(1); }
  20%  { transform: translate(46px,28px) rotate(7deg) scaleX(.95); }
  40%  { transform: translate(82px,-6px) rotate(-4deg) scaleX(1); }
  60%  { transform: translate(40px,-32px) rotate(6deg) scaleX(.96); }
  80%  { transform: translate(-8px,8px) rotate(-5deg) scaleX(1); }
  100% { transform: translate(0,0) rotate(-6deg) scaleX(1); }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-bee { animation: bee-orbit 11s ease-in-out infinite; }
}


/* ---------- Footer ---------- */
.footer { position: relative; background: var(--cocoa); color: #f0dcc1; padding: 84px 0 36px; margin-top: 48px; border-radius: 44px 44px 0 0; overflow: hidden; }
.footer-glow { position: absolute; top: -120px; left: 50%; transform: translateX(-50%); width: 680px; height: 320px; background: radial-gradient(ellipse at center, rgba(240,176,64,0.30), transparent 68%); pointer-events: none; }
.footer-comb { position: absolute; top: 22px; right: 38px; display: grid; grid-template-columns: repeat(6, 18px); gap: 6px 4px; opacity: .14; pointer-events: none; }
.footer-comb span { width: 18px; height: 20px; background: var(--honey); clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%); }
.footer-comb span:nth-child(n+7) { transform: translateX(11px); }
.footer-bee { position: absolute; top: 50px; left: 7%; width: 40px; height: 40px; opacity: .9; }
@keyframes footer-bee-bob {
  0%,100% { transform: translateY(0) rotate(-5deg); }
  50%     { transform: translateY(-10px) rotate(5deg); }
}
@media (prefers-reduced-motion: no-preference) {
  .footer-bee { animation: footer-bee-bob 3.4s ease-in-out infinite; }
}
.footer-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr 1.6fr; gap: 48px; }
.footer-brand { color: #fff; font-size: 1.5rem; }
.footer-brand .bee-logo { width: 52px; height: 52px; }
.footer-tag { margin-top: 18px; color: #e3c79f; font-size: 1rem; max-width: 320px; font-weight: 600; line-height: 1.55; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.soc { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: rgba(255,255,255,0.09); color: #f3e2cb; transition: transform .15s ease, background-color .2s ease, color .2s ease; }
.soc svg { width: 22px; height: 22px; }
.soc:hover { background: var(--honey); color: var(--cocoa); transform: translateY(-3px); }
.footer-brandcol .appstore { margin-top: 24px; }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.footer-col h4 { font-family: var(--font-display); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: #caa980; margin-bottom: 14px; }
.footer-col a { display: block; color: #e7d2b4; padding: 7px 0; font-size: 0.98rem; font-weight: 700; white-space: nowrap; transition: color .16s ease, transform .16s ease; width: max-content; }
.footer-col a:hover { color: #fff; transform: translateX(3px); }
.lang-select { width: 100%; max-width: 180px; background: rgba(255,255,255,0.09); border: 2px solid rgba(255,255,255,0.16); color: #f3e2cb; border-radius: 14px; padding: 12px 14px; font-family: var(--font-display); font-weight: 700; font-size: 0.94rem; cursor: pointer; }
.footer-bottom { position: relative; z-index: 1; margin-top: 52px; padding-top: 26px; border-top: 2px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: #c9a87f; font-size: 0.9rem; font-weight: 600; }
.footer-bottom .fb-links { display: flex; gap: 22px; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Responsive ---------- */

/* Tablet: 768–980px (iPad etc.) */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  /* hero: side-by-side copy + phone on tablet feels tight, stack & show phone compactly */
  .hero-copy { max-width: 100%; text-align: center; }
  .hero-copy .lede { margin: 16px auto 0; }
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .badge-pill { margin-left: auto; margin-right: auto; }
  /* phone in hero */
  .hero-visual { min-height: 420px; overflow: visible; }
  .phone { width: 260px; }
  /* chips: show on tablet but constrain them tighter */
  .float-chip.c1 { left: 2%; top: 8%; }
  .float-chip.c2 { right: 2%; bottom: 18%; }
  .float-chip.c3 { left: 4%; bottom: 2%; }
  /* bee: keep visible on tablet, reposition for centred phone */
  .hero-bee { width: 72px; height: 72px; right: 4%; left: auto; top: 18%; }
  /* grids */
  .stats { grid-template-columns: repeat(2, 1fr); }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .ai-grid { grid-template-columns: repeat(2, 1fr); }
  .row2 { grid-template-columns: 1fr; gap: 28px; }
  .row2 + .row2 { margin-top: 64px; }
  .row2.flip .scene { order: 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* Mobile: ≤ 760px */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 760px) {
  .wrap { padding: 0 20px; }
  .section { padding: 56px 0; }

  /* hero layout */
  .hero { padding: 36px 0 32px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
  .hero .lede { font-size: 1.05rem; }
  .hero-actions { flex-direction: column; align-items: center; gap: 10px; }

  /* phone frame */
  .hero-visual { min-height: 380px; overflow: hidden; }
  .phone { width: 230px; }

  /* float chips: hide on mobile to prevent overflow */
  .float-chip { display: none; }

  /* hero bee: show on mobile, right side beside phone */
  .hero-bee { display: block !important; width: 60px; height: 60px; top: auto; bottom: 28%; right: 3%; left: auto; }

  /* section heads */
  .section-head { margin-bottom: 32px; }
  .section-head h2 { font-size: clamp(1.7rem, 6vw, 2.2rem); }

  /* stats */
  .stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat { padding: 20px 14px; }
  .stat .num { font-size: 1.8rem; }
  .stat .lbl { font-size: 0.88rem; }

  /* feature grid: 2 cols on mobile (not 1) */
  .feat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .feat-card { padding: 20px 16px; }
  .feat-ic { width: 46px; height: 46px; margin-bottom: 12px; }
  .feat-card h3 { font-size: 1rem; }
  .feat-card p { font-size: 0.88rem; }

  /* AI */
  .ai-grid { grid-template-columns: 1fr; }
  .ai-card { padding: 22px 20px; }

  /* pricing */
  .price-grid { grid-template-columns: 1fr; }
  .price-card.feature { order: -1; }
  .price-card { padding: 26px 20px; }

  /* privacy */
  .privacy-grid { grid-template-columns: 1fr; gap: 24px; }

  /* scenes (how it works rows) */
  .scene { min-height: 280px; padding: 16px; }
  .scene .panel-phone { width: 170px; }

  /* footer */
  .footer { border-radius: 28px 28px 0 0; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .footer-col h4 { margin-bottom: 10px; }
  .footer-col a { padding: 5px 0; font-size: 0.92rem; }

  /* CTA band */
  .cta-band { padding: 48px 20px; border-radius: 28px; }
  .cta-band h2 { font-size: 1.9rem; }
}

/* Small mobile: ≤ 480px */
@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .phone { width: 200px; }
  .hero-visual { min-height: 320px; }
  .hero-bee { width: 50px; height: 50px; bottom: 24%; right: 2%; left: auto; top: auto; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .feat-card { padding: 16px 14px; }
  .never-paywalled .np-row span { font-size: 0.82rem; padding: 6px 10px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 20px 12px; }
  .footer-col a { font-size: 0.88rem; }
  .cta-band { padding: 40px 16px; border-radius: 24px; }
  .ai-grid { grid-template-columns: 1fr; }
}

/* ---------- Fan / stacked scene (Widgets row) ---------- */
.fan-scene { overflow: hidden; }
.fan-scene .panel-phone { width: 198px; }
.fan-widget {
  position: absolute; z-index: 0;
  width: 152px; height: 152px;
  border-radius: 22px; overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 40px rgba(61,46,32,0.18);
  top: 50%; left: 50%;
  margin-top: -76px; margin-left: -76px;
  transform: rotate(12deg) translate(112px, -4px);
}
.fan-widget image-slot { display: block; width: 100%; height: 100%; }
.fan-phone { transform: rotate(-5deg) translateX(-26px); position: relative; z-index: 1; }
@media (max-width: 980px) {
  .fan-scene .panel-phone { width: 188px; }
  .fan-widget { width: 140px; height: 140px; margin-top: -70px; margin-left: -70px; transform: rotate(12deg) translate(100px, -4px); }
  .fan-phone { transform: rotate(-5deg) translateX(-20px); }
}

/* ---- Hamburger + mobile drawer ---- */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 44px; height: 44px; background: none; border: none;
  cursor: pointer; padding: 8px; border-radius: 12px;
  transition: background-color .16s ease; flex-shrink: 0;
}
.nav-toggle:hover { background: var(--honey-lt); }
.nav-toggle span {
  display: block; width: 22px; height: 2.5px;
  background: var(--ink); border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-drawer {
  display: none; flex-direction: column;
  background: color-mix(in srgb, var(--page-bg) 97%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  padding: 16px 20px 24px; border-top: 1px solid var(--divider); gap: 4px;
}
.nav-drawer a {
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  color: var(--ink); padding: 12px 14px; border-radius: 14px;
  transition: background-color .16s ease, color .16s ease;
}
.nav-drawer a:hover { background: var(--honey-lt); color: var(--cocoa); }
.nav-drawer.open { display: flex; }



/* ---- Nav language selector ---- */
.nav-lang {
  font-family: var(--font-display); font-weight: 800; font-size: 0.9rem;
  background: var(--honey-lt); color: var(--cocoa);
  border: 2px solid var(--honey); border-radius: 12px;
  padding: 8px 12px; cursor: pointer; height: 42px;
  transition: background-color .16s ease;
}
.nav-lang:hover { background: var(--honey); }
@media (max-width: 760px) {
  /* Keep the language switcher visible on the top bar (next to the hamburger) */
  .nav-cta .nav-lang { display: inline-block; height: 40px; padding: 6px 9px; font-size: 0.85rem; border-radius: 11px; }
  .nav-cta { gap: 10px; }
}

/* Drawer lang row */
.drawer-lang {
  display: flex; flex-direction: column; gap: 8px;
  padding: 10px 14px; background: var(--honey-xlt);
  border-radius: 14px; margin: 4px 0;
}
.drawer-lang .nav-lang {
  display: block; width: 100%; font-size: 1rem;
  background: var(--surface); height: 46px;
}
