/* ============================================================
   Daily Grow — Landing Page Styles
   ============================================================ */

:root {
  --forest: #1E7A4A;
  --forest-deep: #0F5C32;
  --forest-darkest: #083D20;
  --mint: #4ABA7A;
  --mint-soft: #A0D4B5;
  --paper: #F7FAF6;
  --paper-warm: #EDF4EC;
  --ink: #0C1710;
  --ink-soft: #3A463E;
  --line: rgba(30, 122, 74, 0.14);
  --card: #FFFFFF;

  --maxw: 1120px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 3px rgba(12, 23, 16, 0.06);
  --shadow-md: 0 12px 30px rgba(12, 23, 16, 0.10);
  --shadow-lg: 0 24px 60px rgba(15, 92, 50, 0.18);

  --font-head: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
  color: var(--ink);
}

p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }

a { color: inherit; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: 24px;
}

/* ---------- Accessibility: focus + reduced motion ---------- */
:focus-visible {
  outline: 3px solid var(--forest);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn--lg { padding: 15px 26px; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--primary { background: var(--forest); color: #fff; }
.btn--primary:hover { background: var(--forest-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--ghost { background: transparent; color: var(--forest-deep); border-color: var(--line); }
.btn--ghost:hover { background: var(--paper-warm); transform: translateY(-2px); }

.btn--outline { background: transparent; color: var(--forest-deep); border-color: var(--forest); }
.btn--outline:hover { background: var(--forest); color: #fff; transform: translateY(-2px); }

.btn--white { background: #fff; color: var(--forest-deep); }
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22); }

/* ---------- Brand ---------- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.brand__icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--forest);
  border-radius: 10px;
  flex: none;
}
.brand__text { font-weight: 600; font-size: 1.1rem; letter-spacing: -0.01em; }

/* ============================================================
   1. NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(247, 250, 246, 0.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links > a:not(.btn) {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.18s ease;
}
.nav__links > a:not(.btn):hover { color: var(--forest); }
.nav__cta { padding: 10px 18px; font-size: 0.9rem; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Section scaffolding
   ============================================================ */
.section { padding-block: clamp(64px, 9vw, 110px); }

.section__head {
  max-width: 640px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
}
.section__head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 16px; }
.section__head p { color: var(--ink-soft); font-size: 1.06rem; }
.section__head--light h2 { color: #fff; }
.section__head--light p { color: rgba(255, 255, 255, 0.75); }

.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--paper-warm);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   2. HERO
   ============================================================ */
.hero {
  padding-top: clamp(96px, 14vw, 150px);
  padding-bottom: clamp(48px, 8vw, 90px);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--paper-warm);
  color: var(--forest-deep);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 7px 15px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.eyebrow__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(74, 186, 122, 0.18);
}
.hero__title {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  margin-bottom: 22px;
}
.hero__title em { font-style: italic; color: var(--forest); font-weight: 500; }
.hero__sub {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 30px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 500;
}
.trust li { display: inline-flex; align-items: center; gap: 7px; }
.trust svg { width: 17px; height: 17px; color: var(--mint); flex: none; }

/* ---------- Hero visual + phone ---------- */
.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 480px;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}
.blob--mint {
  width: 320px; height: 320px;
  background: rgba(160, 212, 181, 0.55);
  top: -20px; right: 10px;
}
.blob--green {
  width: 280px; height: 280px;
  background: rgba(74, 186, 122, 0.4);
  bottom: 0; left: 0;
}

.phone {
  position: relative;
  z-index: 1;
  width: 300px;
  max-width: 82vw;
  background: #0D1510;
  border-radius: 38px;
  padding: 12px;
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.phone__notch {
  position: absolute;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 22px;
  background: #0D1510;
  border-radius: 0 0 14px 14px;
  z-index: 3;
}
.phone__screen {
  background: #0F1712;
  border-radius: 28px;
  padding: 16px 14px 12px;
  color: #E8F0EA;
  font-size: 12px;
  overflow: hidden;
}

.app-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.app-user { display: flex; align-items: center; gap: 9px; }
.avatar {
  display: grid; place-items: center;
  width: 34px; height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--forest), var(--mint));
  color: #fff; font-weight: 700; font-size: 12px;
  flex: none;
}
.app-user__hi { color: rgba(232, 240, 234, 0.55); font-size: 10px; }
.app-user__name { font-weight: 600; font-size: 14px; }
.app-pills { display: flex; gap: 6px; }
.pill {
  font-size: 10px; font-weight: 600;
  padding: 4px 8px; border-radius: 100px;
}
.pill--active { background: rgba(74, 186, 122, 0.18); color: var(--mint-soft); }
.pill--streak { background: rgba(255, 170, 60, 0.14); color: #ffcf8a; }

.ai-card {
  background: linear-gradient(135deg, rgba(30, 122, 74, 0.30), rgba(74, 186, 122, 0.12));
  border: 1px solid rgba(74, 186, 122, 0.25);
  border-radius: 14px;
  padding: 11px 12px;
  font-size: 11.5px;
  line-height: 1.5;
  color: #DCEBE1;
  margin-bottom: 11px;
}
.ai-card__label {
  display: block;
  color: var(--mint);
  font-weight: 700;
  font-size: 10px;
  margin-bottom: 4px;
}

.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-bottom: 11px; }
.mini-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 11px;
}
.mini-card__label { font-size: 10px; color: rgba(232, 240, 234, 0.55); margin-bottom: 4px; }
.mini-card__value { font-size: 16px; font-weight: 700; letter-spacing: -0.02em; }
.spark { width: 100%; height: 26px; margin-top: 6px; }
.rings { display: flex; gap: 6px; margin-top: 4px; }

.habits { margin-bottom: 11px; }
.habits__head {
  font-size: 11px; font-weight: 600;
  color: rgba(232, 240, 234, 0.7);
  margin-bottom: 7px;
}
.habit {
  display: flex; align-items: center; gap: 9px;
  padding: 7px 9px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  margin-bottom: 5px;
  font-size: 12px;
}
.habit .check {
  width: 16px; height: 16px;
  border-radius: 6px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  flex: none;
  position: relative;
}
.habit--done .check {
  background: var(--mint);
  border-color: var(--mint);
}
.habit--done .check::after {
  content: "";
  position: absolute;
  left: 5px; top: 2px;
  width: 4px; height: 8px;
  border: solid #0F1712;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.habit--done { color: rgba(232, 240, 234, 0.55); }

/* consistency grid (dark, in phone) */
.app-grid {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  gap: 3px;
  margin-bottom: 12px;
}
.app-grid .cell {
  aspect-ratio: 1;
  border-radius: 2.5px;
  background: rgba(255, 255, 255, 0.06);
}
.app-grid .cell.l1 { background: rgba(74, 186, 122, 0.30); }
.app-grid .cell.l2 { background: rgba(74, 186, 122, 0.55); }
.app-grid .cell.l3 { background: rgba(74, 186, 122, 0.8); }
.app-grid .cell.l4 { background: var(--mint); }

.app-nav {
  display: flex;
  justify-content: space-between;
  padding: 9px 6px 3px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.app-nav__item { font-size: 10px; color: rgba(232, 240, 234, 0.4); font-weight: 500; }
.app-nav__item.is-active { color: var(--mint); }

/* ============================================================
   3. LOGO STRIP
   ============================================================ */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-warm);
}
.strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px;
  flex-wrap: wrap;
}
.strip__label {
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 0.9rem;
  flex: none;
}
.strip__items {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  justify-content: flex-end;
  flex: 1;
}
.strip__items li {
  color: var(--forest);
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.85;
}

/* ============================================================
   4. PILLARS
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pillar {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pillar__icon {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--paper-warm);
  color: var(--forest);
  font-size: 22px;
  margin-bottom: 18px;
}
.pillar__tag {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--forest-deep);
  background: var(--paper-warm);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 100px;
}
.pillar h3 { font-size: 1.35rem; margin-bottom: 10px; }
.pillar p { color: var(--ink-soft); font-size: 0.98rem; }

/* ============================================================
   5. FEATURE SPLIT ROWS
   ============================================================ */
.splits { display: flex; flex-direction: column; gap: clamp(56px, 8vw, 96px); }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.split--reverse .split__text { order: 2; }
.split--reverse .split__mock { order: 1; }
.split__text h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: 16px; }
.split__text p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 22px; }

.checklist { display: flex; flex-direction: column; gap: 12px; }
.checklist li {
  position: relative;
  padding-left: 32px;
  font-weight: 500;
  color: var(--ink);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 1px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--paper-warm);
}
.checklist li::after {
  content: "";
  position: absolute;
  left: 6px; top: 6px;
  width: 6px; height: 10px;
  border: solid var(--forest);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Split mockups */
.split__mock { display: grid; place-items: center; }
.mock {
  width: 100%;
  max-width: 360px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 20px;
}
.mock__head { font-weight: 700; font-family: var(--font-head); margin-bottom: 14px; font-size: 1.05rem; }

/* task mock */
.mock--tasks { position: relative; }
.trow {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 12px;
  border-radius: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  margin-bottom: 9px;
  font-size: 0.92rem;
}
.trow > span:nth-child(2) { flex: 1; }
.trow .check {
  width: 18px; height: 18px;
  border-radius: 6px;
  border: 1.6px solid var(--mint-soft);
  flex: none;
  position: relative;
}
.trow--done .check { background: var(--forest); border-color: var(--forest); }
.trow--done .check::after {
  content: "";
  position: absolute; left: 5px; top: 2px;
  width: 5px; height: 9px;
  border: solid #fff; border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.trow--done > span:nth-child(2) { color: var(--ink-soft); text-decoration: line-through; }
.cat {
  font-size: 0.7rem; font-weight: 600;
  padding: 3px 9px; border-radius: 100px;
}
.cat--work { background: rgba(30,122,74,0.12); color: var(--forest-deep); }
.cat--health { background: rgba(74,186,122,0.15); color: var(--forest-deep); }
.cat--money { background: rgba(255,170,60,0.16); color: #9a6a10; }
.cat--life { background: rgba(120,120,200,0.14); color: #4a4a8a; }
.mic {
  position: absolute;
  right: 16px; bottom: -16px;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--forest);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 20px rgba(30,122,74,0.4);
  cursor: pointer;
  transition: transform 0.18s ease;
}
.mic:hover { transform: translateY(-2px) scale(1.04); }

/* wallet mock */
.mock--wallet { background: linear-gradient(160deg, var(--forest), var(--forest-deep)); border: none; color: #fff; }
.wallet__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.wallet__label { font-size: 0.85rem; opacity: 0.8; }
.wallet__chip { font-size: 0.72rem; font-weight: 600; background: rgba(255,255,255,0.16); padding: 4px 10px; border-radius: 100px; }
.wallet__balance { font-family: var(--font-head); font-size: 2rem; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 18px; }
.txn {
  display: flex; align-items: center; gap: 11px;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.92rem;
}
.txn__icon {
  display: grid; place-items: center;
  width: 30px; height: 30px;
  border-radius: 9px;
  background: rgba(255,255,255,0.14);
  font-size: 14px; flex: none;
}
.txn__icon--in { background: var(--mint); color: var(--forest-darkest); font-weight: 700; }
.txn__name { flex: 1; }
.txn__amt { font-weight: 600; opacity: 0.92; }
.txn__amt--in { color: var(--mint-soft); }

/* grid mock */
.mock--grid { display: flex; flex-direction: column; gap: 16px; }
.streak-card {
  display: flex; align-items: center; gap: 12px;
  background: var(--paper-warm);
  border-radius: 14px;
  padding: 14px 16px;
}
.streak-card__fire { font-size: 26px; }
.streak-card__num { font-family: var(--font-head); font-size: 1.8rem; font-weight: 600; color: var(--forest); }
.streak-card__label { color: var(--ink-soft); font-weight: 500; }
.app-grid--light { grid-template-columns: repeat(14, 1fr); margin: 0; }
.app-grid--light .cell { background: var(--paper-warm); }
.app-grid--light .cell.l1 { background: var(--mint-soft); }
.app-grid--light .cell.l2 { background: rgba(74,186,122,0.65); }
.app-grid--light .cell.l3 { background: var(--mint); }
.app-grid--light .cell.l4 { background: var(--forest); }

/* chat mock */
.chat { display: flex; flex-direction: column; gap: 10px; }
.chat-bubble {
  max-width: 86%;
  padding: 10px 13px;
  border-radius: 15px;
  font-size: 0.88rem;
  line-height: 1.45;
}
.chat-bubble--user {
  align-self: flex-end;
  background: var(--forest);
  color: #fff;
  border-bottom-right-radius: 5px;
}
.chat-bubble--ai {
  align-self: flex-start;
  background: var(--paper-warm);
  color: var(--ink);
  border-bottom-left-radius: 5px;
}

/* split bill mock */
.split-row {
  display: flex; align-items: center; gap: 11px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}
.split-row:first-of-type { border-top: none; }
.split-av {
  display: grid; place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  color: #fff; font-weight: 700; font-size: 0.72rem;
  flex: none;
}
.split-name { flex: 1; }
.split-amt { font-weight: 600; }
.split-status { font-size: 0.7rem; font-weight: 600; padding: 3px 9px; border-radius: 100px; }
.split-status--claimed { background: rgba(74, 186, 122, 0.15); color: var(--forest-deep); }
.split-status--pending { background: var(--paper-warm); color: var(--ink-soft); }
.split-foot {
  margin-top: 14px; padding-top: 13px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  font-weight: 600;
}
.split-foot em { font-style: normal; color: var(--forest); }

/* goal mock */
.goal-name { font-weight: 600; margin-bottom: 3px; }
.goal-sub { color: var(--ink-soft); font-size: 0.85rem; margin-bottom: 16px; }
.goal-bar {
  height: 12px;
  border-radius: 100px;
  background: var(--paper-warm);
  overflow: hidden;
  margin-bottom: 9px;
}
.goal-bar__fill {
  display: block;
  height: 100%; width: 64%;
  background: linear-gradient(90deg, var(--mint), var(--forest));
  border-radius: 100px;
}
.goal-nums {
  display: flex; justify-content: space-between;
  font-size: 0.85rem; color: var(--ink-soft);
  margin-bottom: 18px;
}
.goal-forecast {
  display: flex; align-items: flex-start; gap: 9px;
  background: rgba(74, 186, 122, 0.12);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 13px;
  font-size: 0.86rem;
  color: var(--ink);
  line-height: 1.45;
}
.goal-forecast__dot {
  display: grid; place-items: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff; font-size: 0.7rem; font-weight: 700;
  flex: none; margin-top: 1px;
}

/* task mock chips */
.mock__chips { display: flex; gap: 8px; margin-bottom: 14px; }
.mock__chip {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.72rem; font-weight: 600;
  padding: 5px 11px;
  border-radius: 100px;
  background: var(--paper-warm);
  color: var(--forest-deep);
  border: 1px solid var(--line);
}

/* ---------- Install / PWA section ---------- */
.install {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-sm);
}
.install__icon {
  display: grid; place-items: center;
  width: 72px; height: 72px;
  border-radius: 20px;
  background: var(--forest);
  flex: none;
}
.install__body .tag { margin-bottom: 12px; }
.install__body h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 10px; }
.install__body p { color: var(--ink-soft); max-width: 620px; }

/* ============================================================
   6. STATS BAND
   ============================================================ */
.stats-band {
  position: relative;
  background: var(--forest-darkest);
  overflow: hidden;
  padding-block: clamp(64px, 9vw, 110px);
}
.stats-band__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
}
.stats-band__blob--a { width: 380px; height: 380px; background: rgba(74,186,122,0.28); top: -80px; left: -60px; }
.stats-band__blob--b { width: 320px; height: 320px; background: rgba(30,122,74,0.4); bottom: -100px; right: -40px; }
.stats-band__inner { position: relative; z-index: 1; }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: center;
}
.stat__num {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 12px;
}
.stat__unit { color: var(--mint); }
.stat__desc { color: rgba(255,255,255,0.7); max-width: 240px; margin: 0 auto; }

/* ============================================================
   7. HOW IT WORKS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.step__badge {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--forest);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.3rem; margin-bottom: 10px; }
.step p { color: var(--ink-soft); }

/* ============================================================
   8. PRICING
   ============================================================ */
.pricing-wrap { background: var(--paper-warm); }
.pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}
.price-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.price-card--featured { border: 2px solid var(--forest); box-shadow: var(--shadow-md); }
.price-card__badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--forest);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.price-card__name { font-size: 1.4rem; margin-bottom: 6px; }
.price-card__price {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.price-card__price span { font-family: var(--font-body); font-size: 0.95rem; font-weight: 500; color: var(--ink-soft); }
.price-card__list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; flex: 1; }
.price-card__list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
}
.price-card__list li::before {
  content: "";
  position: absolute; left: 0; top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--paper-warm);
}
.price-card__list li::after {
  content: "";
  position: absolute; left: 5px; top: 9px;
  width: 5px; height: 8px;
  border: solid var(--forest);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Free-during-beta: single centered card */
.beta-plan { max-width: 560px; margin: 0 auto; }
.price-card--beta { text-align: center; }
.price-card--beta .price-card__badge { background: var(--mint); }
.price-card--beta .price-card__list {
  max-width: 430px;
  margin-inline: auto;
  margin-bottom: 20px;
}
.beta-note {
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 22px;
}
.beta-perk {
  margin-top: 14px;
  margin-bottom: 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ============================================================
   9. FINAL CTA
   ============================================================ */
.final-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: 28px;
  padding: clamp(48px, 7vw, 80px) 24px;
  background: linear-gradient(140deg, var(--forest), var(--forest-deep));
  color: #fff;
}
.final-cta__blob {
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(74,186,122,0.4);
  filter: blur(80px);
  top: -120px; right: -60px;
  z-index: 0;
}
.final-cta > * { position: relative; z-index: 1; }
.final-cta h2 { color: #fff; font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 14px; }
.final-cta p { color: rgba(255,255,255,0.82); font-size: 1.1rem; max-width: 480px; margin: 0 auto 28px; }

/* ============================================================
   10. FOOTER
   ============================================================ */
.footer {
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
  padding-block: 56px 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer__tagline { color: var(--ink-soft); font-size: 0.95rem; margin-top: 14px; max-width: 300px; }
.footer__col h4 { font-family: var(--font-body); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); margin-bottom: 14px; }
.footer__col a {
  display: block;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
  padding: 5px 0;
  transition: color 0.18s ease;
}
.footer__col a:hover { color: var(--forest); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.88rem;
  flex-wrap: wrap;
}
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  transition: color 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}
.footer__social a:hover { color: var(--forest); transform: translateY(-2px); border-color: var(--mint-soft); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet (≤900px) */
@media (max-width: 900px) {
  .nav__links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    background: rgba(247, 250, 246, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav__links.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links > a:not(.btn) { padding: 12px 4px; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .nav__cta { margin-top: 10px; text-align: center; }
  .nav__toggle { display: flex; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { order: 1; text-align: center; }
  .hero__visual { order: 2; min-height: auto; margin-top: 8px; }
  .hero__sub { margin-inline: auto; }
  .hero__actions, .trust { justify-content: center; }

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

  .split { grid-template-columns: 1fr; gap: 28px; }
  .split--reverse .split__text,
  .split--reverse .split__mock { order: 0; }
  .split__text { text-align: center; }
  .checklist { align-items: center; }
  .checklist li { text-align: left; }

  .stats { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; max-width: 460px; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }

  .strip__inner { flex-direction: column; align-items: center; justify-content: center; text-align: center; }
  .strip__items { justify-content: center; flex: none; }

  .install { flex-direction: column; text-align: center; }
  .install__body p { margin-inline: auto; }
}

/* Mobile (≤560px) */
@media (max-width: 560px) {
  .container { padding-inline: 18px; }
  .section { padding-block: 56px; }

  .hero { padding-top: 104px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { justify-content: center; text-align: center; }

  .price-card, .pillar, .step, .mock { padding: 22px; }
  .final-cta { padding-inline: 20px; }
}
