/* Shared styling for the long-form pages (comparisons, guides).
   Tokens mirror the landing page so the two never drift apart visually.
   Radius rule: buttons pill, cards 16px. */
:root {
  --bg: #fafafa;
  --surface: #ffffff;
  --tint: #f3f0fc;
  --ink: #1b1a1f;
  --muted: #5b5966;
  --line: #e6e4ec;
  --accent: #6b4be0;
  --accent-soft: rgba(107, 75, 224, 0.10);
  --accent-ink: #ffffff;
  --shadow: 0 24px 60px -24px rgba(66, 44, 148, 0.28);
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0c0b10;
    --surface: #14131a;
    --tint: #17141f;
    --ink: #f2f1f6;
    --muted: #a3a0af;
    --line: #262430;
    --accent: #9d84f2;
    --accent-soft: rgba(157, 132, 242, 0.13);
    --accent-ink: #16102e;
    --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.6);
  }
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.wrap { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* Header */
header.bar { border-bottom: 1px solid var(--line); background: var(--surface); }
header.bar .wrap { display: flex; align-items: center; justify-content: space-between; height: 62px; max-width: 1120px; }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 650; color: var(--ink); font-size: 17px; }
.brand img { width: 28px; height: 28px; }
.bar-cta { display: inline-flex; align-items: center; padding: 8px 18px; border-radius: 999px; background: var(--accent); color: var(--accent-ink); font-weight: 600; font-size: 14.5px; }
.bar-cta:hover { text-decoration: none; opacity: 0.9; }

/* Article */
article { padding: 56px 0 24px; }
.kicker { font-size: 13.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
h1 { font-size: 40px; line-height: 1.15; letter-spacing: -0.02em; margin: 12px 0 18px; font-weight: 700; }
.lede { font-size: 18.5px; color: var(--muted); }
h2 { font-size: 25px; line-height: 1.25; letter-spacing: -0.01em; margin: 46px 0 14px; font-weight: 680; }
h3 { font-size: 18px; margin: 28px 0 8px; font-weight: 650; }
p { margin: 14px 0; }
ul, ol { margin: 14px 0 14px 22px; }
li { margin: 7px 0; }
.meta { margin-top: 22px; font-size: 13.5px; color: var(--muted); }
.verdict { margin: 30px 0; padding: 20px 22px; border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: 16px; background: var(--surface); }
.verdict b { display: block; margin-bottom: 4px; }
kbd { font: inherit; font-size: 13.5px; padding: 2px 7px; border: 1px solid var(--line); border-bottom-width: 2px; border-radius: 6px; background: var(--surface); }

/* Comparison table */
.compare-wrap { margin: 26px 0; overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
table.compare { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 520px; }
.compare th, .compare td { padding: 13px 16px; text-align: center; border-top: 1px solid var(--line); }
.compare thead th { border-top: none; padding-top: 18px; font-size: 14px; }
.compare th:first-child, .compare td:first-child { text-align: left; color: var(--muted); font-weight: 500; }
.compare thead th:nth-child(2) { color: var(--accent); }
.compare td:nth-child(2) { background: var(--accent-soft); font-weight: 600; }
.compare .yes { color: var(--accent); font-weight: 700; }
.compare .no { color: var(--muted); opacity: 0.6; }

/* Closing call to action */
.cta { margin: 52px 0 8px; padding: 30px 28px; border: 1px solid var(--line); border-radius: 16px; background: var(--tint); text-align: center; }
.cta h2 { margin: 0 0 8px; font-size: 22px; }
.cta p { color: var(--muted); margin: 0 0 18px; }
.btn { display: inline-flex; align-items: center; padding: 12px 26px; border-radius: 999px; background: var(--accent); color: var(--accent-ink); font-weight: 650; box-shadow: var(--shadow); }
.btn:hover { text-decoration: none; opacity: 0.92; }

footer { margin-top: 56px; border-top: 1px solid var(--line); padding: 26px 0 40px; font-size: 14px; color: var(--muted); }
footer .wrap { display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; max-width: 1120px; }
footer nav { display: flex; flex-wrap: wrap; gap: 18px; }

@media (max-width: 640px) {
  h1 { font-size: 31px; }
  h2 { font-size: 22px; }
  article { padding-top: 38px; }
}
