/* ═══════════════════════════════════════════════════════════════
   Stretch Reminder — Design System v2
   Inspired by the real app UI: mint green, clean cards, bold type
   ═══════════════════════════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  --mint:        #4eca8b;
  --mint-light:  #6edba0;
  --mint-soft:   #e8f8f0;
  --mint-border: #c0ecd5;
  --mint-dark:   #2aaa6a;
  --mint-deep:   #1a7a4a;

  --green-glow:  rgba(78, 202, 139, .35);
  --green-glow2: rgba(78, 202, 139, .12);

  --white:       #ffffff;
  --off-white:   #f7faf8;
  --surface:     #f0f7f3;
  --card-bg:     #ffffff;

  --text-primary:   #111816;
  --text-secondary: #5a7068;
  --text-muted:     #9db5aa;

  --streak-orange: #ff6b35;
  --duration-red:  #ef4444;

  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Fraunces', Georgia, serif;

  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-2xl:  40px;
  --r-full: 9999px;

  --shadow-card:   0 2px 16px rgba(0,0,0,.06), 0 1px 4px rgba(0,0,0,.04);
  --shadow-float:  0 20px 60px rgba(0,0,0,.12), 0 8px 24px rgba(0,0,0,.06);
  --shadow-glow:   0 0 60px rgba(78, 202, 139, .3);
  --shadow-phone:  0 40px 100px rgba(0,0,0,.22), 0 12px 32px rgba(0,0,0,.12);

  --ease-out:    cubic-bezier(.16, 1, .3, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --ease-smooth: cubic-bezier(.4, 0, .2, 1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { font-family: var(--font-sans); color: var(--text-primary); background: #fff; line-height: 1.6; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── SCROLL ANIMATIONS ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
[data-reveal="left"]  { transform: translateX(-36px); }
[data-reveal="right"] { transform: translateX(36px); }
[data-reveal="scale"] { transform: scale(.94); }
[data-reveal].visible { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }
[data-delay="4"] { transition-delay: .4s; }
[data-delay="5"] { transition-delay: .5s; }
[data-delay="6"] { transition-delay: .6s; }

/* ─── GLOBAL KEYFRAMES ─── */
@keyframes float-y {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@keyframes float-y-sm {
  0%,100% { transform: translateY(0) rotate(var(--r,0deg)); }
  50%      { transform: translateY(-8px) rotate(var(--r,0deg)); }
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 var(--green-glow); }
  70%  { box-shadow: 0 0 0 14px rgba(78,202,139,0); }
  100% { box-shadow: 0 0 0 0 rgba(78,202,139,0); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes dash {
  0%   { stroke-dashoffset: 170; }
  100% { stroke-dashoffset: 68; }
}
@keyframes blob {
  0%,100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50%      { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}
@keyframes gradient-shift {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes ping {
  75%,100% { transform: scale(2); opacity: 0; }
}
@keyframes shimmer-move {
  from { transform: translateX(-100%); }
  to   { transform: translateX(200%); }
}

/* ═══════════════════════════════
   NAVIGATION
═══════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0 max(24px, calc((100vw - 1200px)/2));
  transition: background .4s, backdrop-filter .4s, box-shadow .4s;
}
.nav.scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}
.nav__inner {
  height: 68px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.logo-icon {
  width: 34px; height: 34px;
  background: linear-gradient(160deg, #00c97a, #00a862);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,180,100,.4);
  flex-shrink: 0;
}
.logo-icon svg { width: 14px; height: auto; color: white; }
.logo-text {
  font-size: .95rem; font-weight: 700; color: var(--text-primary); letter-spacing: -.02em;
}
.nav__links {
  display: flex; align-items: center; gap: 28px;
}
.nav__links a {
  font-size: .875rem; font-weight: 500; color: var(--text-secondary);
  transition: color .2s; position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 2px;
  background: var(--mint); border-radius: 1px; transform: scaleX(0);
  transform-origin: center; transition: transform .3s var(--ease-spring);
}
.nav__links a:hover { color: var(--text-primary); }
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }
.nav__links a.active { color: var(--mint-dark); font-weight: 600; }
.nav__download {
  display: flex; align-items: center; gap: 10px;
  background: var(--text-primary);
  color: #fff;
  font-size: .85rem; font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--r-full);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.nav__download:hover {
  background: var(--mint-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(78,202,139,.4);
}
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 6px; z-index: 10;
}
.nav__hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-primary); border-radius: 2px; transition: all .3s;
}
.nav__mobile {
  display: none; flex-direction: column; padding: 8px 0 20px;
  background: rgba(255,255,255,.96); backdrop-filter: blur(20px);
}
.nav__mobile a {
  padding: 12px 16px; font-size: .95rem; font-weight: 500; color: var(--text-secondary);
  border-radius: var(--r-md); transition: background .2s, color .2s;
}
.nav__mobile a:hover { background: var(--mint-soft); color: var(--mint-dark); }
.nav__mobile .nav__download { margin: 8px 16px 0; justify-content: center; }
.nav__mobile.open { display: flex; }

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 88px 24px 60px;
  position: relative; overflow: hidden;
  background: #fff;
}
/* animated mesh gradient bg */
.hero__bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero__bg-mesh {
  position: absolute; inset: -20%;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(78,202,139,.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(78,202,139,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(163,230,53,.06) 0%, transparent 60%);
  animation: gradient-shift 12s ease-in-out infinite;
}
.hero__bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(78,202,139,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78,202,139,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
}
.hero__container {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--mint-soft); border: 1px solid var(--mint-border);
  color: var(--mint-dark); font-size: .75rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--r-full); margin-bottom: 20px;
}
.eyebrow-dot {
  width: 7px; height: 7px; background: var(--mint); border-radius: 50%;
  animation: pulse-ring 2.2s ease-out infinite;
}
.hero__h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 600; line-height: 1.08; letter-spacing: -.02em;
  color: var(--text-primary); margin-bottom: 20px;
}
.hero__h1 em { font-style: italic; color: var(--mint-dark); }
.hero__h1 .highlight {
  position: relative; display: inline-block;
}
.hero__h1 .highlight::after {
  content: '';
  position: absolute; bottom: 2px; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--mint-light), var(--mint));
  border-radius: 3px; opacity: .4; z-index: -1;
}
.hero__sub {
  font-size: 1.1rem; color: var(--text-secondary);
  line-height: 1.75; max-width: 440px; margin-bottom: 36px;
}
.hero__ctas {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--mint), var(--mint-dark));
  color: #fff; font-size: .95rem; font-weight: 600;
  padding: 15px 30px; border-radius: var(--r-full);
  box-shadow: 0 12px 36px rgba(78,202,139,.4);
  transition: transform .25s var(--ease-spring), box-shadow .25s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 48px rgba(78,202,139,.5); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--text-primary);
  font-size: .95rem; font-weight: 600;
  padding: 15px 28px; border-radius: var(--r-full);
  border: 1.5px solid rgba(0,0,0,.1);
  box-shadow: var(--shadow-card);
  transition: transform .25s var(--ease-spring), box-shadow .25s, border-color .25s;
}
.btn-secondary:hover { transform: translateY(-3px); box-shadow: var(--shadow-float); border-color: var(--mint-border); }
.hero__proof {
  display: flex; align-items: center; gap: 14px;
}
.proof-avatars { display: flex; }
.proof-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2.5px solid #fff;
  background: hsl(var(--h), 50%, 78%);
  color: hsl(var(--h), 50%, 28%);
  font-size: .62rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-left: -10px; flex-shrink: 0;
}
.proof-avatar:first-child { margin-left: 0; }
.proof-text { font-size: .82rem; color: var(--text-secondary); }
.proof-text strong { color: var(--text-primary); }

/* ─── PHONE SCENE ─── */
.hero__scene {
  position: relative; display: flex;
  justify-content: center; align-items: center;
  min-height: 680px;
}
.scene-glow {
  position: absolute; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(78,202,139,.22) 0%, transparent 70%);
  border-radius: 50%; animation: float-y 6s ease-in-out infinite;
}
/* THE PHONE */
.iphone {
  position: relative; z-index: 3;
  width: 340px;
  animation: float-y 6s ease-in-out infinite;
}
.iphone__shell {
  background: #0d0d0d;
  border-radius: 56px;
  padding: 14px;
  box-shadow: var(--shadow-phone),
    inset 0 0 0 1px rgba(255,255,255,.08),
    0 0 0 1px rgba(0,0,0,.5);
  position: relative;
}
/* side buttons */
.iphone__shell::before {
  content: '';
  position: absolute; top: 90px; left: -4px; width: 4px; height: 40px;
  background: #222; border-radius: 2px 0 0 2px;
  box-shadow: 0 54px 0 #222, 0 100px 0 #222;
}
.iphone__shell::after {
  content: '';
  position: absolute; top: 110px; right: -4px; width: 4px; height: 66px;
  background: #222; border-radius: 0 2px 2px 0;
}
.iphone__dynamic-island {
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 114px; height: 32px;
  background: #000; border-radius: 22px;
  z-index: 10;
}
.iphone__screen {
  background: var(--off-white);
  border-radius: 44px;
  overflow: hidden;
  min-height: 620px;
  position: relative;
}

/* ── APP SCREEN CONTENT ── */
.app-screen {
  padding: 58px 22px 24px;
  display: flex; flex-direction: column; gap: 14px;
}
/* header */
.app-topbar {
  display: flex; align-items: flex-start; justify-content: space-between;
}
.app-greeting-sub { font-size: .68rem; color: var(--text-muted); margin-bottom: 2px; }
.app-greeting-name { font-size: 1.2rem; font-weight: 800; color: var(--text-primary); letter-spacing: -.02em; }
.app-menu-btn {
  width: 36px; height: 36px; background: #fff; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card);
}
.app-menu-btn span {
  display: flex; flex-direction: column; gap: 4px;
}
.app-menu-btn span i {
  display: block; width: 14px; height: 2px;
  background: var(--text-primary); border-radius: 1px;
}
.app-menu-btn span i:last-child { width: 10px; }

/* daily goal card */
.daily-card {
  background: linear-gradient(135deg, var(--mint-light) 0%, var(--mint) 50%, var(--mint-dark) 100%);
  border-radius: 22px; padding: 18px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: 0 8px 24px rgba(78,202,139,.35);
  position: relative; overflow: hidden;
}
.daily-card::before {
  content: '';
  position: absolute; top: -20px; right: -20px;
  width: 100px; height: 100px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
}
.daily-card::after {
  content: '';
  position: absolute; bottom: -30px; right: 30px;
  width: 70px; height: 70px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
}
.ring-wrap { position: relative; width: 62px; height: 62px; flex-shrink: 0; }
.ring-wrap svg { width: 62px; height: 62px; transform: rotate(-90deg); }
.ring-bg { fill: none; stroke: rgba(255,255,255,.25); stroke-width: 5; }
.ring-fill {
  fill: none; stroke: #fff; stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 170; stroke-dashoffset: 170;
  animation: dash 2s var(--ease-out) 1.2s forwards;
}
.ring-pct {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 800; color: #fff;
}
.daily-info { flex: 1; z-index: 1; }
.daily-title { font-size: .78rem; font-weight: 800; color: #fff; margin-bottom: 3px; }
.daily-sessions { font-size: .72rem; color: rgba(255,255,255,.85); margin-bottom: 2px; font-weight: 600; }
.daily-msg { font-size: .62rem; color: rgba(255,255,255,.7); }

/* stats row */
.stats-row { display: flex; gap: 10px; }
.stat-card {
  flex: 1; background: #fff; border-radius: 18px;
  padding: 14px 14px 12px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 6px;
}
.stat-card__top { display: flex; align-items: center; gap: 6px; }
.stat-card__label { font-size: .62rem; color: var(--text-muted); font-weight: 500; }
.stat-card__value { font-size: 1.05rem; font-weight: 800; color: var(--text-primary); }
.fire-icon { font-size: .9rem; }

/* mini calendar */
.mini-cal { background: #fff; border-radius: 20px; padding: 14px; box-shadow: var(--shadow-card); }
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.cal-title { font-size: .8rem; font-weight: 800; color: var(--text-primary); }
.cal-month { display: flex; align-items: center; gap: 8px; font-size: .65rem; color: var(--text-secondary); font-weight: 600; }
.cal-nav { font-size: .7rem; color: var(--mint-dark); cursor: pointer; padding: 0 2px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-day-label { font-size: .55rem; color: var(--text-muted); text-align: center; font-weight: 600; padding: 2px 0; }
.cal-day {
  aspect-ratio: 1; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .58rem; font-weight: 600; color: var(--text-muted); cursor: pointer;
  transition: background .15s;
}
.cal-day--done { background: var(--mint); color: #fff; }
.cal-day--today { background: transparent; color: var(--mint-dark); border: 1.5px solid var(--mint); font-weight: 800; }
.cal-day--prev { color: var(--text-muted); opacity: .4; }

/* bottom CTA */
.app-cta-btn {
  background: linear-gradient(135deg, var(--mint-light), var(--mint-dark));
  border-radius: 18px; padding: 13px;
  text-align: center; font-size: .75rem; font-weight: 800;
  color: #fff; letter-spacing: .01em;
  box-shadow: 0 6px 20px rgba(78,202,139,.4);
}

/* ── FLOATING UI CHIPS ── */
.chip {
  position: absolute;
  background: #fff;
  border-radius: 18px;
  padding: 10px 14px;
  box-shadow: var(--shadow-float);
  display: flex; align-items: center; gap: 10px;
  font-size: .78rem; z-index: 10;
}
.chip__icon { font-size: 1.3rem; flex-shrink: 0; }
.chip__body { display: flex; flex-direction: column; gap: 1px; }
.chip__title { font-size: .78rem; font-weight: 700; color: var(--text-primary); }
.chip__sub   { font-size: .65rem; color: var(--text-muted); }
.chip--streak {
  top: 10%; left: -80px;
  --r: -4deg;
  animation: float-y-sm 5s ease-in-out infinite;
}
.chip--badge {
  bottom: 20%; right: -72px;
  --r: 3deg;
  animation: float-y-sm 6.5s ease-in-out infinite .8s;
}
.chip--reminder {
  top: 55%; left: -72px;
  --r: -2deg;
  animation: float-y-sm 5.8s ease-in-out infinite .4s;
}

/* ═══════════════════════════════
   FEATURES TICKER
═══════════════════════════════ */
.ticker {
  overflow: hidden; white-space: nowrap;
  padding: 16px 0;
  background: var(--text-primary);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.ticker__track {
  display: inline-flex; gap: 0;
  animation: ticker 30s linear infinite;
}
.ticker__item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 28px; font-size: .8rem; font-weight: 600;
  color: rgba(255,255,255,.55); letter-spacing: .04em; text-transform: uppercase;
}
.ticker__item span { font-size: 1rem; }
.ticker__dot { color: var(--mint); font-size: .5rem; }

/* ═══════════════════════════════
   FEATURES SECTION
═══════════════════════════════ */
.features { padding: 120px 24px; background: #fff; }
.features__container { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--mint-soft); border: 1px solid var(--mint-border);
  color: var(--mint-dark); font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: var(--r-full); margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600; line-height: 1.15; color: var(--text-primary); margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--mint-dark); }
.section-sub { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.7; max-width: 520px; }

/* bento grid */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; gap: 16px; margin-top: 64px; }
.bento-card {
  background: var(--off-white);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--r-xl); padding: 32px;
  transition: transform .35s var(--ease-out), box-shadow .35s, border-color .35s;
  overflow: hidden; position: relative;
}
.bento-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-float); border-color: var(--mint-border); }
.bento-card--wide { grid-column: span 2; }
.bento-card--tall { grid-row: span 2; }
.bento-card--accent {
  background: linear-gradient(135deg, var(--mint-dark), #1a5c3a);
  border: none; color: #fff;
}
.bento-card--dark {
  background: var(--text-primary); border: none;
}

.bento-icon {
  width: 52px; height: 52px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.4rem;
}
.bento-icon--green  { background: var(--mint-soft); }
.bento-icon--white  { background: rgba(255,255,255,.15); }
.bento-icon--dark   { background: rgba(255,255,255,.06); }

.bento-card h3 {
  font-size: 1.1rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 8px; line-height: 1.3;
}
.bento-card--accent h3, .bento-card--dark h3 { color: #fff; }
.bento-card p { font-size: .875rem; color: var(--text-secondary); line-height: 1.7; }
.bento-card--accent p { color: rgba(255,255,255,.7); }
.bento-card--dark p   { color: rgba(255,255,255,.5); }

/* streak widget inside card */
.streak-widget {
  margin-top: 24px; display: flex; gap: 6px; align-items: flex-end;
}
.streak-bar-wrap { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.streak-bar {
  width: 28px; border-radius: 8px 8px 4px 4px;
  background: var(--mint-soft); transition: height .3s;
}
.streak-bar.done { background: linear-gradient(180deg, var(--mint-light), var(--mint-dark)); }
.streak-day { font-size: .55rem; color: var(--text-muted); font-weight: 600; }

/* progress ring in card */
.ring-card-wrap { margin-top: 24px; display: flex; align-items: center; gap: 20px; }
.ring-card-svg { width: 80px; height: 80px; }
.ring-card-bg { fill: none; stroke: var(--mint-soft); stroke-width: 8; }
.ring-card-fill {
  fill: none; stroke: url(#ringGrad); stroke-width: 8;
  stroke-linecap: round; stroke-dasharray: 220; stroke-dashoffset: 80;
}
.ring-card-label { font-size: .7rem; color: var(--text-muted); }
.ring-card-value { font-size: 1.4rem; font-weight: 800; color: var(--text-primary); margin-bottom: 2px; }

/* notification preview */
.notif-preview {
  margin-top: 20px;
  background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
  border-radius: 16px; padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  border: 1px solid rgba(255,255,255,.15);
}
.notif-app-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--mint-light), var(--mint-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.notif-body { flex: 1; }
.notif-title  { font-size: .72rem; font-weight: 700; color: #fff; }
.notif-msg    { font-size: .65rem; color: rgba(255,255,255,.65); margin-top: 2px; }
.notif-time   { font-size: .6rem; color: rgba(255,255,255,.4); }

/* ═══════════════════════════════
   HOW IT WORKS
═══════════════════════════════ */
.how {
  padding: 120px 24px;
  background: linear-gradient(180deg, var(--off-white) 0%, #fff 100%);
}
.how__container { max-width: 1100px; margin: 0 auto; }
.how__header { text-align: center; margin-bottom: 80px; }
.how__header .section-sub { margin: 0 auto; }
.how__steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  position: relative;
}
.how__steps::before {
  content: '';
  position: absolute; top: 52px; left: calc(16.67% + 28px); right: calc(16.67% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--mint), var(--mint-light), var(--mint));
  border-radius: 1px;
}
.how__step { text-align: center; padding: 0 24px; }
.step-num-wrap {
  width: 60px; height: 60px; border-radius: 50%;
  background: #fff; border: 2px solid var(--mint-border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; position: relative; z-index: 1;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.how__step:hover .step-num-wrap {
  background: var(--mint); border-color: var(--mint);
  box-shadow: 0 0 0 6px rgba(78,202,139,.2);
}
.how__step:hover .step-num-wrap .step-num { color: #fff; }
.step-num {
  font-family: var(--font-serif); font-size: 1.3rem; font-weight: 600;
  color: var(--mint-dark);
}
.how__step h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.how__step p { font-size: .875rem; color: var(--text-secondary); line-height: 1.7; }
.step-icon-row {
  font-size: 1.8rem; margin-bottom: 14px;
}

/* ═══════════════════════════════
   STATS BAR
═══════════════════════════════ */
.stats-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--mint-dark) 0%, #0f4a2a 100%);
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  border-radius: 50%;
}
.stats-section::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 70%);
  border-radius: 50%;
}
.stats-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative; z-index: 1;
}
.stat-block { text-align: center; padding: 20px; position: relative; }
.stat-block + .stat-block::before {
  content: '';
  position: absolute; top: 20%; left: 0; bottom: 20%;
  width: 1px; background: rgba(255,255,255,.15);
}
.stat-val {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600; color: #fff; line-height: 1;
  margin-bottom: 8px;
}
.stat-sup { font-size: .6em; vertical-align: super; font-weight: 400; opacity: .7; }
.stat-lbl { font-size: .8rem; color: rgba(255,255,255,.55); letter-spacing: .04em; text-transform: uppercase; font-weight: 500; }

/* ═══════════════════════════════
   TESTIMONIALS
═══════════════════════════════ */
.reviews { padding: 120px 24px; background: #fff; }
.reviews__container { max-width: 1200px; margin: 0 auto; }
.reviews__header { text-align: center; margin-bottom: 64px; }
.reviews__header .section-sub { margin: 0 auto; }
.reviews__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.review-card {
  background: var(--off-white); border: 1px solid rgba(0,0,0,.05);
  border-radius: var(--r-xl); padding: 28px;
  transition: transform .3s var(--ease-out), box-shadow .3s;
  position: relative;
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-float); }
.review-card--hero {
  background: linear-gradient(160deg, var(--mint-dark) 0%, #0d3d22 100%);
  border: none; grid-column: span 1;
}
.review-stars { font-size: .85rem; color: #f59e0b; letter-spacing: .1em; margin-bottom: 14px; }
.review-card--hero .review-stars { color: rgba(255,255,255,.6); }
.review-quote { font-size: .9rem; color: var(--text-secondary); line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.review-card--hero .review-quote { color: rgba(255,255,255,.8); }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: hsl(var(--h), 45%, 80%);
  color: hsl(var(--h), 45%, 30%);
  font-size: .72rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.review-name { font-size: .875rem; font-weight: 700; color: var(--text-primary); }
.review-card--hero .review-name { color: #fff; }
.review-role { font-size: .75rem; color: var(--text-muted); }
.review-card--hero .review-role { color: rgba(255,255,255,.5); }

/* ═══════════════════════════════
   DOWNLOAD / CTA
═══════════════════════════════ */
.cta-section {
  padding: 120px 24px;
  background: var(--text-primary);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(78,202,139,.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 30%, rgba(78,202,139,.06) 0%, transparent 60%);
}
.cta-inner {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.cta-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(78,202,139,.12); border: 1px solid rgba(78,202,139,.25);
  color: var(--mint); font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: var(--r-full); margin-bottom: 16px;
}
.cta-h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600; line-height: 1.12; color: #fff; margin-bottom: 16px;
}
.cta-h2 em { font-style: italic; color: var(--mint); }
.cta-sub { font-size: 1rem; color: rgba(255,255,255,.5); line-height: 1.7; max-width: 400px; margin-bottom: 36px; }
.store-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.store-btn {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg); padding: 14px 22px;
  transition: background .2s, border-color .2s, transform .2s;
  min-width: 158px;
}
.store-btn:hover {
  background: rgba(255,255,255,.1); border-color: rgba(78,202,139,.4);
  transform: translateY(-2px);
}
.store-btn svg { width: 26px; height: 26px; color: #fff; flex-shrink: 0; }
.store-btn__label small { display: block; font-size: .6rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 2px; }
.store-btn__label strong { font-size: .95rem; color: #fff; }
.cta-note { font-size: .78rem; color: rgba(255,255,255,.3); }

/* CTA visual: stacked screens */
.cta-screens {
  position: relative; height: 340px;
  display: flex; align-items: center; justify-content: center;
}
.cta-phone {
  position: absolute;
  background: var(--off-white); border-radius: 32px;
  overflow: hidden; box-shadow: var(--shadow-phone);
}
.cta-phone--a {
  width: 160px; top: 0; left: 50%; transform: translateX(-90%) rotate(-8deg);
  z-index: 1; opacity: .7;
}
.cta-phone--b {
  width: 175px; top: 20px; left: 50%; transform: translateX(-10%) rotate(5deg);
  z-index: 2; opacity: .7;
}
.cta-phone--main {
  width: 190px; top: 10px; left: 50%; transform: translateX(-50%);
  z-index: 3; opacity: 1;
  box-shadow: 0 30px 80px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.08);
}
.cta-screen-img {
  padding: 12px 10px;
  background: var(--off-white);
}
/* mini versions of app screen inside cta phones */
.mini-app { padding: 10px; }
.mini-goal-card {
  background: linear-gradient(135deg, var(--mint-light), var(--mint-dark));
  border-radius: 14px; padding: 12px; margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
}
.mini-ring { width: 38px; height: 38px; flex-shrink: 0; }
.mini-ring svg { width: 38px; height: 38px; transform: rotate(-90deg); }
.mini-ring-bg { fill: none; stroke: rgba(255,255,255,.25); stroke-width: 4; }
.mini-ring-fill {
  fill: none; stroke: #fff; stroke-width: 4; stroke-linecap: round;
  stroke-dasharray: 100; stroke-dashoffset: 35;
}
.mini-goal-text { display: flex; flex-direction: column; gap: 2px; }
.mini-goal-text strong { font-size: .6rem; color: #fff; font-weight: 800; }
.mini-goal-text span   { font-size: .55rem; color: rgba(255,255,255,.8); }
.mini-stats { display: flex; gap: 6px; }
.mini-stat-card {
  flex: 1; background: #fff; border-radius: 12px; padding: 8px;
  display: flex; flex-direction: column; gap: 3px;
}
.mini-stat-card span:first-child { font-size: .65rem; }
.mini-stat-label { font-size: .5rem; color: var(--text-muted); }
.mini-stat-val   { font-size: .72rem; font-weight: 800; color: var(--text-primary); }

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
.footer {
  background: #0a0e0c; padding: 64px 24px 32px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer__inner { max-width: 1200px; margin: 0 auto; }
.footer__top {
  display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 28px;
}
.footer__brand p {
  font-size: .875rem; color: rgba(255,255,255,.35); line-height: 1.75;
  margin-top: 12px; max-width: 260px;
}
.footer__brand .logo-text { color: #fff; }
.footer__col h5 {
  font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 16px;
}
.footer__col a {
  display: block; font-size: .875rem; color: rgba(255,255,255,.5);
  padding: 4px 0; transition: color .2s;
}
.footer__col a:hover { color: #fff; }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer__copy { font-size: .78rem; color: rgba(255,255,255,.25); }
.footer__socials { display: flex; gap: 16px; }
.footer__socials a {
  color: rgba(255,255,255,.3); transition: color .2s, transform .2s;
}
.footer__socials a:hover { color: #fff; transform: translateY(-2px); }

/* ─── UTILITIES ─── */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
::selection { background: var(--mint-soft); color: var(--mint-deep); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--mint-border); border-radius: 3px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1080px) {
  .hero__container { grid-template-columns: 1fr; text-align: center; }
  .hero__sub { max-width: 100%; }
  .hero__ctas { justify-content: center; }
  .hero__proof { justify-content: center; }
  .hero__scene { display: none; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-card--wide { grid-column: span 2; }
  .cta-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-sub { max-width: 100%; }
  .store-buttons { justify-content: center; }
  .cta-screens { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links, .nav__download { display: none; }
  .nav__hamburger { display: flex; }
  .bento { grid-template-columns: 1fr; }
  .bento-card--wide { grid-column: span 1; }
  .how__steps { grid-template-columns: 1fr; gap: 40px; }
  .how__steps::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-block + .stat-block::before { display: none; }
  .reviews__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .ticker { display: none; }
}

@media (max-width: 480px) {
  .hero { padding-top: 80px; }
  .hero__h1 { font-size: 2.4rem; }
  .hero__ctas { flex-direction: column; align-items: center; }
  .store-buttons { flex-direction: column; align-items: center; }
  .store-btn { justify-content: center; width: 100%; max-width: 220px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr; }
}
