/* Plainleaf — shared styles. Palette and type match the app:
   cream paper, ink, lime; Instrument Serif over Albert Sans. */
:root {
  --paper: #F2EEE3;
  --card: #FBF9F1;
  --ink: #14261B;
  --lime: #C8E05C;
  --moss: #64805E;
  --amber: #C99A3A;
  --rust: #BF5B34;
  --muted: #6B7266;
  --hairline: rgba(20, 38, 27, .08);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Albert Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
.serif { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
a { color: var(--moss); }
a:hover { color: var(--rust); }

/* Nav */
nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(242, 238, 227, .88); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px; }
.wordmark { display: flex; align-items: center; gap: 8px; color: var(--ink); text-decoration: none; }
.wordmark span { font-size: 15px; font-weight: 700; letter-spacing: .18em; }
.nav-links { display: flex; gap: 24px; font-size: 14px; font-weight: 600; }
.nav-links a { color: #3A4A3C; text-decoration: none; }
.nav-links a:hover { color: var(--ink); }
.pill-cta {
  background: var(--ink); color: var(--paper) !important; text-decoration: none;
  font-size: 13.5px; font-weight: 700; padding: 10px 18px; border-radius: 999px;
}
.pill-cta:hover { background: #24382B; }

/* Hero */
.hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; padding: 72px 0 64px; }
.hero h1 { font-size: clamp(42px, 6vw, 64px); line-height: 1.04; }
.hero .lede { font-size: 17.5px; color: #3A4A3C; margin-top: 18px; max-width: 46ch; text-wrap: pretty; }
.hero .fineprint { font-size: 13.5px; color: var(--muted); margin-top: 14px; }
.badge-soon {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 26px;
  border: 1.5px solid var(--ink); border-radius: 14px; padding: 12px 20px;
  font-weight: 700; font-size: 14.5px; background: var(--card);
}

/* Phone mock */
.phone {
  width: 300px; margin: 0 auto; background: var(--card);
  border: 1px solid var(--hairline); border-radius: 38px;
  box-shadow: 0 30px 60px rgba(20, 38, 27, .16);
  padding: 22px 18px 26px; font-size: 13px;
}
.chip { display: inline-block; font-size: 11px; font-weight: 700; border-radius: 999px; padding: 4px 10px; }
.chip.lime { background: var(--lime); color: var(--ink); }
.chip.quiet { background: rgba(20, 38, 27, .06); color: var(--muted); font-weight: 600; }
.phone h3 { font-size: 24px; margin-top: 12px; }
.phone .latin { color: var(--muted); font-size: 12.5px; }
.healthy {
  display: flex; gap: 8px; align-items: flex-start; margin-top: 14px;
  background: rgba(100, 128, 94, .12); border: 1px solid rgba(100, 128, 94, .3);
  border-radius: 14px; padding: 11px 12px; font-weight: 600; font-size: 12.5px;
}
.specs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 14px; }
.spec { background: var(--paper); border: 1px solid var(--hairline); border-radius: 12px; padding: 9px 11px; }
.spec .k { font-size: 10px; font-weight: 700; letter-spacing: .06em; color: var(--muted); text-transform: uppercase; }
.spec .v { font-weight: 700; font-size: 12.5px; margin-top: 2px; }
.phone .add { background: var(--ink); color: var(--paper); border-radius: 999px; text-align: center; font-weight: 700; padding: 13px; margin-top: 16px; font-size: 13.5px; }

/* True-facts strip */
.facts { border-block: 1px solid var(--hairline); background: var(--card); }
.facts-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 30px 0; }
.fact .big { font-family: 'Instrument Serif', Georgia, serif; font-size: 30px; line-height: 1.1; }
.fact .small { font-size: 13px; color: var(--muted); margin-top: 4px; text-wrap: pretty; }

/* Sections */
section { padding: 72px 0; }
.eyebrow { font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--moss); }
h2 { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; font-size: clamp(32px, 4.4vw, 44px); line-height: 1.08; margin-top: 10px; max-width: 22ch; }
.section-lede { color: #3A4A3C; margin-top: 14px; max-width: 60ch; text-wrap: pretty; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.step { background: var(--card); border: 1px solid var(--hairline); border-radius: 20px; padding: 24px; }
.step .n { font-family: 'Instrument Serif', Georgia, serif; font-size: 26px; color: var(--moss); }
.step h4 { font-size: 17px; margin-top: 10px; }
.step p { font-size: 14px; color: #3A4A3C; margin-top: 6px; }

.features { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 40px; }
.feature { background: var(--card); border: 1px solid var(--hairline); border-radius: 20px; padding: 26px; }
.feature .dot { width: 38px; height: 38px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 17px; }
.feature h4 { font-size: 17.5px; margin-top: 14px; }
.feature p { font-size: 14.5px; color: #3A4A3C; margin-top: 6px; text-wrap: pretty; }

/* Promise */
.promise { background: var(--ink); color: var(--paper); border-radius: 28px; padding: 56px 48px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.promise .eyebrow { color: var(--lime); }
.promise h2 { color: var(--paper); }
.promise ul { list-style: none; margin-top: 22px; display: grid; gap: 12px; }
.promise li { display: flex; gap: 11px; font-size: 15px; align-items: flex-start; }
.promise li::before { content: ""; flex: none; width: 8px; height: 8px; border-radius: 99px; background: var(--lime); margin-top: 7px; }
.decide { background: var(--card); color: var(--ink); border-radius: 20px; padding: 20px; font-size: 13px; }
.decide .chip.amber { background: #FFF7EA; color: #8A7548; border: 1px solid rgba(201, 154, 58, .4); }
.decide h3 { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; font-size: 24px; margin-top: 10px; }
.decide .hint { color: var(--muted); font-size: 12px; margin-top: 3px; }
.cand { display: flex; justify-content: space-between; align-items: center; gap: 10px; border: 1px solid var(--hairline); background: var(--paper); border-radius: 14px; padding: 11px 12px; margin-top: 9px; }
.cand b { font-size: 13px; }
.cand .latin { display: block; font-weight: 400; color: var(--muted); font-size: 11.5px; }
.cand .mine { background: var(--ink); color: var(--paper); font-size: 11.5px; font-weight: 700; border-radius: 999px; padding: 8px 12px; white-space: nowrap; }

/* Pricing */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; align-items: stretch; }
.tier { background: var(--card); border: 1px solid var(--hairline); border-radius: 22px; padding: 28px; display: flex; flex-direction: column; }
.tier.featured { background: var(--ink); color: var(--paper); box-shadow: 0 24px 50px rgba(20, 38, 27, .25); }
.tier .badge { font-size: 10.5px; font-weight: 800; letter-spacing: .08em; border-radius: 999px; padding: 4px 10px; align-self: flex-start; }
.tier h4 { font-size: 15px; margin-top: 10px; }
.tier .price { font-family: 'Instrument Serif', Georgia, serif; font-size: 40px; margin-top: 6px; }
.tier .per { font-size: 13px; color: var(--muted); }
.tier.featured .per { color: rgba(242, 238, 227, .65); }
.tier ul { list-style: none; margin-top: 18px; display: grid; gap: 9px; font-size: 13.5px; }
.tier li { display: flex; gap: 9px; align-items: flex-start; }
.tier li::before { content: "✓"; color: var(--moss); font-weight: 800; flex: none; }
.tier.featured li::before { color: var(--lime); }
.honest-note { margin-top: 26px; font-size: 13.5px; color: #3A4A3C; max-width: 74ch; text-wrap: pretty; }
.honest-note b { color: var(--ink); }

/* FAQ */
.faq { max-width: 760px; }
.faq details { border-bottom: 1px solid var(--hairline); padding: 18px 0; }
.faq summary { font-weight: 700; font-size: 16px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 14px; }
.faq summary::after { content: "+"; color: var(--moss); font-size: 20px; font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin-top: 10px; font-size: 14.5px; color: #3A4A3C; max-width: 66ch; }

/* Final CTA + footer */
.final { text-align: center; padding: 88px 0; }
.final h2 { margin-inline: auto; }
footer { border-top: 1px solid var(--hairline); padding: 26px 0 40px; }
.foot-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 13px; color: var(--muted); flex-wrap: wrap; }
.foot-inner a { color: var(--muted); text-decoration: none; margin-left: 18px; }
.foot-inner a:hover { color: var(--ink); }

/* Legal pages */
.legal { max-width: 720px; padding: 64px 0 80px; }
.legal h1 { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; font-size: 44px; }
.legal .updated { color: var(--muted); font-size: 13.5px; margin-top: 8px; }
.legal h2 { font-size: 24px; margin-top: 40px; max-width: none; }
.legal p, .legal li { font-size: 15px; color: #2C3A2F; margin-top: 12px; }
.legal ul { padding-left: 22px; }

@media (max-width: 860px) {
  .hero, .promise { grid-template-columns: 1fr; }
  .phone { margin-top: 8px; }
  .steps, .tiers { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .facts-inner { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .promise { padding: 36px 24px; }
}
