/* Bloom, marketing site
   Extends the dashboard palette (warm cream + ink, serif italic accents).
   Pure static; no React. Edit copy directly in each page's HTML.
*/

@import url("https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&family=Geist+Mono:wght@400;500&family=Instrument+Serif:ital@0;1&display=swap");

:root {
  /* Palette, mirrors dashboard styles.css */
  --bg: #f7f5f0;
  --surface: #fdfcf9;
  --surface-2: #f1eee6;
  --surface-3: #e9e5db;
  --ink: #14130f;
  --ink-2: #3a3833;
  --ink-3: #6b6862;
  --muted: #98948c;
  --border: #e3dfd5;
  --border-strong: #d2cdc1;

  --accent: #14130f;
  --accent-soft: #14130f14;
  --accent-on: #fdfcf9;

  --success: #3d6b3f;
  --success-soft: #3d6b3f14;
  --warn: #b8772b;
  --warn-soft: #b8772b14;
  --danger: #a7402f;
  --danger-soft: #a7402f14;

  --font-serif: "Instrument Serif", Georgia, serif;
  --font-sans: "Geist", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-2xl: 28px;

  --shadow-sm: 0 1px 0 rgba(20, 19, 15, 0.04), 0 1px 2px rgba(20, 19, 15, 0.04);
  --shadow: 0 1px 0 rgba(20, 19, 15, 0.04), 0 4px 16px rgba(20, 19, 15, 0.06);
  --shadow-lg: 0 2px 0 rgba(20, 19, 15, 0.04), 0 24px 48px rgba(20, 19, 15, 0.08);

  --container: 1200px;
  --nav-h: 64px;
}

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

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Container ───────────────────────────────────────────── */
.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
.wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; width: 100%; }

/* ── Typography ──────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  font-weight: 500;
}

.display {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
  text-wrap: balance;
  margin: 0;
}
.display em, .h-2 em, .h-3 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.h-2 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.028em;
  text-wrap: balance;
  margin: 0;
}
.h-3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}
.h-4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.012em;
  margin: 0;
}
.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-2);
  text-wrap: pretty;
  margin: 0;
}
.body { font-size: 15.5px; line-height: 1.6; color: var(--ink-2); margin: 0; }
.body-sm { font-size: 14px; line-height: 1.55; color: var(--ink-3); margin: 0; }

.serif-em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--bg) 90%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand .brand-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand .brand-icon img {
  display: block;
  width: 32px;
  height: 32px;
}
.brand .brand-logo {
  display: block;
  height: 24px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 4px;
  margin-left: 8px;
}
.nav-link {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: background 0.12s ease, color 0.12s ease;
}
.nav-link:hover { background: var(--surface-2); color: var(--ink); }
.nav-link.active { color: var(--ink); background: var(--surface-2); }
.nav-spacer { flex: 1; }
.nav-actions { display: flex; align-items: center; gap: 8px; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 9px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease, transform 0.06s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--surface-2); }
.btn:active { transform: translateY(0.5px); }
.btn-primary {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}
.btn-primary:hover { background: #000; border-color: #000; }
.btn-ghost { background: transparent; border-color: transparent; }
.btn-ghost:hover { background: var(--surface-2); }
.btn-lg {
  padding: 13px 20px;
  font-size: 15px;
  border-radius: 11px;
}
.btn-sm {
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 7px;
}
.btn .arrow {
  transition: transform 0.18s ease;
}
.btn:hover .arrow { transform: translateX(2px); }

.cta-row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.cta-note {
  font-size: 13.5px;
  color: var(--ink-3);
  margin-left: 4px;
}

/* ── Sections ────────────────────────────────────────────── */
.section { padding: clamp(72px, 9vw, 128px) 0; }
.section-tight { padding: clamp(48px, 6vw, 80px) 0; }
.section-divider { border-top: 1px solid var(--border); }
.section + .section-divider { margin-top: 0; }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 56px;
  max-width: 760px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; align-items: center; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  padding: clamp(64px, 8vw, 120px) 0 clamp(72px, 9vw, 128px);
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}
.hero-copy { display: flex; flex-direction: column; gap: 28px; }
.hero-copy .eyebrow { margin-bottom: -4px; }
.hero-copy .lede { max-width: 520px; }
.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
  list-style: none;
  padding: 0;
}
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-2);
}
.hero-bullets li::before {
  content: "";
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%233d6b3f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 8.5l3 3 7-7'/></svg>");
}

/* ── Hero visual ─────────────────────────────────────────── */
.hero-visual {
  position: relative;
  min-height: 480px;
}
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 20px;
  position: absolute;
}
.hero-card .h-card-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}

/* ── Logo strip ──────────────────────────────────────────── */
.logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logo-cell {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--ink-3);
  text-align: center;
  letter-spacing: -0.01em;
  opacity: 0.85;
}
.logo-cell.sans {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.logo-cell.mono {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 15px;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}

/* ── Feature grid ────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature {
  background: var(--surface);
  padding: 32px;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 220px;
}
.feature .ico {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--surface-2);
  color: var(--ink);
  display: grid; place-items: center;
  margin-bottom: 8px;
}
.feature .ico svg { width: 18px; height: 18px; }
.feature h3 { margin: 0; }
.feature p { color: var(--ink-3); font-size: 14.5px; line-height: 1.55; margin: 0; }

/* ── How it works steps ──────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.step .num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 56px;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.step h3 { margin: 0; }
.step p { color: var(--ink-3); font-size: 15px; margin: 0; }

/* ── Audience splitter ───────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.split-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.split-card:hover {
  border-color: var(--border-strong);
}
.split-card .eyebrow { color: var(--ink-3); }
.split-card .split-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
}
.split-card .split-link .arrow { transition: transform 0.18s ease; }
.split-card:hover .split-link .arrow { transform: translateX(3px); }
.split-card.dark {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}
.split-card.dark .eyebrow { color: #a39e90; }
.split-card.dark .body { color: #d8d3c5; }
.split-card.dark .split-link { color: var(--surface); }

/* ── Quote / proof ───────────────────────────────────────── */
.quote {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 56px;
  position: relative;
}
.quote q {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: block;
  margin: 0 0 28px;
  quotes: "“" "”" "‘" "’";
}
.quote-meta {
  display: flex; align-items: center; gap: 12px;
}
.quote-meta .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface-3);
  color: var(--ink-2);
  display: grid; place-items: center;
  font-size: 13px; font-weight: 600;
}
.quote-meta .name { font-size: 14.5px; font-weight: 500; color: var(--ink); }
.quote-meta .role { font-size: 13px; color: var(--ink-3); }

/* ── Final CTA band ──────────────────────────────────────── */
.cta-band {
  background: var(--ink);
  color: var(--surface);
  border-radius: var(--radius-2xl);
  padding: clamp(56px, 7vw, 96px);
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: var(--surface); }
.cta-band .lede { color: #d8d3c5; max-width: 580px; }
.cta-band .btn { border-color: var(--surface); background: transparent; color: var(--surface); }
.cta-band .btn:hover { background: rgba(255,255,255,0.08); }
.cta-band .btn-primary { background: var(--surface); color: var(--ink); }
.cta-band .btn-primary:hover { background: #fff; }
.cta-band .cta-note { color: #a39e90; }
.cta-band .bg-bloom {
  position: absolute;
  inset: auto -10% -50% auto;
  width: 60%; aspect-ratio: 1;
  background:
    radial-gradient(circle at 50% 50%, rgba(245,241,230,0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Footer ──────────────────────────────────────────────── */
.foot {
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
  margin-top: 64px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.foot-col { display: flex; flex-direction: column; gap: 12px; }
.foot-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  font-weight: 500;
  margin: 0 0 8px;
}
.foot-col a {
  font-size: 14px;
  color: var(--ink-2);
  transition: color 0.12s;
}
.foot-col a:hover { color: var(--ink); }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--ink-3);
}
.foot-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-3);
  max-width: 280px;
  margin-top: 4px;
}

/* ── Misc primitives ─────────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
}
.pill .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
}
.pill .label { color: var(--ink-3); }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 500;
  background: var(--surface-2);
  color: var(--ink-2);
  border: 1px solid var(--border);
}
.tag-success { background: var(--success-soft); color: var(--success); border-color: transparent; }
.tag-warn    { background: var(--warn-soft);    color: var(--warn);    border-color: transparent; }
.tag-danger  { background: var(--danger-soft);  color: var(--danger);  border-color: transparent; }
.tag-accent  { background: var(--accent-soft);  color: var(--accent);  border-color: transparent; }

.divider { height: 1px; background: var(--border); margin: 32px 0; border: 0; }

/* ── Stat block ──────────────────────────────────────────── */
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat .num {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.stat .num em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.stat .label { font-size: 13px; color: var(--ink-3); }

/* ── Mini "screenshot" cards used as visuals ─────────────── */
.snippet {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}
.snippet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.snippet-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.snippet-sub {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.metric .v {
  font-family: var(--font-sans);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.metric .v em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.metric .l {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
}
.metric .d {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  font-variant-numeric: tabular-nums;
}
.metric .d.up { color: var(--success); }
.metric .d.down { color: var(--danger); }

.task-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.task-row:last-child { border-bottom: 0; }
.task-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}
.task-check.done {
  background: var(--success);
  border-color: var(--success);
}
.task-check.done::after {
  content: "";
  position: absolute; inset: 4px 5px 5px 4px;
  border-left: 1.6px solid #fff;
  border-bottom: 1.6px solid #fff;
  transform: rotate(-45deg);
}
.task-body { flex: 1; min-width: 0; }
.task-title {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.35;
}
.task-meta {
  display: flex; gap: 8px; align-items: center;
  font-size: 11.5px;
  color: var(--ink-3);
}
.task-impact {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--success);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Sparkline */
.spark {
  height: 36px;
  display: block;
  color: var(--ink);
}
.spark .line { fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.spark .fill { fill: currentColor; opacity: 0.06; }
.spark .dot { fill: currentColor; }
.spark.success { color: var(--success); }
.spark.warn { color: var(--warn); }
.spark.danger { color: var(--danger); }

/* Keyword row */
.kw-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.kw-row:last-child { border-bottom: 0; }
.kw-row .kw {
  flex: 1; min-width: 0;
  color: var(--ink);
  font-weight: 500;
}
.kw-row .rank {
  font-family: var(--font-mono);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  color: var(--ink-2);
}
.kw-row .delta {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-variant-numeric: tabular-nums;
}
.kw-row .delta.up { color: var(--success); }
.kw-row .delta.down { color: var(--danger); }

/* ── Comparison columns (with / without) ─────────────────── */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.compare-col {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  background: var(--surface);
}
.compare-col.before {
  background: var(--surface-2);
  border-color: var(--border);
}
.compare-col h3 { margin: 0 0 8px; }
.compare-col .eyebrow { margin-bottom: 18px; display: block; }
.compare-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.compare-col li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--ink-2);
}
.compare-col.before li::before {
  content: "−";
  flex-shrink: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--surface-3);
  color: var(--ink-3);
  display: grid; place-items: center;
  font-size: 13px;
  margin-top: 1px;
}
.compare-col.after li::before {
  content: "";
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: 3px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%233d6b3f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 8.5l3 3 7-7'/></svg>");
}

/* ── Services upsell ─────────────────────────────────────── */
.upsell {
  background: var(--ink);
  color: var(--surface);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.upsell h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  color: var(--surface);
  text-wrap: balance;
}
.upsell h3 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.upsell p { color: #d8d3c5; font-size: 16px; line-height: 1.55; margin: 0 0 20px; }
.upsell .btn { border-color: var(--surface); background: transparent; color: var(--surface); }
.upsell .btn:hover { background: rgba(255,255,255,0.08); }
.upsell .btn-primary { background: var(--surface); color: var(--ink); }
.upsell .btn-primary:hover { background: #fff; }
.upsell-visual {
  background: rgba(245,241,230,0.04);
  border: 1px solid rgba(245,241,230,0.12);
  border-radius: var(--radius);
  padding: 18px;
}
.upsell-visual .task-row {
  border-bottom-color: rgba(245,241,230,0.08);
}
.upsell-visual .task-title { color: var(--surface); }
.upsell-visual .task-meta  { color: #a39e90; }
.upsell-visual .task-check { border-color: rgba(245,241,230,0.3); }
.upsell-visual .snippet-title { color: var(--surface); }
.upsell-visual .snippet-sub { color: #7a7669; }
.upsell-visual .bloom-take {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
}
.upsell-visual .bloom-take .price {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-2);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { min-height: 420px; }
  .feature-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .split { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .upsell { grid-template-columns: 1fr; padding: 32px; }
  .logos { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .quote { padding: 32px; }
  .cta-band { padding: 48px 24px; }
}
