/* Tendlet marketing site
 * Palette + typography mirror the iOS app so the website and the
 * app feel like the same surface. Tokens come from
 * branding/tendlet_new_brand_assets/manifest.json.
 *
 * Architecture: single static stylesheet, mobile-first, no
 * framework. Layout uses CSS Grid + clamp() for typographic and
 * spatial fluidity. The phone-mockup chassis is shared across the
 * hero and three scenes so palette changes propagate in one place.
 */

:root {
  --cream:        #EEE8DA;
  --cream-soft:   #F7F2E8;
  --paper:        #FBF7EA;
  --forest:       #3B5A3A;
  --forest-deep:  #2D4A2C;
  --terracotta:   #C97B5A;
  --gold:         #D9A86A;
  --ink:          #1F1B14;
  --ink-2:        #5C544A;
  --ink-3:        #8A8377;
  --hair:         rgba(60, 50, 30, 0.14);
  --hair-soft:    rgba(60, 50, 30, 0.07);

  --serif:  "EB Garamond", Georgia, "Times New Roman", serif;
  --sans:   "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", system-ui, sans-serif;
  --mono:   "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --radius: 18px;
  --shadow-sm: 0 1px 2px rgba(20, 20, 0, 0.04);
  --shadow:    0 1px 2px rgba(20, 20, 0, 0.04), 0 8px 32px rgba(20, 20, 0, 0.06);
  --shadow-lg: 0 1px 2px rgba(20, 20, 0, 0.05), 0 20px 50px rgba(40, 30, 10, 0.10), 0 60px 120px rgba(40, 30, 10, 0.08);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }
/* Sticky nav is ~68px tall — push anchor-link landings down so the
   section heading isn't hidden under it. */
html { scroll-padding-top: 80px; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
  overflow-x: hidden;
}

/* Paper grain — sits over everything at very low opacity to give
   the "field guide" promise some texture. Pointer-events off so it
   doesn't intercept clicks. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("/images/noise.svg");
  background-size: 240px 240px;
  opacity: 0.18;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}
main, .foot { position: relative; z-index: 2; }
/* Nav sits in its own layer above the page — otherwise absolutely-
   positioned scene decorations (e.g. .scene__portrait at z:2) can
   render over the sticky nav once scrolled into view and intercept
   header clicks. Sticky+top declared in the .nav rule below. */
.nav { z-index: 50; }

a {
  color: var(--forest);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .15s ease, color .15s ease;
}
a:hover { border-bottom-color: var(--forest); }

img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--gold); color: var(--ink); }

.accent-pet {
  color: var(--terracotta);
}
.accent-plant {
  color: var(--forest);
}

/* ─────────── Nav ─────────── */

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 56px);
  position: sticky;
  top: 0;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--hair);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  border-bottom: none;
  margin-right: auto;
}
.nav__brand img { border-radius: 7px; }

.nav__links {
  display: flex;
  gap: 22px;
  font-size: 14px;
}
.nav__links a { color: var(--ink-2); }
.nav__links a:hover { color: var(--forest); border-bottom-color: var(--forest); }

.nav__drawer { display: none; position: relative; }
.nav__menu-btn {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--hair);
  background: color-mix(in srgb, var(--paper) 70%, transparent);
  color: var(--ink-2);
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.nav__menu-btn::-webkit-details-marker { display: none; }
.nav__menu-btn:hover { color: var(--forest); background: var(--paper); }
.nav__drawer-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid var(--hair);
  background: color-mix(in srgb, var(--cream-soft) 94%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 60;
}
.nav__drawer-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink-2);
  font-size: 14px;
  border-bottom: none;
}
.nav__drawer-panel a:hover {
  background: color-mix(in srgb, var(--forest) 8%, transparent);
  color: var(--forest);
  border-bottom: none;
}

.nav__meta {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
}

@media (max-width: 720px) {
  .nav__links--desktop { display: none; }
  .nav__drawer { display: block; }
  .nav__meta { display: none; }
}

/* ─────────── Hero ─────────── */

.hero {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: clamp(20px, 5vw, 80px);
  align-items: center;
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 56px) clamp(36px, 6vw, 80px);
  max-width: 1280px;
  margin: 0 auto;
}

/* Above-the-fold sprig — half-size terracotta-ink echo of the
   story-divider ornament. Lifts the field-guide identity into the
   first 600px so it isn't deferred until the story section. */
.hero__sprig {
  display: block;
  width: 56px;
  height: 24px;
  color: var(--terracotta);
  opacity: 0.75;
  margin: 0 0 16px;
}

.hero__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 22px;
}

.hero__copy h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(44px, 5.4vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0 0 26px;
  color: var(--ink);
}
.hero__copy h1 em {
  font-style: italic;
  color: var(--forest);
  font-weight: 500;
}
.hero__copy h1 em.accent-pet,
.scene__copy h2 em.accent-pet {
  color: var(--terracotta);
}
.hero__copy h1 em.accent-plant,
.scene__copy h2 em.accent-plant {
  color: var(--forest);
}
.hero__line {
  display: block;
}

.hero__lede {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 32px;
  max-width: 520px;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* Trust bar — promotes the "no analytics / no ads / iCloud-only"
   posture above the fold. The single biggest differentiator in
   this space, was buried in the footer before. */
.trustbar {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  max-width: 420px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink-2);
  line-height: 1.35;
}
.trustbar li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.trustbar__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--forest);
  opacity: 0.55;
  flex-shrink: 0;
}
.trustbar__dot--gold {
  background: var(--gold);
  opacity: 1;
}
.trustbar li:first-child {
  color: var(--ink-2);
  font-weight: 600;
}

/* Hero phone + halo. The halo is a single soft watercolour blob
   behind the phone, in muted gold, to give the cream-on-cream
   hero some depth. */
.hero__art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
}
/* Duotone halo — gold lobe centred behind the phone, terracotta
   wash drifting top-left, forest tint creeping in from bottom-right.
   Three offset radial gradients = depth without a stock-photo
   gradient feel. */
.hero__halo {
  position: absolute;
  inset: -12% -5% -8% -5%;
  background:
    radial-gradient(40% 38% at 30% 28%,
      rgba(201, 123, 90, 0.22) 0%,
      rgba(201, 123, 90, 0) 70%),
    radial-gradient(50% 45% at 72% 70%,
      rgba(59, 90, 58, 0.10) 0%,
      rgba(59, 90, 58, 0) 70%),
    radial-gradient(55% 50% at 50% 50%,
      rgba(217, 168, 106, 0.30) 0%,
      rgba(217, 168, 106, 0.08) 45%,
      rgba(217, 168, 106, 0) 75%);
  filter: blur(6px);
  pointer-events: none;
}

/* Floating UI fragments around the hero phone. Each is positioned
   absolutely against `.hero__art`, slightly rotated, with a soft
   shadow so the cream-on-cream hero gets layered depth without
   relying on a single banner image. */
.hero__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 14px;
  padding: 9px 14px;
  box-shadow:
    0 1px 2px rgba(20, 20, 0, 0.04),
    0 16px 32px rgba(20, 20, 0, 0.10);
  font-family: var(--sans);
  z-index: 1;
}
.hero__float-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(59, 90, 58, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
/* Real species illustration as a floating-fragment avatar — used
   for the Monstera card in the hero. Sits in a soft sage-tinted
   well so the white-bg PNG doesn't punch out of the warm hero. */
.hero__float-portrait {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(59, 90, 58, 0.08);
  padding: 2px;
  object-fit: contain;
}
.hero__float-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__float-spark {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 14px;
}
.hero__float-name {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.hero__float-sub {
  font-size: 10.5px;
  color: var(--ink-3);
  margin-top: 1px;
}
.hero__float--folk {
  top: 7%;
  left: -6%;
  transform: rotate(-4deg);
}
.hero__float--task {
  bottom: 14%;
  right: -4%;
  transform: rotate(3deg);
}
.hero__float--badge {
  top: 50%;
  right: -2%;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: var(--terracotta);
  padding: 7px 12px;
  transform: rotate(5deg);
  transition: opacity .3s ease, transform .3s ease;
}
/* At narrower desktop widths the badge no longer fits clear of the
   phone — fade it out gracefully instead of hard-cutting at the
   breakpoint. */
@media (max-width: 1024px) {
  .hero__float--badge {
    opacity: 0;
    transform: rotate(5deg) translateX(20px);
    pointer-events: none;
  }
}
@media (max-width: 880px) {
  .hero__float { display: none; }
}

@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; padding-top: 36px; gap: 36px; }
  .hero__art { order: -1; min-height: unset; }
}

/* ─────────── Learning thesis ─────────── */

.learning {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(44px, 7vw, 88px) clamp(20px, 5vw, 56px);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.learning__copy {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(24px, 4vw, 40px);
}
.learning__copy .kicker {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}
.learning__copy h2 {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 500;
  line-height: 1.06;
  margin: 0;
  color: var(--ink);
}
.learning__copy p {
  margin: 0;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.65;
}
.learning__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.learning__item {
  position: relative;
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--hair);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}
.learning__item--gold {
  background: color-mix(in srgb, var(--gold) 17%, var(--paper));
  border-color: color-mix(in srgb, var(--gold) 34%, transparent);
}
.learning__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin-bottom: 34px;
  background: color-mix(in srgb, var(--forest) 12%, transparent);
  color: var(--forest);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.learning__item--gold .learning__icon {
  background: rgba(255, 255, 255, 0.42);
  color: var(--terracotta);
}
.learning__item h3 {
  font-size: 20px;
  line-height: 1.2;
  margin: 0 0 8px;
  color: var(--ink);
}
.learning__item p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.62;
}

@media (max-width: 880px) {
  .learning__copy {
    display: block;
  }
  .learning__copy .kicker {
    margin-bottom: 12px;
  }
  .learning__copy h2 {
    font-size: 34px;
    margin-bottom: 14px;
  }
  .learning__grid {
    grid-template-columns: 1fr;
  }
  .learning__item {
    min-height: unset;
  }
  .learning__icon {
    margin-bottom: 20px;
  }
}

/* ─────────── App Store badge ─────────── */

.appstore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  border: none;
  font-family: var(--sans);
  text-decoration: none;
  line-height: 1;
  transition: transform .15s ease, background .15s ease;
}
.appstore:hover {
  background: #000;
  transform: translateY(-1px);
  border-bottom-color: transparent;
}
.appstore svg { flex-shrink: 0; }
.appstore__small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.03em;
  opacity: 0.85;
  margin-bottom: 2px;
  text-align: left;
}
.appstore__large {
  display: block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-align: left;
}
/* Ghost variant for pre-launch: signals "coming" instead of
   pretending to be a live download. */
.appstore--ghost { background: var(--forest); }
.appstore--ghost:hover { background: var(--forest-deep); }

.textlink {
  color: var(--ink-2);
  font-size: 14px;
}
.textlink:hover { color: var(--forest); border-bottom-color: var(--forest); }

/* ─────────── Kicker (shared) ─────────── */

.kicker {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--terracotta);
  margin: 0 0 14px;
}
/* Chapter numeral that precedes each scene kicker (i. / ii. / iii.)
   — gives each scene a unique visual anchor at clamp(72–140px)
   intervals so the eye gets a foothold during long scrolls,
   echoing the field-guide trope of numbered chapters. Serif
   italic in the kicker's mono caps reads as a hand-set chapter
   mark stamped before the printed line. */
.kicker__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold);
  margin-right: 10px;
  vertical-align: -3px;
}

/* ─────────── Phone mockup chassis ─────────── */

.phone {
  position: relative;
  width: 280px;
  aspect-ratio: 9 / 19.5;
  background: #0c0c0c;
  border-radius: 44px;
  padding: 9px;
  margin: 0 auto;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 2px 4px rgba(0, 0, 0, 0.1),
    var(--shadow-lg);
}
.phone--lg {
  width: 320px;
  border-radius: 50px;
  padding: 10px;
}
.phone__notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 22px;
  background: #000;
  border-radius: 11px;
  z-index: 2;
}
.phone--lg .phone__notch { width: 84px; height: 24px; top: 16px; border-radius: 12px; }

.phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--cream);
  border-radius: 38px;
  overflow: hidden;
  padding: 46px 20px 0;
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.45;
  color: var(--ink);
}
.phone--lg .phone__screen {
  border-radius: 42px;
  padding: 50px 22px 0;
  font-size: 12px;
}

/* Status bar (simulated). Real-looking SVG icons. */
.phone__statusbar {
  position: absolute;
  top: 14px;
  left: 22px;
  right: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  z-index: 1;
}
.phone--lg .phone__statusbar {
  top: 17px;
  left: 24px;
  right: 24px;
}
.phone__statusbar-icons {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  flex: 0 0 auto;
  color: var(--ink);
}
.phone__statusbar-icons svg {
  display: block;
  flex: 0 0 auto;
}
.phone:not(.phone--lg) .phone__statusbar-icons svg:nth-child(1),
.phone:not(.phone--lg) .phone__statusbar-icons svg:nth-child(2) {
  width: 12px;
  height: 9px;
}
.phone:not(.phone--lg) .phone__statusbar-icons svg:nth-child(3) {
  width: 18px;
  height: 9px;
}

/* Greeting block */
.phone__kicker {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.phone__kicker .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--forest);
}
.phone__greeting {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.05;
  margin: 0 0 6px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.phone__greeting em {
  font-style: italic;
  color: var(--forest);
  font-weight: 500;
}
.phone__subline {
  font-size: 11px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0 0 14px;
}
.phone__subline em { font-family: var(--serif); font-style: italic; color: var(--ink-2); }
.phone__subline strong { font-weight: 600; color: var(--ink); }

/* Weather strip */
.phone__weather {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 999px;
  padding: 5px 12px 5px 10px;
  margin-bottom: 16px;
  font-size: 10.5px;
  color: var(--ink-2);
}
.phone__weather svg { color: var(--ink-3); }

/* Section headers within a phone */
.phone__section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  margin: 16px 0 8px;
  text-transform: uppercase;
}
.phone__section-head--inline { margin-top: 0; margin-bottom: 10px; padding: 8px 13px 0; }
.phone__count {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--forest);
}

/* Today task rows */
.phone__task {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 6px;
}
.phone__task--med { border-left: 3px solid var(--terracotta); }
.phone__task-circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--forest);
  flex-shrink: 0;
  margin-top: 2px;
}
/* In-phone body type uses sans — real iOS apps use SF, not a
   serif, for task verbs. Marketing-style headings like
   `.phone__greeting` keep their serif to read as the literary
   greeting it is. */
.phone__task-verb {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1px;
  letter-spacing: -0.005em;
}
.phone__task-sub {
  font-size: 9.5px;
  color: var(--ink-3);
}

/* Tab bar (simulated) */
.phone__tabdock {
  position: absolute;
  bottom: 17px;
  left: 12px;
  right: 12px;
}
.phone__tabbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(245, 240, 227, 0.82);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 0.5px solid var(--hair);
  border-radius: 999px;
  padding: 5px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 8px 24px rgba(60, 40, 20, 0.08);
}
.phone__tabbar--five {
  gap: 1px;
}
.phone__tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1;
  min-width: 0;
  min-height: 48px;
  padding: 4px 2px 3px;
  border-radius: 999px;
}
.phone__tab-icon {
  width: 23px;
  height: 23px;
  display: block;
  flex-shrink: 0;
}
.phone__tab-icon--fill {
  fill: currentColor;
  stroke: none;
}
.phone__tab-icon--plus {
  width: 21px;
  height: 21px;
}
.phone__tab svg { display: block; stroke: currentColor; flex-shrink: 0; }
.phone__tab svg.phone__tab-icon--fill { stroke: none; }
.phone__tab span {
  font-size: 9px;
  letter-spacing: 0.01em;
  line-height: 1.1;
  white-space: nowrap;
}
.phone__tab--on {
  color: var(--forest);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.30), rgba(59,90,58,0.10)),
    rgba(59,90,58,0.07);
  backdrop-filter: blur(14px) saturate(170%);
  -webkit-backdrop-filter: blur(14px) saturate(170%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.68) inset,
    0 -1px 0 rgba(59,90,58,0.08) inset,
    0 0 0 0.5px rgba(59,90,58,0.055) inset;
}
.phone__tab--on span { font-weight: 600; }
.phone__tab--add {
  color: var(--forest);
}
.phone__tab--add span {
  font-weight: 600;
}

/* Folk detail screen */
.phone__folk-hero {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.phone__folk-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--cream-soft);
  border: 1px solid var(--hair);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  overflow: hidden;
}
/* Illustrated variant — holds a real species PNG instead of an
   emoji. Padding tucks the artwork inside the well; object-fit
   keeps the figure centred without distortion. */
.phone__folk-avatar--illustrated { padding: 2px; }
.phone__folk-avatar--illustrated img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.phone__folk-avatar--pet {
  background: color-mix(in srgb, var(--terracotta) 14%, var(--paper));
  border-color: color-mix(in srgb, var(--terracotta) 24%, transparent);
}
.phone__folk-avatar--plant {
  background: color-mix(in srgb, var(--forest) 12%, var(--paper));
  border-color: color-mix(in srgb, var(--forest) 22%, transparent);
}
.phone__folk-name {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.phone__folk-sub {
  font-size: 10px;
  color: var(--ink-3);
}

.phone__chips {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.chip {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 9px;
  color: var(--ink-2);
  font-weight: 500;
}
.chip--terra {
  background: rgba(201, 123, 90, 0.12);
  border-color: rgba(201, 123, 90, 0.3);
  color: var(--terracotta);
}

.phone__card {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 12px;
  padding: 11px 13px;
  margin-bottom: 8px;
}
.phone__card strong {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  display: block;
  margin-bottom: 3px;
  letter-spacing: -0.005em;
}
.phone__card p {
  font-size: 10px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.5;
}
.phone__card--warn {
  background: rgba(201, 123, 90, 0.08);
  border-color: rgba(201, 123, 90, 0.28);
}
.phone__card--warn strong { color: var(--terracotta); }
.phone__card--list { padding: 8px 0; }

.phone__meal-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-size: 10.5px;
  color: var(--ink-2);
}
.phone__meal-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--terracotta);
}
.phone__meal-row strong { display: inline; font-size: 10.5px; color: var(--ink); }

/* Meal plan editor screen */
.phone__nav-title {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hair);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.phone__notice {
  background: rgba(59, 90, 58, 0.08);
  border: 1px solid rgba(59, 90, 58, 0.22);
  border-radius: 10px;
  padding: 9px 11px;
  font-size: 10px;
  color: var(--ink-2);
  margin-bottom: 14px;
}
.phone__notice strong {
  color: var(--forest);
  display: inline;
  font-family: var(--sans);
  font-weight: 600;
}

.phone__food {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 8px 13px;
  border-top: 1px solid var(--hair);
  font-size: 11px;
}
.phone__food:first-of-type { border-top: none; }
.phone__food > div:nth-of-type(1) {
  flex: 1;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.phone__food-sub {
  font-family: var(--sans);
  font-size: 9px;
  color: var(--ink-3);
  margin-top: 1px;
}
.phone__food-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--forest);
  flex-shrink: 0;
  margin-top: 6px;
}
.phone__qty {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-2);
  flex-shrink: 0;
}

.phone__avoid {
  display: flex;
  gap: 6px;
  align-items: center;
  background: rgba(201, 123, 90, 0.08);
  border: 1px solid rgba(201, 123, 90, 0.28);
  border-radius: 10px;
  padding: 7px 11px;
  font-size: 10px;
  color: var(--terracotta);
  margin-top: 8px;
}

/* Grocery list screen */
.phone__grocery-sub {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  padding: 8px 13px 4px;
  text-transform: uppercase;
}
.phone__grocery {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 5px 13px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.phone__grocery em {
  font-family: var(--mono);
  font-style: normal;
  font-size: 9.5px;
  color: var(--ink-3);
  margin-left: auto;
}
.phone__grocery s {
  color: var(--ink-3);
  text-decoration-color: var(--ink-3);
}
.phone__box {
  width: 13px;
  height: 13px;
  border-radius: 3px;
  border: 1.4px solid var(--ink-3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.phone__box--checked {
  background: var(--forest);
  border-color: var(--forest);
}

/* ─────────── Needs-attention card (hero phone) ─────────── */

.phone__needs-head {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  padding: 14px 13px 6px;
}
/* Soft terracotta-tinted card. Single line head ("Pierre · guinea
   pig"), bold title, two-line sub. Sits under the greeting so the
   first thing the user sees after "good morning" is *who needs you*. */
.phone__attention {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 12px 14px;
  padding: 11px 12px;
  background: color-mix(in srgb, var(--terracotta) 9%, var(--paper));
  border: 1px solid color-mix(in srgb, var(--terracotta) 28%, transparent);
  border-radius: 12px;
}
.phone__attention-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--terracotta) 22%, transparent);
  color: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone__attention-body { flex: 1; min-width: 0; font-family: var(--sans); }
.phone__attention-head {
  font-size: 10px;
  color: var(--ink-3);
  margin-bottom: 1px;
}
.phone__attention-head strong { color: var(--ink); font-weight: 600; }
.phone__attention-tag {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-3);
  margin-left: 2px;
}
.phone__attention-title {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
  line-height: 1.3;
}
.phone__attention-sub {
  font-size: 10px;
  color: var(--ink-2);
  line-height: 1.45;
}
.phone__attention-x {
  font-size: 16px;
  color: var(--ink-3);
  line-height: 1;
  flex-shrink: 0;
}

/* ─────────── Daily spotlight (fun-fact card) ─────────── */

/* Signature surface. Sand wash, serif-italic body with quote marks,
   real species illustration peeking from the right edge, mono kicker
   + 06/08 counter so the depth feels enumerated. */
.phone__spotlight {
  position: relative;
  margin: 0 12px 14px;
  padding: 14px 14px 13px;
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--gold) 30%, var(--paper)) 0%,
    color-mix(in srgb, var(--gold) 22%, var(--paper)) 100%);
  border: 1px solid color-mix(in srgb, var(--gold) 38%, transparent);
  border-radius: 14px;
  overflow: hidden;
}
.phone__spotlight > :not(.phone__spotlight-illo) {
  position: relative;
  z-index: 1;
}
.phone__spotlight-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 8.6px;
  letter-spacing: 0.12em;
  color: color-mix(in srgb, var(--ink) 62%, var(--ink-3));
  margin-bottom: 9px;
  font-weight: 600;
}
.phone__spotlight-kicker { text-transform: uppercase; }
.phone__spotlight-count {
  color: color-mix(in srgb, var(--ink) 52%, var(--ink-3));
  font-weight: 600;
  white-space: nowrap;
}
.phone__spotlight-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.34;
  letter-spacing: -0.005em;
  color: color-mix(in srgb, var(--ink) 90%, var(--terracotta));
  margin: 0 68px 12px 0;
}
.phone__spotlight-mark {
  font-family: var(--serif);
  color: color-mix(in srgb, var(--ink) 72%, var(--terracotta));
  font-size: 17px;
  line-height: 0;
  vertical-align: -2px;
  padding-right: 2px;
}
.phone__spotlight-mark--close { padding-right: 0; padding-left: 2px; }
.phone__spotlight-illo {
  position: absolute;
  right: 3px;
  top: 54px;
  width: 74px;
  height: 74px;
  object-fit: contain;
  opacity: 0.86;
  z-index: 0;
  pointer-events: none;
}
.phone__spotlight-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 9px;
  border-top: 1px solid color-mix(in srgb, var(--gold) 26%, transparent);
}
.phone__spotlight-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--forest) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.phone__spotlight-avatar img { width: 18px; height: 18px; object-fit: contain; }
.phone__spotlight--fun .phone__spotlight-avatar img {
  width: 19px;
  height: 19px;
}
.phone__spotlight-name {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
}
.phone__spotlight-sub {
  font-size: 9px;
  color: var(--ink-3);
  margin-top: 1px;
}
.phone__spotlight-arrow {
  margin-left: auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--hair);
  color: var(--ink-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* Complete-all chip — sits at the right of the TODAY head, reads as
   an action without being a heavy button. */
.phone__complete-all {
  margin-left: auto;
  font-family: var(--sans);
  font-size: 9.5px;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.phone__section-head { display: flex; align-items: center; gap: 8px; }

/* ─────────── Folk detail sheet bar (scene 1) ─────────── */

/* Mock-iOS sheet header — chevron-down chip, eyebrow label, Edit pill.
   Sits at the top of any "drill-in" mock so the surface reads as a
   sheet rather than the root of the app. */
.phone__sheet-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 12px 10px;
}
.phone__sheet-chip {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--hair);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
}
.phone__sheet-eyebrow {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--ink-3);
}
.phone__sheet-eyebrow--pet {
  color: var(--terracotta);
}
.phone__sheet-eyebrow--plant {
  color: var(--forest);
}
.phone__sheet-edit {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 999px;
  padding: 4px 12px;
}

/* Folk hero with breed line below species. */
.phone__folk-breed {
  font-family: var(--sans);
  font-size: 10px;
  color: var(--ink-3);
  margin-top: 1px;
}

/* ─────────── Metric tiles (3-up: age / weight / difficulty) ─────────── */

.phone__metrics {
  display: grid;
  /* minmax(0, 1fr) — without the 0 floor, each grid track's min-width
     would be its content's min-content, so the wider "DIFFICULTY"
     label would steal width from AGE and WEIGHT and the three tiles
     would render at three different widths. */
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  padding: 0 12px;
  margin-bottom: 12px;
}
/* Three identical tiles — label pinned to the top, value+sub block
   pinned to the bottom via margin-top:auto on the value. Same min-
   height + same internal layout means the three tiles read as one
   matched row, only the text differs. */
.phone__metric {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 10px;
  padding: 9px 10px 10px;
  min-height: 74px;
  display: flex;
  flex-direction: column;
}
.phone__metric-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--ink-3);
}
.phone__metric-value {
  margin-top: auto;
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  white-space: nowrap;
}
/* The em-dash placeholder shares the same size as real values — no
   font-size bump — so the tile keeps the same vertical rhythm as its
   siblings. Just muted in color to read as "not yet logged". */
.phone__metric-value--mute { color: var(--ink-3); }
.phone__metric-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 10px;
  color: var(--ink-3);
  line-height: 1.3;
  margin-top: 2px;
}

/* ─────────── Watch-for card (welfare warnings) ─────────── */

.phone__watch {
  margin: 0 12px 10px;
  padding: 10px 13px 9px;
  background: color-mix(in srgb, var(--terracotta) 7%, var(--paper));
  border: 1px solid color-mix(in srgb, var(--terracotta) 22%, transparent);
  border-radius: 12px;
}
.phone__watch-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.phone__watch-head strong {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}
.phone__watch-icon { color: var(--terracotta); }
.phone__watch-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--sans);
  font-size: 10.5px;
  color: var(--ink-2);
  line-height: 1.5;
}
.phone__watch-list li {
  position: relative;
  padding-left: 12px;
}
.phone__watch-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-weight: 700;
}
.phone__watch-foot {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: 10.5px;
  color: var(--terracotta);
}

/* ─────────── Plant detail cards (scene 4) ─────────── */

.phone__plant-setup,
.phone__plant-season,
.phone__plant-history {
  margin: 0 12px 7px;
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 12px;
}
.phone__plant-setup,
.phone__plant-history {
  padding: 9px 12px 10px;
}
.phone__plant-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}
.phone__plant-card-head strong {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.phone__plant-card-head span {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  color: var(--forest);
}
.phone__setup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 10px;
}
.phone__setup-grid div {
  min-width: 0;
}
.phone__setup-grid span,
.phone__plant-minirow span,
.phone__plant-season-kicker {
  display: block;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.phone__setup-grid strong,
.phone__plant-minirow strong {
  display: block;
  margin-top: 1px;
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.phone__plant-season {
  display: flex;
  gap: 10px;
  padding: 10px 12px;
  background: color-mix(in srgb, var(--forest) 7%, var(--paper));
  border-color: color-mix(in srgb, var(--forest) 16%, transparent);
}
.phone__plant-season-icon {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--forest) 14%, transparent);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone__plant-season-copy {
  min-width: 0;
}
.phone__plant-season-copy strong {
  display: block;
  margin: 1px 0 2px;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
}
.phone__plant-season-copy p {
  margin: 0;
  font-family: var(--sans);
  font-size: 9.5px;
  line-height: 1.35;
  color: var(--ink-2);
}
.phone__plant-photo-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 7px;
}
.phone__plant-photo-thumb {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: color-mix(in srgb, var(--forest) 9%, var(--cream-soft));
  border: 1px solid var(--hair);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.phone__plant-photo-thumb img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.phone__plant-photo-row strong {
  display: block;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
}
.phone__plant-photo-row p {
  margin: 1px 0 0;
  font-family: var(--sans);
  font-size: 9px;
  color: var(--ink-3);
}
.phone__plant-minirow {
  border-top: 1px solid var(--hair-soft);
  padding-top: 7px;
}
.phone__attn-row--plant-issue {
  background: color-mix(in srgb, var(--forest) 10%, var(--paper));
  border-color: color-mix(in srgb, var(--forest) 20%, transparent);
}
.phone__attn-row--plant-issue .phone__attn-icon {
  color: var(--forest);
}

/* ─────────── Meal plan (folk page) ─────────── */

.phone__mealplan {
  margin: 0 12px 12px;
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 12px;
  padding: 8px 12px 10px;
}
.phone__mealplan-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}
/* Serif-title head — matches the "Watch for" card directly above so
   two stacked surfaces on the same screen read as peers, not as
   different systems (mono eyebrow vs serif heading). */
.phone__mealplan-label {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.phone__mealplan-when {
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  color: var(--ink-3);
}
.phone__mealplan-icon {
  margin-left: auto;
  color: var(--ink-3);
  display: flex;
}
.phone__mealplan-meal {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  margin: 6px 0 4px;
}
.phone__meal-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 5px 0;
  border-top: 1px solid var(--hair-soft);
}
.phone__meal-row:first-of-type { border-top: none; }
.phone__meal-row > div { flex: 1; }
.phone__meal-row strong { font-family: var(--sans); font-size: 11px; color: var(--ink); font-weight: 600; }
.phone__meal-qty {
  font-family: var(--sans);
  font-size: 10px;
  color: var(--ink-3);
  margin-top: 1px;
}
.phone__meal-warn {
  font-family: var(--sans);
  font-size: 9.5px;
  color: var(--ink-3);
  margin-top: 3px;
  line-height: 1.4;
}
.phone__meal-row .phone__meal-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.4px solid var(--ink-3);
  flex-shrink: 0;
  margin-top: 2px;
  background: transparent;
}

/* ─────────── Species hero (scene 2 field guide) ─────────── */

.phone__species {
  position: relative;
  margin: 0 12px 8px;
  padding: 12px 12px 10px;
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--terracotta) 14%, var(--paper)) 0%,
    color-mix(in srgb, var(--terracotta) 6%, var(--paper)) 100%);
  border: 1px solid color-mix(in srgb, var(--terracotta) 22%, transparent);
  border-radius: 14px;
  overflow: hidden;
}
.phone__species-illo {
  position: absolute;
  right: 10px;
  top: 8px;
  width: 60px;
  height: 60px;
  display: block;
}
.phone__species-illo img { width: 60px; height: 60px; object-fit: contain; }
.phone__species-eyebrow {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  margin-bottom: 3px;
}
.phone__species-name {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 5px;
}
.phone__species-tag {
  margin: 0;
  font-family: var(--serif);
  font-size: 10.5px;
  color: var(--ink-2);
  max-width: calc(100% - 78px);
  line-height: 1.35;
}
.phone__species-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 0 12px;
  margin-bottom: 6px;
}
.phone__species-tile {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 10px;
  padding: 8px 10px;
}
.phone__species-tile-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  margin-bottom: 4px;
}
.phone__species-tile-value {
  font-family: var(--serif);
  font-size: 12px;
  color: var(--ink);
}
.phone__species-tile-value em { font-style: italic; color: var(--ink); }
.phone__species-pips { display: flex; gap: 3px; margin-bottom: 3px; }
.phone__pip {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--hair);
}
.phone__pip--on { background: var(--forest); }
.phone__species--pet .phone__pip--on { background: var(--terracotta); }
.phone__lives {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  padding: 4px 14px 8px;
}
.phone__lives strong { color: var(--ink); font-weight: 600; }

/* Attention row variants — terracotta for warning, gold for info.
   Compact version of the hero-page attention card. */
.phone__attn-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 12px 6px;
  padding: 10px 12px;
  background: color-mix(in srgb, var(--terracotta) 9%, var(--paper));
  border: 1px solid color-mix(in srgb, var(--terracotta) 22%, transparent);
  border-radius: 10px;
}
.phone__attn-row--info {
  background: color-mix(in srgb, var(--gold) 16%, var(--paper));
  border-color: color-mix(in srgb, var(--gold) 32%, transparent);
}
.phone__attn-icon {
  flex-shrink: 0;
  color: var(--terracotta);
  margin-top: 1px;
}
.phone__attn-row--info .phone__attn-icon { color: color-mix(in srgb, var(--gold) 80%, var(--ink)); }
.phone__attn-row strong {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 2px;
}
.phone__attn-row p {
  margin: 0;
  font-family: var(--sans);
  font-size: 9.5px;
  color: var(--ink-2);
  line-height: 1.45;
}

/* Field-guide section heads + lists (What they need / Common mistakes). */
.phone__field-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 10px 14px 4px;
}
.phone__field-head h3 {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  margin: 0;
}
.phone__field-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--ink-3);
}
.phone__field-list {
  list-style: none;
  margin: 0 0 4px;
  padding: 0 14px;
  font-family: var(--sans);
  font-size: 10.5px;
  color: var(--ink-2);
  line-height: 1.5;
}
.phone__field-list li {
  position: relative;
  padding: 2px 0 2px 18px;
}
.phone__field-list--essentials li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  border: 1.4px solid var(--forest);
  border-radius: 50%;
}
.phone__field-list--avoid li::before {
  content: "×";
  position: absolute;
  left: 1px;
  top: 1px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--terracotta);
  font-weight: 600;
  line-height: 1.2;
}

/* Inline AVOID strip — single-line alternative to a full Common
   Mistakes h3 + bulleted list. Mono label + terracotta body keeps
   the warning weight without taking three vertical rhythm beats. */
.phone__avoid-inline {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 8px 14px 4px;
  padding: 7px 10px;
  background: color-mix(in srgb, var(--terracotta) 8%, var(--paper));
  border: 1px solid color-mix(in srgb, var(--terracotta) 18%, transparent);
  border-radius: 8px;
}
.phone__avoid-label {
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--terracotta);
  font-weight: 600;
}
.phone__avoid-body {
  font-family: var(--sans);
  font-size: 10.5px;
  color: var(--ink-2);
  line-height: 1.4;
}

/* Emergency callout — italic field-guide quote with mark. */
.phone__emergency {
  position: relative;
  margin: 4px 14px 4px;
  padding: 7px 12px 7px 26px;
  background: color-mix(in srgb, var(--terracotta) 10%, var(--paper));
  border: 1px solid color-mix(in srgb, var(--terracotta) 24%, transparent);
  border-radius: 10px;
}
.phone__emergency-mark {
  position: absolute;
  left: 10px;
  top: 4px;
  font-family: var(--serif);
  font-size: 22px;
  color: color-mix(in srgb, var(--terracotta) 70%, transparent);
  line-height: 1;
}
.phone__emergency p {
  margin: 0;
  font-family: var(--serif);
  font-size: 11px;
  color: var(--ink);
  line-height: 1.45;
}

/* Sources — mono attribution line, the proof point. */
.phone__sources {
  padding: 0 14px 10px;
}
.phone__sources-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  margin-bottom: 4px;
}
.phone__sources-body {
  font-family: var(--sans);
  font-size: 9px;
  color: var(--ink-3);
  line-height: 1.4;
}

/* ─────────── Meals/Grocery (scene 3) ─────────── */

.phone__nav-title-lg {
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  margin: 14px 8px 11px;
  line-height: 1;
  letter-spacing: -0.03em;
}
.phone__seg {
  display: flex;
  gap: 7px;
  margin: 0 4px 16px;
}
.phone__seg-opt {
  flex: 1;
  text-align: center;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 10px 8px;
  border-radius: 13px;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
}
.phone__seg-opt--on {
  background: var(--forest);
  color: #fff;
  font-weight: 600;
}
.phone__meals-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 0 8px 6px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.phone__meals-meta > span:first-child {
  white-space: nowrap;
}
.phone__edit-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--terracotta);
  white-space: nowrap;
}
.phone__sub-h {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 8px 9px;
  line-height: 1.04;
}
.phone__ready {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 6px 12px;
  padding: 8px 10px;
  background: color-mix(in srgb, var(--terracotta) 10%, var(--paper));
  border: 1px solid color-mix(in srgb, var(--terracotta) 24%, transparent);
  border-radius: 12px;
}
.phone__ready-icon {
  flex-shrink: 0;
  color: var(--terracotta);
  margin-top: 1px;
}
.phone__ready-copy {
  min-width: 0;
  flex: 1;
}
.phone__ready strong {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 2px;
}
.phone__ready p {
  margin: 0;
  font-family: var(--sans);
  font-size: 9px;
  color: var(--ink-2);
  line-height: 1.45;
}
.phone__ready-count {
  flex-shrink: 0;
  min-width: 45px;
  text-align: right;
}
.phone__ready-count strong {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--forest);
  margin: 0;
}
.phone__ready-count span {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  color: var(--ink-3);
  line-height: 1.1;
}
.phone__category-scroll {
  display: flex;
  gap: 8px;
  margin: 0 6px 9px;
  padding-bottom: 2px;
  overflow: hidden;
}
.phone__category-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  padding: 6px 9px;
  background: color-mix(in srgb, var(--paper) 78%, transparent);
  border: 1px solid var(--hair-soft);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.phone__category-pill em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 19px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--forest) 12%, var(--paper));
  color: var(--forest);
  font-style: normal;
  font-family: var(--mono);
  font-size: 9.5px;
}
.phone__toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 6px 9px;
  padding: 6px 0;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink);
}
.phone__toggle {
  width: 46px;
  height: 27px;
  background: var(--forest);
  border-radius: 999px;
  position: relative;
  flex-shrink: 0;
}
.phone__toggle-knob {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 21px;
  height: 21px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.phone__grocery-card {
  margin: 0 6px 12px;
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 12px;
  padding: 10px 11px 9px;
}
.phone__grocery-head {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.13em;
  color: var(--ink-3);
  padding-bottom: 9px;
  text-transform: uppercase;
}
.phone__grocery-head em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 17px;
  padding: 0 5px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--forest) 12%, var(--paper));
  color: var(--forest);
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0;
}
.phone__grocery-caret {
  margin-left: auto;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1;
  color: var(--ink-3);
}
.phone__grocery-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 8px 0;
}
.phone__grocery-item:first-of-type { border-top: none; }
.phone__grocery-card .phone__grocery-sub {
  padding: 0 0 5px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-top: 6px;
}
.phone__grocery-card .phone__grocery-sub:first-of-type {
  margin-top: 0;
}
.phone__grocery-body { flex: 1; min-width: 0; }
.phone__grocery-name {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink);
}
.phone__grocery-name strong {
  min-width: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.phone__grocery-qty {
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  font-weight: 500;
}
.phone__grocery-item--bought .phone__grocery-name strong {
  color: var(--ink-3);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}
.phone__grocery-card .phone__box {
  width: 17px;
  height: 17px;
  border-radius: 4px;
  margin-top: 0;
}

/* ─────────── Scenes (alternating screenshot + copy) ─────────── */

.scenes {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 104px) clamp(20px, 5vw, 56px) 0;
  display: flex;
  flex-direction: column;
  gap: clamp(64px, 9vw, 120px);
}

.scene {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(28px, 5vw, 96px);
  align-items: center;
}
.scene--flip .scene__copy { order: 2; }
.scene--flip .scene__art  { order: 1; }

.scene__copy h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  color: var(--ink);
}
.scene__copy h2 em {
  font-style: italic;
  color: var(--forest);
  font-weight: 500;
}
.scene__copy > p {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 22px;
  max-width: 480px;
}

.scene__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.scene__bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.scene__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 1px;
  background: var(--terracotta);
}

.scene__art {
  display: flex;
  justify-content: center;
  position: relative;
}

.scene__phones {
  display: flex;
  gap: clamp(16px, 3vw, 28px);
  align-items: flex-end;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.scene__phones--overlap {
  position: relative;
  display: block;
  width: min(100%, 400px);
  --duo-phone-width: 252px;
  --duo-phone-height: calc(var(--duo-phone-width) * 19.5 / 9);
  /* Back phone sits lower and carries the figcaption below the chassis. */
  min-height: calc(52px + var(--duo-phone-height) * 0.96 + 36px);
  margin: 0 auto;
}

.scene__phone-wrap {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scene__phones--overlap .scene__phone-wrap {
  position: absolute;
  width: 252px;
}

.scene__phone-wrap--front {
  left: 0;
  top: 0;
  z-index: 2;
}

.scene__phone-wrap--front .phone {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 2px 4px rgba(0, 0, 0, 0.1),
    0 24px 48px rgba(28, 24, 18, 0.18),
    var(--shadow-lg);
}

.scene__phone-wrap--back {
  right: -4px;
  top: 52px;
  z-index: 1;
  transform: rotate(3deg);
}

.scene__phone-wrap--back .phone {
  transform: scale(0.96);
  transform-origin: top center;
  opacity: 0.94;
  filter: saturate(0.92);
}

.scene__phone-wrap--front .scene__phone-label {
  margin-left: 12px;
}

.scene__phone-wrap--back .scene__phone-label {
  margin-right: 8px;
}

.scene__phone-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.phone--scene-duo {
  width: 252px;
  border-radius: 40px;
  padding: 8px;
}

.phone--scene-duo .phone__screen {
  border-radius: 34px;
  padding: 42px 16px 0;
  font-size: 10.5px;
}

.phone--scene-duo .phone__nav-title-lg {
  font-size: 24px;
  margin: 10px 6px 8px;
}

.phone--scene-duo .phone__seg {
  margin: 0 2px 12px;
}

.phone--scene-duo .phone__seg-opt {
  font-size: 10.5px;
  padding: 8px 6px;
  border-radius: 11px;
}

.phone__feed-head {
  margin: 0 6px 10px;
}

.phone__feed-eyebrow {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 4px;
}

.phone__feed-hero {
  margin: 0 4px 12px;
  padding: 14px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--forest) 8%, var(--paper));
  border: 1px solid color-mix(in srgb, var(--forest) 24%, transparent);
}

.phone__feed-hero-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.08;
  margin-bottom: 6px;
}

.phone__feed-hero-lead {
  font-size: 10.5px;
  color: var(--ink-2);
  margin-bottom: 4px;
}

.phone__feed-hero-sub {
  font-size: 9.5px;
  color: var(--ink-3);
  line-height: 1.45;
  margin-bottom: 12px;
}

.phone__feed-hero-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  min-height: 38px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
}

.phone__feed-day {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.05;
}

.phone__feed-sub {
  font-size: 10px;
  color: var(--ink-3);
  margin-top: 3px;
}

.phone__week-strip {
  display: flex;
  gap: 3px;
  margin: 0 4px 10px;
}

.phone__week-pill {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 5px 0 6px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  color: var(--ink-2);
}

.phone__week-pill em {
  font-style: normal;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.04em;
}

.phone__week-pill strong {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

.phone__week-pill--on {
  background: var(--forest);
  color: #fff;
}

.phone__week-pill--on strong,
.phone__week-pill--on em {
  color: #fff;
}

.phone__ready--active {
  background: color-mix(in srgb, var(--forest) 8%, var(--paper));
  border-color: color-mix(in srgb, var(--forest) 24%, transparent);
}

.phone__ready--active .phone__ready-icon {
  color: var(--forest);
}

.phone__ready--compact {
  margin-bottom: 10px;
}

.phone--scene-duo .phone__ready--compact .phone__ready-copy p {
  font-size: 8px;
  line-height: 1.35;
}

.phone__feed-card {
  margin: 0 4px 12px;
  padding: 10px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  border: 1px solid var(--hair-soft);
}

.phone__feed-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.phone__feed-card-head img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.phone__feed-card-head strong {
  display: block;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink);
}

.phone__feed-card-head span {
  font-size: 9px;
  color: var(--ink-3);
}

.phone__feed-slot-label {
  display: block;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 6px;
}

.phone__feed-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  margin-bottom: 8px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--cream-soft) 74%, transparent);
  border: 0.5px solid color-mix(in srgb, var(--hair) 65%, transparent);
}

.phone__feed-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--ink-3);
}

.phone__feed-toggle-icon svg {
  display: block;
}

.phone__feed-toggle strong {
  flex: 1;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-2);
}

.phone__feed-toggle-day {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.phone__meal-row--plain {
  padding-left: 0;
}

.phone__meal-row--plain::before {
  content: none;
}

.phone--scene-duo .phone__meal-row--plain {
  padding: 5px 0;
  border-top: none;
}

.phone--scene-duo .phone__meal-row--plain:first-of-type {
  padding-top: 0;
}

.phone--scene-duo .phone__meal-row {
  padding: 6px 0;
}

@media (max-width: 880px) {
  .scene__phones--overlap {
    width: min(100%, 340px);
    --duo-phone-width: 228px;
    min-height: calc(44px + var(--duo-phone-height) * 0.96 + 32px);
  }

  .scene__phones--overlap .scene__phone-wrap {
    width: 228px;
  }

  .scene__phone-wrap--back {
    right: 0;
    top: 44px;
    transform: rotate(2deg);
  }

  .phone--scene-duo {
    width: 228px;
  }
}

.scene__art::before {
  content: "";
  position: absolute;
  inset: 0% 4%;
  background:
    radial-gradient(35% 30% at 28% 25%,
      rgba(201, 123, 90, 0.16) 0%,
      rgba(201, 123, 90, 0) 70%),
    radial-gradient(55% 50% at 50% 50%,
      rgba(217, 168, 106, 0.24) 0%,
      rgba(217, 168, 106, 0) 70%);
  filter: blur(8px);
  pointer-events: none;
}

@media (max-width: 880px) {
  .scene, .scene--flip { grid-template-columns: 1fr; gap: 36px; }
  .scene--flip .scene__copy,
  .scene--flip .scene__art { order: unset; }
}

/* ─────────── Pricing ─────────── */

.pricing {
  max-width: 1120px;
  margin: clamp(64px, 10vw, 112px) auto 0;
  padding: clamp(56px, 8vw, 88px) clamp(20px, 5vw, 56px);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  background:
    linear-gradient(180deg,
      rgba(251, 247, 234, 0.78) 0%,
      rgba(251, 247, 234, 0.35) 100%);
}
.pricing__intro {
  max-width: 720px;
  margin: 0 auto clamp(28px, 5vw, 48px);
  text-align: center;
}
.pricing__intro h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}
.pricing__intro h2 em {
  font-style: italic;
  color: var(--forest);
  font-weight: 500;
}
.pricing__intro p {
  margin: 0 auto;
  color: var(--ink-2);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.6;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
}
.pricing__card {
  position: relative;
  background: color-mix(in srgb, var(--paper) 88%, white 12%);
  border: 1px solid var(--hair);
  border-radius: 18px;
  padding: clamp(22px, 4vw, 32px);
  box-shadow: var(--shadow-sm);
}
.pricing__card--premium {
  background:
    linear-gradient(180deg,
      rgba(217, 168, 106, 0.13) 0%,
      rgba(251, 247, 234, 0.94) 62%);
  border-color: color-mix(in srgb, var(--terracotta) 30%, var(--hair));
  box-shadow: var(--shadow);
}
.pricing__label {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  padding: 3px 10px;
  background: rgba(59, 90, 58, 0.10);
  color: var(--forest);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.pricing__card--premium .pricing__label {
  background: rgba(201, 123, 90, 0.14);
  color: var(--terracotta);
}
.pricing__card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.1;
  margin: 18px 0 8px;
  letter-spacing: -0.01em;
}
.pricing__price {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
  color: var(--ink);
}
.pricing__price span {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-3);
  font-weight: 500;
}
.pricing__copy {
  margin: 0 0 22px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 440px;
}
.pricing__list {
  list-style: none;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--hair);
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.pricing__list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.45;
}
.pricing__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 12px;
  height: 1px;
  background: var(--terracotta);
}
.pricing__note {
  max-width: 680px;
  margin: clamp(22px, 4vw, 34px) auto 0;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  text-align: center;
}
@media (max-width: 760px) {
  .pricing__grid { grid-template-columns: 1fr; }
  .pricing { margin-top: 56px; }
}

/* ─────────── Anti-feature ("what it isn't") ─────────── */

.antifeat {
  background: var(--forest-deep);
  color: var(--cream);
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 56px);
  margin-top: clamp(80px, 12vw, 140px);
  position: relative;
  overflow: hidden;
}
.antifeat::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/images/noise.svg");
  background-size: 240px 240px;
  opacity: 0.22;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.antifeat__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.antifeat .kicker { color: var(--gold); margin-bottom: 28px; }
.antifeat__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.antifeat__item {
  border-top: 1px solid rgba(236, 229, 214, 0.18);
  padding-top: 24px;
}
.antifeat__x {
  display: inline-block;
  font-family: var(--serif);
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}
/* Varied negation glyphs across the trio so the three "Not"
   cards don't read as a rubber-stamped row. All three sit at
   matched optical weight (~28px serif equivalent); the strike
   and circle vary in family + form, not in mass, so the trio
   reads as three peer marks rather than two stamps and an
   underline. */
.antifeat__x--strike {
  font-weight: 400;
  font-size: 28px;
}
.antifeat__x--circle {
  font-family: var(--mono);
  font-size: 26px;
  font-weight: 500;
}
.antifeat__item h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--cream);
  letter-spacing: -0.005em;
}
.antifeat__item p {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(236, 229, 214, 0.78);
  margin: 0;
}
@media (max-width: 800px) {
  .antifeat__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ─────────── Story ─────────── */

.story {
  padding: clamp(64px, 10vw, 120px) clamp(20px, 5vw, 56px);
  border-top: 1px solid var(--hair);
  position: relative;
}
/* Hand-drawn botanical ornament — terracotta-ink leaf flanked by
   hairlines, sits above the kicker. The single illustrative beat
   on the page so the "field guide" promise has visual proof. */
.story__ornament {
  display: block;
  width: 120px;
  height: 48px;
  margin: 0 auto 32px;
  color: var(--terracotta);
  opacity: 0.85;
}
.story__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.story__inner h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.15;
  margin: 0 0 24px;
  letter-spacing: -0.005em;
}
.story__inner h2 em { font-style: italic; color: var(--forest); font-weight: 500; }
.story__inner p {
  font-family: var(--serif);
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 18px;
}
.story__sign {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-3) !important;
  margin-top: 32px !important;
}

/* ─────────── FAQ ─────────── */

.faq {
  padding: clamp(64px, 10vw, 120px) clamp(20px, 5vw, 56px);
  max-width: 800px;
  margin: 0 auto;
}
.faq__intro {
  margin-bottom: 40px;
  text-align: center;
}
.faq__intro h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 42px);
  margin: 0;
  letter-spacing: -0.005em;
}
.faq__item {
  border-top: 1px solid var(--hair);
  padding: 18px 0;
}
.faq__item:last-of-type { border-bottom: 1px solid var(--hair); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  padding: 4px 30px 4px 0;
  position: relative;
  letter-spacing: -0.005em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--ink-3);
  transition: transform .2s ease, color .2s ease;
  line-height: 0;
}
.faq__item[open] summary::after {
  content: "−";
  color: var(--forest);
}
.faq__item p {
  margin: 12px 0 4px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 640px;
}

/* ─────────── Closing ─────────── */

.closing {
  position: relative;
  overflow: hidden;
  background: var(--cream-soft);
  border-top: 1px solid var(--hair);
  padding: clamp(72px, 10vw, 120px) clamp(20px, 5vw, 56px);
}
.closing__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.closing__visual {
  display: flex;
  justify-content: center;
  position: relative;
}
.closing__visual::before {
  content: "";
  position: absolute;
  inset: 8% 10%;
  background: radial-gradient(60% 50% at 50% 40%, rgba(59, 90, 58, 0.14), transparent 70%);
  filter: blur(12px);
  pointer-events: none;
}
.closing__product {
  width: min(280px, 72vw);
  height: auto;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
}
.closing__inner {
  max-width: 540px;
  margin: 0;
  text-align: left;
}
.closing__icon {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  margin: 0 0 28px;
  box-shadow: var(--shadow);
}
.closing h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 42px);
  margin: 0 0 14px;
  letter-spacing: -0.005em;
}
.closing h2 em { font-style: italic; color: var(--forest); font-weight: 500; }
.closing > .closing__inner > p {
  font-size: 16px;
  color: var(--ink-2);
  margin: 0 0 28px;
  line-height: 1.55;
}

/* Single mailto button — replaces a mailto-POST form that didn't
   actually capture emails in any browser. Honest CTA, opens the
   user's mail client to draft a one-line note. */
.waitlist-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest);
  color: #fff;
  border-radius: 12px;
  padding: 13px 22px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s ease, transform .15s ease;
  border: none;
  letter-spacing: -0.005em;
}
.waitlist-btn:hover {
  background: var(--forest-deep);
  transform: translateY(-1px);
  border-bottom-color: transparent;
}

/* Higher specificity (matches the .closing > .closing__inner > p rule
   above) so the mono microcopy actually takes effect. */
.closing > .closing__inner > p.closing__fineprint {
  margin: 36px auto 32px;
  padding-top: 24px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  line-height: 1.7;
  text-align: inherit;
}

/* ─────────── Footer ─────────── */

.foot {
  padding: clamp(36px, 6vw, 56px) clamp(20px, 5vw, 56px) 48px;
  max-width: 1240px;
  margin: 0 auto;
}
.foot__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--hair);
}
.foot__mark {
  height: 26px;
  width: auto;
  opacity: 0.85;
}
.foot__links {
  display: flex;
  gap: 24px;
  font-size: 14px;
}
.foot__links a { color: var(--ink-2); }
.foot__legal {
  font-size: 12px;
  color: var(--ink-3);
  margin: 20px 0 0;
  max-width: 720px;
  line-height: 1.6;
}
.foot__legal a { color: var(--ink-2); }

/* Scenes nudge — quiet conversion offer after the three scenes,
   before the dark anti-feature slab. Single italic serif link with
   a hairline accent so it doesn't compete with the scene captions
   themselves. */
.scenes__nudge {
  margin: clamp(48px, 7vw, 88px) auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--hair);
  text-align: center;
  max-width: 560px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink-2);
}
.scenes__nudge a {
  color: var(--forest);
  border-bottom: 1px solid rgba(59, 90, 58, 0.3);
  padding-bottom: 1px;
}
.scenes__nudge a:hover {
  border-bottom-color: var(--forest);
}

/* Closing stamp — small mono "v1.0 · summer 2026" label rotated
   like a library date-due card. Echoes the floating fragments
   around the hero phone so the page opens and closes on the same
   crafted note. */
.closing__stamp {
  position: absolute;
  top: 28px;
  right: clamp(20px, 5vw, 56px);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  border: 1px solid rgba(201, 123, 90, 0.32);
  padding: 6px 12px;
  border-radius: 4px;
  transform: rotate(4deg);
  background: rgba(251, 247, 234, 0.6);
}
@media (max-width: 720px) {
  .closing__stamp { display: none; }
  .closing__layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .closing__inner {
    text-align: center;
    margin: 0 auto;
  }
  .closing__icon { margin: 0 auto 28px; }
  .closing__visual { order: -1; }
  .closing__product { transform: none; width: min(220px, 64vw); }
}

/* Footer legal — split into warm (made-by line) and cold (trademark
   line) so the literary tone of the made-by line doesn't share a
   paragraph with Apple's mandatory trademark notice. */
.foot__legal--warm { margin-top: 20px; }
.foot__legal--cold {
  margin-top: 8px;
  font-size: 11px;
  color: var(--ink-3);
  opacity: 0.7;
}

/* Honour reduced motion: kill the translateY hovers and float-
   degrade transitions for users who've asked the OS to ease off
   on movement. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
  .appstore:hover, .waitlist-btn:hover { transform: none; }
}

/* ─────────── Scene portrait (illustrated character card) ─────────── */

/* Floating "Folk · 01" portrait card that drifts off the top-left
   of the Folk-detail phone in scene one. Holds a real species
   illustration from the library. Ambient breathing animation keeps
   it alive without being noisy — same period as a slow exhale. */
.scene__portrait {
  position: absolute;
  top: 4%;
  left: 0;
  width: 138px;
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 18px;
  padding: 14px 14px 10px;
  box-shadow:
    0 1px 2px rgba(20, 20, 0, 0.04),
    0 20px 44px rgba(40, 30, 10, 0.10);
  transform: rotate(-5deg);
  z-index: 2;
  animation: portrait-breathe 6s ease-in-out infinite;
  text-align: center;
}
.scene__portrait img {
  display: block;
  width: 110px;
  height: 110px;
  margin: 0 auto 6px;
  object-fit: contain;
}
.scene__portrait-stamp {
  display: inline-block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  border-top: 1px solid var(--hair);
  padding-top: 8px;
  width: 100%;
}
@keyframes portrait-breathe {
  0%, 100% { transform: rotate(-5deg) translateY(0); }
  50%      { transform: rotate(-5deg) translateY(-6px); }
}
/* Honour reduced-motion: stop the breathing animation but keep
   the resting tilt + position so the composition still reads. */
@media (prefers-reduced-motion: reduce) {
  .scene__portrait { animation: none; }
}
/* At intermediate desktop widths the -5deg rotated card was
   clipping into the Sphynx inside the phone (same illustration
   doubled). Shrink it and shift it left so the two never overlap;
   below 880px we drop it entirely (stacked layout). */
@media (max-width: 1024px) {
  .scene__portrait {
    width: 116px;
    left: -10px;
    top: 0;
  }
  .scene__portrait img {
    width: 92px;
    height: 92px;
  }
}
/* Tighter intermediate step — between 940 and 1024px the phone
   column has narrowed enough that even the shrunken card crowds
   the phone's left edge. Push it further out-of-frame. */
@media (max-width: 940px) {
  .scene__portrait {
    left: -24px;
  }
}
@media (max-width: 880px) {
  .scene__portrait { display: none; }
}

/* ─────────── Species marquee ─────────── */

.marquee {
  /* Single source of truth for the rhythm — used by both the
     inter-item gap and the row's trailing padding so the seam
     between row 1 and the duplicated row 2 reads as one more
     gap, not a missed beat. */
  --marquee-gap: clamp(20px, 4vw, 60px);

  margin: clamp(72px, 10vw, 120px) 0 0;
  padding: clamp(48px, 7vw, 80px) 0 clamp(40px, 6vw, 64px);
  background: linear-gradient(180deg,
    rgba(217, 168, 106, 0.06) 0%,
    rgba(217, 168, 106, 0) 100%);
  border-top: 1px solid var(--hair);
  text-align: center;
  overflow: hidden;
}
/* Wrapper that owns the viewport-edge fade. Separate from the track
   so the fade mask is relative to the visible area (viewport-wide),
   not to the much wider scrolling track. */
.marquee__viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg,
    transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg,
    transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marquee__kicker {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--ink-2);
  margin: 0 0 36px;
}
/* Both rows sit side-by-side in the track and animate together.
   When the track has translated -50% (one row-width), the second
   identical row is now where the first started — invisible reset
   to translate(0) makes the loop seamless. width: max-content is
   load-bearing: translate(-50%) is relative to the element's own
   width, so the track must be the full content width (2× one row),
   not the viewport width, for one row's worth of scroll to equal
   exactly 50%. Each row's right padding must equal the inter-item
   gap so the rhythm doesn't skip a beat across the row-1 → row-2
   seam (gap inside row vs trailing edge between rows). */
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 60s linear infinite;
}
.marquee__row {
  display: flex;
  gap: var(--marquee-gap);
  list-style: none;
  margin: 0;
  padding: 0 var(--marquee-gap) 0 0;
  flex-shrink: 0;
}
.marquee__row li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-3);
}
.marquee__row img {
  width: clamp(60px, 8vw, 88px);
  height: clamp(60px, 8vw, 88px);
  object-fit: contain;
  transition: transform .3s ease;
}
.marquee__row li:hover img {
  transform: scale(1.08) translateY(-2px);
}
.marquee__count {
  margin-top: 32px;
  font-family: var(--mono);
  font-size: clamp(10px, 2.6vw, 11px);
  letter-spacing: clamp(0.08em, 0.4vw, 0.16em);
  text-transform: uppercase;
  color: var(--terracotta);
  white-space: nowrap;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .marquee__row + .marquee__row { display: none; }
}

/* ─────────── Privacy page ─────────── */

.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 80px) clamp(20px, 5vw, 32px) 80px;
}
.prose .pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--forest);
  border-left: 2px solid var(--gold);
  padding-left: 16px;
  margin: 0 0 32px;
  line-height: 1.4;
}
.prose h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 46px);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.prose h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  margin: 48px 0 12px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.prose h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  margin: 32px 0 8px;
  color: var(--ink);
}
.prose p, .prose li {
  color: var(--ink-2);
  line-height: 1.7;
}
.prose ul { padding-left: 22px; }
.prose code {
  background: var(--paper);
  padding: 1px 6px;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 13px;
}
.prose strong { color: var(--ink); font-weight: 600; }
/* Body-text links need an actual affordance — bare forest-green text
   reads as emphasis, not as something clickable. Give every in-prose
   anchor a soft underline that thickens on hover. */
.prose p a,
.prose li a {
  color: var(--forest);
  border-bottom: 1px solid color-mix(in srgb, var(--forest) 35%, transparent);
  padding-bottom: 1px;
}
.prose p a:hover,
.prose li a:hover {
  border-bottom-color: var(--forest);
  color: var(--forest-deep);
}
.prose .meta {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.prose hr {
  border: none;
  border-top: 1px solid var(--hair);
  margin: 40px 0;
}
