/* ================================================================
   Carcin: shared static-page styles (spec homepage/007 item 10).
   Loaded AFTER brand.css on every prose/static page (/pricing,
   /how-it-works, /results, /about, /terms, /privacy, /industries/,
   /vs/*, /research/). Page-specific rules stay inline per page and
   win the cascade (inline <style> comes after this link).
   ================================================================ */

/* ---- Page chrome ---- */
.page-wrap { max-width: 680px; padding: 0 20px 80px; }

.page-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 40px 0 12px;
  line-height: 1.2;
}
.page-title span { color: var(--accent); }

.page-subtitle {
  color: var(--text-dim);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 48px;
}

.effective-date {
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 48px;
}

/* ---- Prose ---- */
h2 {
  font-size: 20px;
  color: var(--accent);
  margin: 48px 0 16px;
}
h2:first-of-type { margin-top: 0; }
h3 { font-size: 16px; color: var(--text); margin: 24px 0 8px; }

p, li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 12px;
}

ul, ol { padding-left: 20px; margin-bottom: 16px; }
li { margin-bottom: 8px; }
strong { color: var(--text); font-weight: 600; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

/* ---- Comparison table ---- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 32px;
  font-size: 14px;
}
.compare-table th,
.compare-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  font-weight: 700;
  color: var(--text);
  font-size: 14px; /* 007 micro-label bump: +1px */
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.compare-table td { color: var(--text-dim); }
.compare-table tr.highlight td { color: var(--text); font-weight: 600; }
.compare-table tr:last-child td,
.compare-table tr:last-child th { border-bottom: none; }

/* ---- Verdict box ---- */
.verdict {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  margin: 32px 0;
}
.verdict p { margin-bottom: 8px; }
.verdict p:last-child { margin-bottom: 0; }
.verdict strong { color: var(--accent); }

/* ---- Highlight box ---- */
.highlight-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 20px 0;
}
.highlight-box p { margin-bottom: 8px; }
.highlight-box p:last-child { margin-bottom: 0; }

/* ---- FAQ ---- */
.faq-item { margin-bottom: 24px; }
.faq-item h3 { margin-top: 0; }

/* ---- "As of" footnote (vs pages) ---- */
.asof-note {
  font-size: 13px;
  color: var(--text-dim);
  opacity: 0.7;
  font-style: italic;
}

/* ---- Divider ---- */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}

/* ---- CTA section ---- */
.page-cta {
  text-align: center;
  padding: 48px 0 0;
  border-top: 1px solid var(--border);
  margin-top: 48px;
}
.page-cta h2 {
  color: var(--text);
  font-family: 'Unbounded', sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}
.page-cta p {
  color: var(--text-dim);
  font-size: 15px;
  margin-bottom: 24px;
}
.page-cta .cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-on);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.page-cta .cta-arrow:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.page-cta .cta-hint {
  font-size: 13px;
  color: var(--text-dim);
  opacity: 0.6;
  margin-top: 12px;
}

/* ---- Mobile ---- */
@media (max-width: 600px) {
  .page-title { font-size: 24px; }
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 10px 8px; }
}
