/* ==========================================================================
   styles-aeo.css — components for the answer-shaped service pages.
   NEW FILE ON PURPOSE. styles.css sits behind a 7-day edge cache, so adding
   here instead of editing it avoids a ?v=N bump across every page on the site.
   Depends on the custom properties defined in styles.css.
   ========================================================================== */

/* Quick answer — the extraction target. First thing a crawler or a reader in a
   hurry should hit. Kept visually calm; it is not a callout, it is the answer. */
.quick-answer {
  background: var(--paper-50);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--voltage-600);
  border-radius: var(--r-md);
  padding: calc(var(--sp) * 4);
  margin-top: calc(var(--sp) * 4);
}
.quick-answer > p:first-child { margin-top: 0; }
.quick-answer p { font-size: 1.0625rem; line-height: 1.6; }
.quick-answer p + p { margin-top: calc(var(--sp) * 2); }
.qa-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--voltage-600);
  margin-bottom: calc(var(--sp) * 2);
}
.qa-list { list-style: none; margin: calc(var(--sp) * 2) 0 0; padding: 0; }
.qa-list li {
  display: flex;
  flex-wrap: wrap;
  gap: calc(var(--sp) * 1.5);
  padding: calc(var(--sp) * 1.5) 0;
  border-top: 1px solid var(--rule);
}
.qa-list li:first-child { border-top: none; padding-top: 0; }
.qa-term { flex: 1 1 14rem; }
.qa-value {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  color: var(--ink-900);
  white-space: nowrap;
}

/* Section intro on a LIGHT background.
   Do not reach for .process-intro here — it is coloured --steel-200 for the dark
   .process-section, and on paper it composites to about 1.5:1. */
.section-intro {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink-muted);
  margin-top: calc(var(--sp) * 2.5);
  max-width: 620px;
}

/* Comparison table — a market-rate table is a citation magnet, so it has to
   survive a narrow viewport rather than force the page to scroll sideways. */
.cmp-wrap { overflow-x: auto; margin-top: calc(var(--sp) * 4); }
.cmp-table {
  width: 100%;
  min-width: 30rem;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.cmp-table caption {
  caption-side: bottom;
  margin-top: calc(var(--sp) * 2);
  font-size: 0.8125rem;
  color: var(--ink-muted);
  text-align: left;
  line-height: 1.55;
}
.cmp-table th,
.cmp-table td {
  text-align: left;
  padding: calc(var(--sp) * 1.75) calc(var(--sp) * 2);
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
.cmp-table thead th {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-500);
  border-bottom-width: 2px;
}
.cmp-table tbody th { font-weight: 500; color: var(--ink-900); }
.cmp-table td.cmp-num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.cmp-table tr.cmp-ours th,
.cmp-table tr.cmp-ours td {
  background: color-mix(in oklch, var(--voltage-600) 7%, transparent);
  font-weight: 600;
}

/* "Who this is not for" — the section that answers no. Deliberately styled as
   plainly as the rest; dressing up a disqualifier undercuts it. */
.not-for-list { list-style: none; margin: calc(var(--sp) * 4) 0 0; padding: 0; }
.not-for-list li {
  padding: calc(var(--sp) * 2.5) 0;
  border-top: 1px solid var(--rule);
  line-height: 1.6;
}
.not-for-list li:last-child { border-bottom: 1px solid var(--rule); }
.not-for-list strong { display: block; margin-bottom: calc(var(--sp) * 0.75); }

/* Founding-tier badge. Overrides .pricing-card.featured::before, whose content
   is "Most popular" — untrue for a tier nobody has bought yet. */
.pricing-card.featured.is-founding::before { content: "3 spots"; }

/* Freshness stamp. dateModified is a ranking-visible signal, so it is on the
   page in words as well as in schema. */
.page-updated {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-top: calc(var(--sp) * 6);
}

@media (max-width: 720px) {
  .quick-answer { padding: calc(var(--sp) * 3); }
  .qa-value { white-space: normal; }
}
