/* Mojo Systems — marketing site
   Palette matches existing mojosystems.io (warm-neutral, near-white,
   deep ink text, blue accent). Restrained, infrastructural. */

:root {
  --bg: #fafaf9;
  --surface: #ffffff;
  --border: #e7e5e4;
  --border-strong: #d6d3d1;
  --text: #0c0a09;
  --text-secondary: #44403c;
  --text-muted: #78716c;
  --accent: #1d4ed8;
  --accent-hover: #1e40af;
  --accent-soft: #dbeafe;
  --accent-warm: #b8916b;
  --accent-warm-soft: rgba(184, 145, 107, 0.08);

  --max: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
  --serif: ui-serif, "Iowan Old Style", "Charter", Georgia, Cambria, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Inter", "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }

/* ── Layout ─────────────────────────────────────────────────────── */
.shell { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(80px, 7vw, 100px) 0; border-top: 1px solid var(--border); }
.section:first-of-type { border-top: 0; }
.section--narrow .shell { max-width: 760px; }
.section--surface { background: var(--surface); border-top-color: var(--border); }

/* ── Nav (sticky, glass-blur background) ────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav .shell { display: flex; align-items: center; gap: 24px; }

.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-weight: 700;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text);
}
.brand-mark { width: 28px; height: 28px; color: var(--text); }

.nav-links {
  margin-left: auto; display: flex; align-items: center; gap: 32px;
  font-size: 14px; color: var(--text-secondary);
}
.nav-links a:not(.nav-cta) {
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:not(.nav-cta):hover { color: var(--text); }
.nav-links a.current { color: var(--text); font-weight: 600; }

/* Sign In nav link — calm text link sits to the left of the primary
   Get Started button. Different visual weight signals "returning user". */
.nav-signin {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.15s;
  padding: 8px 4px;
}
.nav-signin:hover { color: var(--text); }
@media (max-width: 720px) {
  .nav-signin { display: none; }
}

/* Unified primary button — .nav-cta, .btn-primary, .close-cta all use it */
.nav-cta, .btn-primary, .close-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: #0d0d0d; color: #fff;
  padding: 12px 24px; border-radius: 6px;
  font-size: 14px; font-weight: 600; letter-spacing: 0;
  border: none; outline: none; text-decoration: none;
  transition: background 0.15s, transform 0.08s;
}
.nav-cta { padding: 10px 20px; font-size: 13.5px; }
.nav-cta:hover, .btn-primary:hover, .close-cta:hover { background: #333; }
.nav-cta:active, .btn-primary:active, .close-cta:active { transform: translateY(1px); }
.nav-cta:focus-visible,
.btn-primary:focus-visible,
.close-cta:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

@media (max-width: 720px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* Anchored sections need scroll-margin so sticky nav doesn't cover them */
[id="principles"], [id="integration"], [id="partners"], [id="get-started"] {
  scroll-margin-top: 80px;
}

/* ── Hero ───────────────────────────────────────────────────────── */
.hero {
  background: #f9f8f6;
  padding: clamp(40px, 6vw, 72px) 0 clamp(48px, 7vw, 80px);
  border-top: 0;
}
.hero .shell {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(32px, 5vw, 64px); align-items: center;
}
@media (max-width: 960px) {
  .hero .shell { grid-template-columns: 1fr; gap: 48px; }
}

/* Homepage three-column hero: text | image | callouts */
.hero--three-col .shell {
  grid-template-columns: minmax(0, 35fr) minmax(0, 30fr) minmax(0, 25fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
@media (max-width: 960px) {
  .hero--three-col .shell { grid-template-columns: 1fr; gap: 40px; }
}

.hero-copy h1 {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(32px, 3.8vw, 48px); line-height: 1.1;
  letter-spacing: -0.022em; margin: 0 0 24px; color: var(--text);
}
.hero-copy p {
  font-size: 16px; line-height: 1.6;
  color: var(--text-secondary); margin: 0 0 28px;
  max-width: 44ch;
}

/* Text-link CTA — black, no underline default, underline on hover */
.hero-cta, .card-cta, .text-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 500; color: var(--text);
  border-bottom: 1px solid transparent; padding-bottom: 2px;
  text-decoration: none;
  transition: border-color 0.15s, gap 0.18s;
}
.hero-cta:hover, .card-cta:hover, .text-link:hover {
  border-bottom-color: var(--text); gap: 10px;
}

/* Center column on three-col hero — image holder */
.hero-image-col {
  display: flex; align-items: center; justify-content: center;
}
.hero-image-col img { width: 100%; height: auto; max-width: 100%; }

/* Right column on three-col hero — stacked callouts with thin rules */
.hero-callouts {
  display: flex; flex-direction: column;
}
.hero-callout {
  padding: 16px 0;
  border-top: 1px solid var(--border);
}
.hero-callout:last-child { border-bottom: 1px solid var(--border); }
.hero-callout-label {
  display: block; font-family: var(--sans); font-weight: 700;
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text); margin: 0 0 6px;
}
.hero-callout-body {
  font-size: 13.5px; line-height: 1.55; color: var(--text-secondary); margin: 0;
}

/* Capture-hub deep-page hero — keeps the 2-col layout */
.hero--deep .hero-copy h1 { font-size: clamp(32px, 4.4vw, 44px); margin-bottom: 20px; }
.hero--deep .hero-visual {
  display: flex; align-items: center; justify-content: center;
}

/* ── Section headings ───────────────────────────────────────────── */
h2 {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(28px, 3.8vw, 44px); line-height: 1.15;
  letter-spacing: -0.018em; color: var(--text); margin: 0 0 28px;
  max-width: 22ch;
}
.section-tag {
  font-family: "Inter", var(--sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #888;
  margin: 0 0 14px;
}
.splash { color: var(--text); font-weight: 700; }

/* ── Prose ──────────────────────────────────────────────────────── */
.prose p {
  font-size: clamp(16px, 1.3vw, 18px); line-height: 1.7;
  color: var(--text-secondary); margin: 0 0 20px; max-width: 64ch;
}
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--text); font-weight: 600; }
.prose em { color: var(--text-muted); font-style: italic; }

.pulled-quote {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(28px, 3.6vw, 44px); line-height: 1.18;
  letter-spacing: -0.02em; color: var(--text);
  margin: 64px auto 0; max-width: 22ch; text-align: center;
}
.pulled-quote .splash { display: block; margin-top: 4px; }

/* ── Combined problem + product section (homepage) ──────────────── */
.combined-section {
  background: #f5f4f1;
  border-top: 0;
  padding: clamp(64px, 8vw, 100px) 0;
}
.combined-grid {
  display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
  gap: clamp(40px, 5vw, 72px); align-items: start;
}
@media (max-width: 920px) {
  .combined-grid { grid-template-columns: 1fr; gap: 40px; }
}
.combined-problem {
  border-right: 1px solid var(--border);
  padding-right: clamp(24px, 4vw, 56px);
}
@media (max-width: 920px) {
  .combined-problem {
    border-right: 0; border-bottom: 1px solid var(--border);
    padding-right: 0; padding-bottom: 40px;
  }
}
.combined-problem h2 {
  font-size: clamp(26px, 3.2vw, 38px); line-height: 1.18;
  max-width: 18ch; margin: 0 0 24px;
}
.combined-problem .lede {
  font-size: 16px; line-height: 1.65;
  color: var(--text-secondary); margin: 0 0 24px;
  max-width: 42ch;
}
.combined-problem .bold-callout {
  font-weight: 700; color: var(--text);
  font-size: 17px; line-height: 1.45;
  margin: 0; max-width: 38ch;
}

/* New product card with text + screenshot side-by-side */
.product-card-v2 {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px; align-items: stretch;
  box-shadow: 0 1px 2px rgba(12,10,9,0.03), 0 8px 28px rgba(12,10,9,0.05);
  transition: box-shadow 0.22s, transform 0.22s;
}
.product-card-v2:hover {
  box-shadow: 0 2px 4px rgba(12,10,9,0.05), 0 14px 36px rgba(12,10,9,0.07);
  transform: translateY(-2px);
}
@media (max-width: 720px) {
  .product-card-v2 { grid-template-columns: 1fr; }
}
.product-card-text { display: flex; flex-direction: column; }
.product-card-text h3 {
  font-family: var(--sans); font-size: 22px; font-weight: 700;
  margin: 0 0 8px; color: var(--text); letter-spacing: -0.01em;
}
.product-card-text .product-tagline-v2 {
  font-size: 13.5px; color: var(--text-secondary);
  line-height: 1.5; margin: 0 0 20px;
}
.feature-list { list-style: none; padding: 0; margin: 0 0 24px; }
.feature-list li {
  position: relative; padding-left: 24px; margin: 10px 0;
  font-size: 14px; line-height: 1.5; color: var(--text-secondary);
}
.feature-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--accent); font-weight: 700; font-size: 14px;
  line-height: 1.5;
}
.product-card-text .card-cta {
  margin-top: auto; align-self: flex-start;
}
.product-card-screenshot {
  background: #f0efec; border-radius: 8px;
  min-height: 260px;
  display: flex; align-items: center; justify-content: center;
}
.screenshot-placeholder {
  font-family: var(--mono); font-size: 12px;
  color: var(--text-muted); letter-spacing: 0.06em;
  text-align: center;
}

/* Branded variant — used on the homepage product card where the
   right column displays the Mojo brand mark instead of a screenshot. */
.product-card-screenshot--brand {
  background: var(--bg);
  border: 1px solid var(--border);
  flex-direction: column;
  gap: 18px;
  padding: 32px;
}
.brand-mark-large {
  width: 88px; height: 88px;
  color: var(--text);
}
.brand-mark-wordmark {
  font-family: "Inter", var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Product section (Capture Hub on homepage) ──────────────────── */
.product-section .shell {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 72px); align-items: start;
}
@media (max-width: 880px) {
  .product-section .shell { grid-template-columns: 1fr; }
}
.product-section-intro {
  grid-column: 1 / -1; margin-bottom: 8px;
}
.product-section-intro p {
  color: var(--text-muted); font-size: 15px; margin: 0;
}
.product-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 6px; padding: 36px;
  box-shadow: 0 1px 2px rgba(12,10,9,0.04), 0 10px 28px rgba(12,10,9,0.05);
  transition: box-shadow 0.22s, transform 0.22s;
}
.product-card:hover {
  box-shadow: 0 2px 4px rgba(12,10,9,0.06), 0 14px 36px rgba(12,10,9,0.07);
  transform: translateY(-2px);
}
.product-card h3 {
  font-family: var(--sans); font-weight: 700;
  font-size: 26px; margin: 0 0 12px; letter-spacing: -0.015em;
  color: var(--text);
}
.product-card .product-tagline {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.08em;
  color: var(--text-muted); margin: 0 0 20px;
}
.product-card .product-body {
  font-size: 15.5px; line-height: 1.65;
  color: var(--text-secondary); margin: 0 0 24px;
}
/* .product-card a.card-cta inherits from unified .card-cta rule above */

.product-screenshot {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 4px; padding: 18px;
  font-family: var(--mono); font-size: 11px; color: var(--text-muted);
  min-height: 280px;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.product-screenshot::before { content: "[ Capture Hub screenshot — designer to drop in ]"; }

/* ── Principles section (now centered, single-column) ───────────── */
.principles-section {
  background: var(--bg);
  padding: clamp(80px, 7vw, 100px) 0;
  border-top: 1px solid var(--border);
}
.principles-section .shell { text-align: center; }
.principles-section .section-tag { display: inline-block; }
.principles-section h2 {
  font-size: clamp(28px, 3.4vw, 38px); line-height: 1.2;
  max-width: 100%; margin: 0 auto 12px;
}
.principles-section .pi-intro {
  font-size: 15px; line-height: 1.55;
  color: var(--text-muted); margin: 0 auto 36px;
  max-width: 46ch;
}
.principles-section .principle-cards { text-align: left; }

/* ── Ecosystem section — Mojo + PP as one operational layer ────── */
.ecosystem-section {
  background: var(--surface);
  padding: clamp(80px, 7vw, 100px) 0;
  border-top: 1px solid var(--border);
}
.ecosystem-section .shell { text-align: center; }
.ecosystem-section .section-tag { display: inline-block; }
.ecosystem-section h2 {
  font-size: clamp(28px, 3.6vw, 40px); line-height: 1.18;
  max-width: 100%; margin: 0 auto 16px;
}
.ecosystem-intro {
  font-size: 16px; line-height: 1.65;
  color: #555;
  max-width: 60ch;
  margin: 0 auto 48px;
}
.ecosystem-pair {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
  text-align: left;
}
@media (max-width: 720px) {
  .ecosystem-pair { grid-template-columns: 1fr; }
}
.ecosystem-pillar {
  background: #fbfaf6;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.18s;
}
.ecosystem-pillar:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.ecosystem-pillar-mark {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 4px;
  font-family: "Inter", var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
}
.ecosystem-pillar-mark svg { width: 22px; height: 22px; color: var(--text); flex-shrink: 0; }
.ecosystem-pillar-mark .pp-text-mark {
  display: inline-flex; align-items: center; gap: 8px;
}
.ecosystem-pillar-mark .pp-text-mark::before {
  content: ""; display: inline-block;
  width: 3px; height: 22px;
  background: var(--text); border-radius: 1px;
}
.ecosystem-pillar h3 {
  font-family: "Inter", var(--sans);
  font-size: 22px; font-weight: 700;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.ecosystem-pillar p {
  font-size: 14.5px; line-height: 1.6;
  color: #555; margin: 0;
  flex: 1;
}
.ecosystem-pillar .card-cta {
  align-self: flex-start;
  margin-top: 4px;
}

.ecosystem-verticals {
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.ecosystem-verticals-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #888;
  margin: 0 0 18px;
}
.ecosystem-vertical-row {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 12px 18px;
  font-size: 14.5px;
  color: var(--text);
}
.ecosystem-vertical-row a {
  color: var(--text);
  border-bottom: 1px solid #c0bdb6;
  padding-bottom: 1px;
  transition: border-color 0.15s, color 0.15s;
}
.ecosystem-vertical-row a:hover {
  border-bottom-color: var(--text);
}
.ecosystem-vertical-row .vertical-dot {
  color: #ccc; font-weight: 700;
}

.principle-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 580px) {
  .principle-cards { grid-template-columns: 1fr; }
}
.principle-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 20px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color 0.15s, transform 0.15s;
}
.principle-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.principle-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0;
}
.principle-icon svg { width: 19px; height: 19px; }
.principle-card-name {
  font-family: "Inter", var(--sans);
  font-size: 15px; font-weight: 700;
  margin: 0; color: var(--text);
  letter-spacing: -0.01em;
}
.principle-card-body {
  font-size: 13px; line-height: 1.5;
  color: #555; margin: 0;
}

/* Implementation callout — right side of the 50/50 split */
.pi-implementation {
  position: relative;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
  display: flex; flex-direction: column; gap: 14px;
}
.pi-implementation h3 {
  font-family: "Inter", var(--sans);
  font-size: clamp(20px, 2.2vw, 26px); font-weight: 700;
  margin: 0; color: var(--text);
  letter-spacing: -0.018em; line-height: 1.2;
  max-width: 20ch; padding-right: 130px;
}
.pi-implementation p {
  font-size: 14.5px; line-height: 1.6;
  color: #555; margin: 0; max-width: 42ch;
}
.pi-implementation .card-cta {
  align-self: flex-start; margin-top: 4px;
}
.pp-mark-vertical {
  position: absolute;
  top: 36px; right: 36px;
  display: flex; align-items: flex-start; gap: 12px;
  font-family: "Inter", var(--sans);
  font-weight: 700; font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-muted);
  text-align: left; line-height: 1.4;
}
.pp-mark-vertical .pp-bar {
  display: inline-block;
  width: 3px; height: 36px;
  background: var(--text); border-radius: 1px;
}
.pp-use-cases {
  font-size: 13px !important;
  color: #888 !important;
  line-height: 1.6;
  margin: 4px 0 4px !important;
  max-width: 42ch;
}
.pp-use-cases a {
  color: var(--text);
  border-bottom: 1px solid #c0bdb6;
  padding-bottom: 1px;
  transition: border-color 0.15s;
}
.pp-use-cases a:hover { border-bottom-color: var(--text); }
@media (max-width: 720px) {
  .pi-implementation h3 { padding-right: 0; }
  .pp-mark-vertical { position: static; margin-bottom: 8px; }
}

/* ── Pricing tiers ──────────────────────────────────────────────── */
.tier { padding: 24px 0; border-top: 1px solid var(--border); }
.tier:last-of-type { border-bottom: 1px solid var(--border); margin-bottom: 36px; }
.tier-name {
  font-family: var(--sans); font-size: 20px; font-weight: 700; color: var(--text);
}
.tier-price {
  font-family: var(--mono); font-size: 14px;
  color: var(--text-muted); margin-left: 12px;
}
.tier-body {
  margin: 8px 0 0; color: var(--text-secondary);
  font-size: 15.5px; line-height: 1.6;
}
.tier-bridge {
  margin-top: 8px; color: var(--text-muted);
  font-size: 14.5px; max-width: 64ch;
}

/* ── Close section ──────────────────────────────────────────────── */
.close-section { text-align: center; padding: clamp(80px, 11vw, 140px) 0; }
.close-emotional {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(18px, 2.1vw, 22px); color: var(--text-muted);
  max-width: 36ch; margin: 0 auto 24px; line-height: 1.45;
}
.close-action {
  font-size: 16px; color: var(--text-secondary); margin: 0 0 28px;
}
/* .close-cta inherits from unified .nav-cta/.btn-primary/.close-cta rule above */

/* ── Capture Hub: Hero badge + headline tuning ─────────────────── */
.hero-badge {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #888; margin: 0 0 18px;
}
.hero--deep .hero-copy h1 {
  font-size: clamp(40px, 5vw, 60px); line-height: 1.04;
  letter-spacing: -0.025em; margin: 0 0 18px;
}
.hero-subhead {
  font-size: clamp(20px, 2.2vw, 26px) !important;
  font-weight: 400 !important;
  color: #333 !important;
  line-height: 1.35 !important;
  margin: 0 0 22px !important;
  max-width: none !important;
}
.hero--deep .hero-copy p:not(.hero-subhead):not(.hero-badge) {
  font-size: 16px; color: #555;
  max-width: 480px; margin: 0 0 28px;
}

/* ── Mockup card (dashboard preview, hero right column) ─────────── */
.mockup-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
  padding: 20px;
}
.mockup-topbar {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eee;
  margin-bottom: 12px;
}
.mockup-logo-rect { width: 32px; height: 14px; background: #e8e6e0; border-radius: 3px; }
.mockup-tabs-rect { flex: 1; max-width: 110px; height: 8px; background: #ece9e2; border-radius: 3px; }
.mockup-tabs-rect.short { max-width: 60px; }
.mockup-stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px; margin: 14px 0;
}
.mockup-stat-tile {
  background: #f9f8f5;
  border: 1px solid #f0eee9;
  border-radius: 6px;
  padding: 10px 12px;
  display: flex; flex-direction: column; gap: 3px;
}
.mockup-stat-num {
  font-family: "Inter", var(--sans);
  font-size: 20px; font-weight: 700;
  color: var(--text); line-height: 1;
  letter-spacing: -0.01em;
}
.mockup-stat-label {
  font-size: 9.5px; font-weight: 500;
  color: #888; letter-spacing: 0.02em;
  line-height: 1.2;
}
.mockup-section-heading {
  font-size: 10.5px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  margin: 14px 0 8px;
}
.mockup-list { display: flex; flex-direction: column; }
.mockup-list-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 0; gap: 12px;
  border-bottom: 1px solid #f5f3ee;
  font-size: 12.5px;
}
.mockup-list-item:last-child { border-bottom: 0; }
.mockup-list-name {
  color: var(--text); font-weight: 500;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.mockup-list-tag {
  font-size: 10px; font-weight: 500;
  background: #f0eee9; color: #777;
  padding: 3px 10px; border-radius: 100px;
  letter-spacing: 0.02em; flex-shrink: 0;
}

/* ── "What operators already recognize" (capture-hub Sec 2) ─────── */
.recognize-section { padding: clamp(80px, 7vw, 100px) 0; }
.recognize-section h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  margin-bottom: 32px;
}
.recognize-grid {
  display: grid; grid-template-columns: 60fr 40fr;
  gap: clamp(28px, 4vw, 40px);
  align-items: stretch;
}
@media (max-width: 880px) {
  .recognize-grid { grid-template-columns: 1fr; gap: 24px; }
}
.pain-cards { display: flex; flex-direction: column; gap: 16px; }
.pain-card {
  background: #f5f4f1;
  border-radius: 8px;
  border-left: 3px solid #d0ccc5;
  padding: 20px 24px;
}
.pain-card p {
  margin: 0;
  font-size: 15px; line-height: 1.6;
  color: #444;
}
.pain-card p::before {
  content: "→";
  color: #b0a99c;
  font-weight: 700;
  margin-right: 10px;
}

/* Right-column aside on "What operators already recognize" —
   heading + accent line + body + layered-planes image. No container;
   sits directly on the page bg (same color as the image bg). */
.recognize-aside {
  display: flex; flex-direction: column;
  align-items: flex-start;
  padding-top: 0;
  margin-top: -85px;
}
@media (max-width: 880px) {
  /* On stacked mobile layout, drop the negative offset */
  .recognize-aside { margin-top: 0; }
}
.recognize-aside-title {
  font-family: "Inter", var(--sans);
  font-size: clamp(18px, 1.9vw, 22px);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 16px;
  letter-spacing: -0.015em;
  line-height: 1.3;
  max-width: 28ch;
}
.recognize-aside-accent {
  width: 40px; height: 2px;
  background: var(--accent-warm);
  margin: 0 0 16px;
  border-radius: 1px;
}
.recognize-aside-body {
  font-size: 15px; line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 24px;
  max-width: 40ch;
}
.recognize-aside-image {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  margin: 8px auto 0;
}

/* The right column shouldn't stretch the row — let pain cards on the
   left define the natural height. */
.recognize-grid { align-items: start; }

/* ── "What Capture Hub retains for you" (capture-hub Sec 3) ─────── */
.retain-section {
  background: #fff;
  padding: clamp(80px, 7vw, 100px) 0;
  border-top: 1px solid var(--border);
}
.retain-grid {
  display: grid; grid-template-columns: 40fr 60fr;
  gap: clamp(40px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 960px) {
  .retain-grid { grid-template-columns: 1fr; gap: 32px; }
}
.retain-section h2 {
  font-size: clamp(28px, 3.4vw, 38px);
  margin-bottom: 24px;
}
.retain-bullets { list-style: none; padding: 0; margin: 0; }
.retain-bullets li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 15px; line-height: 1.55;
  color: #444;
}
.retain-bullets li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--accent);
  font-weight: 700; font-size: 16px;
}

.activity-records {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  overflow: hidden;
}
.activity-records-header {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 0.9fr;
  padding: 14px 20px;
  background: #f9f8f5;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #888;
  border-bottom: 1px solid #eee;
}
.activity-records-row {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 0.9fr;
  padding: 14px 20px;
  font-size: 13.5px;
  color: var(--text);
  border-bottom: 1px solid #f5f4f1;
  align-items: center;
}
.activity-records-row:last-child { border-bottom: 0; }
.activity-name { font-weight: 500; }
.activity-source, .activity-date { font-size: 12.5px; color: #777; }
.activity-status {
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 100px;
  display: inline-block; width: fit-content;
}
.activity-status--new { background: #e0e7ff; color: #3730a3; }
.activity-status--contacted { background: #fef3c7; color: #92400e; }
.activity-status--closed { background: #d1fae5; color: #065f46; }

/* ── "How it fits" with integration tiles (capture-hub Sec 4) ──── */
.fits-section {
  background: #f5f3ef;
  padding: clamp(80px, 7vw, 100px) 0;
}
.fits-section .shell { max-width: 900px; text-align: center; }
.fits-section .section-tag { display: inline-block; }
.fits-section h2 {
  font-size: clamp(28px, 3.4vw, 38px);
  max-width: 100%;
  margin: 0 auto 12px;
}
.integration-tiles {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin: 40px 0 32px;
  text-align: left;
}
@media (max-width: 720px) {
  .integration-tiles { grid-template-columns: repeat(2, 1fr); }
}
.integration-tile {
  background: #fbfaf6;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 18px;
}
.integration-tile-icon {
  font-size: 22px; margin-bottom: 12px;
  line-height: 1;
}
.integration-tile-label {
  font-family: "Inter", var(--sans);
  font-size: 14.5px; font-weight: 700;
  color: var(--text);
  margin: 0 0 6px;
}
.integration-tile-body {
  font-size: 12.5px; line-height: 1.5;
  color: #555; margin: 0;
}
.fits-section .fits-body {
  font-size: 15px; line-height: 1.65;
  color: #555; margin: 0 auto 32px;
  max-width: 56ch;
}
.fits-final-quote {
  font-family: "Inter", var(--sans);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  color: var(--text);
  max-width: 22ch;
  margin: 0 auto;
  line-height: 1.3;
}

/* ── Pricing section (capture-hub Sec 5) ────────────────────────── */
.pricing-section {
  background: #fff;
  padding: clamp(80px, 7vw, 100px) 0;
}
.pricing-section .shell { text-align: center; }
.pricing-section .section-tag { display: inline-block; }
.pricing-section h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  max-width: 100%; margin: 0 auto 12px;
}
.pricing-intro {
  font-size: 16px; color: #555;
  max-width: 56ch;
  margin: 0 auto 48px;
}
.pricing-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
@media (max-width: 920px) {
  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}
.pricing-card {
  background: #fff;
  border: 1px solid #e0ddd8;
  border-radius: 24px;
  padding: 32px;
  display: flex; flex-direction: column;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  position: relative;
}
.pricing-card--featured {
  border: 2px solid var(--text);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  transform: translateY(-4px);
}
@media (max-width: 920px) {
  .pricing-card--featured { transform: none; }
}
.pricing-card--featured::before {
  content: "Most Popular";
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--text); color: #fff;
  padding: 5px 14px; border-radius: 100px;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  white-space: nowrap;
}
.pricing-name {
  font-family: "Inter", var(--sans);
  font-size: 20px; font-weight: 700;
  color: var(--text); margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.pricing-price {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 14px;
}
.pricing-price-amt {
  font-family: "Inter", var(--sans);
  font-size: 40px; font-weight: 700;
  color: var(--text);
  letter-spacing: -0.025em; line-height: 1;
}
.pricing-price-period {
  font-size: 15px; color: #888; font-weight: 500;
}
.pricing-tagline {
  font-size: 14px; line-height: 1.5;
  color: #555;
  margin: 0 0 24px;
}
.pricing-features {
  list-style: none; padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.pricing-features li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 14px; line-height: 1.5;
  color: var(--text);
}
.pricing-features li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--accent); font-weight: 700;
}
.pricing-cta-wrap { margin-top: auto; }
.pricing-cta-wrap .btn-outline,
.pricing-cta-wrap .btn-primary {
  width: 100%;
  justify-content: center;
}

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--text);
  padding: 11px 24px;
  border-radius: 6px;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.btn-outline:hover { background: var(--text); color: #fff; }

/* Use cases standalone section — concrete proof of Mojo in real operations.
   Sits between fits-section and pricing. */
.use-cases-section {
  background: var(--surface);
  padding: clamp(80px, 7vw, 100px) 0;
  border-top: 1px solid var(--border);
}
.use-cases-section .shell { text-align: center; }
.use-cases-section .section-tag { display: inline-block; }
.use-cases-section h2 {
  font-size: clamp(28px, 3.4vw, 38px);
  max-width: 100%; margin: 0 auto 14px;
}
.use-cases-sub {
  font-size: 15px; line-height: 1.6;
  color: #555;
  margin: 0 auto 40px;
  max-width: 58ch;
}
.pp-use-cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  text-align: left;
}
@media (max-width: 880px) {
  .pp-use-cases-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .pp-use-cases-grid { grid-template-columns: 1fr; }
}
.pp-use-case-card {
  background: #fbfaf6;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
  text-decoration: none;
  text-align: left;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.18s;
}
.pp-use-case-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.pp-use-case-category {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #888;
  margin: 0;
}
.pp-use-case-line {
  font-family: "Inter", var(--sans);
  font-size: 14px; font-weight: 500;
  line-height: 1.5;
  color: var(--text); margin: 0;
  flex: 1;
}
.pp-use-case-tag {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 700;
  color: #666;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: auto;
}
.pp-use-case-card:hover .pp-use-case-tag {
  color: var(--text);
}

/* PP bridge — the "fourth tier" step in the price ramp */
.pp-bridge-card {
  margin-top: 40px;
  background: #0d0d0d;
  color: #fff;
  border-radius: 24px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  text-align: left;
}
@media (max-width: 880px) {
  .pp-bridge-card {
    grid-template-columns: 1fr;
    gap: 24px; padding: 32px;
  }
}
.pp-bridge-tag {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #999;
  margin: 0 0 12px;
}
.pp-bridge-left h3 {
  font-family: "Inter", var(--sans);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  margin: 0 0 12px;
  color: #fff;
  letter-spacing: -0.018em;
  line-height: 1.25;
  max-width: 28ch;
}
.pp-bridge-left p {
  font-size: 15px; line-height: 1.6;
  color: #c8c5be;
  margin: 0; max-width: 60ch;
}
.pp-bridge-left p a {
  color: #fff;
  border-bottom: 1px solid #555;
  padding-bottom: 1px;
  transition: border-color 0.15s;
}
.pp-bridge-left p a:hover { border-bottom-color: #fff; }
.pp-bridge-right {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 10px;
}
@media (max-width: 880px) {
  .pp-bridge-right { align-items: flex-start; }
}
.btn-pp {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: #0d0d0d;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 14.5px; font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, transform 0.08s;
  white-space: nowrap;
}
.btn-pp:hover { background: #e8e8e8; }
.btn-pp:active { transform: translateY(1px); }
.pp-bridge-meta {
  font-size: 12px; color: #999;
  margin: 0;
}

/* ── Final CTA section (capture-hub bottom) ────────────────────── */
.final-cta-section {
  background: #f5f3ef;
  padding: 100px 0;
  text-align: center;
}
.final-cta-quote {
  font-family: "Inter", var(--sans);
  font-size: clamp(24px, 2.8vw, 30px);
  font-weight: 700; font-style: normal;
  color: var(--text);
  line-height: 1.3;
  max-width: 24ch;
  margin: 0 auto 20px;
}
.final-cta-sub {
  font-size: 15px; color: #666;
  margin: 0 auto 32px;
  max-width: 42ch;
}
.final-cta-note {
  margin-top: 14px;
  font-size: 12px; color: #888;
}

/* ── Footer ─────────────────────────────────────────────────────── */
.foot {
  padding: 40px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  font-size: 13px; color: #666;
}
.foot .shell {
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px; align-items: start;
}
@media (max-width: 720px) {
  .foot .shell { grid-template-columns: 1fr; gap: 24px; }
}

.foot-left {
  display: flex; flex-direction: column; gap: 14px;
}
.foot-left .brand { align-self: flex-start; }
.foot-provenance {
  font-style: normal;
  line-height: 1.6;
  margin: 0;
  max-width: 62ch;
  font-size: 13px;
  color: #666;
}

.foot-right {
  display: flex; align-items: center; gap: 24px;
  font-size: 13px; color: #666;
  white-space: nowrap;
}
.foot-right a { color: #666; transition: color 0.15s; }
.foot-right a:hover { color: var(--text); }
@media (max-width: 720px) {
  .foot-right { justify-content: flex-start; gap: 18px; }
}

/* ─────────────────────────────────────────────────────────────────
   2026-05-18 — Ecosystem rebuild
   New sections: leak, intelligence, eco product cards, pocket-capture
   page, pick-a-path modal. Existing classes (.pricing-card,
   .hero--three-col, .nav, .foot) reused.
   ───────────────────────────────────────────────────────────────── */

/* Hero CTA row — two CTAs side by side on rebuild homepage */
.hero-cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 4px; }
.hero-cta-row .btn-primary { margin: 0; }

/* ── Section 2: Leak ────────────────────────────────────────────── */
.leak-section {
  padding: clamp(80px, 7vw, 110px) 0;
  background: #f5f4f1;
  border-top: 1px solid var(--border);
}
.leak-section .shell { max-width: 820px; }
.leak-section h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -0.02em;
  margin: 12px 0 22px;
}
.leak-section .lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-secondary, #555);
  margin: 0 0 26px;
}
.leak-section .bold-callout {
  font-weight: 600;
  color: var(--text);
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ── Section 3: Lightweight intelligence ────────────────────────── */
.intelligence-section {
  padding: clamp(80px, 7vw, 110px) 0;
  border-top: 1px solid var(--border);
}
.intelligence-section .shell { max-width: 920px; }
.intelligence-section h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -0.022em;
  margin: 12px 0 24px;
}
.intelligence-lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-secondary, #555);
  margin: 0 0 48px;
  max-width: 70ch;
}
.intelligence-beats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.intelligence-beat p {
  color: var(--text-secondary, #555);
  font-size: 15px;
  line-height: 1.6;
  margin: 8px 0 0;
}
.intelligence-beat-word {
  display: block;
  font-weight: 700;
  color: var(--text);
  font-size: 17px;
  letter-spacing: -0.012em;
}
@media (max-width: 720px) {
  .intelligence-beats { grid-template-columns: 1fr; gap: 28px; }
}

/* ── Section 4: Ecosystem product cards ─────────────────────────── */
.ecosystem-section { padding: clamp(80px, 7vw, 110px) 0; border-top: 1px solid var(--border); background: var(--surface, #fafaf9); }
.ecosystem-section .shell { text-align: left; }
.ecosystem-section .section-tag { display: inline-block; }
.ecosystem-section h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -0.022em;
  margin: 12px 0 18px;
}
.ecosystem-intro {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary, #555);
  margin: 0 0 44px;
  max-width: 70ch;
}
.eco-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.eco-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.eco-card:hover { border-color: var(--border-strong, #d4d2cc); transform: translateY(-2px); }
.eco-card--featured {
  border-color: var(--text);
  box-shadow: 0 6px 24px rgba(0,0,0,0.04);
}
.eco-card-head { margin-bottom: 20px; }
.eco-card-name {
  font-size: 22px;
  letter-spacing: -0.018em;
  margin: 0 0 4px;
}
.eco-card-tagline {
  color: var(--text-secondary, #555);
  font-size: 14px;
  margin: 0;
  font-style: italic;
}
.eco-card-list { list-style: none; padding: 0; margin: 0 0 26px; flex: 1; }
.eco-card-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-secondary, #555);
  margin-bottom: 12px;
}
.eco-card-list li::before {
  content: "→";
  position: absolute;
  left: 0; top: 0;
  color: var(--accent, #1d4ed8);
  font-weight: 600;
}
.eco-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 20px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.eco-card-price { font-weight: 700; color: var(--text); font-size: 18px; }
.eco-card-period { font-weight: 400; color: var(--text-secondary, #888); font-size: 13px; margin-left: 4px; }
@media (max-width: 760px) {
  .eco-cards { grid-template-columns: 1fr; }
}

/* ── Footer PP line ─────────────────────────────────────────────── */
.foot-pp-line {
  margin-top: 14px;
  font-size: 13px;
  color: #888;
}
.foot-pp-line a {
  color: #555;
  border-bottom: 1px solid #ddd;
  transition: color 0.15s, border-color 0.15s;
}
.foot-pp-line a:hover { color: var(--text); border-bottom-color: var(--text); }

/* ── Pricing-cards-two (Capture Hub now 2 tiers, not 3) ─────────── */
.pricing-cards--two {
  grid-template-columns: 1fr 1fr;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 760px) {
  .pricing-cards--two { grid-template-columns: 1fr; }
}

/* ─── Pocket Capture page ──────────────────────────────────────── */

/* Hero mockup — quiet phone-ish card */
.pocket-mockup {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  max-width: 320px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.04);
}
.pocket-mockup-topbar { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.pocket-mockup-title { font-weight: 600; font-size: 13px; color: var(--text); }
.pocket-mockup-tag { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-secondary, #888); font-family: var(--font-mono, monospace); }
.pocket-mockup-qr {
  width: 140px; height: 140px;
  margin: 22px auto;
  background:
    repeating-linear-gradient(0deg, var(--text) 0 4px, transparent 4px 8px),
    repeating-linear-gradient(90deg, var(--text) 0 4px, transparent 4px 8px);
  background-size: 8px 8px;
  border: 6px solid var(--text);
  border-radius: 4px;
  opacity: 0.85;
}
.pocket-mockup-qr-grid { display: none; }
.pocket-mockup-section {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary, #888);
  margin: 16px 0 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.pocket-mockup-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; font-size: 13px; border-bottom: 1px solid #f0eeea; }
.pocket-mockup-row:last-child { border-bottom: 0; }
.pocket-mockup-name { font-weight: 600; color: var(--text); }
.pocket-mockup-meta { color: var(--text-secondary, #888); font-size: 11px; }

/* "How it works" — 3 numbered beats */
.how-section { padding: clamp(80px, 7vw, 110px) 0; border-top: 1px solid var(--border); }
.how-section h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -0.022em;
  margin: 12px 0 36px;
}
.how-beats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.how-beat-num {
  display: inline-block;
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--accent, #1d4ed8);
  margin-bottom: 6px;
}
.how-beat-title {
  font-size: 17px;
  letter-spacing: -0.014em;
  margin: 0 0 10px;
}
.how-beat p {
  color: var(--text-secondary, #555);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 720px) {
  .how-beats { grid-template-columns: 1fr; gap: 28px; }
}

/* "Good for" — 3 use case cards */
.good-for-section { padding: clamp(80px, 7vw, 110px) 0; background: #f5f3ef; border-top: 1px solid var(--border); }
.good-for-section h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -0.022em;
  margin: 12px 0 36px;
}
.good-for-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.good-for-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 22px;
  transition: border-color 0.15s, transform 0.15s;
}
.good-for-card:hover { border-color: var(--border-strong, #d4d2cc); transform: translateY(-1px); }
.good-for-cat {
  display: inline-block;
  font-family: var(--font-mono, monospace);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent, #1d4ed8);
  margin-bottom: 10px;
}
.good-for-card p {
  color: var(--text-secondary, #555);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 760px) {
  .good-for-grid { grid-template-columns: 1fr; }
}

/* "By design" — pocket-sized boundary */
.stops-section { padding: clamp(70px, 6vw, 100px) 0; border-top: 1px solid var(--border); }
.stops-section .shell { max-width: 760px; }
.stops-section h2 {
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.018em;
  margin: 12px 0 18px;
}
.stops-body {
  color: var(--text-secondary, #555);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

/* Pocket pricing — single card variant */
.pocket-pricing-section { padding: clamp(80px, 7vw, 110px) 0; background: #f5f4f1; border-top: 1px solid var(--border); }
.pocket-pricing-section .shell { max-width: 520px; text-align: center; }
.pocket-pricing-section .section-tag { display: inline-block; }
.pocket-pricing-section h2 {
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.018em;
  margin: 12px 0 32px;
}
.pocket-pricing-card {
  background: #fff;
  border: 1px solid var(--text);
  border-radius: 8px;
  padding: 36px 30px;
  text-align: left;
  box-shadow: 0 6px 24px rgba(0,0,0,0.04);
}
.pocket-pricing-name {
  font-size: 22px;
  letter-spacing: -0.018em;
  margin: 0 0 8px;
}
.pocket-pricing-price { margin: 0 0 24px; }
.pocket-pricing-card .btn-primary { width: 100%; text-align: center; margin-top: 6px; }

/* ── Pick-a-path modal ──────────────────────────────────────────── */
/* The [hidden] rule must override the display:flex below so the HTML
   hidden attribute actually hides the overlay. Without this, the modal
   stays visible on load and its full-viewport overlay blocks clicks
   on the page underneath. */
.pickpath-overlay[hidden] { display: none !important; }
.pickpath-overlay {
  position: fixed; inset: 0;
  background: rgba(20, 18, 14, 0.55);
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: ppFade 0.15s ease-out;
}
@keyframes ppFade { from { opacity: 0; } to { opacity: 1; } }
.pickpath-dialog {
  position: relative;
  background: #fff;
  max-width: 540px;
  width: 100%;
  border-radius: 10px;
  padding: 36px 32px 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  animation: ppRise 0.2s ease-out;
}
@keyframes ppRise { from { transform: translateY(8px); opacity: 0.6; } to { transform: translateY(0); opacity: 1; } }
.pickpath-close {
  position: absolute; top: 12px; right: 14px;
  background: transparent; border: none;
  font-size: 24px; color: #999; cursor: pointer;
  padding: 4px 10px; line-height: 1;
}
.pickpath-close:hover { color: var(--text); }
.pickpath-tag { margin: 0 0 8px; }
.pickpath-title {
  font-size: 22px;
  letter-spacing: -0.018em;
  margin: 0 0 22px;
}
.pickpath-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }
.pickpath-option {
  display: block;
  text-decoration: none;
  background: #fafaf9;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 20px;
  color: var(--text);
  transition: border-color 0.15s, background 0.15s, transform 0.1s;
}
.pickpath-option:hover {
  border-color: var(--text);
  background: #fff;
  transform: translateY(-1px);
}
.pickpath-option-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  margin-bottom: 6px;
}
.pickpath-option-name {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.012em;
  color: var(--text);
}
.pickpath-option-meta {
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-secondary, #888);
}
.pickpath-option-body {
  font-size: 13.5px;
  color: var(--text-secondary, #666);
  line-height: 1.55;
  margin: 0 0 6px;
}
.pickpath-option-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent, #1d4ed8);
}
.pickpath-pp {
  margin: 6px 0 0;
  text-align: center;
  font-size: 12.5px;
  color: var(--text-secondary, #888);
}
.pickpath-pp a {
  color: var(--text-secondary, #666);
  border-bottom: 1px solid #ddd;
  text-decoration: none;
}
.pickpath-pp a:hover { color: var(--text); border-bottom-color: var(--text); }

/* nav-cta when used as a <button> (was always an <a> before) */
button.nav-cta { font-family: inherit; cursor: pointer; }
button.close-cta { font-family: inherit; cursor: pointer; border: none; }

/* Pocket Capture refund line — sits under the pricing button */
.pocket-refund-line {
  margin: 14px 0 0;
  font-size: 12.5px;
  color: var(--text-secondary, #888);
  line-height: 1.5;
  text-align: center;
}
.final-cta-section .pocket-refund-line {
  margin-top: 12px;
}
