/* Morning Quest — landing page
   Sunrise palette · Baloo 2 display / Nunito body · soft toy-shop feel */

:root {
  --cream:#FFF7EC;
  --paper:#FFFCF6;
  --paper2:#FFF9EF;
  --peach:#FFE0BF;
  --peachDeep:#FFCFA0;
  --coral:#FF7A59;
  --coralDeep:#E85E3D;
  --gold:#FFB547;
  --sky:#7FC8E8;
  --skyDeep:#5BA8CC;
  --mint:#88D5B0;
  --mintDeep:#5FB892;
  --lavender:#B197FC;
  --lavDeep:#8E72E0;
  --ink:#2D2A26;
  --inkSoft:#6B645B;
  --muted:#A89E92;
  --line:#EFE6D7;
  --lineDeep:#D9CCB7;

  --display:"Baloo 2", "Nunito", system-ui, sans-serif;
  --body:"Nunito", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

/* ─────────────── Typography ─────────────── */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.5px;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(44px, 5.6vw, 80px); line-height: 1.08; letter-spacing: -1.6px; }
h2 { font-size: clamp(34px, 4vw, 56px); line-height: 1.02; letter-spacing: -1px; }
h3 { font-size: 22px; line-height: 1.2; }
h4 { font-size: 13px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; color: var(--inkSoft); }
p  { margin: 0 0 12px; color: var(--inkSoft); text-wrap: pretty; }

.kicker {
  font-family: var(--display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--coralDeep);
  margin-bottom: 14px;
  display: inline-block;
}
.lede {
  font-size: 19px;
  color: var(--inkSoft);
  line-height: 1.5;
  max-width: 560px;
  margin-top: 16px;
}
.section-head h2 + .lede { margin-top: 18px; }

.section-head { margin-bottom: 56px; max-width: 720px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .lede { margin-left: auto; margin-right: auto; }

/* ─────────────── Buttons ─────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  transition: transform .08s ease, box-shadow .12s ease;
  white-space: nowrap;
  border: none;
  text-decoration: none;
}
.btn-sm { height: 42px; padding: 0 18px; font-size: 14px; }
.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 5px 0 var(--coralDeep), 0 14px 24px rgba(232,94,61,0.22);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 0 var(--coralDeep), 0 16px 28px rgba(232,94,61,0.24); }
.btn-primary:active { transform: translateY(3px); box-shadow: 0 2px 0 var(--coralDeep), 0 6px 12px rgba(232,94,61,0.22); }

.btn-secondary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 5px 0 #111, 0 14px 24px rgba(40,30,20,0.18);
}
.btn-secondary:hover { transform: translateY(-1px); }
.btn-secondary:active { transform: translateY(3px); box-shadow: 0 2px 0 #111, 0 6px 12px rgba(40,30,20,0.18); }

.btn-ghost {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 0 0 1.5px var(--lineDeep) inset, 0 4px 0 var(--line);
}
.btn-ghost:hover { transform: translateY(-1px); box-shadow: 0 0 0 1.5px var(--lineDeep) inset, 0 6px 0 var(--line); }

/* ─────────────── NAV ─────────────── */
.nav {
  position: sticky;
  top: 12px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 28px;
  width: calc(100% - 32px);
  max-width: 1180px;
  margin: 12px auto 0;
  padding: 10px 14px 10px 18px;
  background: rgba(255, 252, 246, 0.85);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border-radius: 999px;
  border: 1px solid rgba(40,30,20,0.06);
  box-shadow: 0 10px 30px rgba(40,30,20,0.06);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 38px; height: 38px;
  border-radius: 999px;
  background: radial-gradient(circle at 40% 40%, #FFE6B2, #FFCFA0 70%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.7), 0 2px 0 rgba(232,94,61,0.08);
}
.logo-word {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.4px;
}
.logo-word span { color: var(--coral); }
.nav-links {
  display: flex;
  gap: 24px;
  margin-left: auto;
  margin-right: 12px;
}
.nav-links a {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--inkSoft);
  padding: 8px 4px;
  transition: color .12s;
}
.nav-links a:hover { color: var(--ink); }

/* ─────────────── HERO ─────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 140px;
  background:
    radial-gradient(80% 60% at 80% -10%, #FFE6B2 0%, rgba(255,230,178,0) 65%),
    radial-gradient(60% 50% at 10% 10%, #FFE0BF 0%, rgba(255,224,191,0) 70%),
    linear-gradient(180deg, var(--cream) 0%, #FFF1DF 100%);
}
.hero-sky { position: absolute; inset: 0; pointer-events: none; }
.sun-large {
  position: absolute;
  top: -180px; right: -160px;
  width: 540px; height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle at 45% 45%, #FFE6B2 0%, #FFB547 50%, rgba(255,181,71,0) 72%);
  filter: blur(2px);
}
.cloud { position: absolute; opacity: .9; }
.cloud.c1 { width: 220px; top: 90px; left: 6%; }
.cloud.c2 { width: 160px; top: 200px; left: 38%; opacity: .65; }
.cloud.c3 { width: 180px; top: 60px; right: 22%; opacity: .55; }
.bird { position: absolute; }
.bird.b1 { top: 130px; left: 30%; }
.bird.b2 { top: 240px; right: 28%; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 32px 0;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 12.5px;
  color: var(--coralDeep);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  background: #fff;
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(232,94,61,0.12), inset 0 0 0 1px var(--peach);
  margin-bottom: 22px;
  white-space: nowrap;
}
.eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--coral);
  box-shadow: 0 0 0 3px rgba(255,122,89,0.25);
}

.hero-copy h1 .under {
  position: relative;
  white-space: nowrap;
  color: var(--coral);
  isolation: isolate;
  line-height: 1.12;
}
.hero-copy h1 {
  line-height: 1.12;
  margin-bottom: 10px;
}
.hero-copy h1 .under::after {
  content: "";
  position: absolute;
  left: -3%; right: -3%; bottom: 6%;
  height: 16px;
  background: rgba(255,181,71,0.55);
  border-radius: 99px;
  z-index: -1;
}
.hero-sub {
  font-size: 20px;
  line-height: 1.5;
  color: var(--inkSoft);
  max-width: 520px;
  margin: 20px 0 28px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}
.avatars { display: flex; }
.av {
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 3px solid var(--cream);
  margin-left: -8px;
  box-shadow: 0 2px 6px rgba(40,30,20,0.10);
}
.av:first-child { margin-left: 0; }
.stars {
  font-family: var(--display);
  font-weight: 800;
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 1px;
}
.stars span { color: var(--ink); margin-left: 4px; }
.trust-sub { font-size: 13px; font-weight: 700; color: var(--inkSoft); }

/* ─── Phone mockup ─── */
.hero-phone-wrap {
  position: relative;
  height: 660px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone {
  width: 320px;
  height: 660px;
  border-radius: 52px;
  background: #1a1714;
  padding: 10px;
  position: relative;
  transform: rotate(-4deg);
  box-shadow:
    0 40px 80px rgba(40,30,20,0.25),
    0 16px 40px rgba(40,30,20,0.16),
    inset 0 0 0 1.5px rgba(255,255,255,0.06);
}
.phone-island {
  position: absolute;
  top: 22px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 30px;
  border-radius: 18px;
  background: #000;
  z-index: 2;
}
.phone-home {
  position: absolute;
  bottom: 14px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 4px;
  border-radius: 99px;
  background: rgba(255,255,255,0.4);
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 44px;
  background: linear-gradient(180deg, #FFE0BF 0%, var(--cream) 50%, var(--paper) 100%);
  padding: 60px 22px 30px;
  position: relative;
  overflow: hidden;
}
.ps-bar {
  position: absolute;
  top: 20px; left: 22px; right: 22px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; font-weight: 800; color: var(--ink);
}
.ps-icons { display: inline-flex; gap: 4px; align-items: center; }

.ps-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 8px;
}
.ps-eyebrow {
  font-family: var(--display);
  font-weight: 800; font-size: 11px;
  letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--coralDeep);
}
.ps-step {
  font-family: var(--display);
  font-weight: 800; font-size: 11px;
  color: var(--inkSoft);
  background: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.ps-ring-wrap {
  position: relative;
  width: 220px; height: 220px;
  margin: 18px auto 14px;
}
.ps-ring-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px;
}
.ps-task-icon {
  width: 86px; height: 86px;
  border-radius: 28px;
  background: var(--peach);
  display: flex; align-items: center; justify-content: center;
}
.ps-time {
  font-family: var(--display);
  font-weight: 800;
  font-size: 26px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.ps-task-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 26px;
  text-align: center;
  margin-bottom: 14px;
  color: var(--ink);
}
.ps-pips {
  display: flex;
  gap: 5px;
  margin-bottom: 18px;
}
.pip {
  flex: 1;
  height: 6px;
  border-radius: 99px;
  background: #F2EADC;
}
.pip.done { background: var(--mintDeep); }
.pip.active { background: var(--coral); }
.ps-cta {
  width: 100%;
  height: 56px;
  border-radius: 22px;
  border: none;
  background: var(--coral);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 5px 0 var(--coralDeep);
  cursor: pointer;
}
.ps-bay {
  display: flex; align-items: center; gap: 8px;
  margin-top: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 8px 10px;
}
.bay-label {
  font-family: var(--display);
  font-weight: 800;
  font-size: 11px;
  color: var(--inkSoft);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.bay-avatars { display: flex; gap: 6px; margin-left: auto; }
.bay-av {
  width: 30px; height: 30px;
  border-radius: 99px;
  display: flex; align-items: center; justify-content: center;
}
.bay-av.active { outline: 2px solid var(--coral); outline-offset: 1px; }

/* Floating decoration around phone */
.float-pill {
  position: absolute;
  background: #fff;
  padding: 10px 14px 10px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(40,30,20,0.16), inset 0 0 0 1px var(--peach);
  z-index: 4;
}
.float-pill-top {
  top: 60px; right: 0;
  transform: rotate(4deg);
  animation: floaty 4s ease-in-out infinite;
}
.float-pill-streak {
  bottom: 110px; left: -10px;
  transform: rotate(-3deg);
  animation: floaty 5s ease-in-out infinite reverse;
}
.fp-ico {
  width: 38px; height: 38px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.fp-ico-coral { background: var(--coral); }
.fp-eyebrow {
  font-family: var(--display);
  font-weight: 800;
  font-size: 10px;
  color: var(--coralDeep);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.fp-line {
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
  color: var(--ink);
}
.fp-line.big { font-size: 18px; }

.fox-peek {
  position: absolute;
  bottom: 0; left: -50px;
  z-index: 3;
  transform: rotate(-8deg);
  animation: peek 6s ease-in-out infinite;
}

.sparkle { position: absolute; z-index: 5; }
.sparkle.s1 { top: 80px;  left: 40px;  animation: twinkle 2.6s ease-in-out infinite; }
.sparkle.s2 { top: 360px; right: 14px; animation: twinkle 3.2s ease-in-out infinite .4s; }
.sparkle.s3 { bottom: 80px; right: 60px; animation: twinkle 2.9s ease-in-out infinite .8s; }

@keyframes twinkle {
  0%, 100% { opacity: .45; transform: scale(.85); }
  50%      { opacity: 1;   transform: scale(1.1); }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(4deg); }
  50%      { transform: translateY(-6px) rotate(4deg); }
}
@keyframes peek {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50%      { transform: rotate(-8deg) translateY(-5px); }
}

/* Curved divider at the bottom of hero */
.divider {
  position: absolute;
  left: 0; right: 0;
  width: 100%;
  height: 60px;
  display: block;
}
.divider-top { bottom: -1px; }

/* ─────────────── EMPATHY SECTION ─────────────── */
.empathy {
  background: var(--paper);
  padding: 100px 0 110px;
}
.empathy-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
}
.empathy-copy h2 em {
  font-style: normal;
  color: var(--coral);
  position: relative;
}
.empathy-copy h2 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 6%;
  height: 8px;
  background: var(--gold);
  opacity: .5;
  border-radius: 99px;
  z-index: -1;
}
.empathy-copy p {
  font-size: 18px;
  margin-top: 18px;
  max-width: 480px;
}
.empathy-out {
  font-weight: 700;
  color: var(--ink) !important;
  font-size: 19px !important;
}

.empathy-visual {
  display: grid;
  grid-template-rows: auto auto;
  gap: 18px;
}
.ba-card {
  padding: 24px 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(40,30,20,0.06);
  position: relative;
}
.ba-before {
  transform: rotate(-1.5deg);
  background: #FFF4EC;
  border-color: #F9D9C6;
}
.ba-after {
  transform: rotate(1.5deg);
  background: #fff;
  margin-left: 32px;
}
.ba-tag {
  display: inline-block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--inkSoft);
  background: var(--peach);
  padding: 5px 10px;
  border-radius: 99px;
  margin-bottom: 10px;
}
.ba-tag.good { background: #D5F0E2; color: var(--mintDeep); }
.ba-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ba-list li {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  padding: 8px 0;
  border-top: 1px dashed var(--line);
  display: flex; align-items: center; gap: 10px;
}
.ba-list li:first-child { border-top: none; }
.ba-list li em { font-style: normal; color: var(--coralDeep); font-weight: 800; }
.ba-list .x {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 99px;
  background: #FFD4C2; color: #B7472A;
  font-weight: 800; font-size: 14px;
  flex-shrink: 0;
}
.ba-list .ok {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 99px;
  background: var(--mintDeep); color: #fff;
  font-weight: 800; font-size: 12px;
  flex-shrink: 0;
}

/* ─────────────── HOW IT WORKS ─────────────── */
.how {
  background: var(--cream);
  padding: 110px 0 100px;
  position: relative;
}
.how-steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.how-card {
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(40,30,20,0.06);
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.how-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(40,30,20,0.10);
}
.how-num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
  color: var(--coralDeep);
  letter-spacing: 1.4px;
  background: var(--peach);
  padding: 4px 10px;
  border-radius: 99px;
}
.how-card h3 {
  font-size: 24px;
  margin-top: 18px;
  margin-bottom: 8px;
}
.how-card p {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--inkSoft);
}
.how-illo {
  position: relative;
  width: 100%;
  height: 180px;
  border-radius: 20px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.how-illo-bg { position: absolute; inset: 0; }

/* Step 1 illo: task chips */
.illo-task {
  position: absolute;
  width: 64px; height: 64px;
  border-radius: 18px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(40,30,20,0.10), inset 0 0 0 1px rgba(40,30,20,0.04);
}
.it-1 { top: 30px; left: 40px; transform: rotate(-6deg); }
.it-2 { top: 24px; right: 36px; transform: rotate(5deg); }
.it-3 { bottom: 24px; left: 60px; transform: rotate(3deg); }
.it-4 { bottom: 30px; right: 50px; transform: rotate(-4deg); }
.it-plus {
  width: 48px !important; height: 48px !important;
  background: var(--peach) !important;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) !important;
}

/* Step 2 illo: phone + hand */
.mini-phone {
  position: relative;
  z-index: 2;
  width: 110px; height: 150px;
  background: #1a1714;
  border-radius: 22px;
  padding: 6px;
  box-shadow: 0 16px 30px rgba(40,30,20,0.18);
  transform: rotate(-6deg);
}
.mp-screen {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, var(--peach), var(--cream));
  border-radius: 16px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
}
.mp-label {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
}
.hand-pass {
  position: absolute;
  right: 28px; bottom: 14px;
  transform: rotate(20deg);
  z-index: 1;
}

/* Step 3 illo: cheering fox + sparks */
.cheer-fox {
  position: relative;
  z-index: 2;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}
.cheer-spark { position: absolute; }
.cheer-spark.sp-a { top: 24px;  left: 30px;  animation: twinkle 2.4s ease-in-out infinite; }
.cheer-spark.sp-b { top: 50px;  right: 36px; animation: twinkle 2.7s ease-in-out infinite .3s; }
.cheer-spark.sp-c { bottom: 30px; right: 26px; animation: twinkle 3s ease-in-out infinite .5s; }
.cheer-spark.sp-d { bottom: 36px; left: 24px;  animation: twinkle 2.8s ease-in-out infinite .8s; }

/* ─────────────── FEATURES ─────────────── */
.features {
  background: var(--paper);
  padding: 110px 0 110px;
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(40,30,20,0.04);
  transition: transform .2s ease, box-shadow .2s ease;
}
.feat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(40,30,20,0.08);
}
.feat-card h3 { font-size: 22px; margin: 16px 0 6px; }
.feat-card p { font-size: 15.5px; color: var(--inkSoft); margin: 0; }

.feat-icon-square {
  width: 60px; height: 60px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
}

/* Wide feature cards span 2 columns */
.feat-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: center;
}
.feat-wide:nth-of-type(6) {
  grid-template-columns: 1fr 240px;
}
.feat-wide .feat-illo {
  height: 180px;
  background: linear-gradient(180deg, var(--peach), var(--cream));
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.vt-ring {
  position: relative;
  width: 160px; height: 160px;
}
.vt-center {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.vt-callout {
  position: absolute;
  bottom: 14px; right: 14px;
  background: #fff;
  border-radius: 99px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 800;
  color: var(--inkSoft);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 12px rgba(40,30,20,0.08);
}
.vt-dot {
  width: 6px; height: 6px;
  border-radius: 99px;
  background: var(--coral);
  animation: pulse 1.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}

/* Bus illo */
.bus-illo {
  background: linear-gradient(180deg, #D9EEF7, var(--cream)) !important;
  padding: 30px 16px;
  flex-direction: column;
  height: auto !important;
  min-height: 180px;
}
.bus-track {
  position: relative;
  width: 100%;
  height: 6px;
  background: var(--lineDeep);
  border-radius: 99px;
}
.bus-fill {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 36%;
  background: var(--coral);
  border-radius: 99px;
}
.bus-marker {
  position: absolute;
  top: 50%; transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.bus-marker.now { left: 36%; }
.bus-marker.now span:first-child {
  font-family: var(--display);
  font-weight: 800; font-size: 10px;
  color: #fff;
  background: var(--coral);
  padding: 3px 8px;
  border-radius: 99px;
  letter-spacing: 1px;
}
.bus-marker.bus { left: 96%; }
.bus-marker .m-time {
  font-family: var(--display);
  font-weight: 800; font-size: 12px;
  color: var(--ink);
  background: #fff;
  padding: 3px 8px;
  border-radius: 99px;
  box-shadow: 0 2px 8px rgba(40,30,20,0.10);
}

/* ─────────────── BUDDIES ─────────────── */
.buddies {
  background: var(--cream);
  padding: 110px 0 110px;
  position: relative;
}
.buddy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.buddy-card {
  background: #fff;
  border-radius: 28px;
  padding: 32px 28px 28px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(40,30,20,0.06);
  text-align: center;
  position: relative;
  transition: transform .2s ease;
}
.buddy-card:hover { transform: translateY(-4px); }

.buddy-stage {
  position: relative;
  height: 220px;
  margin-bottom: 14px;
  display: flex; align-items: flex-end; justify-content: center;
}
.buddy-blob {
  position: absolute;
  inset: 0;
  background: var(--peach);
  border-radius: 50% 50% 30% 30% / 60% 60% 20% 20%;
  z-index: 0;
}
.buddy-bear .buddy-blob { background: #D9EEF7; }
.buddy-bunny .buddy-blob { background: #EBE2FF; }
.buddy-stage svg { position: relative; z-index: 1; margin-bottom: -10px; }

.buddy-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 32px;
  color: var(--ink);
  margin-top: 8px;
}
.buddy-fox .buddy-name { color: var(--coral); }
.buddy-bear .buddy-name { color: var(--skyDeep); }
.buddy-bunny .buddy-name { color: var(--lavDeep); }

.buddy-role {
  font-family: var(--display);
  font-weight: 800;
  font-size: 12px;
  color: var(--inkSoft);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin: 2px 0 14px;
}
.buddy-card p {
  font-size: 15px;
  color: var(--inkSoft);
  line-height: 1.5;
  margin: 0;
}

/* ─────────────── TESTIMONIALS ─────────────── */
.testimonials {
  background: var(--paper);
  padding: 110px 0 100px;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.testi {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(40,30,20,0.05);
  margin: 0;
  position: relative;
}
.testi .quote {
  position: absolute;
  top: -14px; left: 20px;
  background: var(--cream);
  border-radius: 99px;
  padding: 4px;
}
.testi blockquote {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.45;
  color: var(--ink);
  margin: 8px 0 18px;
  letter-spacing: -0.2px;
}
.testi blockquote em {
  font-style: italic;
  color: var(--coral);
}
.testi figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}
.testi .avatar {
  width: 38px; height: 38px;
  border-radius: 99px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-weight: 800;
  color: #fff;
  font-size: 16px;
}
.testi strong {
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
  display: block;
}
.testi .sub {
  display: block;
  font-size: 12px;
  color: var(--inkSoft);
  font-weight: 700;
}

.press {
  border-top: 1px dashed var(--lineDeep);
  border-bottom: 1px dashed var(--lineDeep);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px 38px;
}
.press-label {
  font-family: var(--display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--inkSoft);
}
.press-name {
  font-family: "Times New Roman", Times, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 22px;
  color: var(--muted);
  letter-spacing: -0.4px;
  opacity: .8;
}

/* ─────────────── PRICING ─────────────── */
.pricing {
  background: var(--cream);
  padding: 110px 0 110px;
}
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}
.price-card {
  background: #fff;
  border-radius: 28px;
  padding: 32px 32px 32px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(40,30,20,0.05);
  position: relative;
}
.price-card-feat {
  background: linear-gradient(180deg, #FFFDF7 0%, #FFF6E6 100%);
  border: 2px solid var(--coral);
  box-shadow: 0 24px 50px rgba(232,94,61,0.16);
  transform: translateY(-4px);
}
.price-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--coral);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 99px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(232,94,61,0.3);
}
.price-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.price-head h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
}
.price-tag {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  color: var(--inkSoft);
}
.price-num {
  font-size: 36px;
  color: var(--ink);
}
.price-per { font-size: 14px; color: var(--inkSoft); }
.price-sub { font-size: 15px; margin: 0 0 18px; }
.price-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.price-feats li {
  font-size: 15.5px;
  font-weight: 600;
  padding: 8px 0;
  display: flex; align-items: center; gap: 10px;
  color: var(--ink);
}
.ok-tick {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  border-radius: 99px;
  background: var(--cream);
  color: var(--mintDeep);
  font-weight: 800;
  font-size: 12px;
  border: 1.5px solid var(--mintDeep);
  flex-shrink: 0;
}
.ok-tick.filled {
  background: var(--mintDeep);
  color: #fff;
  border-color: var(--mintDeep);
}
.price-card .btn { width: 100%; justify-content: center; }
.price-note {
  text-align: center;
  font-size: 12px;
  color: var(--inkSoft);
  margin-top: 10px;
  font-weight: 700;
}

/* ─────────────── FAQ ─────────────── */
.faq {
  background: var(--paper);
  padding: 110px 0 110px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: flex-start;
}
.faq-help {
  margin-top: 16px;
  font-size: 15.5px;
}
.faq-help a {
  color: var(--coral);
  font-weight: 800;
  border-bottom: 2px solid var(--peach);
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 4px;
  box-shadow: 0 6px 20px rgba(40,30,20,0.04);
  transition: box-shadow .2s ease;
}
.faq details[open] {
  box-shadow: 0 16px 40px rgba(40,30,20,0.08);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.chev {
  width: 28px; height: 28px;
  border-radius: 99px;
  background: var(--cream);
  position: relative;
  flex-shrink: 0;
  transition: transform .2s, background .2s;
}
.chev::before, .chev::after {
  content: "";
  position: absolute;
  background: var(--ink);
  height: 2px;
  border-radius: 99px;
  top: 50%; left: 50%;
  transform-origin: center;
}
.chev::before { width: 12px; transform: translate(-50%, -50%); }
.chev::after  { width: 12px; transform: translate(-50%, -50%) rotate(90deg); transition: transform .2s; }
.faq details[open] .chev { background: var(--peach); }
.faq details[open] .chev::after { transform: translate(-50%, -50%) rotate(0); }

.faq-a {
  padding: 0 22px 18px 22px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--inkSoft);
}

/* ─────────────── FINAL CTA ─────────────── */
.final-cta {
  position: relative;
  padding: 120px 0 140px;
  background:
    radial-gradient(70% 70% at 60% 0%, #FFE6B2 0%, rgba(255,230,178,0) 65%),
    linear-gradient(180deg, #FFE0BF 0%, var(--cream) 100%);
  overflow: hidden;
}
.cta-sky { position: absolute; inset: 0; pointer-events: none; }
.cta-sun {
  position: absolute;
  top: -120px; right: -100px;
  width: 380px; height: 380px;
  border-radius: 99px;
  background: radial-gradient(circle, #FFE6B2 0%, #FFB547 50%, rgba(255,181,71,0) 72%);
}
.cta-cloud {
  position: absolute;
  width: 200px;
  top: 80px;
  left: 8%;
  opacity: .75;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.cta-copy h2 { margin-bottom: 16px; }
.cta-copy p {
  font-size: 19px;
  max-width: 500px;
  margin-bottom: 28px;
}
.cta-trust {
  margin-top: 22px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  color: var(--coralDeep);
  letter-spacing: 0.5px;
}

.cta-buddies {
  position: relative;
  height: 280px;
  display: flex; align-items: flex-end; justify-content: center;
}
.cta-buddy { position: absolute; bottom: 0; }
.cta-buddy.cb-bear { left: 0; transform: rotate(-6deg); animation: bob 3s ease-in-out infinite; }
.cta-buddy.cb-fox  { left: 50%; transform: translateX(-50%); animation: bob 2.6s ease-in-out infinite .2s; z-index: 2; }
.cta-buddy.cb-bunny { right: 0; transform: rotate(6deg); animation: bob 3.2s ease-in-out infinite .4s; }

/* ─────────────── FOOTER ─────────────── */
.footer {
  background: var(--ink);
  color: #d6d0c5;
  padding: 70px 0 30px;
}
.footer .logo-word { color: #fff; }
.footer .logo-word span { color: var(--coral); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer-brand p {
  margin-top: 16px;
  color: #a89e92;
  font-size: 14.5px;
  line-height: 1.5;
  max-width: 280px;
}
.footer h4 { color: #fff; margin-bottom: 14px; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  color: #a89e92;
  font-size: 14.5px;
  font-weight: 600;
  transition: color .12s;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  max-width: 1180px;
  margin: 50px auto 0;
  padding: 24px 32px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 13px;
  color: #a89e92;
}
.footer-socials { display: flex; gap: 18px; }
.footer-socials a { font-weight: 700; }

/* ─────────────── Responsive ─────────────── */
@media (max-width: 980px) {
  .hero-grid,
  .empathy-grid,
  .faq-grid,
  .cta-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-phone-wrap { height: 540px; }
  .phone { transform: rotate(-3deg) scale(0.9); }

  .how-steps,
  .feat-grid,
  .buddy-cards,
  .testi-grid,
  .price-grid { grid-template-columns: 1fr; }

  .feat-wide,
  .feat-wide:nth-of-type(6) { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .container { padding: 0 22px; }
  .hero { padding: 50px 0 80px; }
  .hero-grid { padding: 16px 22px 0; }
  .section-head { margin-bottom: 36px; }
  .empathy, .how, .features, .buddies, .testimonials, .pricing, .faq, .final-cta {
    padding: 72px 0;
  }
  .ba-after { margin-left: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .press { gap: 16px 24px; }
  .press-name { font-size: 18px; }
}
