/* ============================================================
   ZoBud — Components & Section layouts
   ============================================================ */

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 1.32rem; letter-spacing: -.03em; }
.brand .mark {
  width: 40px; height: 40px; border-radius: 12px; overflow: hidden;
  background: #fbf1c7;
  display: grid; place-items: center; box-shadow: 0 4px 12px rgba(60,82,48,.22);
}
.brand .mark img { width: 100%; height: 100%; object-fit: cover; }
.brand .mark svg { width: 24px; height: 24px; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { font-weight: 600; font-size: .96rem; color: var(--text-soft); transition: color .2s; position: relative; }
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content:""; position:absolute; left:0; bottom:-6px; height:2px; width:0; background:var(--primary); border-radius:2px; transition: width .25s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 14px; }
.theme-toggle {
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--border);
  background: var(--bg-elev); cursor: pointer; display: grid; place-items: center;
  transition: transform .4s var(--ease-bounce), border-color .2s; color: var(--text);
}
.theme-toggle:hover { transform: rotate(18deg) scale(1.05); border-color: var(--primary); }
.theme-toggle svg { width: 20px; height: 20px; }
.menu-btn { display: none; background: none; border: none; cursor: pointer; color: var(--text); padding: 8px; }
.menu-btn svg { width: 26px; height: 26px; }
.nav-download { display: inline-flex; align-items: center; gap: 8px; }
.nav-download-icon { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero-bg .glow {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5;
}
.hero-bg .g1 { width: 520px; height: 520px; background: var(--sage-light); top: -160px; left: -120px; }
.hero-bg .g2 { width: 440px; height: 440px; background: #ffd9a8; bottom: -120px; right: -80px; opacity: .45; }
.hero-bg .g3 { width: 380px; height: 380px; background: var(--teal); top: 40%; left: 45%; opacity: .25; }
[data-theme="dark"] .hero-bg .glow { opacity: .22; }

.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; gap: 50px; align-items: center; }
.hero h1 { margin: 20px 0 18px; }
.hero h1 .accent { color: var(--primary); position: relative; white-space: nowrap; }
.hero .lead { max-width: 540px; }
.hero .hero-summary {
  color: var(--text);
  font-weight: 700;
}
.hero .hero-keyword {
  color: var(--primary-press);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 22px; }
.risk-note { font-size: .9rem; color: var(--text-soft); font-weight: 600; margin: 0 0 22px; }
.hero-stores { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.social-proof { display: flex; align-items: center; gap: 14px; margin-top: 30px; }
.avatars { display: flex; }
.avatars span {
  width: 38px; height: 38px; border-radius: 50%; border: 2.5px solid var(--bg);
  margin-left: -12px; display: grid; place-items: center; font-size: 18px;
  box-shadow: var(--shadow-sm); overflow: hidden; background: var(--bg-elev);
}
.avatars span:first-child { margin-left: 0; }
.avatars span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.social-proof .sp-text { font-size: .9rem; color: var(--text-soft); }
.social-proof .stars { color: var(--amber-deep); font-weight: 800; }

/* Hero floating bubble field around the phone */
.hero-stage { position: relative; display: grid; place-items: center; min-height: 600px; }
.hero-stage > .bubble { z-index: 1; }

/* ---------- Phone mockup ---------- */
.phone {
  position: relative; z-index: 3;
  width: 310px; height: 638px; border-radius: 46px;
  background: linear-gradient(160deg, #1a1a1f, #2a2a30);
  padding: 13px; box-shadow: var(--shadow-phone);
  border: 1px solid rgba(255,255,255,.08);
}
.phone-screen {
  width: 100%; height: 100%; border-radius: 34px; overflow: hidden; position: relative;
  background: linear-gradient(180deg, #eafaf0, #f4fbf0);
}
[data-theme="dark"] .phone-screen { background: linear-gradient(180deg, #0d2017, #0a1a12); }
.phone-screen img.app-shot { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.phone .notch {
  position: absolute; top: 13px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 28px; background: #15151a; border-radius: 0 0 18px 18px; z-index: 6;
}
.phone-float { position: absolute; }

/* App-style task cards (mirror the real app) */
.task-card {
  position: relative; display: flex; align-items: center; gap: 14px;
  padding: 15px 18px 15px 24px; border-radius: 18px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.03); transition: transform .3s var(--ease);
}
.task-card:hover { transform: translateX(6px); }
.task-card::before { content: ""; position: absolute; left: 8px; top: 12px; bottom: 12px; width: 6px; border-radius: 6px; background: var(--c); }
.task-card .tc-check { width: 30px; height: 30px; border-radius: 50%; border: 2.5px solid var(--c); flex: none; display: grid; place-items: center; color: var(--c); }
.task-card .tc-check svg { width: 16px; height: 16px; }
.task-card .tc-body { flex: 1; min-width: 0; }
.task-card .tc-title { font-weight: 800; color: var(--text); font-size: 1.02rem; }
.task-card .tc-tags { display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: .82rem; font-weight: 700; margin-top: 4px; }
.task-card .tc-tags span { display: inline-flex; align-items: center; gap: 5px; }
.task-card .tc-box { width: 26px; height: 26px; border-radius: 8px; border: 2px solid var(--c); flex: none; opacity: .6; }
.tc-low  { --c: var(--u-low-2);  background: #e9f1dc; }
.tc-mid  { --c: var(--amber);     background: #fcf2d2; }
.tc-high { --c: var(--u-high-2);  background: #fdeacf; }
.tc-crit { --c: var(--u-crit-2);  background: #fbe3df; }
.tc-deep { color: var(--lavender); }
[data-theme="dark"] .tc-low  { background: rgba(135,169,107,.16); }
[data-theme="dark"] .tc-mid  { background: rgba(255,191,0,.12); }
[data-theme="dark"] .tc-high { background: rgba(240,138,36,.14); }
[data-theme="dark"] .tc-crit { background: rgba(226,109,92,.16); }

/* Mock app screen — Home dashboard */
.scr { position: absolute; inset: 0; display: flex; flex-direction: column; padding: 40px 18px 16px; }
.scr-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.scr-hi { font-size: .72rem; color: var(--text-mute); font-weight: 600; }
.scr-name { font-size: 1.15rem; font-weight: 800; color: var(--ink-900); }
[data-theme="dark"] .scr-name { color: #eafaf0; }
.scr-pill { font-size: .66rem; font-weight: 700; padding: 6px 11px; border-radius: 999px; background: var(--forest-100); color: var(--sage-deep); display:flex; align-items:center; gap:5px; }
.scr-energy { display: flex; gap: 6px; margin: 12px 0 6px; }
.scr-energy .seg { flex: 1; height: 7px; border-radius: 4px; background: var(--forest-100); }
.scr-energy .seg.on { background: linear-gradient(90deg, var(--sage-light), var(--sage)); }
.scr-label { font-size: .66rem; font-weight: 700; color: var(--text-mute); text-transform: uppercase; letter-spacing: .06em; margin: 14px 2px 4px; }
.scr-bubblefield { position: relative; flex: 1; }
.scr-nav { display: flex; justify-content: space-around; padding-top: 8px; border-top: 1px solid var(--forest-100); }
[data-theme="dark"] .scr-nav { border-color: var(--border); }
.scr-nav span { width: 22px; height: 22px; border-radius: 7px; background: var(--forest-100); }
.scr-nav span.act { background: var(--sage); }

/* Bird mark used as logo + decoration */
.birdy { display: inline-grid; place-items: center; }

/* ---------- Bubbles explainer section ---------- */
.bubbles-section { background: var(--bg-soft); }
.bubble-demo {
  display: grid;
  grid-template-columns: minmax(310px, 380px) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.bubble-canvas {
  position: relative;
  justify-self: center;
  width: min(310px, 100%);
  height: auto;
  aspect-ratio: 310 / 638;
  border-radius: 46px;
  background:
    radial-gradient(circle at 30% 20%, rgba(135,169,107,.22), transparent 50%),
    radial-gradient(circle at 75% 80%, rgba(255,191,0,.16), transparent 50%),
    var(--bg-elev);
  border: 13px solid #1a1a1f;
  box-shadow: var(--shadow-phone);
  overflow: hidden;
}
.hero-bubble-canvas { z-index: 3; }
.bubble-section-phone { justify-self: center; }
.bubble-canvas::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: 120px;
  height: 28px;
  transform: translateX(-50%);
  border-radius: 0 0 18px 18px;
  background: #15151a;
}
.bubble-canvas .bubble { font-size: .95rem; }
.bubble-canvas .bubble small { font-size: .68rem; font-weight: 600; opacity: .8; }
.legend { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.legend-row { display: flex; align-items: center; gap: 14px; }
.legend-dots { display: flex; align-items: center; gap: 8px; flex: none; }
.legend-dots i { display: block; border-radius: 50%; }
.legend-row p { font-size: .98rem; color: var(--text-soft); margin: 0; }
.legend-row strong { color: var(--text); }
.example-list { display: flex; flex-direction: column; gap: 14px; margin-top: 30px; }
.example {
  display: flex; align-items: center; gap: 16px; padding: 14px 18px;
  background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--r-md);
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease);
}
.example:hover { transform: translateX(6px); }
.example .eg-dot { border-radius: 50%; flex: none; box-shadow: inset 0 -3px 8px rgba(0,0,0,.12), inset 0 4px 8px rgba(255,255,255,.5); }
.example .eg-title { font-weight: 700; }
.example .eg-meta { font-size: .82rem; color: var(--text-mute); }

/* ---------- Egg / bird loop ---------- */
.bird-loop { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; position: relative; }
.loop-step { text-align: center; position: relative; z-index: 2; }
.loop-art {
  width: 180px; height: 180px; margin: 0 auto 22px; border-radius: 50%;
  display: grid; place-items: center; position: relative;
  background: radial-gradient(circle at 40% 30%, var(--forest-100), var(--bg-elev));
  border: 1px solid var(--border); box-shadow: var(--shadow-md);
}
[data-theme="dark"] .loop-art { background: radial-gradient(circle at 40% 30%, rgba(43,191,99,.12), var(--bg-elev)); }
.loop-step h3 { font-size: 1.3rem; margin-bottom: 8px; }
.loop-step p { color: var(--text-soft); max-width: 280px; margin: 0 auto; font-size: .96rem; }
.loop-arrow { position: absolute; top: 90px; z-index: 1; color: var(--sage-light); }
.egg {
  width: 92px; height: 116px; border-radius: 50% 50% 48% 48% / 60% 60% 40% 40%;
  background: radial-gradient(circle at 38% 30%, #fff7e6, #fde9c0 60%, #f6cf86);
  position: relative; box-shadow: inset 0 -10px 20px rgba(180,130,40,.25), inset 0 10px 22px rgba(255,255,255,.6), var(--shadow-sm);
}
.egg.spots::before, .egg.spots::after {
  content:""; position:absolute; border-radius:50%; background: rgba(180,120,40,.22);
}
.egg.spots::before { width:16px; height:16px; top:34px; left:24px; }
.egg.spots::after { width:11px; height:11px; top:60px; left:52px; }
@keyframes warm-glow { 0%,100%{ box-shadow: inset 0 -10px 20px rgba(180,130,40,.25), inset 0 10px 22px rgba(255,255,255,.6), 0 0 0 rgba(251,191,36,0);} 50%{ box-shadow: inset 0 -10px 20px rgba(180,130,40,.25), inset 0 10px 22px rgba(255,255,255,.6), 0 0 36px rgba(251,191,36,.6);} }
@keyframes egg-shake { 0%,92%,100%{transform:rotate(0)} 94%{transform:rotate(-7deg)} 96%{transform:rotate(7deg)} 98%{transform:rotate(-4deg)} }
.egg.warming { animation: warm-glow 2.4s var(--ease) infinite; }
.egg.hatching { animation: egg-shake 2.6s ease-in-out infinite; }

/* Real egg image (common-egg.webp) in the bird flow */
.egg-img { height: 96px; width: auto; filter: drop-shadow(0 6px 10px rgba(120,90,30,.3)); }
@keyframes egg-img-warm {
  0%,100% { filter: drop-shadow(0 6px 10px rgba(120,90,30,.3)); }
  50% { filter: drop-shadow(0 0 18px rgba(255,191,0,.85)) drop-shadow(0 6px 10px rgba(120,90,30,.3)); }
}
.egg-img.warming { animation: egg-img-warm 2.4s var(--ease) infinite; }
.egg-img.shaking { animation: egg-shake 2.4s ease-in-out infinite; transform-origin: 50% 80%; }
.hatch-bird { width: 96px; height: auto; animation: hatch-pop 2.8s var(--ease-bounce) infinite; transform-origin: 50% 80%; }
@keyframes hatch-pop { 0%,70%,100% { transform: translateY(0) scale(1); } 80% { transform: translateY(-6px) scale(1.06); } 90% { transform: translateY(0) scale(1); } }
.flow-art .sparkle { position: absolute; font-size: 18px; animation: spark 2.8s ease-in-out infinite; }
@keyframes spark { 0%,100% { opacity: .3; transform: scale(.8) rotate(0); } 50% { opacity: 1; transform: scale(1.15) rotate(15deg); } }

/* egg tiers chips */
.tiers { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 50px; }
.tier { display: flex; align-items: center; gap: 9px; padding: 10px 18px; border-radius: var(--r-pill); background: var(--bg-elev); border: 1px solid var(--border); box-shadow: var(--shadow-sm); font-weight: 700; font-size: .92rem; }
.tier i { width: 12px; height: 12px; border-radius: 50%; }
.tier small { color: var(--text-mute); font-weight: 600; }

/* ---------- Features grid ---------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.feature .ficon {
  width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center; margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.feature h3 { font-size: 1.28rem; margin-bottom: 10px; }
.feature p { color: var(--text-soft); font-size: .98rem; }

/* ---------- App in action (horizontal scroll) ---------- */
.scroller {
  display: flex; gap: 26px; overflow-x: auto; padding: 12px 24px 40px;
  scroll-snap-type: x mandatory; scroll-padding: 24px;
}
.scroller::-webkit-scrollbar { height: 8px; }
.scroller::-webkit-scrollbar-thumb { background: var(--sage-light); border-radius: 99px; }
.scroller::-webkit-scrollbar-track { background: transparent; }
.shot { flex: none; width: 268px; scroll-snap-align: center; }
.shot .shot-frame {
  width: 268px; height: 552px; border-radius: 38px; background: linear-gradient(160deg,#1a1a1f,#2a2a30);
  padding: 11px; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.08);
  position: relative; overflow: hidden;
}
.shot .shot-screen { width: 100%; height: 100%; border-radius: 28px; overflow: hidden; position: relative; background: linear-gradient(180deg,#eafaf0,#f4fbf0); }
.shot .shot-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
[data-theme="dark"] .shot .shot-screen { background: linear-gradient(180deg,#0d2017,#0a1a12); }
.shot .shot-cap { margin-top: 18px; }
.shot .shot-cap strong { display: block; font-size: 1.05rem; font-weight: 800; }
.shot .shot-cap span { font-size: .9rem; color: var(--text-soft); }
.scroll-hint { display: flex; align-items: center; gap: 10px; justify-content: center; color: var(--text-mute); font-size: .9rem; margin-top: 6px; }

/* ---------- Science ---------- */
.science-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.sci-card { text-align: left; }
.sci-stat { font-size: 2.6rem; font-weight: 800; color: var(--primary); letter-spacing: -.03em; }
.sci-card h4 { font-size: 1.12rem; margin: 6px 0 8px; }
.sci-card p { color: var(--text-soft); font-size: .95rem; }

/* ---------- Social proof ---------- */
.social-section { background: var(--bg-soft); }
.stat-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 60px; }
.stat-box { text-align: center; }
.stat-box .n { font-size: clamp(2rem,4vw,3rem); font-weight: 800; color: var(--primary); letter-spacing: -.03em; }
.stat-box .l { color: var(--text-soft); font-weight: 600; font-size: .95rem; }
.testimonials { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.tcard p.quote { font-size: 1.02rem; line-height: 1.6; margin-bottom: 20px; }
.tcard .who { display: flex; align-items: center; gap: 12px; }
.tcard .who .ava { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-size: 22px; flex: none; overflow: hidden; background: var(--bg-soft); }
.tcard .who .ava img { width: 100%; height: 100%; object-fit: cover; }
.tcard .who b { display: block; font-size: .95rem; }
.tcard .who span { font-size: .82rem; color: var(--text-mute); }
.tcard .trate { color: var(--amber-deep); margin-bottom: 14px; font-size: .95rem; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; align-items: stretch; }
.price-card { display: flex; flex-direction: column; position: relative; }
.price-card.featured { border: 2px solid var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-8px); }
.price-tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: .74rem; font-weight: 800; padding: 6px 16px; border-radius: 999px; letter-spacing: .04em; text-transform: uppercase; }
.price-card h3 { font-size: 1.3rem; }
.price-card .amt { font-size: 2.8rem; font-weight: 800; letter-spacing: -.03em; margin: 12px 0 2px; }
.price-card .amt small { font-size: 1rem; font-weight: 600; color: var(--text-mute); }
.price-card .per { color: var(--text-soft); font-size: .9rem; margin-bottom: 22px; }
.price-feats { list-style: none; display: flex; flex-direction: column; gap: 13px; margin: 0 0 28px; flex: 1; }
.price-feats li { display: flex; align-items: flex-start; gap: 10px; font-size: .95rem; color: var(--text-soft); }
.price-feats li svg { width: 19px; height: 19px; color: var(--primary); flex: none; margin-top: 2px; }

/* Free vs Pro plans */
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; max-width: 880px; margin-left: auto; margin-right: auto; text-align: left; align-items: start; }
.plan { display: flex; flex-direction: column; position: relative; }
.plan.pro { border: 2px solid var(--amber); box-shadow: var(--shadow-lg); }
.plan-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.plan-ico { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; flex: none; font-size: 24px; }
.plan-name { font-size: 1.4rem; font-weight: 800; letter-spacing: -.02em; }
.plan-sub { font-size: .9rem; color: var(--text-soft); }
.pro-note { margin-top: 14px; font-size: .82rem; color: var(--text-mute); text-align: center; }

/* ---------- Final CTA ---------- */
.final-cta { position: relative; overflow: hidden; }
.cta-card {
  position: relative; border-radius: var(--r-xl); padding: clamp(38px,5vw,68px) 34px; text-align: center;
  background: linear-gradient(150deg, var(--sage-deep), var(--sage) 60%, #1aa05a);
  color: #fff; box-shadow: var(--shadow-lg); overflow: hidden;
}
.cta-card h2 { color: #fff; font-size: clamp(2rem,4.5vw,3.4rem); position: relative; z-index: 2; }
.cta-card p { color: rgba(255,255,255,.9); position: relative; z-index: 2; max-width: 580px; margin: 18px auto 32px; font-size: 1.15rem; }
.cta-card .hero-stores { justify-content: center; position: relative; z-index: 2; }
.cta-card .bubble { opacity: .9; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-soft); border-top: 1px solid var(--border); padding: 52px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer .brand { margin-bottom: 16px; }
.footer .fdesc { color: var(--text-soft); font-size: .95rem; max-width: 300px; margin-bottom: 20px; }
.fcol h5 { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-mute); margin-bottom: 16px; }
.fcol a { display: block; color: var(--text-soft); font-size: .95rem; margin-bottom: 11px; transition: color .2s, transform .2s; }
.fcol a:hover { color: var(--primary); transform: translateX(3px); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--border); color: var(--text-mute); font-size: .88rem; flex-wrap: wrap; gap: 14px; }

/* ---------- Generic split (copy + phone) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split .split-media { display: flex; justify-content: center; }
.phone.sm { width: 270px; height: 556px; border-radius: 40px; padding: 11px; }
.phone.sm .phone-screen { border-radius: 30px; }
.phone.sm .notch { width: 104px; height: 24px; top: 11px; }
.phone.tilt { transform: rotate(-3deg); }
.phone.tilt2 { transform: rotate(3deg); }

/* live chips (body doubling) */
.live-chips { display: flex; flex-wrap: wrap; gap: 14px; margin: 26px 0 0; }
.live-chip { display: flex; align-items: center; gap: 12px; background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--r-md); padding: 14px 20px; box-shadow: var(--shadow-sm); }
.live-chip .lc-ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; flex: none; }
.live-chip .lc-n { font-size: 1.3rem; font-weight: 800; letter-spacing: -.02em; line-height: 1; }
.live-chip .lc-l { font-size: .82rem; color: var(--text-soft); font-weight: 600; }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: #3fb950; box-shadow: 0 0 0 0 rgba(63,185,80,.6); animation: live-pulse 1.8s ease-out infinite; }
@keyframes live-pulse { 0%{box-shadow:0 0 0 0 rgba(63,185,80,.55)} 70%{box-shadow:0 0 0 9px rgba(63,185,80,0)} 100%{box-shadow:0 0 0 0 rgba(63,185,80,0)} }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 26px 0 0; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 1rem; color: var(--text-soft); }
.check-list li svg { width: 22px; height: 22px; color: var(--primary); flex: none; margin-top: 1px; }

/* ---------- Bird flow (with screenshots) ---------- */
.flow { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; margin-top: 56px; }
.flow-step { text-align: center; flex: 0 0 auto; width: 168px; }
.flow-art { width: 130px; height: 130px; margin: 0 auto 16px; border-radius: 30px; display: grid; place-items: center; position: relative; background: var(--sage-subtle); border: 1px solid var(--border); box-shadow: var(--shadow-sm); overflow: hidden; }
.flow-art .flow-shot { width: 100%; height: 100%; object-fit: cover; }
.flow-step h4 { font-size: 1.05rem; margin-bottom: 4px; }
.flow-step p { font-size: .88rem; color: var(--text-soft); }
.flow-sep { color: var(--sage-light); flex: 0 0 auto; }

/* ---------- Regulate / Forest Calm ---------- */
.calm-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.calm-feats { display: grid; gap: 16px; margin-top: 8px; }
.calm-feat { display: flex; gap: 16px; align-items: flex-start; padding: 18px; border-radius: var(--r-md); background: var(--bg-elev); border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease); }
.calm-feat:hover { transform: translateX(6px); }
.calm-feat .cf-ico { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; flex: none; }
.calm-feat h4 { font-size: 1.05rem; margin-bottom: 2px; }
.calm-feat p { font-size: .92rem; color: var(--text-soft); }
.calm-media { position: relative; display: flex; justify-content: center; }
.calm-media .badge-float { position: absolute; background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--r-pill); padding: 9px 16px; box-shadow: var(--shadow-md); font-weight: 700; font-size: .88rem; display: flex; align-items: center; gap: 8px; }

/* ---------- Mood & Energy rhythms ---------- */
.mood-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 64px; align-items: center; }
.mood-media { position: relative; display: flex; justify-content: center; }
.mood-media .badge-float { position: absolute; background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--r-pill); padding: 9px 16px; box-shadow: var(--shadow-md); font-weight: 700; font-size: .88rem; display: flex; align-items: center; gap: 8px; }
.mood-insights { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 26px 0 24px; }
.mood-insight { padding: 14px 16px; border-radius: var(--r-md); background: var(--bg-elev); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.mood-insight strong { display: block; color: var(--primary); font-size: 1.28rem; line-height: 1; letter-spacing: -.02em; }
.mood-insight span { display: block; margin-top: 6px; color: var(--text-soft); font-size: .82rem; font-weight: 700; }
.mood-feats { margin-top: 0; }

/* ---------- Help & Blog pages ---------- */
.marketing-page {
  min-height: 100vh;
  padding-top: 64px;
  background: var(--bg);
  color: var(--text);
}
.marketing-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(135,169,107,.24), transparent 34%),
    radial-gradient(circle at 86% 24%, rgba(255,191,0,.16), transparent 32%),
    var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.marketing-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--text-mute);
  font-size: .92rem;
  font-weight: 700;
}
.marketing-breadcrumb a:hover { color: var(--primary); }
.marketing-copy {
  max-width: 760px;
}
.marketing-copy.center {
  margin-left: auto;
  margin-right: auto;
}
.marketing-narrow {
  max-width: 950px;
}
.marketing-title-gap { margin: 18px 0 18px; }
.marketing-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.marketing-section-head p {
  max-width: 520px;
  color: var(--text-soft);
}
.marketing-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.marketing-empty {
  padding: 26px;
  color: var(--text-soft);
}
.faq-group {
  padding: 22px 26px 8px;
}
.faq-group + .faq-group { margin-top: 18px; }
.faq-group h3 {
  margin-bottom: 6px;
  font-size: 1.15rem;
}
.support-form-shell {
  padding: clamp(24px, 4vw, 38px);
}
.support-form-shell p,
.support-helper,
.support-meta {
  color: var(--text-soft);
}
.support-intro {
  margin: 22px 0 24px;
  padding: 18px 20px;
  border-radius: var(--r-md);
  background: var(--forest-100);
}
.support-intro h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}
.support-label {
  display: block;
  margin-bottom: 8px;
  font-size: .92rem;
  font-weight: 800;
  color: var(--text);
}
.support-field {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  outline: none;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.support-field:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(135,169,107,.18);
}
.support-dropzone {
  padding: 28px 22px;
  border: 2px dashed var(--border);
  border-radius: var(--r-lg);
  background: var(--bg);
  text-align: center;
  cursor: pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}
.support-dropzone:hover,
.support-dropzone.is-active {
  border-color: var(--primary);
  background: var(--sage-subtle);
  transform: translateY(-2px);
}
.support-upload-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 15px;
  background: var(--forest-100);
  color: var(--primary-press);
}
.support-file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--bg);
}
.support-file button {
  display: grid;
  place-items: center;
  padding: 7px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.support-file button:hover {
  background: rgba(226,109,92,.12);
  color: var(--u-crit-2);
}
.support-alert {
  margin-bottom: 20px;
  padding: 12px 14px;
  border-radius: var(--r-md);
  font-size: .92rem;
  font-weight: 700;
}
.support-alert.error {
  border: 1px solid rgba(226,109,92,.28);
  background: rgba(226,109,92,.1);
  color: var(--u-crit-ink);
}
.support-alert.success {
  border: 1px solid rgba(135,169,107,.32);
  background: var(--forest-100);
  color: var(--sage-deep);
}
.blog-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.blog-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: var(--bg-elev);
  border: 1px solid var(--border);
  color: var(--text-soft);
  font-size: .9rem;
  font-weight: 800;
  transition: transform .2s var(--ease), border-color .2s, color .2s, background .2s;
}
.blog-chip:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  color: var(--text);
}
.blog-chip.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.blog-card {
  overflow: hidden;
  padding: 0;
  height: 100%;
}
.blog-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-cover {
  height: 190px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 30%, rgba(135,169,107,.24), transparent 42%),
    radial-gradient(circle at 70% 70%, rgba(255,191,0,.18), transparent 44%),
    var(--bg-soft);
}
.blog-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s var(--ease);
}
.blog-card:hover .blog-cover img { transform: scale(1.04); }
.blog-cover-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  background: var(--forest-100);
  color: var(--primary-press);
}
.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.blog-card-category {
  padding: 6px 11px;
  border-radius: var(--r-pill);
  background: var(--forest-100);
  color: var(--primary-press);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.blog-read-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text-mute);
  font-size: .86rem;
  font-weight: 700;
  white-space: nowrap;
}
.blog-card h2 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  color: var(--text);
}
.blog-card:hover h2 { color: var(--primary-press); }
.blog-excerpt {
  color: var(--text-soft);
}
.blog-card-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 20px;
}
.blog-author,
.blog-date {
  display: block;
  color: var(--text-mute);
  font-size: .8rem;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-press);
  font-size: .9rem;
  font-weight: 800;
  white-space: nowrap;
  transition: gap .2s var(--ease);
}
.blog-card:hover .blog-read-more { gap: 10px; }
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
  border: 1.5px solid rgba(255,255,255,.38);
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.16);
  color: #fff;
  font-family: var(--font);
  font-size: 1rem;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.75); }
.newsletter-form input:focus {
  border-color: #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,.18);
}
.newsletter-note {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  color: rgba(255,255,255,.82);
  font-size: .82rem;
}
.newsletter-note a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .menu-btn { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-stage { min-height: auto; padding: 22px 0 8px; }
  .hero-stage .phone { width: min(310px, 78vw); height: auto; aspect-ratio: 310 / 638; }
  .bubble-demo, .hero-grid { gap: 36px; }
  .bubble-demo { grid-template-columns: 1fr; }
  .bubble-canvas { width: min(310px, 78vw); }
  .split, .calm-grid, .mood-grid { grid-template-columns: 1fr; gap: 42px; }
  .split .split-media, .calm-media, .mood-media {
    width: 100%;
    padding: 8px 24px 0;
    overflow: visible;
  }
  .split .split-media { align-items: center; }
  .phone.sm {
    width: min(270px, 72vw);
    height: auto;
    aspect-ratio: 270 / 556;
  }
  .phone.tilt, .phone.tilt2 { transform: none; }
  .bird-loop { grid-template-columns: 1fr; gap: 48px; }
  .loop-arrow { display: none; }
  .features-grid, .science-grid, .testimonials, .price-grid, .plans { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat-row { grid-template-columns: repeat(2,1fr); gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .price-card.featured { transform: none; }
}
@media (max-width: 560px) {
  .section { padding: 44px 0; }
  .marketing-section-head {
    display: block;
  }
  .marketing-section-head p {
    margin-top: 10px;
  }
  .faq-group {
    padding: 20px 18px 8px;
  }
  .support-form-shell {
    padding: 22px 18px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-card-meta,
  .blog-card-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form .btn {
    width: 100%;
  }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
  .mobile-app-banner-visible .nav { top: 64px; }
  .mobile-app-banner-visible .hero { padding-top: 184px; }
  .nav-right > .nav-download {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    place-items: center;
    gap: 0;
  }
  .nav-download-label { display: none; }
  .nav-download-icon { display: block; }
  .hero-stage { padding-top: 12px; }
  .hero-stage .phone { width: min(286px, 76vw); }
  .hero-stage > .bubble { display: none; }
  .split, .calm-grid, .mood-grid { gap: 32px; }
  .split .split-media, .calm-media, .mood-media {
    padding: 4px 0 0;
    justify-content: center;
  }
  .phone.sm { width: min(246px, 76vw); }
  .calm-media, .mood-media {
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }
  .calm-media .badge-float,
  .mood-media .badge-float {
    position: static;
    max-width: min(100%, 260px);
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transform: none;
  }
  .mood-insights { grid-template-columns: 1fr; }
}

/* mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 200; background: var(--bg); transform: translateX(100%); visibility: hidden; pointer-events: none; transition: transform .4s var(--ease), visibility .4s; display: flex; flex-direction: column; padding: 30px 24px; }
.drawer.open { transform: none; visibility: visible; pointer-events: auto; }
.drawer .drawer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.drawer a { font-size: 1.4rem; font-weight: 700; padding: 16px 0; border-bottom: 1px solid var(--border); }
.drawer .btn { margin-top: 24px; }
