/* ============================================================
   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-copy {
  min-width: 0;
}

.hero h1 {
  margin: 20px 0 18px;
}

.hero h1.display {
  font-size: clamp(2.05rem, 4.5vw, 3.45rem);
  letter-spacing: -.03em;
  line-height: 1.1;
}

.hero h1 .hero-line {
  display: block;
  max-width: 100%;
  text-wrap: balance;
}

.hero h1 .hero-line.accent {
  color: var(--primary);
}

.hero .lead {
  max-width: 540px;
}

.hero .hero-summary {
  color: var(--text);
  font-weight: 700;
}

.hero-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero .hero-keyword {
  display: inline-flex;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--primary) 34%, transparent);
  border-radius: var(--r-pill);
  background: color-mix(in srgb, var(--forest-100) 72%, transparent);
  color: var(--primary-press);
  font-size: .88rem;
  font-weight: 800;
  line-height: 1;
  padding: 9px 13px;
}

.seo-faq-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  max-width: 820px;
}

.seo-faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--bg-elev);
  padding: 0 18px;
}

.seo-faq-question {
  cursor: pointer;
  font-weight: 800;
  color: var(--text);
  padding: 16px 0;
  list-style: none;
}

.seo-faq-question::-webkit-details-marker {
  display: none;
}

.seo-faq-answer {
  margin: 0 0 18px;
  color: var(--text-soft);
  line-height: 1.6;
}

.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);
}

/* Energy map slot levels (high / medium / low) */
.tc-energy-high {
  --c: var(--u-low-2);
  background: #e9f1dc;
}

.tc-energy-mid {
  --c: var(--amber);
  background: #fcf2d2;
}

.tc-energy-low {
  --c: var(--u-crit-2);
  background: #fbe3df;
}

[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);
}

[data-theme="dark"] .tc-energy-high {
  background: rgba(135, 169, 107, .16);
}

[data-theme="dark"] .tc-energy-mid {
  background: rgba(255, 191, 0, .12);
}

[data-theme="dark"] .tc-energy-low {
  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;
}

.hero-zone {
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 24px;
  gap: 3px;
  z-index: 1;
  pointer-events: none;
}

.hero-zone-top {
  top: 0;
  background: rgba(135, 169, 107, 0.12);
}

.hero-zone-bottom {
  bottom: 0;
  background: rgba(226, 109, 92, 0.12);
}

.hero-zone-time {
  font-weight: 800;
  font-size: 1.08rem;
}

.hero-zone-label {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.hero-zone-top .hero-zone-time,
.hero-zone-top .hero-zone-label {
  color: var(--u-low-ink);
}

.hero-zone-bottom .hero-zone-time,
.hero-zone-bottom .hero-zone-label {
  color: var(--u-crit-ink);
}

.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;
}

.energy-map-row {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.energy-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.energy-map-title {
  grid-column: 1 / -1;
  font-weight: 800;
  font-size: .98rem;
  color: var(--text);
  margin: 0 0 4px;
}

/* Energy slot — calendar task-card layout (bucket + nested tasks) */
.energy-slot.task-card {
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  padding: 16px 16px 14px 24px;
  border: 1px solid color-mix(in srgb, var(--c) 22%, transparent);
}

.energy-slot.task-card:hover {
  transform: translateY(-2px);
}

.energy-slot.task-card::before {
  top: 14px;
  bottom: 14px;
}

.energy-slot-header {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding-left: 2px;
}

.energy-slot-icon {
  font-size: 1.05rem;
  line-height: 1;
  flex: none;
}

.energy-slot-time {
  font-weight: 900;
  font-size: .95rem;
  color: var(--c);
  letter-spacing: -.01em;
}

.energy-slot-label {
  font-weight: 800;
  font-size: .88rem;
  color: var(--text-soft);
}

.energy-slot-tasks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.energy-slot-task.task-card {
  padding: 12px 14px 12px 22px;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--c) 18%, transparent);
  box-shadow: none;
}

.energy-slot-task.task-card:hover {
  transform: translateX(4px);
}

.energy-slot-task.task-card::before {
  left: 7px;
  top: 10px;
  bottom: 10px;
  width: 5px;
}

.energy-slot-task .tc-check {
  width: 24px;
  height: 24px;
  border-width: 2px;
}

.energy-slot-task .tc-title {
  font-size: .92rem;
  line-height: 1.35;
}

[data-theme="dark"] .energy-slot.task-card,
[data-theme="dark"] .energy-slot-task.task-card {
  border-color: color-mix(in srgb, var(--c) 28%, transparent);
}

[data-theme="dark"] .energy-slot-task.task-card {
  box-shadow: 0 1px 0 rgba(0, 0, 0, .12);
}

.energy-map-legend {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  padding-top: 4px;
  border-top: 1px solid var(--border);
}

.energy-map-row .legend {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 28px;
}

.energy-map-row .legend-row {
  align-items: flex-start;
}

.energy-map-closing {
  margin-top: 0;
  font-size: .9rem;
  color: var(--text-mute);
  display: flex;
  align-items: center;
  gap: 8px;
}

.energy-map-closing strong {
  color: var(--text);
  font-weight: 800;
}

.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: 40px;
}

.sci-card {
  text-align: left;
  padding: 22px 24px;
}

.sci-stat {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.03em;
}

.sci-step {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.sci-card h4 {
  font-size: 1.05rem;
  margin: 4px 0 6px;
}

.sci-card p {
  color: var(--text-soft);
  font-size: .9rem;
  line-height: 1.5;
}

/* ---------- LinkedIn voices carousel (science section) ---------- */
.science-voices-title {
  text-align: center;
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-mute);
  margin: 0 0 16px;
  letter-spacing: .02em;
}

.science-voices-bridge {
  text-align: center;
  font-size: .88rem;
  color: var(--text-mute);
  margin: 16px 0 0;
  font-style: italic;
}

.lvc {
  padding: 24px 26px;
  border-radius: var(--r-lg);
  background: var(--bg-elev);
  border: 1.5px solid var(--primary);
  box-shadow: var(--shadow-lg);
}

.lvc-slide {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  animation: hbcFade .5s var(--ease);
}

.lvc-avatar {
  position: relative;
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .02em;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, var(--sage-deep), var(--primary));
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

a.lvc-avatar {
  cursor: pointer;
}

a.lvc-avatar:hover,
a.lvc-avatar:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.lvc-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.lvc-avatar-badge {
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  display: grid;
  place-items: center;
  background: var(--primary-press);
  border: 2px solid var(--bg-elev);
  color: #fff;
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: -.02em;
}

.lvc-text {
  min-width: 0;
  flex: 1;
}

.lvc-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.lvc-name {
  font-weight: 700;
  font-size: .98rem;
  color: var(--text);
}

.lvc-role {
  font-size: .78rem;
  color: var(--text-mute);
  margin-top: 2px;
  line-height: 1.4;
}

.lvc-head-right {
  flex: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lvc-followers {
  flex: none;
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-mute);
  white-space: nowrap;
}

.lvc-excerpt {
  font-size: .92rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 10px;
  white-space: pre-line;
}

.lvc-more-link {
  font-weight: 900;
  color: var(--text-soft);
  text-decoration: none;
  cursor: pointer;
  transition: color .2s var(--ease);
}

.lvc-more-link:hover,
.lvc-more-link:focus-visible {
  color: var(--primary-press);
}

.lvc-engagement {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  text-decoration: none;
  transition: opacity .2s var(--ease);
}

a.lvc-engagement {
  cursor: pointer;
}

a.lvc-engagement:hover,
a.lvc-engagement:focus-visible {
  opacity: .72;
}

.lvc-eng-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-mute);
}

.lvc-eng-item svg {
  flex: none;
  color: var(--primary-press);
}

.lvc-viewpost-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--primary-press);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  white-space: nowrap;
  transition: color .2s var(--ease), text-decoration-thickness .2s var(--ease), gap .2s var(--ease);
}

.lvc-viewpost-link:hover,
.lvc-viewpost-link:focus-visible {
  color: var(--primary);
  text-decoration-thickness: 2px;
  gap: 8px;
}

.lvc-viewpost-link svg {
  width: 13px;
  height: 13px;
  flex: none;
  transition: transform .2s var(--ease);
}

.lvc-viewpost-link:hover svg {
  transform: translate(2px, -2px);
}

.lvc-dots {
  display: flex;
  gap: 7px;
  justify-content: center;
  margin-top: 12px;
}

.lvc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  transition: width .3s var(--ease), background .3s var(--ease);
}

.lvc-dot.is-active {
  width: 20px;
  border-radius: 99px;
  background: var(--primary);
}

@media (max-width: 560px) {
  .lvc-slide {
    flex-direction: column;
  }

  .lvc-head {
    flex-direction: column;
    gap: 4px;
  }

  .lvc-followers {
    white-space: normal;
  }
}

/* ---------- 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;
}

.footer-stores {
  align-items: flex-start;
}

.footer-stores .footer-store-web {
  flex-basis: 100%;
}

.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;
}

.media-float-stage {
  position: relative;
  width: fit-content;
  margin-inline: auto;
  flex: none;
  isolation: isolate;
}

.media-float-stage .phone {
  z-index: 1;
}

.media-float-stage .badge-float {
  position: absolute;
  z-index: 2;
  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;
  white-space: nowrap;
}

.media-float-stage .badge-float.badge-out-left {
  left: 0;
  transform: translateX(calc(-100% - 14px));
}

.media-float-stage .badge-float.badge-out-right {
  right: 0;
  transform: translateX(calc(100% + 14px));
}

.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 {
  display: flex;
  justify-content: center;
}

/* ---------- Mood & Energy rhythms ---------- */
.mood-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.mood-media {
  display: flex;
  justify-content: center;
}

.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;
}

.mood-privacy-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 10px 0 0;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: rgba(135, 169, 107, 0.14);
  border: 1px solid rgba(135, 169, 107, 0.32);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #4a6b38;
}

[data-theme="dark"] .mood-privacy-kicker {
  background: rgba(43, 191, 99, 0.12);
  border-color: rgba(43, 191, 99, 0.28);
  color: #9fd48a;
}

.mood-privacy-callout {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  margin: 0 0 24px;
  border-radius: var(--r-md);
  background: linear-gradient(145deg, rgba(135, 169, 107, 0.16), rgba(135, 169, 107, 0.08));
  border: 1px solid rgba(135, 169, 107, 0.3);
  box-shadow: var(--shadow-sm);
}

.mood-privacy-callout-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
}

[data-theme="dark"] .mood-privacy-callout {
  background: linear-gradient(145deg, rgba(43, 191, 99, 0.14), rgba(43, 191, 99, 0.06));
  border-color: rgba(43, 191, 99, 0.24);
}

[data-theme="dark"] .mood-privacy-callout-icon {
  background: rgba(255, 255, 255, 0.08);
}

.mood-privacy-callout strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: .95rem;
}

.mood-privacy-callout p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.6;
  color: var(--text-soft);
}

.mood-privacy-inline {
  display: block;
  margin-top: 6px;
  font-size: .82rem;
  font-weight: 700;
  color: #5a7a48;
}

[data-theme="dark"] .mood-privacy-inline {
  color: #9fd48a;
}

/* ---------- Mood check-in auto-crossfade carousel ---------- */
.mood-swipe {
  position: absolute;
  inset: 0;
}

.mood-swipe .app-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transition: opacity .8s var(--ease);
}

.mood-swipe .app-shot.is-active {
  opacity: 1;
}

.mood-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 5;
}

.mood-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .55);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
  transition: width .3s var(--ease), background .3s var(--ease);
}

.mood-dot.is-active {
  width: 20px;
  border-radius: 99px;
  background: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .mood-swipe .app-shot {
    transition: none;
  }
}

/* ---------- Research credibility callout (generic) ---------- */
.research-callout {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  margin: 22px 0;
  border-radius: var(--r-md);
  background: linear-gradient(145deg, rgba(135, 169, 107, 0.16), rgba(135, 169, 107, 0.08));
  border: 1px solid rgba(135, 169, 107, 0.3);
  box-shadow: var(--shadow-sm);
}

.research-callout-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
}

[data-theme="dark"] .research-callout {
  background: linear-gradient(145deg, rgba(43, 191, 99, 0.14), rgba(43, 191, 99, 0.06));
  border-color: rgba(43, 191, 99, 0.24);
}

[data-theme="dark"] .research-callout-icon {
  background: rgba(255, 255, 255, 0.08);
}

.research-callout strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: .95rem;
}

.research-callout p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.6;
  color: var(--text-soft);
}

/* ---------- Book / science credibility carousel (hero) ---------- */
.hbc {
  margin: 26px 0 4px;
  padding: 16px;
  border-radius: var(--r-md);
  background: var(--bg-elev);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.hbc-slide {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  min-height: 168px;
  animation: hbcFade .5s var(--ease);
}

@keyframes hbcFade {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hbc-cover {
  flex: none;
  width: 72px;
  height: 108px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
}

.hbc-text {
  min-width: 0;
}

.hbc-title {
  font-weight: 700;
  font-size: .98rem;
  color: var(--text);
}

.hbc-meta {
  font-size: .78rem;
  color: var(--text-mute);
  margin: 2px 0 8px;
}

.hbc-summary {
  font-size: .86rem;
  line-height: 1.55;
  color: var(--text-soft);
  margin: 0 0 8px;
}

.hbc-highlight {
  font-size: .86rem;
  line-height: 1.5;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.hbc-dots {
  display: flex;
  gap: 7px;
  justify-content: center;
}

.hbc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  transition: width .3s var(--ease), background .3s var(--ease);
}

.hbc-dot.is-active {
  width: 20px;
  border-radius: 99px;
  background: var(--primary);
}

@media (prefers-reduced-motion: reduce) {
  .hbc-slide {
    animation: none;
  }
}

@media (max-width: 560px) {
  .hbc-slide {
    min-height: 0;
  }
}

/* ---------- Problem list (editorial cards, red accent) / Solution cards (green) ---------- */
.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  border-radius: var(--r-md);
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-left: 3px solid var(--u-crit-2);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}

.problem-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--u-crit-2) 45%, var(--border));
  border-left-color: var(--u-crit-2);
}

.problem-item .pi-icon {
  flex: none;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(226, 109, 92, 0.12);
  color: var(--u-crit-2);
}

.problem-item .pi-icon svg {
  width: 21px;
  height: 21px;
}

.problem-item .pi-copy {
  min-width: 0;
}

.problem-item strong {
  display: block;
  font-size: .98rem;
  color: var(--text);
  margin-bottom: 3px;
}

.problem-item p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.55;
  color: var(--text-soft);
}

[data-theme="dark"] .problem-item .pi-icon {
  background: rgba(226, 109, 92, 0.18);
}

.solution-card {
  background: rgba(135, 169, 107, 0.08);
  border-color: rgba(135, 169, 107, 0.35);
}

.solution-card h4 {
  color: var(--u-low-ink);
}

[data-theme="dark"] .solution-card {
  background: rgba(135, 169, 107, 0.12);
  border-color: rgba(135, 169, 107, 0.4);
}

[data-theme="dark"] .solution-card h4 {
  color: var(--primary);
}

/* ---------- Why-energy section graphic (energy-based time-blocking schedule) ---------- */
.energy-graphic {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: var(--r-lg, 24px);
  background: var(--bg-elev);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 420px;
}

.eg-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.eg-schedule-title {
  font-weight: 700;
  font-size: .98rem;
  color: var(--text);
  margin: 0;
}

.eg-schedule {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.eg-block {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--r-md);
  font-size: .9rem;
}

.eg-time {
  font-weight: 700;
  color: var(--text);
  flex: none;
}

.eg-task {
  color: var(--text-soft);
  text-align: right;
}

.eg-block-green {
  background: rgba(135, 169, 107, 0.3);
}

.eg-block-red {
  background: rgba(226, 109, 92, 0.3);
}

.eg-block-yellow {
  background: rgba(255, 191, 0, 0.3);
}

.eg-block-teal {
  background: rgba(43, 182, 196, 0.3);
}

.eg-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin: 14px auto;
  border-radius: 50%;
  background: var(--forest-100);
  color: var(--primary);
  flex: none;
}

[data-theme="dark"] .eg-divider {
  background: rgba(43, 191, 99, .14);
}

.eg-divider svg {
  width: 16px;
  height: 16px;
}

.eg-solutions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.eg-solutions .research-callout {
  margin: 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 h1.display {
    font-size: clamp(1.9rem, 6.2vw, 2.65rem);
    line-height: 1.12;
    max-width: 100%;
  }

  .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;
  }

  .energy-map-row {
    gap: 20px;
  }

  .energy-map {
    grid-template-columns: 1fr;
  }

  .energy-map-row .legend {
    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,
  .price-grid,
  .plans {
    grid-template-columns: 1fr;
  }

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

  .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%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 112px 0 64px;
  }

  .mobile-app-banner-visible .nav {
    top: 64px;
  }

  .mobile-app-banner-visible .hero {
    padding-top: 176px;
  }

  .hero h1 {
    margin: 14px 0 12px;
  }

  .hero h1.display {
    font-size: clamp(1.62rem, 6.8vw, 2.05rem);
    line-height: 1.16;
    letter-spacing: -.024em;
    max-width: 100%;
  }

  .hero .lead,
  .hero .hero-summary {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-ctas {
    margin: 24px 0 18px;
    gap: 10px;
  }

  .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,
  .split .split-media {
    align-items: center;
  }

  .media-float-stage .badge-float {
    font-size: .78rem;
    padding: 7px 12px;
  }

  .media-float-stage .badge-float.badge-out-left {
    transform: translateX(calc(-100% - 8px));
  }

  .media-float-stage .badge-float.badge-out-right {
    transform: translateX(calc(100% + 8px));
  }

  .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;
}