/* ==========================================================================
   CRM Duel — hand-written CSS (no framework, no build step)
   Editorial comparison site. Design tokens first, then components.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Ink & paper (warm editorial palette) */
  --ink:        #131a26;
  --ink-soft:   #3d4757;
  --ink-mute:   #6b7484;
  --paper:      #faf9f6;
  --card:       #ffffff;
  --line:       #e7e4dc;

  /* Brand: duel red + deep navy + verdict green */
  --red:        #d93a2b;
  --red-dark:   #b52a1d;
  --red-soft:   #fdeeec;
  --navy:       #101623;
  --navy-soft:  #1b2436;
  --green:      #0e7a46;
  --green-soft: #e8f5ee;
  --gold:       #b8860b;
  --gold-soft:  #fdf6e3;

  /* Type scale */
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-serif: ui-serif, Georgia, "Times New Roman", serif;
  --fs-xs:   0.8125rem;
  --fs-sm:   0.9375rem;
  --fs-base: 1.0625rem;
  --fs-lg:   1.25rem;
  --fs-xl:   1.625rem;
  --fs-2xl:  2.125rem;
  --fs-hero: clamp(2.25rem, 5.5vw, 3.5rem);

  /* Rhythm */
  --space-1: 0.375rem;
  --space-2: 0.75rem;
  --space-3: 1.25rem;
  --space-4: 2rem;
  --space-5: 3.25rem;
  --space-6: 5rem;

  --radius:    14px;
  --radius-sm: 8px;
  --shadow:    0 1px 2px rgba(19, 26, 38, .05), 0 8px 24px -12px rgba(19, 26, 38, .18);
  --shadow-lg: 0 2px 4px rgba(19, 26, 38, .06), 0 20px 48px -16px rgba(19, 26, 38, .28);
  --container: 72rem;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 var(--space-2); letter-spacing: -0.015em; }
h1 { font-size: var(--fs-hero); font-weight: 800; }
h2 { font-size: var(--fs-2xl); font-weight: 750; }
h3 { font-size: var(--fs-lg); font-weight: 700; }
p  { margin: 0 0 var(--space-3); }
a  { color: var(--red-dark); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--red); }
ul, ol { margin: 0 0 var(--space-3); padding-left: 1.4em; }
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--space-3); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--navy); color: #fff; padding: .6rem 1rem; border-radius: var(--radius-sm);
}
.skip-link:focus { left: .75rem; top: .75rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-weight: 650; font-size: var(--fs-sm); line-height: 1.2;
  padding: .8em 1.5em; border-radius: 999px; border: 1px solid transparent;
  text-decoration: none; cursor: pointer; transition: all .15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 6px 16px -6px rgba(217, 58, 43, .55); }
.btn-primary:hover { background: var(--red-dark); color: #fff; transform: translateY(-1px); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-soft); color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--ink-mute); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink-soft); }
.btn-ghost:hover { color: var(--ink); }
.btn-lg { font-size: var(--fs-base); padding: .95em 1.9em; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 249, 246, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: var(--space-3); height: 4.25rem; }
.brand { display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; color: var(--ink); }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; border-radius: 8px;
  background: var(--red); color: #fff;
  font-weight: 900; font-size: .85rem; font-style: italic;
  letter-spacing: -.05em; text-transform: lowercase;
}
.brand-name { font-weight: 800; font-size: 1.2rem; letter-spacing: -.02em; }
.brand-name em { font-style: normal; color: var(--red); }

.nav-links { display: none; list-style: none; margin: 0 auto; padding: 0; gap: .25rem; }
.nav-links a {
  display: block; padding: .5rem .95rem; border-radius: 999px;
  color: var(--ink-soft); text-decoration: none; font-weight: 550; font-size: var(--fs-sm);
}
.nav-links a:hover { background: #fff; color: var(--ink); box-shadow: var(--shadow); }
.nav-links a[aria-current="page"] { background: var(--navy); color: #fff; }

.nav-right { display: flex; align-items: center; gap: var(--space-2); margin-left: auto; }
.btn-nav { display: none; }

.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 2.75rem; height: 2.75rem; padding: 0; align-items: center;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); cursor: pointer;
}
.nav-toggle-bar { width: 1.15rem; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { border-top: 1px solid var(--line); background: var(--card); padding: var(--space-3); }
.mobile-menu nav { display: flex; flex-direction: column; gap: .25rem; max-width: var(--container); margin-inline: auto; }
.mobile-menu a {
  padding: .85rem 1rem; border-radius: var(--radius-sm);
  color: var(--ink); text-decoration: none; font-weight: 600;
}
.mobile-menu a:hover { background: var(--paper); }
.mobile-menu .btn { margin-top: var(--space-2); }

@media (min-width: 820px) {
  .nav-links { display: flex; }
  .btn-nav { display: inline-flex; }
  .nav-toggle, .mobile-menu { display: none; }
}

/* ---------- Hero ---------- */
.hero { padding: var(--space-6) 0 var(--space-5); text-align: center; position: relative; overflow: hidden; }
.hero .container { max-width: 54rem; position: relative; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--red-dark); background: var(--red-soft);
  padding: .45em 1em; border-radius: 999px; margin-bottom: var(--space-3);
}
.hero h1 { margin-bottom: var(--space-3); }
.hero h1 .accent { color: var(--red); }
.hero-sub { font-size: var(--fs-lg); color: var(--ink-soft); max-width: 44rem; margin-inline: auto; }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-2); justify-content: center; margin-top: var(--space-4); }
.hero-note { font-size: var(--fs-xs); color: var(--ink-mute); margin-top: var(--space-2); }

/* ---------- Sections ---------- */
.section { padding: var(--space-6) 0; }
.section-alt { background: var(--card); border-block: 1px solid var(--line); }
.section-dark { background: var(--navy); color: #e8eaf0; }
.section-dark h2 { color: #fff; }
.section-head { text-align: center; max-width: 46rem; margin: 0 auto var(--space-5); }
.section-head .lede { color: var(--ink-soft); font-size: var(--fs-lg); }
.section-dark .lede { color: #aab3c5; }
.kicker {
  display: block; font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--red); margin-bottom: var(--space-1);
}

/* ---------- Cards ---------- */
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: var(--space-4); box-shadow: var(--shadow);
}
.grid { display: grid; gap: var(--space-3); }
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Winner / verdict card ---------- */
.pick-card {
  position: relative; border: 2px solid var(--red);
  border-radius: var(--radius); background: var(--card);
  box-shadow: var(--shadow-lg); padding: var(--space-4);
}
.pick-badge {
  position: absolute; top: -0.9rem; left: var(--space-4);
  background: var(--red); color: #fff; font-size: var(--fs-xs); font-weight: 750;
  letter-spacing: .05em; text-transform: uppercase;
  padding: .3em 1em; border-radius: 999px;
}
.pick-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: var(--space-2); margin-bottom: var(--space-2); }
.pick-head h3 { margin: 0; font-size: var(--fs-xl); }
.pick-price { color: var(--ink-mute); font-size: var(--fs-sm); }

/* ---------- Stars ---------- */
.stars { display: inline-flex; gap: 2px; vertical-align: middle; }
.star { width: 1.05em; height: 1.05em; background: var(--gold); display: inline-block;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.star-half { background: linear-gradient(90deg, var(--gold) 50%, var(--line) 50%); }
.star-empty { background: var(--line); }
.rating-num { font-weight: 750; margin-right: .35em; }

/* ---------- Pros / cons ---------- */
.pros-cons { display: grid; gap: var(--space-3); }
@media (min-width: 720px) { .pros-cons { grid-template-columns: 1fr 1fr; } }
.pros, .cons { border-radius: var(--radius-sm); padding: var(--space-3); }
.pros { background: var(--green-soft); }
.cons { background: var(--red-soft); }
.pros h3, .cons h3, .pros h4, .cons h4 { margin-bottom: var(--space-2); font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: .05em; }
.pros h3, .pros h4 { color: var(--green); }
.cons h3, .cons h4 { color: var(--red-dark); }
.pros ul, .cons ul { margin: 0; padding-left: 1.2em; font-size: var(--fs-sm); }
.pros li, .cons li { margin-bottom: .45em; }

/* ---------- Comparison table ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); box-shadow: var(--shadow); }
table.compare { border-collapse: collapse; width: 100%; min-width: 760px; font-size: var(--fs-sm); }
.compare th, .compare td { padding: .8rem 1rem; text-align: left; border-bottom: 1px solid var(--line); }
.compare thead th { background: var(--navy); color: #fff; font-weight: 650; position: sticky; top: 0; }
.compare thead th:first-child { border-top-left-radius: var(--radius); }
.compare thead th:last-child { border-top-right-radius: var(--radius); }
.compare tbody tr:last-child td { border-bottom: none; }
.compare tbody tr:hover td { background: #fcfbf8; }
.compare td.yes::before { content: "✓"; color: var(--green); font-weight: 800; }
.compare td.no::before { content: "—"; color: var(--ink-mute); }
.compare .col-hl { background: var(--red-soft); }
.compare thead th.col-hl { background: var(--red); }

/* ---------- Duel cards (featured comparisons) ---------- */
.duel-card {
  display: flex; flex-direction: column; gap: var(--space-2);
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--space-3); box-shadow: var(--shadow);
  text-decoration: none; color: var(--ink); transition: transform .15s ease, box-shadow .15s ease;
}
.duel-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); color: var(--ink); }
.duel-vs { display: flex; align-items: center; gap: var(--space-2); font-weight: 750; font-size: var(--fs-lg); }
.duel-vs .vs {
  flex-shrink: 0; width: 2.1rem; height: 2.1rem; border-radius: 50%;
  background: var(--red); color: #fff; font-size: .8rem; font-weight: 900; font-style: italic;
  display: inline-flex; align-items: center; justify-content: center;
}
.duel-meta { color: var(--ink-mute); font-size: var(--fs-sm); margin: 0; }
.duel-cta { color: var(--red-dark); font-weight: 650; font-size: var(--fs-sm); }

/* ---------- Trust strip ---------- */
.trust-grid { display: grid; gap: var(--space-3); }
@media (min-width: 720px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
.trust-item { text-align: center; padding: var(--space-3); }
.trust-item .num { display: block; font-size: var(--fs-2xl); font-weight: 800; color: var(--red); }
.section-dark .trust-item .num { color: #ff7a6b; }
.trust-item p { color: var(--ink-mute); font-size: var(--fs-sm); margin: 0; }
.section-dark .trust-item p { color: #aab3c5; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 46rem; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: var(--space-2);
  padding: var(--space-3) 0; font-weight: 650; font-size: var(--fs-base);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.3em; color: var(--red); font-weight: 400; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 0 var(--space-3); color: var(--ink-soft); }

/* ---------- Callout (discreet service nudge) ---------- */
.callout {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2);
  background: var(--gold-soft); border: 1px solid #eadfc0; border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-3); font-size: var(--fs-sm); color: var(--ink-soft);
}
.callout a { font-weight: 650; }

/* ---------- Prose (long-form article content) ---------- */
.prose { max-width: 46rem; margin-inline: auto; }
.prose h2 { margin-top: var(--space-5); }
.prose h3 { margin-top: var(--space-4); }
.prose img { border-radius: var(--radius); }
.prose blockquote {
  margin: var(--space-3) 0; padding: var(--space-2) var(--space-3);
  border-left: 3px solid var(--red); background: var(--card); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--ink-soft); font-style: italic;
}

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band .btn { margin-top: var(--space-2); }
.cta-band .fineprint { font-size: var(--fs-xs); color: #8b94a6; margin-top: var(--space-2); }

/* ---------- Cookie banner ---------- */
.cookie-banner { position: fixed; inset-inline: 0; bottom: 0; z-index: 200; padding: var(--space-2); }
.cookie-card {
  max-width: 56rem; margin-inline: auto;
  background: var(--navy); color: #d7dce6;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: var(--space-3); display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2);
}
.cookie-card p { margin: 0; font-size: var(--fs-sm); flex: 1 1 20rem; }
.cookie-card a { color: #ff9a8d; }
.cookie-actions { display: flex; gap: var(--space-1); }
.cookie-card .btn-ghost { color: #aab3c5; }
.cookie-card .btn-ghost:hover { color: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #aab3c5; padding: var(--space-5) 0 var(--space-3); margin-top: var(--space-6); }
.site-footer .brand { color: #fff; }
.footer-grid { display: grid; gap: var(--space-4); grid-template-columns: 1fr; }
@media (min-width: 820px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; } }
.footer-tagline { font-size: var(--fs-sm); margin-top: var(--space-2); }
.footer-disclosure { font-size: var(--fs-xs); color: #7b8496; }
.footer-disclosure a { color: #ff9a8d; }
.footer-col h2 { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .08em; color: #fff; margin-bottom: var(--space-2); }
.footer-col a { display: block; color: #aab3c5; text-decoration: none; font-size: var(--fs-sm); padding: .25rem 0; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #232d40; margin-top: var(--space-4); padding-top: var(--space-3); font-size: var(--fs-xs); color: #7b8496; }
.footer-bottom p { margin: 0; }

/* ==========================================================================
   Value-first components (2026-07 redesign)
   ========================================================================== */

/* ---------- Split hero (text + art) ---------- */
.hero-split { padding: var(--space-5) 0; text-align: left; }
.hero-split .container { max-width: var(--container); display: grid; gap: var(--space-4); align-items: center; }
@media (min-width: 900px) { .hero-split .container { grid-template-columns: 11fr 9fr; } }
.hero-split .hero-sub { margin-inline: 0; }
.hero-split .hero-actions { justify-content: flex-start; }
.hero-art { position: relative; }
.hero-art img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.hero-art .art-caption {
  position: absolute; bottom: .75rem; left: .75rem; right: .75rem;
  background: rgba(16, 22, 35, .82); color: #d7dce6; backdrop-filter: blur(4px);
  font-size: var(--fs-xs); padding: .5em .9em; border-radius: var(--radius-sm); margin: 0;
}

/* ---------- Fit-check ("Is it for you?") ---------- */
.fit-check { display: grid; gap: var(--space-3); }
@media (min-width: 720px) { .fit-check { grid-template-columns: 1fr 1fr; } }
.fit-col { border-radius: var(--radius); padding: var(--space-3) var(--space-4); border: 1px solid var(--line); background: var(--card); box-shadow: var(--shadow); }
.fit-col h3 { display: flex; align-items: center; gap: .55em; font-size: var(--fs-base); }
.fit-col .fit-icon {
  flex-shrink: 0; width: 1.6rem; height: 1.6rem; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 900; color: #fff;
}
.fit-yes { border-top: 3px solid var(--green); }
.fit-yes .fit-icon { background: var(--green); }
.fit-no { border-top: 3px solid var(--ink-mute); }
.fit-no .fit-icon { background: var(--ink-mute); }
.fit-col ul { margin: 0; padding: 0; list-style: none; font-size: var(--fs-sm); }
.fit-col li { padding: .5em 0; border-bottom: 1px dashed var(--line); }
.fit-col li:last-child { border-bottom: none; }
.fit-col li strong { color: var(--ink); }

/* ---------- Outcomes timeline ("what you get") ---------- */
.outcomes { display: grid; gap: var(--space-3); counter-reset: outcome; }
@media (min-width: 900px) { .outcomes { grid-template-columns: repeat(3, 1fr); } }
.outcome {
  position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: var(--space-4); box-shadow: var(--shadow);
}
.outcome .when {
  display: inline-block; font-size: var(--fs-xs); font-weight: 750; letter-spacing: .06em;
  text-transform: uppercase; color: var(--green); background: var(--green-soft);
  padding: .3em .9em; border-radius: 999px; margin-bottom: var(--space-2);
}
.outcome h3 { font-size: var(--fs-lg); }
.outcome ul { margin: 0; padding-left: 1.15em; font-size: var(--fs-sm); color: var(--ink-soft); }
.outcome li { margin-bottom: .4em; }

/* ---------- Real-cost cards ---------- */
.cost-cards { display: grid; gap: var(--space-3); }
@media (min-width: 720px) { .cost-cards { grid-template-columns: repeat(3, 1fr); } }
.cost-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--space-3) var(--space-4); box-shadow: var(--shadow); }
.cost-card.total { border: 2px solid var(--navy); }
.cost-card h3 { font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: .05em; color: var(--ink-mute); }
.cost-card .amount { font-size: var(--fs-2xl); font-weight: 800; letter-spacing: -.02em; }
.cost-card .amount small { font-size: var(--fs-sm); font-weight: 550; color: var(--ink-mute); }
.cost-card p { font-size: var(--fs-xs); color: var(--ink-mute); margin: var(--space-1) 0 0; }
.cost-replaces { font-size: var(--fs-sm); }
.cost-replaces del { color: var(--ink-mute); }

/* ---------- Score breakdown bars ---------- */
.scorebars { display: grid; gap: .9rem; }
.scorebar { display: grid; grid-template-columns: 11rem 1fr 2.6rem; align-items: center; gap: var(--space-2); font-size: var(--fs-sm); }
@media (max-width: 560px) { .scorebar { grid-template-columns: 8rem 1fr 2.4rem; } }
.scorebar .label { font-weight: 600; color: var(--ink-soft); }
.scorebar .track { height: .55rem; border-radius: 999px; background: var(--line); overflow: hidden; }
.scorebar .fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--red), #f0664f); }
.scorebar .val { font-weight: 750; text-align: right; }
.section-dark .scorebar .label { color: #aab3c5; }
.section-dark .scorebar .track { background: #232d40; }
.scorebars-duo .scorebar { grid-template-columns: 11rem 1fr 1fr; }
.scorebars-duo .fill-b { background: linear-gradient(90deg, #4a5872, #6b7c9c); }

/* ---------- Verdict band ---------- */
.verdict-band {
  background: var(--navy); color: #d7dce6; border-radius: var(--radius);
  padding: var(--space-4); box-shadow: var(--shadow-lg);
  display: grid; gap: var(--space-3); align-items: center;
}
@media (min-width: 820px) { .verdict-band { grid-template-columns: auto 1fr auto; } }
.verdict-score {
  width: 5.4rem; height: 5.4rem; border-radius: 50%;
  background: var(--red); color: #fff; display: flex; flex-direction: column;
  align-items: center; justify-content: center; font-weight: 800; box-shadow: 0 8px 24px -8px rgba(217,58,43,.7);
}
.verdict-score .n { font-size: 1.7rem; line-height: 1; }
.verdict-score .of { font-size: .65rem; opacity: .85; }
.verdict-band h2, .verdict-band h3 { color: #fff; margin-bottom: .3rem; }
.verdict-band p { margin: 0; font-size: var(--fs-sm); color: #aab3c5; }

/* ---------- Persona cards (choose your situation) ---------- */
.persona-grid { display: grid; gap: var(--space-3); }
@media (min-width: 720px) { .persona-grid { grid-template-columns: repeat(3, 1fr); } }
.persona-card {
  display: flex; flex-direction: column; gap: .5rem;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--space-4); box-shadow: var(--shadow); text-decoration: none; color: var(--ink);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.persona-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--red); color: var(--ink); }
.persona-card .emoji { font-size: 1.6rem; line-height: 1; }
.persona-card h3 { margin: 0; font-size: var(--fs-lg); }
.persona-card p { margin: 0; color: var(--ink-mute); font-size: var(--fs-sm); flex: 1; }
.persona-card .go { color: var(--red-dark); font-weight: 650; font-size: var(--fs-sm); }

/* ---------- Medal / rank cards (roundups) ---------- */
.rank-card { position: relative; }
.rank-num {
  position: absolute; top: -0.85rem; left: var(--space-3);
  width: 2rem; height: 2rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .95rem; color: #fff; background: var(--ink-mute);
  box-shadow: var(--shadow);
}
.rank-1 .rank-num { background: var(--gold); }
.rank-1 { border: 2px solid var(--gold); }
.rank-2 .rank-num { background: #8a93a5; }
.rank-3 .rank-num { background: #a5762f; }

/* ---------- Review hub cards ---------- */
.review-card { display: flex; flex-direction: column; gap: var(--space-2); text-decoration: none; color: var(--ink); transition: transform .15s ease, box-shadow .15s ease; }
a.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); color: var(--ink); }
.review-card .thumb { border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); }
.review-card .score-chip {
  display: inline-flex; align-items: center; gap: .4em;
  background: var(--navy); color: #fff; font-weight: 750; font-size: var(--fs-sm);
  padding: .25em .8em; border-radius: 999px;
}

/* ---------- Winner-per-row table ---------- */
.compare td.win { position: relative; background: var(--green-soft); font-weight: 650; }
.compare td.win::after { content: "✓ better here"; display: block; font-size: .68rem; font-weight: 750; letter-spacing: .04em; text-transform: uppercase; color: var(--green); }
.compare td.tie { color: var(--ink-soft); }

/* ---------- VS banner (comparison pages only) ---------- */
.vs-banner { display: flex; align-items: center; justify-content: center; gap: var(--space-3); flex-wrap: wrap; margin-block: var(--space-3); }
.vs-side { text-align: center; }
.vs-side .name { font-weight: 800; font-size: var(--fs-xl); letter-spacing: -.02em; }
.vs-side .meta { font-size: var(--fs-xs); color: var(--ink-mute); }
.vs-mark {
  flex-shrink: 0; width: 3.2rem; height: 3.2rem; border-radius: 50%;
  background: var(--red); color: #fff; font-weight: 900; font-style: italic; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px -8px rgba(217, 58, 43, .7);
}
.section-dark .vs-side .meta { color: #aab3c5; }

/* ---------- Author / tested-by strip ---------- */
.tested-strip {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2);
  font-size: var(--fs-sm); color: var(--ink-soft);
  border-block: 1px solid var(--line); padding: var(--space-2) 0; margin-block: var(--space-3);
}
.tested-strip .avatar {
  width: 2.2rem; height: 2.2rem; border-radius: 50%; background: var(--navy); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-weight: 750; font-size: .8rem;
}
.tested-strip strong { color: var(--ink); }
.tested-strip .sep { color: var(--line); }

/* ---------- Screenshot slots (inside the platform) ---------- */
.shot-grid { display: grid; gap: var(--space-3); }
@media (min-width: 720px) { .shot-grid { grid-template-columns: 1fr 1fr; } }
.shot { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--card); box-shadow: var(--shadow); }
.shot img { width: 100%; }
.shot figcaption { font-size: var(--fs-xs); color: var(--ink-mute); padding: .7rem var(--space-2); border-top: 1px solid var(--line); }
.shot-placeholder {
  aspect-ratio: 16 / 10; display: flex; align-items: center; justify-content: center;
  background: repeating-linear-gradient(45deg, #f4f2ec, #f4f2ec 12px, #efede6 12px, #efede6 24px);
  color: var(--ink-mute); font-size: var(--fs-sm); text-align: center; padding: var(--space-3);
}

/* ---------- Steps (setup service) ---------- */
.steps { display: grid; gap: var(--space-3); counter-reset: step; }
@media (min-width: 820px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--space-4); box-shadow: var(--shadow); }
.step::before {
  counter-increment: step; content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 2.2rem; height: 2.2rem; border-radius: 50%; margin-bottom: var(--space-2);
  background: var(--red); color: #fff; font-weight: 800;
}
.step h3 { font-size: var(--fs-lg); }
.step p { margin: 0; font-size: var(--fs-sm); color: var(--ink-soft); }

/* ---------- Utilities ---------- */
.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;
}
.center { text-align: center; }
.muted { color: var(--ink-mute); }
.small { font-size: var(--fs-sm); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
