:root {
    --ink:#0F1923;
    --ink-soft:#374151;
    --muted:#6B7280;
    --paper:#F7F8FA;
    --white:#FFFFFF;
    --accent:#1A6BFF;
    --accent-soft:#EBF1FF;
    --accent-dark:#1254CC;
    --rule:#E2E5EC;
    --green:#16A34A;
    --green-soft:#DCFCE7;
    --amber:#D97706;
    --amber-soft:#FEF3C7;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--white);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  ::selection { background: var(--accent-soft); color: var(--ink); }
  :focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
  a { color: var(--accent); }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  }

  .shell { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
  @media (max-width: 640px) { .shell { padding: 0 18px; } }

  /* ---------- NAV ---------- */
  header {
    background: var(--ink);
    position: sticky; top: 0; z-index: 100;
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 60px;
  }
  .brand {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.01em;
    display: flex; align-items: center; gap: 8px;
  }
  .brand-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
  }
  nav.links { display: flex; gap: 24px; align-items: center; }
  nav.links a {
    font-size: .85rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color .15s ease;
  }
  nav.links a:hover { color: var(--white); }
  .nav-cta {
    background: var(--accent);
    color: var(--white) !important;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    transition: background .15s ease !important;
  }
  .nav-cta:hover { background: var(--accent-dark) !important; }
  .menu-btn {
    display: none;
    background: none; border: none;
    color: var(--white); cursor: pointer;
    padding: 4px;
    flex-direction: column; gap: 5px;
    align-items: flex-end;
  }
  .menu-btn span {
    display: block; height: 2px;
    background: rgba(255,255,255,0.7);
    border-radius: 2px;
    transition: width .2s ease;
  }
  .menu-btn span:nth-child(1) { width: 22px; }
  .menu-btn span:nth-child(2) { width: 16px; }
  .menu-btn span:nth-child(3) { width: 22px; }
  .menu-btn.open span:nth-child(2) { width: 22px; }

  @media (max-width: 760px) {
    nav.links {
      display: none;
      position: absolute;
      top: 60px; left: 0; right: 0;
      background: var(--ink);
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      padding: 8px 0;
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    nav.links.open { display: flex; }
    nav.links a { padding: 14px 28px; width: 100%; font-size: .92rem; }
    .nav-cta { border-radius: 0; padding: 14px 28px; }
    .menu-btn { display: flex; }
  }

  /* ---------- HERO ---------- */
  .hero {
    background: var(--ink);
    padding: 56px 0 64px;
    overflow: hidden;
    position: relative;
  }
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(26,107,255,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
    position: relative; z-index: 1;
  }
  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  }

  .hero-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--accent);
    margin-bottom: 18px;
    display: flex; align-items: center; gap: 10px;
  }
  .hero-label::before {
    content: '';
    width: 20px; height: 1px;
    background: var(--accent);
  }

  h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 20px;
  }
  h1 em {
    font-style: normal;
    color: var(--accent);
  }
  .hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.55);
    max-width: 46ch;
    line-height: 1.65;
    margin-bottom: 32px;
  }
  .hero-stats {
    display: flex; gap: 32px; flex-wrap: wrap;
  }
  .hero-stat-val {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
  }
  .hero-stat-label {
    font-size: .78rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: .04em;
    text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
  }

  /* ---------- QUICK PICK CARD (signature element) ---------- */
  .quick-pick {
    background: var(--white);
    border-radius: 14px;
    padding: 26px;
    box-shadow: 0 24px 48px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.06);
  }
  .qp-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    margin-bottom: 14px;
  }
  .qp-title {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 16px;
  }
  .qp-options { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
  .qp-btn {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 14px;
    border: 1.5px solid var(--rule);
    border-radius: 8px;
    background: var(--paper);
    cursor: pointer;
    text-align: left;
    transition: border-color .15s ease, background .15s ease;
    font-family: 'Inter', sans-serif;
  }
  .qp-btn:hover { border-color: var(--accent); background: var(--accent-soft); }
  .qp-btn.active { border-color: var(--accent); background: var(--accent-soft); }
  .qp-btn-icon {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--rule); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
  }
  .qp-btn.active .qp-btn-icon { background: var(--accent-soft); }
  .qp-btn-text strong {
    display: block;
    font-size: .88rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 1px;
  }
  .qp-btn-text span {
    font-size: .78rem;
    color: var(--muted);
  }
  .qp-result {
    background: var(--ink);
    border-radius: 10px;
    padding: 16px;
    display: none;
  }
  .qp-result.visible { display: block; }
  .qp-result-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 8px;
  }
  .qp-result-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 4px;
  }
  .qp-result-reason {
    font-size: .82rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
    margin-bottom: 14px;
  }
  .qp-result-link {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    padding: 9px 16px;
    border-radius: 6px;
    font-size: .84rem;
    font-weight: 500;
    transition: background .15s ease;
  }
  .qp-result-link:hover { background: var(--accent-dark); }

  /* ---------- SECTION SCAFFOLDING ---------- */
  section { padding: 72px 0; }
  .section-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--accent);
    margin-bottom: 10px;
  }
  h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.6rem, 2.8vw, 2.1rem);
    font-weight: 700;
    letter-spacing: -0.015em;
    margin-bottom: 12px;
    color: var(--ink);
  }
  .section-sub {
    color: var(--muted);
    font-size: .97rem;
    max-width: 52ch;
    line-height: 1.65;
    margin-bottom: 40px;
  }

  /* ---------- MAIN COMPARISON TABLE ---------- */
  #compare { background: var(--paper); }
  .compare-wrap { overflow-x: auto; }
  .compare-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--rule);
  }
  .compare-table thead th {
    padding: 16px 18px;
    text-align: left;
    background: var(--ink);
    color: rgba(255,255,255,0.5);
    font-family: 'JetBrains Mono', monospace;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .compare-table thead th:first-child { color: var(--white); }
  .compare-table tbody tr {
    border-bottom: 1px solid var(--rule);
    transition: background .12s ease;
  }
  .compare-table tbody tr:last-child { border-bottom: none; }
  .compare-table tbody tr:hover { background: var(--paper); }
  .compare-table tbody tr.highlighted { background: var(--accent-soft); }
  .compare-table td {
    padding: 18px 18px;
    font-size: .9rem;
    color: var(--ink-soft);
    vertical-align: middle;
  }
  .compare-table td:first-child {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: .97rem;
    color: var(--ink);
  }
  .badge {
    display: inline-flex; align-items: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: .66rem;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: .04em;
    vertical-align: middle;
    margin-left: 6px;
  }
  .badge-green { background: var(--green-soft); color: var(--green); }
  .badge-blue { background: var(--accent-soft); color: var(--accent); }
  .badge-amber { background: var(--amber-soft); color: var(--amber); }
  .tick { color: var(--green); font-weight: 600; }
  .dash { color: var(--rule); }
  .partial { color: var(--amber); }

  /* ---------- CARDS GRID (individual reviews) ---------- */
  #cards { background: var(--white); }
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  @media (max-width: 900px) { .cards-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 580px) { .cards-grid { grid-template-columns: 1fr; } }
  .card {
    border: 1px solid var(--rule);
    border-radius: 12px;
    padding: 24px;
    display: flex; flex-direction: column;
    transition: border-color .15s ease, transform .15s ease;
    text-decoration: none; color: inherit;
  }
  .card:hover { border-color: var(--accent); transform: translateY(-2px); }
  .card-header {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 14px;
  }
  .card-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--ink);
  }
  .card-score {
    font-family: 'JetBrains Mono', monospace;
    font-size: .8rem;
    font-weight: 500;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 4px 8px;
    border-radius: 5px;
    flex-shrink: 0;
  }
  .card-tagline {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 16px;
    flex-grow: 1;
  }
  .card-meta {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 16px;
  }
  .card-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: .67rem;
    padding: 4px 9px;
    border-radius: 4px;
    background: var(--paper);
    border: 1px solid var(--rule);
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .04em;
  }
  .card-link {
    font-size: .84rem;
    font-weight: 500;
    color: var(--accent);
    display: flex; align-items: center; gap: 4px;
  }

  /* ---------- USE CASES SECTION ---------- */
  #use-cases { background: var(--paper); }
  .use-case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  @media (max-width: 640px) { .use-case-grid { grid-template-columns: 1fr; } }
  .use-case {
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 12px;
    padding: 26px;
  }
  .use-case-icon {
    font-size: 1.4rem;
    margin-bottom: 12px;
    display: block;
  }
  .use-case h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--ink);
  }
  .use-case p { font-size: .88rem; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
  .use-case-pick {
    font-family: 'JetBrains Mono', monospace;
    font-size: .75rem;
    color: var(--green);
    background: var(--green-soft);
    padding: 6px 12px;
    border-radius: 5px;
    display: inline-block;
    font-weight: 500;
  }

  /* ---------- FAQ ---------- */
  #faq { background: var(--white); }
  .faq-list { max-width: 760px; display: flex; flex-direction: column; gap: 4px; }
  .faq-item {
    border: 1px solid var(--rule);
    border-radius: 8px; overflow: hidden;
  }
  .faq-q {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 18px 22px;
    background: none; border: none; cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: .93rem; font-weight: 500;
    color: var(--ink); text-align: left; gap: 16px;
    transition: background .12s ease;
  }
  .faq-q:hover { background: var(--paper); }
  .faq-arrow { color: var(--accent); font-size: 1.1rem; flex-shrink: 0; transition: transform .25s ease; }
  .faq-item.open .faq-arrow { transform: rotate(45deg); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
  .faq-a-inner { padding: 0 22px 18px; font-size: .88rem; color: var(--muted); line-height: 1.7; }
  .faq-item.open .faq-a { max-height: 300px; }

  /* ---------- CTA BAND ---------- */
  .cta-band {
    background: var(--ink);
    padding: 64px 0;
  }
  .cta-inner {
    display: flex; justify-content: space-between; align-items: center;
    gap: 32px; flex-wrap: wrap;
  }
  .cta-band h2 { color: var(--white); margin-bottom: 8px; }
  .cta-band p { color: rgba(255,255,255,0.5); font-size: .95rem; max-width: 44ch; }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent); color: var(--white);
    text-decoration: none; padding: 13px 24px;
    border-radius: 8px; font-weight: 500; font-size: .95rem;
    transition: background .15s ease; flex-shrink: 0;
  }
  .btn-primary:hover { background: var(--accent-dark); }

  /* ---------- FOOTER ---------- */
  footer {
    background: var(--paper);
    border-top: 1px solid var(--rule);
    padding: 48px 0 32px;
  }
  .foot-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
  }
  @media (max-width: 640px) { .foot-grid { grid-template-columns: 1fr; gap: 28px; } }
  .foot-brand .brand { color: var(--ink); }
  .foot-brand p { font-size: .85rem; color: var(--muted); margin-top: 10px; max-width: 34ch; line-height: 1.6; }
  .foot-col h5 {
    font-family: 'JetBrains Mono', monospace;
    font-size: .68rem; text-transform: uppercase; letter-spacing: .08em;
    color: var(--accent); margin-bottom: 14px;
  }
  .foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .foot-col a { color: var(--muted); text-decoration: none; font-size: .87rem; transition: color .12s ease; }
  .foot-col a:hover { color: var(--ink); }
  .foot-bottom {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
    padding-top: 24px; border-top: 1px solid var(--rule);
    font-size: .8rem; color: var(--muted);
  }
  .foot-bottom a { color: var(--muted); text-decoration: none; }
  .foot-bottom a:hover { color: var(--ink); }
  .disclosure {
    font-size: .78rem;
    color: var(--muted);
    max-width: 640px;
    line-height: 1.55;
  }

  /* ---------- BREADCRUMB ---------- */
  .breadcrumb {
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    padding: 14px 0;
  }
  .breadcrumb-inner {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    font-family: 'JetBrains Mono', monospace;
    font-size: .76rem;
  }
  .breadcrumb-inner a { color: var(--muted); text-decoration: none; }
  .breadcrumb-inner a:hover { color: var(--accent); }
  .breadcrumb-inner span.current { color: var(--ink); }
  .breadcrumb-sep { color: var(--rule); }

  /* ---------- REVIEW HERO ---------- */
  .review-hero {
    background: var(--ink);
    padding: 48px 0 44px;
    position: relative; overflow: hidden;
  }
  .review-hero::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 55% 75% at 75% 40%, rgba(26,107,255,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .review-hero-inner { position: relative; z-index: 1; }
  .review-hero-top {
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
    margin-bottom: 16px;
  }
  .review-hero-top h1 { margin-bottom: 0; font-size: clamp(1.9rem, 4vw, 2.7rem); }
  .review-score-big {
    font-family: 'JetBrains Mono', monospace;
    font-size: .95rem; font-weight: 500;
    color: var(--accent);
    background: rgba(26,107,255,0.14);
    padding: 6px 12px; border-radius: 6px;
    flex-shrink: 0;
  }
  .review-hero-sub {
    font-size: 1.02rem; color: rgba(255,255,255,0.6);
    max-width: 62ch; line-height: 1.65; margin-bottom: 24px;
  }
  .review-hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
  .review-hero-tags .card-tag { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.65); }
  .review-hero-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
  .review-price {
    font-family: 'Syne', sans-serif; font-weight: 700; color: var(--white); font-size: 1rem;
  }
  .review-price small { display: block; font-family: 'Inter', sans-serif; font-weight: 400; color: rgba(255,255,255,0.45); font-size: .78rem; margin-top: 2px; }

  /* ---------- REVIEW BODY ---------- */
  .review-body { padding: 56px 0; }
  .review-body-grid { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
  @media (max-width: 900px) { .review-body-grid { grid-template-columns: 1fr; } }

  .review-section { margin-bottom: 44px; }
  .review-section:last-child { margin-bottom: 0; }
  .review-section h2 { font-size: 1.35rem; margin-bottom: 14px; }
  .review-section p { color: var(--ink-soft); line-height: 1.7; margin-bottom: 14px; font-size: .96rem; }

  .pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  @media (max-width: 560px) { .pros-cons-grid { grid-template-columns: 1fr; } }
  .pros-box, .cons-box { border-radius: 12px; padding: 20px; border: 1px solid var(--rule); }
  .pros-box { background: var(--green-soft); border-color: transparent; }
  .cons-box { background: var(--paper); }
  .pros-box h3, .cons-box h3 {
    font-family: 'JetBrains Mono', monospace; font-size: .72rem; text-transform: uppercase;
    letter-spacing: .08em; margin-bottom: 12px;
  }
  .pros-box h3 { color: var(--green); }
  .cons-box h3 { color: var(--muted); }
  .pros-box ul, .cons-box ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .pros-box li, .cons-box li { font-size: .87rem; line-height: 1.55; padding-left: 20px; position: relative; color: var(--ink-soft); }
  .pros-box li::before { content: '+'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
  .cons-box li::before { content: '\2212'; position: absolute; left: 0; color: var(--muted); font-weight: 700; }

  .verdict-box {
    background: var(--accent-soft);
    border-radius: 12px; padding: 24px;
    border-left: 3px solid var(--accent);
  }
  .verdict-box h3 {
    font-family: 'JetBrains Mono', monospace; font-size: .72rem; text-transform: uppercase;
    letter-spacing: .08em; color: var(--accent); margin-bottom: 10px;
  }
  .verdict-box p { color: var(--ink); margin-bottom: 0; font-size: .95rem; }

  .spec-list { border: 1px solid var(--rule); border-radius: 12px; overflow: hidden; }
  .spec-row { display: flex; justify-content: space-between; gap: 12px; padding: 13px 18px; font-size: .87rem; border-bottom: 1px solid var(--rule); }
  .spec-row:last-child { border-bottom: none; }
  .spec-row:nth-child(odd) { background: var(--paper); }
  .spec-label { color: var(--muted); }
  .spec-val { color: var(--ink); font-weight: 600; text-align: right; }
  .spec-val.tick { color: var(--green); }
  .spec-val.dash { color: var(--rule); }
  .spec-val.partial { color: var(--amber); }

  .sidebar-cta {
    background: var(--ink); border-radius: 12px; padding: 22px;
    margin-bottom: 20px;
  }
  .sidebar-cta-label {
    font-family: 'JetBrains Mono', monospace; font-size: .68rem; text-transform: uppercase;
    letter-spacing: .08em; color: rgba(255,255,255,0.4); margin-bottom: 8px;
  }
  .sidebar-cta p { color: rgba(255,255,255,0.55); font-size: .84rem; line-height: 1.55; margin-bottom: 16px; }
  .sidebar-cta .btn-primary { width: 100%; justify-content: center; }

  .related-heading { margin-bottom: 20px; }

  /* ---------- CONTENT PAGES (about, disclosure, contact) ---------- */
  .page-hero {
    background: var(--ink);
    padding: 44px 0 40px;
    position: relative; overflow: hidden;
  }
  .page-hero::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 55% 75% at 75% 40%, rgba(26,107,255,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .page-hero-inner { position: relative; z-index: 1; }
  .page-hero h1 { margin-bottom: 12px; font-size: clamp(1.9rem, 4vw, 2.6rem); }
  .page-hero p { font-size: 1.02rem; color: rgba(255,255,255,0.6); max-width: 62ch; line-height: 1.65; margin-bottom: 0; }

  .prose { padding: 56px 0; }
  .prose-inner { max-width: 720px; }
  .prose-inner h2 { font-size: 1.3rem; margin: 36px 0 14px; }
  .prose-inner h2:first-child { margin-top: 0; }
  .prose-inner p { color: var(--ink-soft); line-height: 1.75; margin-bottom: 16px; font-size: .96rem; }
  .prose-inner ul { margin: 0 0 16px; padding-left: 20px; }
  .prose-inner li { color: var(--ink-soft); line-height: 1.7; margin-bottom: 8px; font-size: .96rem; }
  .prose-inner a { color: var(--accent); }
  .prose-note {
    background: var(--accent-soft); border-left: 3px solid var(--accent);
    border-radius: 10px; padding: 18px 20px; margin: 24px 0;
    font-size: .9rem; color: var(--ink); line-height: 1.65;
  }

  /* ---------- CONTACT ---------- */
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
  @media (max-width: 720px) { .contact-grid { grid-template-columns: 1fr; } }
  .contact-card {
    border: 1px solid var(--rule); border-radius: 12px; padding: 24px;
  }
  .contact-card h3 {
    font-family: 'JetBrains Mono', monospace; font-size: .72rem; text-transform: uppercase;
    letter-spacing: .08em; color: var(--muted); margin-bottom: 10px;
  }
  .contact-card p { color: var(--ink-soft); font-size: .9rem; line-height: 1.6; margin-bottom: 14px; }
  .contact-card a.contact-email {
    font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--ink);
    text-decoration: none; border-bottom: 2px solid var(--accent);
  }
  .contact-card a.contact-email:hover { color: var(--accent); }

  .form-field { margin-bottom: 16px; }
  .form-field label {
    display: block; font-size: .82rem; font-weight: 600; color: var(--ink); margin-bottom: 6px;
  }
  .form-field input, .form-field textarea {
    width: 100%; border: 1px solid var(--rule); border-radius: 8px;
    padding: 10px 12px; font-family: 'Inter', sans-serif; font-size: .92rem; color: var(--ink);
    background: var(--white);
  }
  .form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--accent); }
  .form-field textarea { resize: vertical; min-height: 120px; }
  .form-submit-note { font-size: .78rem; color: var(--muted); margin-top: 12px; }

  /* ---------- VS / COMPARISON PAGES ---------- */
  .vs-hero {
    background: var(--ink);
    padding: 48px 0 44px;
    position: relative; overflow: hidden;
  }
  .vs-hero::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 30%, rgba(26,107,255,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .vs-hero-inner { position: relative; z-index: 1; }
  .vs-hero-eyebrow {
    font-family: 'JetBrains Mono', monospace; font-size: .74rem; text-transform: uppercase;
    letter-spacing: .1em; color: rgba(255,255,255,0.4); text-align: center; margin-bottom: 10px;
  }
  .vs-hero h1 { text-align: center; margin-bottom: 30px; font-size: clamp(1.8rem, 4vw, 2.5rem); }
  .vs-hero-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; }
  @media (max-width: 720px) { .vs-hero-grid { grid-template-columns: 1fr; } }
  .vs-side { text-align: center; }
  .vs-side h2 { color: var(--white); font-size: 1.5rem; margin-bottom: 6px; }
  .vs-side .vs-score { font-family: 'JetBrains Mono', monospace; color: var(--accent); font-size: .9rem; margin-bottom: 12px; }
  .vs-side p { color: rgba(255,255,255,0.55); font-size: .88rem; line-height: 1.6; max-width: 40ch; margin: 0 auto 18px; }
  .vs-side .btn-primary { display: inline-flex; }
  .vs-badge {
    font-family: 'Syne', sans-serif; font-weight: 800; color: rgba(255,255,255,0.3);
    font-size: 1.1rem; text-align: center;
  }

  .quick-answer {
    background: var(--accent-soft); border-radius: 12px; padding: 22px 24px;
    border-left: 3px solid var(--accent); margin-bottom: 8px;
  }
  .quick-answer h3 {
    font-family: 'JetBrains Mono', monospace; font-size: .72rem; text-transform: uppercase;
    letter-spacing: .08em; color: var(--accent); margin-bottom: 10px;
  }
  .quick-answer p { color: var(--ink); font-size: .95rem; margin-bottom: 8px; }
  .quick-answer p:last-child { margin-bottom: 0; }
  .quick-answer strong { color: var(--ink); }

  /* ---------- BEST-FOR / RANKED PAGES ---------- */
  .rank-list { display: flex; flex-direction: column; gap: 16px; }
  .rank-item {
    display: flex; gap: 18px; align-items: flex-start;
    border: 1px solid var(--rule); border-radius: 12px; padding: 22px;
  }
  .rank-item.rank-1 { border-color: var(--accent); background: var(--accent-soft); }
  .rank-num {
    font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.6rem;
    color: var(--muted); flex-shrink: 0; width: 36px;
  }
  .rank-item.rank-1 .rank-num { color: var(--accent); }
  .rank-body { flex: 1; }
  .rank-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 6px; }
  .rank-head h3 { font-size: 1.15rem; margin: 0; }
  .rank-score { font-family: 'JetBrains Mono', monospace; font-size: .8rem; color: var(--accent); }
  .rank-body p { color: var(--ink-soft); font-size: .9rem; line-height: 1.6; margin-bottom: 12px; }
  .rank-cta { display: inline-flex; }