/* Bo marketing site — tokens mirror screens/00-foundations/design-system.md */
:root {
  --bg: #FAF8F3;          /* color/bg/canvas */
  --surface: #FFFFFF;      /* color/bg/surface */
  --surface-warm: #F4EFE5; /* color/bg/surface-warm */
  --primary: #2D6A4F;      /* color/primary */
  --primary-hover: #245A41;
  --primary-soft: #E7F0EA;
  --accent: #E8985E;       /* color/accent */
  --accent-soft: #FBEFE3;
  --ink: #1F2421;          /* color/text/primary */
  --muted: #6B7363;        /* color/text/secondary */
  --inverse: #FFFFFF;
  --border: #EAE6DD;       /* color/border */
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;
  --shadow-md: 0 4px 12px rgba(31, 36, 33, 0.06);
  --shadow-lg: 0 12px 32px rgba(31, 36, 33, 0.10);
  --font: ui-rounded, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); }
.wrap { max-width: 1040px; margin: 0 auto; padding: 0 24px; }

/* ---- nav ---- */
.nav {
  position: sticky; top: 0; z-index: 10;
  background: rgba(250, 248, 243, 0.85);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 20px; text-decoration: none; color: var(--ink); }
.brand img { width: 32px; height: 32px; border-radius: 50%; }
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: 15px; }
.nav-links a:hover { color: var(--ink); }
.pill {
  display: inline-block; padding: 7px 14px; border-radius: var(--radius-pill);
  background: var(--primary-soft); color: var(--primary);
  font-size: 13px; font-weight: 600; border: 1px solid #d4e4da;
}

/* ---- hero ---- */
.hero { text-align: center; padding: 72px 0 56px; }
.hero img.mark { width: 96px; height: 96px; border-radius: 50%; box-shadow: var(--shadow-lg); }
.hero h1 { font-size: 46px; line-height: 1.08; letter-spacing: -0.5px; margin: 28px auto 14px; max-width: 14ch; }
.hero p.lead { font-size: 20px; color: var(--muted); max-width: 34ch; margin: 0 auto 24px; }
.hero .cta-row { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.soon {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--inverse);
  padding: 13px 22px; border-radius: var(--radius-pill); font-weight: 600; font-size: 16px;
}
.microline { color: var(--muted); font-size: 14px; }

/* ---- sections ---- */
section { padding: 56px 0; }
.section-head { text-align: center; max-width: 30ch; margin: 0 auto 40px; }
.section-head h2 { font-size: 30px; letter-spacing: -0.3px; margin: 0 0 10px; }
.section-head p { color: var(--muted); margin: 0; }
.eyebrow { color: var(--accent); font-weight: 700; font-size: 13px; letter-spacing: 0.6px; text-transform: uppercase; margin: 0 0 8px; }

/* ---- feature cards ---- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-md);
}
.card .ic {
  width: 44px; height: 44px; border-radius: 14px; background: var(--accent-soft);
  display: grid; place-items: center; font-size: 22px; margin-bottom: 14px;
}
.card h3 { margin: 0 0 6px; font-size: 18px; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }

/* ---- pricing ---- */
.pricing { background: var(--surface-warm); border-radius: var(--radius-xl); padding: 48px 24px; }
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 720px; margin: 0 auto; }
.price {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; text-align: center;
}
.price.founder { border-color: var(--primary); box-shadow: var(--shadow-md); position: relative; }
.price .tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: var(--inverse); font-size: 12px; font-weight: 700;
  padding: 4px 12px; border-radius: var(--radius-pill);
}
.price .amount { font-size: 40px; font-weight: 700; letter-spacing: -0.5px; font-variant-numeric: tabular-nums; }
.price .label { color: var(--muted); font-size: 15px; margin-top: 4px; }
.price small { display: block; color: var(--muted); font-size: 13px; margin-top: 10px; }
.price-foot { text-align: center; color: var(--muted); font-size: 14px; margin-top: 22px; }
.price-foot strong { color: var(--ink); }

/* ---- closing band ---- */
.band { text-align: center; }
.band h2 { font-size: 28px; margin: 0 0 8px; }
.band p { color: var(--muted); margin: 0 0 6px; }
.disclaimer-note { font-size: 13px; color: var(--muted); }

/* ---- footer ---- */
footer { border-top: 1px solid var(--border); margin-top: 32px; padding: 40px 0; }
footer .cols { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; }
footer .legal-links { display: flex; flex-wrap: wrap; gap: 8px 20px; }
footer .legal-links a { color: var(--muted); text-decoration: none; font-size: 14px; }
footer .legal-links a:hover { color: var(--ink); }
footer .meta { color: var(--muted); font-size: 13px; }

@media (max-width: 760px) {
  .hero h1 { font-size: 36px; }
  .cards { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .nav-links a:not(.pill) { display: none; }
}
