
:root {
  --primary: #8171D0;
  --primary-hover: #6F5DC4;
  --primary-press: #5D4DAD;
  --primary-soft: #F0EDF9;
  --primary-softer: #F6F4FC;

  --bg: #F8F6FB;
  --bg-card: #FFFFFF;
  --bg-alt: #FAF9FC;
  --text: #0F0F12;
  --text-muted: #54545E;
  --text-subtle: #8A8A93;
  --border: #ECEAF1;
  --border-strong: #DAD7E0;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-card: 24px;

  --shadow-sm: 0 1px 2px rgba(15, 15, 18, 0.04);
  --shadow-card: 0 1px 2px rgba(15, 15, 18, 0.04), 0 12px 32px rgba(89, 75, 162, 0.06);
  --shadow-card-hover: 0 1px 2px rgba(15, 15, 18, 0.04), 0 20px 48px rgba(89, 75, 162, 0.08);

  --container: 1180px;
  --gap-cols: 64px;
  --header-col: 260px;

  --font-sans: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Competitor brand-hint (neutral slate so we don't color-favor either side) */
  --competitor-a: #5A6478;
  --competitor-b: #3A4254;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.005em;
}

/* ─────────── LAYOUT ─────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section-wrap { max-width: var(--container); margin: 0 auto; padding: 12px 24px; }

.card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 56px 56px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s ease;
}
.card:hover { box-shadow: var(--shadow-card-hover); }

.row {
  display: grid;
  grid-template-columns: var(--header-col) 1fr;
  gap: var(--gap-cols);
}
.row-header { position: sticky; top: 88px; align-self: start; }
.row-body { min-width: 0; }

.row-stacked { display: block; }
.row-stacked .row-header {
  position: static;
  max-width: 640px;
  margin: 0 auto 44px;
  text-align: center;
}
.row-stacked .row-header .eyebrow::after {
  content: '';
  width: 24px; height: 1.5px;
  background: linear-gradient(-90deg, var(--primary), transparent);
  border-radius: 2px;
}
.row-stacked .row-header h2 { font-size: clamp(28px, 2.8vw, 36px); }
.row-stacked .row-body { width: 100%; }

/* ─────────── TYPOGRAPHY ─────────── */
h1, h2, h3, h4 { font-weight: 500; letter-spacing: -0.02em; line-height: 1.15; color: var(--text); }
h1 { font-size: clamp(40px, 5.2vw, 60px); font-weight: 500; letter-spacing: -0.035em; line-height: 1.03; }
h2 { font-size: clamp(26px, 2.6vw, 32px); margin-bottom: 14px; letter-spacing: -0.025em; line-height: 1.15; }
h3 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 1.5px;
  background: linear-gradient(90deg, var(--primary), transparent);
  border-radius: 2px;
}

p { color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
p strong { color: var(--text); font-weight: 600; }
p:last-child { margin-bottom: 0; }

a { color: var(--primary); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--primary-press); }

.row-header h2 { margin-bottom: 12px; }
.row-header .intro { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

.serif-accent { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--primary); }

/* ─────────── NAV ─────────── */
header.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248, 246, 251, 0.8);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(236, 234, 241, 0.6);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 60px; }
.logo { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 16px; letter-spacing: -0.02em; color: var(--text); }
.logo-mark {
  width: 24px; height: 24px; border-radius: 6px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-press) 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; font-weight: 700; font-family: var(--font-serif); font-style: italic;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(129, 113, 208, 0.25);
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--text-muted); font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); }
.nav-cta { display: flex; gap: 6px; align-items: center; }

/* ─────────── BUTTONS ─────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-family: inherit; font-size: 14px; font-weight: 500;
  padding: 9px 16px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  letter-spacing: -0.005em;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 1px 2px rgba(89, 75, 162, 0.2), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:hover {
  background: var(--primary-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(89, 75, 162, 0.25);
}
.btn-ghost { background: transparent; color: var(--text-muted); }
.btn-ghost:hover { color: var(--text); background: rgba(15, 15, 18, 0.04); }
.btn-outline { background: var(--bg-card); color: var(--text); border-color: var(--border-strong); }
.btn-outline:hover { border-color: var(--text); transform: translateY(-1px); }
.btn-lg { padding: 13px 22px; font-size: 15px; }

/* ─────────── BREADCRUMB ─────────── */
.breadcrumb {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 24px 0;
  font-size: 12.5px;
  color: var(--text-subtle);
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}
.breadcrumb a { color: var(--text-subtle); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb .current { color: var(--text); font-weight: 500; }

/* ─────────── HERO ─────────── */
.hero {
  padding: 36px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(129, 113, 208, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 80% 60% at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at center, black 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 1000px; height: 560px;
  background: radial-gradient(ellipse at center, rgba(129, 113, 208, 0.18) 0%, rgba(129, 113, 208, 0.05) 35%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner { max-width: 820px; margin: 0 auto; text-align: center; padding: 0 32px; position: relative; z-index: 1; }
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px 5px 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  margin-bottom: 22px;
  font-size: 12.5px;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
}
.hero-pill .tag {
  color: var(--primary);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--primary-softer);
  padding: 3px 9px;
  border-radius: 999px;
}
.hero h1 { margin-bottom: 18px; }
.hero h1 .accent { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--primary); }
.hero .lede {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 22px;
}
.hero-trustline {
  font-size: 12.5px;
  color: var(--text-subtle);
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 14px;
}
.hero-trustline .sep { opacity: 0.4; }
.hero-trustline .check { color: var(--primary); margin-right: 4px; font-weight: 700; }

/* ─────────── VERSUS HERO CARD ─────────── */
.versus-wrap {
  max-width: 880px;
  margin: 44px auto 0;
  position: relative;
  z-index: 1;
}
.versus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 36px 30px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  box-shadow: 0 1px 2px rgba(15, 15, 18, 0.04), 0 20px 48px rgba(129, 113, 208, 0.12);
  position: relative;
  overflow: hidden;
}
/* Subtle background tint per side */
.versus-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 50%;
  background: linear-gradient(90deg, rgba(129, 113, 208, 0.04) 0%, transparent 100%);
  pointer-events: none;
}
.vs-side {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.vs-mark {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 10px;
}
.vs-mark.fb {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-press) 100%);
  font-family: var(--font-serif);
  font-style: italic;
  box-shadow: 0 8px 20px rgba(129, 113, 208, 0.32);
}
.vs-mark.bot {
  background: linear-gradient(135deg, var(--competitor-a) 0%, var(--competitor-b) 100%);
  font-size: 17px;
  box-shadow: 0 8px 20px rgba(58, 66, 84, 0.24);
}
.vs-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.015em;
}
.vs-tag {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.4;
  max-width: 200px;
}
.vs-side .home-badge {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--primary);
  background: var(--primary-softer);
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.vs-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vs-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
  box-shadow: 0 6px 16px rgba(15, 15, 18, 0.05);
}
.vs-circle::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px dashed var(--border-strong);
  border-radius: 50%;
  opacity: 0.6;
  animation: rotateRing 24s linear infinite;
}
@keyframes rotateRing {
  to { transform: rotate(360deg); }
}

/* Quick verdict row inside versus card */
.vs-quick-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.vs-quick-cell {
  text-align: center;
}
.vs-quick-label {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-subtle);
  margin-bottom: 6px;
}
.vs-quick-value {
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
}
.vs-quick-divider { width: 1px; background: var(--border); }

/* ─────────── COMPARISON TABLE ─────────── */
.compare-table {
  background: var(--bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
}
.ct-row {
  display: grid;
  grid-template-columns: 1.5fr 1.2fr 1.2fr 0.8fr;
  gap: 16px;
  padding: 16px 22px;
  align-items: center;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.ct-row:last-child { border-bottom: none; }
.ct-row:hover:not(.ct-head) { background: rgba(255, 255, 255, 0.5); }
.ct-head {
  background: var(--bg-card);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-subtle);
  padding: 14px 22px;
  border-bottom: 1px solid var(--border);
}
.ct-head .ct-tool {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ct-head-mark {
  width: 18px; height: 18px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.ct-head-mark.fb {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-press) 100%);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 11px;
}
.ct-head-mark.bot {
  background: linear-gradient(135deg, var(--competitor-a) 0%, var(--competitor-b) 100%);
}

.ct-feature {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.ct-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dots {
  display: flex;
  gap: 3px;
  flex-shrink: 0;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border-strong);
}
.dot.on {
  background: var(--primary);
}
.ct-rating .label {
  font-size: 12.5px;
  color: var(--text-muted);
}
.ct-winner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.winner-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.winner-badge.fb {
  color: var(--primary);
  background: var(--primary-softer);
  border: 1px solid var(--primary-soft);
}
.winner-badge.bot {
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.winner-badge.tie {
  color: var(--text-subtle);
  background: var(--bg-card);
  border: 1px dashed var(--border-strong);
}
.winner-badge .arrow {
  font-family: var(--font-mono);
  font-size: 10px;
}

/* Scorecard summary above table */
.scorecard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}
.score-card {
  padding: 22px 20px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.score-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--primary);
  opacity: 0.25;
}
.score-card.us::before { opacity: 1; }
.score-tag {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-subtle);
  margin-bottom: 10px;
}
.score-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 40px;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.score-card.bot .score-num { color: var(--competitor-b); }
.score-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ─────────── PRODUCT INTRO CARDS ─────────── */
.intro-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.intro-tool {
  padding: 28px 26px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  position: relative;
  transition: all 0.2s;
  overflow: hidden;
}
.intro-tool:hover { transform: translateY(-2px); }
.intro-tool.us {
  background: linear-gradient(135deg, var(--primary-softer) 0%, var(--bg-alt) 100%);
  border: 1px solid var(--primary-soft);
}
.intro-tool-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.intro-tool-mark {
  width: 42px; height: 42px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.intro-tool-mark.fb {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-press) 100%);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  box-shadow: 0 4px 12px rgba(129, 113, 208, 0.28);
}
.intro-tool-mark.bot {
  background: linear-gradient(135deg, var(--competitor-a) 0%, var(--competitor-b) 100%);
  font-size: 13px;
  box-shadow: 0 4px 12px rgba(58, 66, 84, 0.22);
}
.intro-tool h3 { font-size: 18px; font-weight: 600; margin: 0 0 2px; }
.intro-tool .tool-sub {
  font-size: 12px;
  color: var(--text-subtle);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.intro-tool p { font-size: 14px; margin-bottom: 16px; line-height: 1.6; }
.intro-tool ul { list-style: none; padding: 0; margin: 0; }
.intro-tool ul li {
  font-size: 13.5px;
  color: var(--text-muted);
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 9px;
}
.intro-tool ul li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  font-size: 11px;
  margin-top: 3px;
  flex-shrink: 0;
}
.intro-tool.bot ul li::before {
  color: var(--competitor-b);
}

/* ─────────── DEEP DIVE FEATURE SECTIONS ─────────── */
.deepdive {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.deepdive-card {
  padding: 24px 22px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  position: relative;
  transition: all 0.2s;
}
.deepdive-card:hover { transform: translateY(-2px); }
.deepdive-card.winner {
  background: linear-gradient(135deg, var(--primary-softer) 0%, var(--bg-alt) 100%);
  border: 1px solid var(--primary-soft);
}
.deepdive-card.winner-bot {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
}
.deepdive-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.deepdive-tool {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.deepdive-mark {
  width: 22px; height: 22px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 11px;
  color: #fff;
}
.deepdive-mark.fb {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-press) 100%);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 12px;
}
.deepdive-mark.bot {
  background: linear-gradient(135deg, var(--competitor-a) 0%, var(--competitor-b) 100%);
  font-size: 9px;
}
.winner-pill {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: var(--bg-card);
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid var(--primary-soft);
}
.deepdive-card.winner-bot .winner-pill {
  color: var(--text-muted);
  border-color: var(--border-strong);
}
.deepdive-card ul { list-style: none; padding: 0; margin: 0; }
.deepdive-card ul li {
  font-size: 13.5px;
  color: var(--text-muted);
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.55;
}
.deepdive-card ul li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--primary);
  margin-top: 8px;
  flex-shrink: 0;
}
.deepdive-card.winner-bot ul li::before { background: var(--competitor-b); }

.deepdive-section { margin-bottom: 28px; }
.deepdive-section:last-child { margin-bottom: 0; }
.deepdive-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.deepdive-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--primary);
  background: var(--primary-softer);
  padding: 4px 9px;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.deepdive-title h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.015em;
}
.deepdive-summary {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}

/* ─────────── USE CASE MATRIX ─────────── */
.usecase-matrix {
  background: var(--bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
}
.uc-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 16px;
  padding: 14px 22px;
  align-items: center;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.uc-row:last-child { border-bottom: none; }
.uc-row:hover:not(.uc-head) { background: rgba(255,255,255,0.4); }
.uc-head {
  background: var(--bg-card);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-subtle);
  padding: 14px 22px;
}
.uc-user {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.uc-user::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-softer);
}
.uc-winner {
  display: flex;
  align-items: center;
  gap: 8px;
}
.uc-winner-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px 4px 4px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.uc-winner-chip .mini-mark {
  width: 18px; height: 18px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
}
.uc-winner-chip .mini-mark.fb {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-press) 100%);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 11px;
}
.uc-winner-chip .mini-mark.bot {
  background: linear-gradient(135deg, var(--competitor-a) 0%, var(--competitor-b) 100%);
}
.uc-winner-chip.us { border-color: var(--primary-soft); background: var(--primary-softer); color: var(--primary); font-weight: 600; }

/* ─────────── CONSIDERATIONS GRID ─────────── */
.consider-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.consider-card {
  padding: 22px 20px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.consider-card:hover { background: var(--primary-softer); transform: translateY(-2px); }
.consider-card .num {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--primary);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  display: block;
  font-weight: 600;
}
.consider-card h3 { font-size: 15.5px; font-weight: 600; margin-bottom: 6px; }
.consider-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; margin-bottom: 0; }

/* ─────────── FINAL VERDICT — choice cards ─────────── */
.verdict-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.verdict-card {
  padding: 32px 28px;
  border-radius: var(--radius);
  position: relative;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}
.verdict-card.us {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--primary-softer) 100%);
  border: 1.5px solid var(--primary);
  box-shadow: 0 12px 32px rgba(89, 75, 162, 0.12);
}
.verdict-card.bot {
  background: var(--bg-alt);
  border: 1px solid var(--border);
}
.verdict-card:hover { transform: translateY(-3px); }

.verdict-tag {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-press) 100%);
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(89, 75, 162, 0.3);
}
.verdict-card.bot .verdict-tag {
  background: var(--bg-card);
  color: var(--text-muted);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.verdict-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.verdict-mark {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}
.verdict-mark.fb {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-press) 100%);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(129, 113, 208, 0.32);
}
.verdict-mark.bot {
  background: linear-gradient(135deg, var(--competitor-a) 0%, var(--competitor-b) 100%);
  font-size: 14px;
}
.verdict-card h3 { font-size: 18px; font-weight: 600; margin: 0; letter-spacing: -0.015em; }
.verdict-sub {
  font-size: 12px;
  color: var(--text-subtle);
  font-family: var(--font-mono);
}
.verdict-card .choose-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 14px;
}
.verdict-card.bot .choose-label { color: var(--text-muted); }

.verdict-card ul { list-style: none; padding: 0; margin: 0 0 22px; }
.verdict-card ul li {
  font-size: 14px;
  color: var(--text);
  padding: 7px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.verdict-card ul li::before {
  content: '→';
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}
.verdict-card.bot ul li::before { color: var(--text-muted); }
.verdict-card .verdict-cta { margin-top: auto; width: 100%; justify-content: center; }

/* ─────────── FAQ ─────────── */
.faq-list {
  background: var(--bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0 22px;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0;
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  list-style: none;
  transition: color 0.15s;
}
.faq-q:hover { color: var(--primary); }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 20px; font-weight: 300;
  color: var(--text-subtle);
  transition: all 0.2s;
  line-height: 1;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
details[open] .faq-q { color: var(--primary); }
details[open] .faq-q::after { content: '−'; color: var(--primary); background: var(--primary-softer); }
.faq-a {
  padding: 0 0 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 620px;
}

/* ─────────── FINAL CTA ─────────── */
.final-cta-wrap { padding: 12px 24px 36px; max-width: var(--container); margin: 0 auto; }
.final-cta {
  text-align: center;
  padding: 72px 32px;
  background:
    radial-gradient(ellipse 60% 80% at 20% 30%, rgba(129, 113, 208, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 70%, rgba(129, 113, 208, 0.14) 0%, transparent 60%),
    linear-gradient(135deg, #FAF8FE 0%, #F2EFFA 100%);
  border-radius: var(--radius-card);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(129, 113, 208, 0.1) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-inner { max-width: 600px; margin: 0 auto; position: relative; z-index: 1; }
.final-cta h2 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 14px; }
.final-cta h2 .accent { font-family: var(--font-serif); font-style: italic; color: var(--primary); font-weight: 400; }
.final-cta p { font-size: 15.5px; max-width: 480px; margin: 0 auto 26px; }
.final-cta .btn-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ─────────── FOOTER ─────────── */
footer { background: var(--bg); padding: 48px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 13.5px; color: var(--text-muted); max-width: 300px; }
.footer-col h5 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-subtle);
  margin-bottom: 14px;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col a { font-size: 13.5px; color: var(--text-muted); }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: var(--text-subtle);
}

/* ─────────── RESPONSIVE ─────────── */
@media (max-width: 940px) {
  :root { --gap-cols: 40px; --header-col: 200px; }
  .card { padding: 40px 36px; }
  .nav-links { display: none; }
  .scorecard { grid-template-columns: 1fr; }
  .ct-row {
    grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
    padding: 14px 16px;
    gap: 10px;
  }
  .ct-head { padding: 12px 16px; }
  .ct-rating .label { display: none; }
  .intro-pair, .deepdive, .consider-grid, .verdict-pair { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .card { padding: 32px 24px; border-radius: 20px; }
  .row { grid-template-columns: 1fr; gap: 24px; }
  .row-header { position: static; margin-bottom: 4px; }
  .row-stacked .row-header { margin-bottom: 28px; }

  .versus-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 22px 24px;
  }
  .vs-divider { padding: 10px 0; }
  .vs-circle { width: 48px; height: 48px; font-size: 18px; }
  .vs-quick-row { grid-template-columns: 1fr; gap: 14px; padding-top: 18px; margin-top: 18px; }
  .vs-quick-divider { display: none; }

  .ct-row {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "feature winner" "fb bot";
    padding: 14px 16px;
    row-gap: 10px;
  }
  .ct-row .ct-feature { grid-area: feature; font-weight: 600; }
  .ct-row .ct-winner { grid-area: winner; justify-content: flex-end; }
  .ct-row .ct-rating-fb { grid-area: fb; }
  .ct-row .ct-rating-bot { grid-area: bot; }
  .ct-head { display: none; }
  .ct-rating { gap: 8px; }
  .ct-rating::before {
    content: attr(data-tool);
    font-family: var(--font-mono);
    font-size: 9.5px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-subtle);
    margin-right: 4px;
    font-weight: 600;
  }
  .ct-rating .label { display: inline; }

  .uc-row { grid-template-columns: 1fr 1fr; padding: 12px 16px; }
  .uc-head { padding: 12px 16px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .final-cta { padding: 56px 24px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 24px 0 36px; }
}
