/* Compare pages — supplements /legal.css.
   Same monochrome system: ink/graphite only, no hue accents. */

.compare-hero { padding: 24px 0 8px; }
.compare-hero h1 { max-width: 720px; }
.compare-hero .lede { max-width: 640px; }

.verdict {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  margin: 40px 0;
}
.verdict h2 { margin-top: 0; font-size: 15px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-tertiary); font-family: var(--font-mono); font-weight: 500; }
.verdict p { color: var(--text-primary); font-size: 17px; line-height: 1.6; margin-bottom: 0; }
.verdict p + p { margin-top: 12px; }

/* Feature table */
.table-wrap { overflow-x: auto; margin: 32px 0 8px; border: 1px solid var(--border-hover); border-radius: var(--radius-lg); }
table.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 560px;
  background: #fff;
}
table.compare th, table.compare td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-hover);
  vertical-align: top;
}
table.compare thead th {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  background: var(--bg-secondary);
}
table.compare tbody tr:last-child td { border-bottom: none; }
table.compare td:first-child { color: var(--text-secondary); font-weight: 500; width: 34%; }
table.compare td strong { color: var(--text-primary); }
.tick { font-weight: 600; }
.dash { color: var(--text-tertiary); }
.footnote { font-size: 13px; color: var(--text-tertiary); margin: 12px 2px 40px; line-height: 1.6; }

/* "Choose X if" cards */
.choose-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin: 28px 0 48px; }
.choose-card {
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  background: #fff;
}
.choose-card h3 { margin-top: 0; font-size: 16px; }
.choose-card ul { margin: 12px 0 0; padding: 0; list-style: none; }
.choose-card li { position: relative; padding-left: 18px; margin-bottom: 8px; color: var(--text-secondary); font-size: 14.5px; line-height: 1.55; }
.choose-card li::before { content: "—"; position: absolute; left: 0; color: var(--text-tertiary); }

/* CTA */
.cta-band {
  background: #1D1D1F;
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  margin: 56px 0;
  text-align: center;
}
.cta-band h2 { color: #fff; margin: 0 0 8px; border: none; }
.cta-band p { color: rgba(255,255,255,0.72); margin: 0 auto 24px; max-width: 480px; }
.btn-store {
  display: inline-block;
  background: #fff;
  color: #1D1D1F;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 999px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.btn-store:hover { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(0,0,0,0.35); }
.cta-sub { display: block; margin-top: 14px; font-size: 13px; color: rgba(255,255,255,0.55); }

/* Compare hub cards */
.hub-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin: 36px 0 24px; }
.hub-card {
  display: block;
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: 26px 26px 22px;
  background: #fff;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}
.hub-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); border-color: rgba(0,0,0,0.12); }
.hub-card .eyebrow { display: block; margin-bottom: 10px; }
.hub-card h3 { margin: 0 0 6px; font-size: 17px; }
.hub-card p { color: var(--text-secondary); font-size: 14.5px; line-height: 1.55; margin: 0; }
.hub-card .go { display: inline-block; margin-top: 14px; font-size: 14px; font-weight: 600; color: var(--text-primary); }

.updated-line { font-family: var(--font-mono); font-size: 12px; color: var(--text-tertiary); letter-spacing: 0.06em; margin-bottom: 28px; }

@media (max-width: 640px) {
  .verdict { padding: 22px 20px; }
  .cta-band { padding: 32px 22px; }
}

/* Hero image */
.hero-figure { margin: 36px 0 8px; }
.hero-figure img { width: 100%; height: auto; border-radius: var(--radius-xl); display: block; }
.hero-figure figcaption { font-family: var(--font-mono); font-size: 12px; color: var(--text-tertiary); letter-spacing: 0.04em; margin: 12px 2px 0; }
