/* Components. Every value from tokens.css; no hex outside that file.
 * Spec: feature/crm-website/DESIGN.md §Component inventory. */

/* ── Header / footer ─────────────────────────────────────────────────────────── */

.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--bg-page);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  min-height: 4rem;
}
/* Below 26rem the header wraps to two rows rather than being squeezed. A wordmark,
   a sign-in link and a nowrap button cannot fit in the ~280px a 320px viewport
   leaves, and shaving padding to force it was buying 4px at a time while still
   overflowing. Wrapping costs one row of height and loses nothing — no link is
   dropped, which matters because sign-in is the affordance a JustLogin user was
   already failing to find. */
@media (max-width: 26rem) {
  .site-header__inner {
    flex-wrap: wrap;
    gap: var(--space-2) var(--space-3);
    padding-block: var(--space-3);
  }
  .site-header__actions {
    width: 100%;
    justify-content: space-between;
    margin-inline-start: 0;
  }
  .btn--sm {
    padding: var(--space-2) var(--space-4);
  }
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--text-primary);
}
.wordmark__text {
  font-size: var(--fs-heading-4);
  font-weight: var(--fw-semibold);
  letter-spacing: -0.01em;
  white-space: nowrap;
  max-width: 14ch; /* "JustLogin CRM" is 13 — sized for the real name, not a placeholder */
}
.site-nav {
  margin-inline-start: auto;
}
.site-nav__list {
  display: none;
  gap: var(--space-6);
}
.site-nav__list a {
  color: var(--text-muted);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  text-decoration: none;
}
.site-nav__list a:hover {
  color: var(--text-primary);
}
@media (min-width: 64rem) {
  .site-nav__list {
    display: flex;
  }
}

.site-footer {
  border-top: 1px solid var(--border);
  padding-block: var(--space-12);
}
.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  align-items: center;
  justify-content: space-between;
}
.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.site-footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4) var(--space-6);
}
.site-footer__nav a {
  color: var(--text-muted);
  font-size: var(--fs-small);
  text-decoration: none;
}
.site-footer__nav a:hover {
  color: var(--text-primary);
  text-decoration: underline;
}

/* ── Buttons ─────────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font: inherit;
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 120ms ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: var(--accent-label);
}
.btn--primary:hover {
  background: var(--accent-hover);
}
.btn--secondary {
  background: var(--bg-surface);
  border-color: var(--border-strong);
  color: var(--text-secondary);
}
.btn--sm {
  padding: var(--space-2) var(--space-4);
}

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

.hero {
  padding-block-start: var(--space-16);
  /* `clip` not `hidden`: it contains the mockup's bleed without creating a scroll
   * container, so the gesture survives and the document does not scroll sideways. */
  overflow-x: clip;
}
.hero__grid {
  align-items: start;
  row-gap: var(--space-12);
}
.hero__copy > * + * {
  margin-top: var(--space-6);
}
.hero__subhead {
  max-width: 46ch;
}
/* The one boundary-crossing gesture on the page: the mockup crosses the right gutter.
   Spent once, deliberately — repeating it spends it.
   Gated at 80rem and reduced to a single gutter. At 64rem the container is already
   viewport-limited, so a 1.5-gutter bleed clipped roughly a third of the frame including
   message text — which reads as broken, not as deliberate. A bleed may sacrifice edge;
   it may never sacrifice content. */
@media (min-width: 80rem) {
  .hero__mockup {
    margin-inline-end: calc(var(--gutter) * -1);
  }
}

.checkmarks {
  display: grid;
  gap: var(--space-3);
}
.checkmarks li {
  display: flex;
  align-items: start;
  gap: var(--space-3);
  color: var(--text-secondary);
}
.icon-check {
  flex: none;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.15em;
  stroke: var(--accent-text);
}

/* ── Email capture (AC11, AC15) ──────────────────────────────────────────────── */

.email-capture {
  display: grid;
  gap: var(--space-2);
  max-width: 32rem;
}
.email-capture--center {
  margin-inline: auto;
  text-align: center;
}
.email-capture__label {
  font-size: var(--fs-label);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--text-muted);
}
.email-capture__row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.email-capture__input {
  flex: 1 1 14rem;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  color: var(--text-primary);
  font: inherit;
  font-size: var(--fs-small);
}
.email-capture__input::placeholder {
  color: var(--text-icon-muted);
}
.email-capture__input:focus-visible {
  border-color: var(--accent-text);
}
.email-capture__micro {
  color: var(--text-subtle);
}

/* ── Qualifier grid ──────────────────────────────────────────────────────────── */

.qualifier {
  margin: 0;
  padding: 0;
  border: 0;
}
.qualifier__legend {
  padding: 0;
  margin-bottom: var(--space-3);
  color: var(--text-muted);
}
.qualifier__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.qualifier__list a {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-full);
  font-size: var(--fs-small);
  color: var(--text-secondary);
  text-decoration: none;
}
.qualifier__list a:hover {
  border-color: var(--accent-text);
  color: var(--text-primary);
}

/* ── §2 Problem — deliberately the plainest section ──────────────────────────── */

.problem > * + * {
  margin-top: var(--space-8);
}
.problem__quote {
  margin: 0;
  padding-inline-start: var(--space-6);
  border-inline-start: 2px solid var(--border-strong);
  font-size: var(--fs-lede);
  line-height: var(--lh-lede);
  color: var(--text-secondary);
}

/* ── §3 Motion — the only full-bleed inverse section ─────────────────────────── */

.motion {
  background: var(--bg-page);
}
.motion__title {
  max-width: 24ch;
}
.motion__stages {
  display: grid;
  gap: var(--space-8);
  margin: var(--space-12) 0 0;
  padding: 0;
  list-style: none;
  counter-reset: stage;
}
.motion__stage {
  padding-top: var(--space-4);
  border-top: 2px solid var(--border-strong);
  color: var(--text-secondary);
}
.motion__stage h3 {
  margin-bottom: var(--space-2);
}
@media (min-width: 48rem) {
  .motion__stages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 64rem) {
  .motion__stages {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ── §5 Numbers — figures as the visual subject ──────────────────────────────── */

.numbers > * + * {
  margin-top: var(--space-6);
}
.numbers__grid {
  display: grid;
  gap: var(--space-8);
  margin: var(--space-12) 0 0;
}
.numbers__item dt {
  margin-top: var(--space-2);
  color: var(--text-muted);
}
.numbers__item dd {
  margin: 0;
}
.numbers__note {
  color: var(--text-subtle);
}
@media (min-width: 48rem) {
  .numbers__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ── Photo band ──────────────────────────────────────────────────────────────────
 * Photographs are atmospheric only. They never sit adjacent to an invented quote or
 * anywhere they could read as a customer, a logo or a testimonial (CLAIMS X12).
 * Explicit width/height on every <img> so lazy loading reserves its box and causes no
 * shift (AC17). */

.photo-band {
  align-items: center;
  row-gap: var(--space-8);
}
.photo-band__figure {
  margin: 0;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: var(--bg-raised);
}
.photo-band__figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 1400 / 560;
  object-fit: cover;
}
.photo-band__copy > * + * {
  margin-top: var(--space-4);
}
.photo-band__copy .lede {
  max-width: none;
}

/* ── CTA band ────────────────────────────────────────────────────────────────── */

.cta-band {
  text-align: center;
}
.cta-band > * + * {
  margin-top: var(--space-6);
}
.cta-band__lede {
  margin-inline: auto;
  max-width: 40ch;
}

/* ── MockupFrame ─────────────────────────────────────────────────────────────────
 * The site's largest object. The chrome bar does the honesty work: it is the signal
 * separating "a picture of software" from "more page". Interior always uses the app's
 * cool slate, never the site's warm ground, so the frame reads as an object. */

.mockup {
  margin: 0;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-frame);
  background: #ffffff;
}
.mockup__chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  height: 2.25rem;
  padding-inline: var(--space-4);
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
}
.mockup__dots {
  display: inline-flex;
  gap: var(--space-2);
}
.mockup__dots i {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: var(--radius-full);
  background: var(--text-icon-muted);
}
/* Outside the screen area, on the chrome — inside a product screen is where real app UI
   puts the account menu, which would make this read as a label belonging to the mockup. */
.mockup__tag {
  font-size: var(--fs-label);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: #475569;
}
.mockup__screen {
  display: grid;
  gap: 1px;
  background: var(--border);
  color: #1e293b;
}
.mockup__record,
.mockup__thread {
  padding: var(--space-5, 1.25rem);
  background: #ffffff;
}
.mockup__eyebrow {
  font-size: var(--fs-label);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: var(--space-2);
}
.mockup__title {
  font-size: var(--fs-heading-4);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-4);
}
.mockup__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3) var(--space-4);
  margin: 0;
  font-size: var(--fs-small);
}
.mockup__fields > * {
  min-width: 0;
}
.mockup__fields dd {
  overflow-wrap: break-word;
}
.mockup__fields dt {
  color: #64748b;
}
.mockup__fields dd {
  margin: 0;
  font-weight: var(--fw-medium);
}
.mockup__num {
  font-variant-numeric: tabular-nums;
}
.mockup__bubble {
  max-width: 85%;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-lg);
  font-size: var(--fs-small);
  margin-top: var(--space-2);
}
.mockup__bubble--in {
  background: #f1f5f9;
}
.mockup__bubble--out {
  background: #eef2ff;
  margin-inline-start: auto;
}

/* Two panels stack in the hero's right column, centred against the copy.
 * The copy column runs ~1050px (headline, subhead, six checkmarks, the email capture and
 * the qualifier grid) against ~635px of panels, so `align-content: start` piled the
 * entire 400px difference underneath and the hero read as unbalanced. Centring splits it
 * above and below, which reads as air rather than as a gap. */
.hero__mockup {
  display: grid;
  gap: var(--space-6);
  align-content: center;
}
@media (min-width: 64rem) {
  .hero__grid {
    align-items: stretch;
  }
}

.mockup__rows {
  display: grid;
  gap: var(--space-3);
  font-size: var(--fs-small);
}
.mockup__rows li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: var(--space-3);
  align-items: center;
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--border);
}
.mockup__rows li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.mockup__rowname {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: var(--fw-medium);
}
.mockup__badge {
  padding: 0.125rem var(--space-2);
  border-radius: var(--radius-full);
  background: #f1f5f9;
  color: #475569;
  font-size: var(--fs-label);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
/* Inside the 30-day window — amber is "at risk" in the product's semantic palette
   (docs/DESIGN-SYSTEM.md §1.2), so the mockup reads as the same system. */
.mockup__badge--soon {
  background: #fef3c7;
  color: #92400e;
}

/* ARR-at-risk tiles, mirroring the real contracts screen's KPI strip. */
.mockup__tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.mockup__tile {
  padding: var(--space-3);
  border: 1px solid var(--border);
  border-left-width: 3px;
  border-radius: var(--radius-lg);
  min-width: 0;
}
.mockup__tile--urgent {
  border-left-color: #dc2626;
}
.mockup__tile--soon {
  border-left-color: #f59e0b;
}
.mockup__tilenum {
  display: block;
  font-size: var(--fs-heading-4);
  font-weight: var(--fw-bold);
  font-variant-numeric: tabular-nums;
}
.mockup__tile--urgent .mockup__tilenum {
  color: #dc2626;
}
.mockup__tile--soon .mockup__tilenum {
  color: #b45309;
}
.mockup__tilelabel {
  display: block;
  margin-top: 0.125rem;
  font-size: var(--fs-label);
  color: #64748b;
}
.mockup__action {
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid var(--border);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: #4f46e5;
}

/* ── Pricing ─────────────────────────────────────────────────────────────────────
 * Five tiers (D6). Both rates render on every card rather than behind a toggle — a
 * CSS-only toggle cannot announce a price change to a screen reader, and keeping both
 * prices in the DOM makes them read twice. No saving claim (X2). */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pricing-head > * + * {
  margin-top: var(--space-4);
}

.tiers {
  display: grid;
  gap: var(--space-4);
}
@media (min-width: 48rem) {
  .tiers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* Five across only where there is genuinely room for it. */
@media (min-width: 80rem) {
  .tiers {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.tier {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  min-width: 0;
  padding: var(--space-6);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  background: var(--bg-surface);
}
.tier--popular {
  background: var(--bg-page);
  border-color: transparent;
}
.tier__flag {
  font-size: var(--fs-label);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--accent-text);
}
.tier__name {
  font-size: var(--fs-heading-4);
  font-weight: var(--fw-semibold);
  letter-spacing: 0;
}
.tier__price {
  display: flex;
  align-items: baseline;
  gap: var(--space-1);
  flex-wrap: wrap;
}
/* --fs-heading-2, not --fs-figure: "S$85" at 56px is ~110px wide and does not fit a
   five-up card, and "/user/month" beside it does not fit at all. */
.tier__amount {
  font-size: var(--fs-heading-2);
  font-weight: var(--fw-bold);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.tier__unit {
  font-size: var(--fs-small);
  color: var(--text-muted);
}
.tier__annual {
  color: var(--text-subtle);
  margin-top: calc(var(--space-2) * -1);
}
.tier__blurb {
  font-size: var(--fs-small);
  color: var(--text-secondary);
}
.tier__cta {
  margin-top: auto;
  width: 100%;
}
.tier__risk {
  color: var(--text-subtle);
  text-align: center;
}
.tier__feats {
  display: grid;
  gap: var(--space-2);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
  font-size: var(--fs-small);
  color: var(--text-secondary);
}

.buying-motion {
  margin-top: var(--space-8);
  padding: var(--space-4) var(--space-6);
  border-left: 3px solid var(--accent);
  background: var(--bg-raised);
  border-radius: var(--radius-lg);
  font-size: var(--fs-small);
  color: var(--text-secondary);
}

.addons {
  align-items: start;
  row-gap: var(--space-8);
}
.addons__main > * + * {
  margin-top: var(--space-4);
}
.addons__main p {
  color: var(--text-secondary);
}
.psg {
  padding: var(--space-6);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-xl);
}
.psg h3 {
  font-size: var(--fs-heading-4);
  margin-bottom: var(--space-2);
}

/* ── Comparison ──────────────────────────────────────────────────────────────── */

.compare {
  margin-top: var(--space-8);
}
.compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-small);
}
.compare__table caption {
  text-align: left;
}
.compare__table th,
.compare__table td {
  padding: var(--space-3);
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
/* 13px at 0.02em, sentence case — not --fs-label's 0.08em. Letter-spacing on a
   comparison-table header is a direct width tax on the widest element on the site. */
.compare__table thead th {
  font-size: var(--fs-label);
  letter-spacing: var(--tracking-table);
  font-weight: var(--fw-semibold);
  color: var(--text-muted);
  border-bottom: 2px solid var(--border-strong);
  white-space: nowrap;
}
.compare__table tbody th {
  font-weight: var(--fw-normal);
  color: var(--text-secondary);
}
.compare__table td {
  color: var(--text-muted);
}
/* Below 768px the comparison is not a table. Each row becomes a labelled block, so there
   are no detached column headers to associate and nothing scrolls sideways. */
@media (max-width: 47.99rem) {
  .compare__table thead {
    display: none;
  }
  .compare__table,
  .compare__table tbody,
  .compare__table tr,
  .compare__table th,
  .compare__table td {
    display: block;
    width: auto;
  }
  .compare__table tr {
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--border);
  }
  .compare__table tbody th {
    font-weight: var(--fw-semibold);
    color: var(--text-primary);
    border-bottom: 0;
    padding-bottom: var(--space-2);
  }
  .compare__table td {
    border-bottom: 0;
    padding: 0 0 0 var(--space-4);
  }
  .compare__table td::before {
    content: attr(data-plan) " ";
    color: var(--text-subtle);
  }
}

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

.faq > * + * {
  margin-top: var(--space-3);
}
.faq details {
  border-bottom: 1px solid var(--border);
  padding-bottom: var(--space-3);
}
.faq summary {
  cursor: pointer;
  font-weight: var(--fw-semibold);
  padding: var(--space-2) 0;
}
.faq details p {
  margin-top: var(--space-2);
  color: var(--text-secondary);
}

/* Sign in + Start free, together at the right of the header (D16). The app shares this
   host, so /login is a relative link rather than a cross-origin hop. */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-inline-start: auto;
}
.site-nav + .site-header__actions {
  margin-inline-start: 0;
}
.site-header__signin {
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--text-secondary);
  text-decoration: none;
  white-space: nowrap;
}
.site-header__signin:hover {
  color: var(--text-primary);
  text-decoration: underline;
}

/* ── Long-form pages (/security, /privacy, /about, /terms) ───────────────────── */

.plainlist {
  display: grid;
  gap: var(--space-2);
  padding-inline-start: var(--space-6);
  list-style: disc;
  color: var(--text-secondary);
}
.prose h2 {
  margin-top: var(--space-12);
  font-size: var(--fs-heading-2);
}
.prose h2:first-child {
  margin-top: 0;
}
.prose p,
.prose ul {
  color: var(--text-secondary);
}
.prose code {
  padding: 0.1em 0.35em;
  border-radius: var(--radius-sm);
  background: var(--bg-page);
  border: 1px solid var(--border);
  font-size: 0.9em;
}

/* A visible statement that something is deliberately unfilled. Used where inventing a
   fact would be worse than admitting it is missing — the /about company details, the
   support response target, the unpublished terms. */
.notice {
  padding: var(--space-4) var(--space-5, 1.25rem);
  border-left: 3px solid var(--best-case);
  border-radius: var(--radius-lg);
  background: var(--bg-page);
  font-size: var(--fs-small);
}
.notice--strong {
  border-left-color: var(--accent);
  font-size: var(--fs-body);
}

.vcard {
  font-style: normal;
  padding: var(--space-4) var(--space-5, 1.25rem);
  border-left: 3px solid var(--border-strong);
  color: var(--text-secondary);
  font-size: var(--fs-small);
  line-height: 1.7;
}

/* ── §7 Capability grid ──────────────────────────────────────────────────────────
 * Two wide tiles and the rest small. A dozen identical boxes is the machine-generated
 * default; breaking the grid's own rhythm is what stops this section reading that way. */

.capgrid {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-10);
}
.capgrid__item {
  min-width: 0;
  padding: var(--space-5, 1.25rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--bg-surface);
  color: var(--text-secondary);
  font-size: var(--fs-small);
}
@media (min-width: 48rem) {
  .capgrid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .capgrid__item--wide {
    grid-column: span 2;
    font-size: var(--fs-body);
    color: var(--text-primary);
  }
}

/* ── §8 Salesforce object map ────────────────────────────────────────────────── */

.migrate {
  align-items: center;
  row-gap: var(--space-8);
}
.migrate__copy > * + * {
  margin-top: var(--space-4);
}
.migrate__copy p {
  color: var(--text-secondary);
}
.objmap {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-small);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.objmap th,
.objmap td {
  padding: var(--space-3) var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.objmap thead th {
  font-size: var(--fs-label);
  letter-spacing: var(--tracking-table);
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-raised);
}
.objmap tbody th {
  font-weight: var(--fw-normal);
  color: var(--text-muted);
}
.objmap tbody td {
  color: var(--text-primary);
  font-weight: var(--fw-medium);
}
.objmap tr:last-child th,
.objmap tr:last-child td {
  border-bottom: 0;
}

/* ── §9 Pricing preview ──────────────────────────────────────────────────────── */

.pricing-preview > * + * {
  margin-top: var(--space-4);
}
.pricing-preview__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-block: var(--space-8);
}
.pricing-preview__chips li {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5, 1.25rem);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-full);
}
.chip__name {
  font-size: var(--fs-small);
  color: var(--text-muted);
}
.chip__price {
  font-weight: var(--fw-bold);
  font-variant-numeric: tabular-nums;
}

/* ── Mid-page CTA ──────────────────────────────────────────────────────────────
 * Sits inside long-form pages so the only route to signup isn't the closing band.
 * Deliberately lower-contrast than that band: it should be findable by someone
 * already persuaded, not an interruption to someone still reading. */
.cta-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-block: var(--space-10);
  padding: var(--space-6);
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}
.cta-inline p {
  margin: 0;
  font-weight: var(--fw-medium);
  color: var(--text-secondary);
}
.cta-inline .btn {
  flex-shrink: 0;
}

/* ── Page freshness ────────────────────────────────────────────────────────────
 * Quiet by design — it answers "is this current?" for a reader who thinks to ask,
 * without competing with the content. */
.page-meta {
  margin-block: var(--space-8) 0;
  padding-block-start: var(--space-4);
  border-block-start: 1px solid var(--border);
  color: var(--text-subtle);
}
