/* === Mist & Soil — Marketing Site ============================== */
/* Newsreader + Manrope. Deep green hero, cream body, terracotta.   */
/* ================================================================ */

:root {
  --bg: #f4f1ea;
  --bg-card: #faf6ed;
  --ink: #1f2a20;
  --ink-2: #4a5247;
  --ink-3: #8a8779;
  --line: rgba(31, 42, 32, 0.08);
  --line-2: rgba(31, 42, 32, 0.14);

  --green-deep: #1f3d2c;
  --green-deeper: #13241a;
  --green-soft: #7ba87f;
  --green-pale: #d7e3d4;
  --accent: #c87856;
  --accent-soft: #e8c9b4;
  --butter: #ecd99a;
  --cream: #f6efe0;

  --serif: "Newsreader", "Iowan Old Style", "Charter", Georgia, serif;
  --sans: "Manrope", -apple-system, system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

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

/* shared eyebrow + section heads */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(31, 42, 32, 0.5);
}
.cream-muted { color: rgba(246, 239, 224, 0.7) !important; }

.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-head .eyebrow { margin-bottom: 16px; display: block; }
.sect-h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--ink);
}
.sect-h2 em { font-style: italic; color: var(--green-deep); }
.sect-lede {
  margin: 20px auto 0;
  max-width: 540px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
}

/* ─────────────── NAV ─────────────── */
.ms-nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(246, 239, 224, 0.95);
}
.ms-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.ms-brand span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.ms-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}
.ms-nav-links a {
  text-decoration: none;
  opacity: 0.85;
}
.ms-nav-links a:hover { opacity: 1; }
.ms-nav-cta {
  color: var(--green-deep) !important;
  background: var(--cream);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  opacity: 1 !important;
}

/* ─────────────── HERO ─────────────── */
.hero {
  position: relative;
  background: var(--green-deep);
  color: var(--cream);
  padding: 140px 40px 100px;
  overflow: hidden;
  min-height: 820px;
}
.hero-wash {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 85% 10%, rgba(123, 168, 127, 0.22), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(200, 120, 86, 0.10), transparent 50%);
}
.hero-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(246, 239, 224, 0.10);
  border: 0.5px solid rgba(246, 239, 224, 0.18);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(246, 239, 224, 0.85);
  margin-bottom: 28px;
}
.hero-pill-dot {
  width: 6px; height: 6px;
  border-radius: 3px;
  background: var(--accent);
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--cream);
}
.hero-h1 em { font-style: italic; }
.hero-h1 em:first-of-type { color: var(--accent-soft); }
.hero-lede {
  margin-top: 36px;
  max-width: 480px;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(246, 239, 224, 0.78);
}
.hero-actions {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-cream {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  color: var(--green-deep);
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}
.btn-watch {
  color: rgba(246, 239, 224, 0.85);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-watch-play {
  width: 28px; height: 28px;
  border-radius: 14px;
  background: rgba(246, 239, 224, 0.10);
  border: 0.5px solid rgba(246, 239, 224, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-trust {
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stars {
  display: flex;
  gap: 2px;
  color: var(--butter);
  font-size: 16px;
  line-height: 1;
}
.hero-trust-meta {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(246, 239, 224, 0.7);
}
.hero-trust-meta strong { color: var(--cream); font-weight: 700; }
.hero-trust-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--cream);
}
.hero-trust-sep {
  width: 1px;
  height: 32px;
  background: rgba(246, 239, 224, 0.18);
}

/* hero phone */
.hero-phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-phone-glow {
  position: absolute;
  width: 520px; height: 520px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 168, 127, 0.25), transparent 70%);
  filter: blur(8px);
}
.hero-leaf {
  position: absolute;
  top: 30px; right: 0;
  width: 180px;
  opacity: 0.5;
}
.hero-phone-tilt {
  transform: scale(0.92) rotate(-2deg);
  transform-origin: center;
  position: relative;
}

/* ─────────────── IPHONE MOCKUP ─────────────── */
.iphone {
  width: 390px;
  height: 844px;
  background: #0d0d0d;
  border-radius: 56px;
  padding: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255,255,255,0.06);
  position: relative;
}
.iphone-sm {
  width: 320px;
  height: 692px;
  border-radius: 46px;
  padding: 6px;
}
.iphone-notch {
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 32px;
  background: #0d0d0d;
  border-radius: 20px;
  z-index: 2;
}
.iphone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: 48px;
  overflow: hidden;
  position: relative;
  padding: 56px 20px 0;
  display: flex;
  flex-direction: column;
}
.iphone-sm .iphone-screen { border-radius: 40px; padding: 48px 16px 0; }

/* phone content */
.ph-status {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  padding: 4px 8px 14px;
}
.ph-dots { letter-spacing: 1px; opacity: 0.5; }
.ph-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  padding: 0 4px;
  margin-bottom: 8px;
}
.ph-h {
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  padding: 0 4px;
}
.ph-h em { font-style: italic; color: var(--green-deep); }
.ph-h-sm {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  padding: 0 4px;
}
.ph-h-sm em { font-style: italic; color: var(--green-deep); }

.ph-tag-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 16px 4px 14px;
}
.ph-tag {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
}
.tag-happy { background: var(--green-pale); color: var(--green-deep); }
.tag-warn { background: #f5d9a8; color: #7a4a14; }
.tag-thirsty { background: #f3e2d0; color: #8b4a1f; }

.ph-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 8px 4px 0;
  flex: 1;
}
.ph-card {
  background: var(--bg-card);
  border-radius: 18px;
  border: 0.5px solid var(--line);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 120px;
}
.ph-art {
  height: 70px;
  border-radius: 12px;
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}
.ph-art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.12), transparent 60%);
}
.ph-art.green { background: #1f3d2c url('img/plants/monstera.jpg') center/cover; }
.ph-art.moss { background: #2d4030 url('img/plants/snake.jpg') center/cover; }
.ph-art.sage { background: #4f6b4f url('img/plants/pothos.jpg') center/cover; }
.ph-art.terra { background: #8b4a1f url('img/plants/fern.jpg') center/cover; }
.ph-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}
.ph-meta {
  font-size: 10px;
  color: var(--ink-3);
}

.ph-tabbar {
  display: flex;
  justify-content: space-around;
  padding: 12px 0 22px;
  border-top: 0.5px solid var(--line);
  background: rgba(244, 241, 234, 0.92);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  margin: 8px -20px 0;
}
.ph-tabbar .active { color: var(--green-deep); }

/* phone diag */
.phone-diag, .phone-diag-sm {
  padding: 0 !important;
}
.diag-hero {
  height: 280px;
  background: #8b4a1f url('img/plants/fiddle.jpg') center/cover;
  position: relative;
}
.diag-art {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(31,42,32,0.35)),
    radial-gradient(ellipse at 30% 25%, rgba(255,255,255,0.10), transparent 60%);
}
.diag-conf {
  position: absolute;
  bottom: 12px; left: 16px;
  background: rgba(31, 61, 44, 0.85);
  color: var(--cream);
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
}
.diag-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin: 24px 24px 8px;
}
.diag-name {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 24px;
}
.diag-name em { font-style: italic; color: var(--ink-2); font-size: 22px; }
.diag-body {
  margin: 14px 24px 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-2);
}
.diag-steps {
  margin: 18px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.diag-step {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--bg-card);
  border: 0.5px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
}
.diag-step-num {
  width: 24px; height: 24px;
  border-radius: 12px;
  background: var(--green-deep);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.diag-step-t {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}
.diag-step-s {
  font-size: 10px;
  color: var(--ink-3);
  margin-top: 2px;
}

.diag-art-sm {
  height: 180px;
  background: #8b4a1f url('img/plants/fiddle.jpg') center/cover;
}
.phone-diag-sm .diag-eyebrow { margin-top: 16px; }
.phone-diag-sm .diag-name { font-size: 22px; }
.phone-diag-sm .diag-name em { font-size: 16px; }
.diag-mini-steps {
  margin: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.diag-mini-steps > div {
  background: var(--bg-card);
  border: 0.5px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-2);
}

/* phone timeline */
.tl-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 8px;
  border-bottom: 0.5px solid var(--line);
}
.tl-row:first-of-type { margin-top: 16px; border-top: 0.5px solid var(--line); }
.tl-row.done { opacity: 0.5; }
.tl-row.done .tl-t { text-decoration: line-through; }
.tl-dot {
  width: 12px; height: 12px;
  border-radius: 6px;
  flex-shrink: 0;
}
.tl-dot.moss { background: var(--green-deep); }
.tl-dot.terra { background: var(--accent); }
.tl-dot.done { background: var(--green-soft); }
.tl-t {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.tl-s {
  font-size: 10px;
  color: var(--ink-3);
  margin-top: 1px;
}

/* phone detail */
.det-hero {
  height: 200px;
  margin: 0 -16px;
  background: #1f3d2c url('img/plants/monstera.jpg') center/cover;
  border-radius: 0 0 24px 24px;
}
.det-name {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 18px 8px 14px;
}
.det-name em { font-style: italic; color: var(--ink-2); font-size: 14px; }
.det-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  margin: 0 8px 16px;
}
.det-stats > div {
  background: var(--bg-card);
  border: 0.5px solid var(--line);
  border-radius: 10px;
  padding: 8px;
}
.det-s-l { font-size: 8px; font-weight: 700; color: var(--ink-3); letter-spacing: 0.1em; }
.det-s-v { font-family: var(--serif); font-size: 16px; color: var(--ink); margin-top: 2px; }

.det-water-ring {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: conic-gradient(var(--green-soft) 0% 60%, var(--line-2) 60% 100%);
  margin: 12px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.det-water-ring-inner {
  width: 74px; height: 74px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.det-w-d {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--green-deep);
  line-height: 1;
}
.det-w-l { font-size: 9px; color: var(--ink-3); font-weight: 700; letter-spacing: 0.1em; }

/* phone schedule */
.cal-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 4px;
  margin-top: 12px;
}
.cal-day {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 0.5px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cal-day.today {
  background: var(--green-deep);
  border-color: transparent;
}
.cal-day.today .cal-dow,
.cal-day.today .cal-num { color: var(--cream); }
.cal-dow { font-size: 8px; font-weight: 700; color: var(--ink); letter-spacing: 0.06em; }
.cal-num { font-family: var(--serif); font-size: 16px; color: var(--ink); line-height: 1; }
.cal-t { font-family: var(--serif); font-size: 15px; color: var(--ink); font-weight: 500; }
.cal-s { font-size: 10px; color: var(--ink-3); margin-top: 2px; }

/* ─────────────── PRESS STRIP ─────────────── */
.press {
  background: var(--bg);
  padding: 54px 40px;
  border-top: 1px solid rgba(31, 61, 44, 0.08);
}
.press-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.press-label {
  text-align: center;
  margin-bottom: 28px;
  letter-spacing: 0.18em;
}
.press-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.press-row > div {
  color: rgba(31, 42, 32, 0.55);
  font-size: 22px;
}
.press-serif { font-family: var(--serif); font-weight: 500; }
.press-italic { font-family: var(--serif); font-style: italic; font-weight: 500; }
.press-sans { font-family: var(--sans); font-weight: 600; letter-spacing: -0.01em; }
.press-sans-bold { font-family: var(--sans); font-weight: 800; letter-spacing: -0.01em; }

/* ─────────────── FEATURE HERO ─────────────── */
.feature-hero {
  background: var(--bg-card);
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}
.feature-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feat-h2 {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--ink);
  margin-top: 20px;
}
.feat-h2 em.terra { font-style: italic; color: var(--accent); }
.feat-h2 em { font-style: italic; }
.feat-lede {
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 480px;
}
.feat-bullets {
  list-style: none;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feat-bullets li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feat-check {
  margin-top: 4px;
  width: 22px; height: 22px;
  border-radius: 11px;
  background: var(--green-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feat-b-title { font-weight: 700; font-size: 15px; color: var(--ink); }
.feat-b-body { margin-top: 2px; font-size: 14px; color: var(--ink-2); line-height: 1.5; }
.feat-phone-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}
.feat-phone-glow {
  position: absolute;
  width: 420px; height: 420px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 120, 86, 0.18), transparent 70%);
}
.feat-phone-wrap .iphone { transform: scale(0.92); transform-origin: center; }

/* ─────────────── FEATURE GRID ─────────────── */
.feature-grid-section {
  background: var(--bg);
  padding: 100px 40px;
}
.feature-grid-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feat-card {
  background: var(--bg-card);
  border-radius: 28px;
  padding: 32px;
  border: 0.5px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 400px;
}
.feat-card-art {
  height: 200px;
  border-radius: 18px;
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}
.feat-card-art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 25%, rgba(255,255,255,0.12), transparent 60%);
}
.feat-card-art.snake { background: #2d4030 url('img/plants/snake.jpg') center/cover; }
.feat-card-art.monstera { background: #1f3d2c url('img/plants/monstera.jpg') center/cover; }
.feat-card-art.fern { background: #3a5a3e url('img/plants/fern.jpg') center/cover; }
.feat-card-art.calathea { background: #13241a url('img/plants/calathea.jpg') center/cover; }
.feat-card-h {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--ink);
}
.feat-card-p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
}

/* ─────────────── SCREENSHOTS GALLERY ─────────────── */
.gallery {
  background: var(--green-deep);
  padding: 120px 0 100px;
  overflow: hidden;
  color: var(--cream);
}
.gallery-head {
  max-width: 1280px;
  margin: 0 auto 60px;
  padding: 0 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.gallery-h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--cream);
  max-width: 720px;
  margin-top: 16px;
}
.gallery-h2 em { font-style: italic; }
.gallery-lede {
  max-width: 360px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(246, 239, 224, 0.7);
}
.phone-strip {
  display: flex;
  gap: 32px;
  padding: 20px 80px 60px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.phone-strip::-webkit-scrollbar { display: none; }
.phone-strip-item {
  flex-shrink: 0;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.phone-strip-item .iphone { transform: scale(0.88); transform-origin: top center; margin-bottom: -90px; }
.phone-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(246, 239, 224, 0.7);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─────────────── HOW IT WORKS ─────────────── */
.how {
  background: var(--bg-card);
  padding: 120px 40px;
}
.how-inner { max-width: 1280px; margin: 0 auto; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.how-step {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.how-art {
  height: 280px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.how-art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.10), transparent 70%);
}
.how-art.pothos { background: #2d4030 url('img/plants/pothos.jpg') center/cover; }
.how-art.aloe { background: #4a6b3e url('img/plants/aloe.jpg') center/cover; }
.how-art.fiddle { background: #1f3d2c url('img/plants/fiddle.jpg') center/cover; }
.how-num {
  position: absolute;
  top: 20px; left: 20px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 36px;
  color: var(--cream);
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  z-index: 1;
}
.how-h {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--ink);
}
.how-p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
}

/* ─────────────── TESTIMONIALS ─────────────── */
.testimonials {
  background: var(--bg-card);
  padding: 120px 40px;
}
.testimonials-inner { max-width: 1280px; margin: 0 auto; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--bg);
  border-radius: 24px;
  padding: 36px 32px;
  border: 0.5px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-height: 360px;
}
.testi-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 60px;
  line-height: 0.4;
  color: var(--accent);
}
.testi-p {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.45;
  color: var(--ink);
  flex: 1;
}
.testi-by {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-av {
  width: 44px; height: 44px;
  border-radius: 22px;
  flex-shrink: 0;
  background: var(--green-deep);
}
.testi-av.monstera { background: #1f3d2c url('img/plants/monstera.jpg') center/cover; }
.testi-av.fiddle { background: #2d4030 url('img/plants/fiddle.jpg') center/cover; }
.testi-av.calathea { background: #13241a url('img/plants/calathea.jpg') center/cover; }
.testi-name { font-weight: 700; font-size: 14px; color: var(--ink); }
.testi-role { margin-top: 2px; font-size: 13px; color: var(--ink-3); }

/* ─────────────── STATS ─────────────── */
.stats {
  background: var(--bg);
  padding: 80px 40px;
  border-top: 1px solid rgba(31, 61, 44, 0.08);
}
.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat { text-align: center; }
.stat-n {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  color: var(--green-deep);
  font-weight: 400;
}
.stat-l {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(31, 42, 32, 0.55);
}

/* ─────────────── PRICING ─────────────── */
.pricing {
  background: var(--bg);
  padding: 120px 40px;
}
.pricing-inner { max-width: 1180px; margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.pricing-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 820px;
  margin: 0 auto;
}
.tier-per {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
  color: inherit;
  opacity: 0.55;
  margin-left: 4px;
}
.pricing-fine {
  margin: 32px auto 0;
  max-width: 640px;
  text-align: center;
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.55;
}
.tier-btn {
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.tier {
  background: var(--bg-card);
  color: var(--ink);
  border-radius: 28px;
  padding: 36px 32px;
  border: 0.5px solid var(--line);
  display: flex;
  flex-direction: column;
  position: relative;
}
.tier-featured {
  background: var(--green-deep);
  color: var(--cream);
  border-color: transparent;
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(31, 61, 44, 0.22);
}
.tier-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--cream);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tier-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  font-weight: 500;
}
.tier-tag {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
}
.tier-featured .tier-tag { color: rgba(246, 239, 224, 0.7); }
.tier-price {
  margin-top: 28px;
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}
.tier-sub {
  margin-top: 4px;
  font-size: 13px;
  color: var(--ink-3);
}
.tier-featured .tier-sub { color: rgba(246, 239, 224, 0.7); }
.tier-feats {
  list-style: none;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.tier-feats li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
}
.tier-check {
  margin-top: 5px;
  width: 14px; height: 10px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f3d2c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
}
.tier-check.sage {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237ba87f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}
.tier-btn {
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: 0;
}
.tier-btn-ghost {
  background: transparent;
  border: 1px solid rgba(31, 42, 32, 0.18);
  color: var(--ink);
}
.tier-featured .tier-btn-ghost {
  border: 1px solid rgba(246, 239, 224, 0.3);
  color: var(--cream);
}
.tier-btn-primary {
  background: var(--accent);
  color: var(--cream);
}

/* ─────────────── FAQ ─────────────── */
.faq {
  background: var(--bg-card);
  padding: 120px 40px;
}
.faq-inner { max-width: 880px; margin: 0 auto; }
.faq-list {
  background: var(--bg);
  border-radius: 24px;
  border: 0.5px solid var(--line);
  overflow: hidden;
}
.faq-item {
  border-bottom: 0.5px solid var(--line);
}
.faq-item:last-child { border-bottom: 0; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus {
  width: 28px; height: 28px;
  border-radius: 14px;
  background: var(--green-deep);
  flex-shrink: 0;
  position: relative;
  transition: transform 0.2s;
}
.faq-plus::before,
.faq-plus::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--cream);
  border-radius: 1px;
}
.faq-plus::before {
  width: 12px; height: 2px;
  transform: translate(-50%, -50%);
}
.faq-plus::after {
  width: 2px; height: 12px;
  transform: translate(-50%, -50%);
}
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-a {
  padding: 0 28px 28px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 720px;
}

/* ─────────────── DOWNLOAD CTA ─────────────── */
.cta {
  background: var(--green-deep);
  color: var(--cream);
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}
.cta-wash {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(200, 120, 86, 0.18), transparent 60%);
}
.cta-inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.cta-h {
  font-family: var(--serif);
  font-size: clamp(48px, 5.5vw, 84px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.025em;
}
.cta-h em { font-style: italic; color: var(--accent-soft); }
.cta-p {
  margin: 28px auto 0;
  max-width: 560px;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(246, 239, 224, 0.78);
}
.cta-actions {
  margin-top: 44px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.appstore-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--cream);
  color: var(--green-deep);
  padding: 14px 24px 14px 22px;
  border-radius: 14px;
  text-decoration: none;
}
.appstore-pre { font-size: 11px; opacity: 0.7; font-weight: 500; line-height: 1.1; }
.appstore-name { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.1; }
.ipad-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  text-decoration: none;
  border: 1px solid rgba(246, 239, 224, 0.3);
  padding: 14px 22px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
}
.cta-android {
  margin-top: 28px;
  font-size: 13px;
  color: rgba(246, 239, 224, 0.55);
}

/* ─────────────── FOOTER ─────────────── */
.footer {
  background: var(--green-deeper);
  color: var(--cream);
  padding: 80px 40px 36px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand-row span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  font-weight: 500;
}
.footer-brand p {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(246, 239, 224, 0.6);
  max-width: 360px;
}
.footer-h {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 239, 224, 0.5);
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  color: rgba(246, 239, 224, 0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  max-width: 1280px;
  margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(246, 239, 224, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(246, 239, 224, 0.5);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  color: inherit;
  text-decoration: none;
}

/* ─────────────── LEGAL PAGES ─────────────── */
.legal-page { background: var(--bg); }
.legal-nav {
  position: relative;
  color: var(--ink);
  padding: 20px 40px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-card);
}
.legal-nav .ms-nav-cta {
  color: var(--cream) !important;
  background: var(--green-deep);
}
.legal {
  padding: 80px 40px 100px;
}
.legal-inner {
  max-width: 760px;
  margin: 0 auto;
}
.legal-inner .eyebrow {
  display: block;
  margin-bottom: 14px;
}
.legal-h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--ink);
}
.legal-h1 em { font-style: italic; color: var(--green-deep); }
.legal-updated {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.legal section {
  margin-top: 44px;
}
.legal h2 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 14px;
}
.legal p,
.legal ul {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  font-family: var(--sans);
}
.legal p + p { margin-top: 14px; }
.legal ul {
  padding-left: 22px;
  margin-top: 12px;
}
.legal li { margin-bottom: 8px; }
.legal li::marker { color: var(--green-soft); }
.legal a {
  color: var(--green-deep);
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 3px;
}
.legal a:hover { color: var(--accent); }
.legal strong { color: var(--ink); font-weight: 700; }

/* ─────────────── RESPONSIVE ─────────────── */
@media (max-width: 1024px) {
  .ms-nav { padding: 20px 24px; }
  .ms-nav-links { gap: 20px; font-size: 13px; }
  .hero { padding: 120px 24px 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-phone-wrap { order: -1; }
  .feature-hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; gap: 32px; }
  .testi-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .tier-featured { transform: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .ms-nav-links a:not(.ms-nav-cta) { display: none; }
  .hero { padding: 100px 20px 60px; min-height: auto; }
  .hero-trust { gap: 16px; }
  .hero-trust-sep { display: none; }
  .feature-hero, .feature-grid-section, .how, .testimonials, .pricing, .faq, .cta {
    padding-left: 20px; padding-right: 20px;
  }
  .feature-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .gallery-head { padding: 0 20px; }
  .phone-strip { padding: 20px 20px 60px; }
  .iphone { width: 320px; height: 692px; border-radius: 46px; padding: 6px; }
  .iphone .iphone-screen { border-radius: 40px; padding: 48px 16px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
