
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --bg: #0a0a0f; --bg2: #111118; --bg3: #16161f;
    --border: rgba(255,255,255,0.07); --border-active: rgba(255,255,255,0.14);
    --text: #e8e6f0; --muted: #8a8898;
    --accent: #7b6cff; --accent2: #00d4aa; --accent3: #ff6b6b; --amber: #ffb347;
    --content-max: 900px;
    --page-max: 1600px;
  }
  html { scroll-behavior: smooth; }
  body { background: var(--bg); color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 17px; line-height: 1.8; -webkit-font-smoothing: antialiased; }

  /* ─── HERO ─── */
  .hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 6vw 80px;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 55% at 18% 65%, rgba(123,108,255,0.15) 0%, transparent 60%),
      radial-gradient(ellipse 45% 40% at 82% 28%, rgba(0,212,170,0.09) 0%, transparent 55%),
      radial-gradient(ellipse 80% 40% at 50% 100%, rgba(123,108,255,0.04) 0%, transparent 60%);
    pointer-events: none;
  }
  .hero-inner {
    position: relative;
    max-width: var(--page-max);
    margin: 0 auto;
    width: 100%;
  }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(123,108,255,0.12);
    border: 1px solid rgba(123,108,255,0.3);
    border-radius: 100px; padding: 6px 14px;
    font-size: 12px; font-weight: 500; color: var(--accent);
    letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 36px;
  }
  .hero-tag span { width: 6px; height: 6px; background: var(--accent2); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(0.8)} }

  .hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 80px;
    align-items: end;
  }
  .hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(40px, 5.5vw, 82px);
    font-weight: 800; line-height: 1.02;
    letter-spacing: -0.03em; margin-bottom: 28px;
  }
  .hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  }
  .hero-sub {
    font-size: 19px; color: var(--muted); font-weight: 300;
    max-width: 620px; margin-bottom: 44px; line-height: 1.65;
  }
  .hero-meta { display: flex; align-items: center; gap: 24px; font-size: 13px; color: var(--muted); flex-wrap: wrap; }
  .hero-meta strong { color: var(--text); font-weight: 500; }
  .hero-meta .dot { width: 3px; height: 3px; background: var(--border-active); border-radius: 50%; }

  /* Hero right panel */
  .hero-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 8px;
  }
  .hero-stat-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .hsc-num {
    font-family: 'Syne', sans-serif;
    font-size: 28px; font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    white-space: nowrap;
    min-width: 90px;
  }
  .hsc-label { font-size: 13px; color: var(--muted); font-weight: 300; line-height: 1.4; }

  /* ─── STATS BAR ─── */
  .stats-bar {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 36px 6vw;
  }
  .stats-bar-inner {
    max-width: var(--page-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
  }
  .stat-item {
    text-align: center;
    padding: 0 24px;
    border-right: 1px solid var(--border);
  }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-family: 'Syne', sans-serif; font-size: 30px; font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  }
  .stat-label { font-size: 11px; color: var(--muted); margin-top: 6px; font-weight: 400; line-height: 1.4; }

  /* ─── MAIN PAGE LAYOUT ─── */
  .page-wrapper {
    max-width: var(--page-max);
    margin: 0 auto;
    padding: 0 6vw;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 60px;
    align-items: start;
  }

  /* ─── STICKY SIDEBAR TOC ─── */
  .sidebar {
    position: sticky;
    top: 32px;
    padding: 40px 0;
  }
  .toc-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 28px;
  }
  .toc-title {
    font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 20px;
  }
  .toc-list { list-style: none; display: flex; flex-direction: column; gap: 4px; counter-reset: toc; }
  .toc-list li { counter-increment: toc; display: flex; align-items: baseline; gap: 10px; }
  .toc-list li::before {
    content: counter(toc, decimal-leading-zero);
    font-size: 10px; font-weight: 700; color: var(--accent);
    font-variant-numeric: tabular-nums; min-width: 20px; flex-shrink: 0;
  }
  .toc-list a {
    color: var(--muted); text-decoration: none; font-size: 13px;
    font-weight: 400; transition: color 0.2s; line-height: 1.5;
    padding: 4px 0; display: block;
  }
  .toc-list a:hover { color: var(--accent2); }

  /* ─── ARTICLE CONTENT ─── */
  .article-body { min-width: 0; padding: 40px 0 80px; }

  /* Inline TOC (shown only on mobile) */
  .toc-mobile { display: none; margin: 0 0 48px; }
  .toc-mobile .toc-card { border-radius: 16px; }

  /* ─── INTRO ─── */
  .intro { padding: 0 0 60px; }
  .intro p { color: #c9c7d8; margin-bottom: 20px; font-weight: 300; }

  /* ─── CALLOUTS ─── */
  .callout {
    margin: 36px 0; padding: 24px 28px;
    background: rgba(123,108,255,0.06);
    border-left: 3px solid var(--accent);
    border-radius: 0 12px 12px 0;
    font-size: 17px; color: #c0bdd8; font-style: italic; line-height: 1.7;
  }
  .callout-teal { background: rgba(0,212,170,0.06); border-left-color: var(--accent2); }
  .callout-amber { background: rgba(255,179,71,0.06); border-left-color: var(--amber); }
  .callout-red { background: rgba(255,107,107,0.06); border-left-color: var(--accent3); }

  /* ─── SECTIONS ─── */
  .section { padding: 60px 0; }
  .section-label {
    font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
  }
  .section h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700; letter-spacing: -0.02em; line-height: 1.12; margin-bottom: 16px;
  }
  .section-intro { color: var(--muted); font-weight: 300; margin-bottom: 48px; font-size: 16px; }
  .sub-h3 {
    font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700;
    color: var(--text); margin: 28px 0 12px; letter-spacing: -0.01em;
  }
  .sub-h4 {
    font-size: 13px; font-weight: 500; color: var(--muted);
    text-transform: uppercase; letter-spacing: 0.06em; margin: 22px 0 8px;
  }

  /* ─── TIMELINE ─── */
  .timeline { position: relative; padding-left: 28px; margin: 32px 0 40px; }
  .timeline::before {
    content: ''; position: absolute; left: 0; top: 8px; bottom: 8px;
    width: 2px; background: linear-gradient(180deg, var(--accent), var(--accent2), transparent);
  }
  .timeline-item { position: relative; margin-bottom: 28px; }
  .timeline-item::before {
    content: ''; position: absolute; left: -32px; top: 7px;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent); border: 2px solid var(--bg);
  }
  .timeline-item.teal::before { background: var(--accent2); }
  .timeline-item.amber::before { background: var(--amber); }
  .timeline-item.red::before { background: var(--accent3); }
  .tl-date { font-size: 11px; font-weight: 600; color: var(--accent); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 3px; }
  .timeline-item.teal .tl-date { color: var(--accent2); }
  .timeline-item.amber .tl-date { color: var(--amber); }
  .timeline-item.red .tl-date { color: var(--accent3); }
  .tl-event { font-size: 16px; color: var(--text); font-weight: 500; margin-bottom: 4px; }
  .tl-detail { font-size: 13px; color: var(--muted); font-weight: 300; line-height: 1.6; }

  /* ─── BROWSER CARDS ─── */
  .browser-card {
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: 20px; padding: 40px; margin-bottom: 32px;
    transition: border-color 0.25s, background 0.25s;
    position: relative; overflow: hidden;
  }
  .browser-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 2px; opacity: 0; transition: opacity 0.3s;
  }
  .browser-card:hover { border-color: var(--border-active); background: var(--bg3); }
  .browser-card:hover::before { opacity: 1; }
  .bc-purple::before { background: linear-gradient(90deg, var(--accent), var(--accent2)); }
  .bc-teal::before   { background: linear-gradient(90deg, var(--accent2), #00a8c8); }
  .bc-red::before    { background: linear-gradient(90deg, var(--accent3), var(--amber)); }
  .bc-blue::before   { background: linear-gradient(90deg, #4a90d9, #7b6cff); }
  .bc-green::before  { background: linear-gradient(90deg, #4caf82, var(--accent2)); }
  .bc-amber::before  { background: linear-gradient(90deg, var(--amber), var(--accent3)); }
  .bc-gray::before   { background: linear-gradient(90deg, #6b7280, #9ca3af); }

  .bc-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
  .bc-title-group { display: flex; align-items: center; gap: 16px; }
  .bc-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; flex-shrink: 0;
    font-family: 'Syne', sans-serif; font-weight: 800; letter-spacing: -0.04em;
  }
  .icon-purple { background: rgba(123,108,255,0.15); color: var(--accent); }
  .icon-teal   { background: rgba(0,212,170,0.12); color: var(--accent2); }
  .icon-red    { background: rgba(255,107,107,0.12); color: var(--accent3); }
  .icon-blue   { background: rgba(74,144,217,0.12); color: #4a90d9; }
  .icon-green  { background: rgba(76,175,130,0.12); color: #4caf82; }
  .icon-amber  { background: rgba(255,179,71,0.12); color: var(--amber); }
  .icon-gray   { background: rgba(107,114,128,0.15); color: #9ca3af; }
  .bc-name { font-family: 'Syne', sans-serif; font-size: 23px; font-weight: 700; letter-spacing: -0.01em; }
  .bc-tagline { font-size: 13px; color: var(--muted); margin-top: 3px; font-weight: 300; }
  .bc-badges { display: flex; gap: 8px; flex-wrap: wrap; }
  .badge { font-size: 11px; font-weight: 500; padding: 4px 10px; border-radius: 100px; letter-spacing: 0.04em; white-space: nowrap; }
  .badge-free    { background: rgba(0,212,170,0.12);  color: var(--accent2); border: 1px solid rgba(0,212,170,0.2); }
  .badge-paid    { background: rgba(255,179,71,0.12);  color: var(--amber);   border: 1px solid rgba(255,179,71,0.2); }
  .badge-agent   { background: rgba(123,108,255,0.12); color: var(--accent);  border: 1px solid rgba(123,108,255,0.2); }
  .badge-privacy { background: rgba(255,107,107,0.1);  color: #ff9999;        border: 1px solid rgba(255,107,107,0.2); }
  .badge-mac     { background: rgba(107,114,128,0.12); color: #9ca3af;        border: 1px solid rgba(107,114,128,0.2); }
  .badge-beta    { background: rgba(255,179,71,0.08);  color: var(--amber);   border: 1px solid rgba(255,179,71,0.15); }
  .badge-new     { background: rgba(0,212,170,0.12); color: var(--accent2); border: 1px solid rgba(0,212,170,0.2); }
  .badge-warn    { background: rgba(255,107,107,0.1); color: var(--accent3); border: 1px solid rgba(255,107,107,0.2); }

  .bc-body { color: #c5c3d5; line-height: 1.8; font-weight: 300; margin-bottom: 28px; font-size: 16px; }
  .bc-body strong { color: var(--text); font-weight: 500; }
  .bc-body em { color: var(--accent2); font-style: normal; }

  /* ─── PROS CONS ─── */
  .pros-cons-wrap { margin: 28px 0; }
  .pros-cons-title {
    font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px;
  }
  .pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .pc-box { border-radius: 14px; padding: 22px 24px; }
  .pc-pros { background: rgba(0,212,170,0.05); border: 1px solid rgba(0,212,170,0.18); }
  .pc-cons { background: rgba(255,107,107,0.05); border: 1px solid rgba(255,107,107,0.18); }
  .pc-header { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
  .pc-icon { width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
  .pc-icon-pros { background: rgba(0,212,170,0.18); color: var(--accent2); }
  .pc-icon-cons { background: rgba(255,107,107,0.15); color: var(--accent3); }
  .pc-label { font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
  .pc-label-pros { color: var(--accent2); }
  .pc-label-cons { color: var(--accent3); }
  .pc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .pc-list li { font-size: 13px; color: #c5c3d5; padding-left: 16px; position: relative; line-height: 1.55; font-weight: 300; }
  .pc-list.pros-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent2); font-size: 11px; top: 2px; font-weight: 700; }
  .pc-list.cons-list li::before { content: '✕'; position: absolute; left: 0; color: var(--accent3); font-size: 11px; top: 2px; font-weight: 700; }
  .pc-list li strong { color: var(--text); font-weight: 500; }

  /* ─── WHO IS IT FOR ─── */
  .who-for-wrap { background: rgba(123,108,255,0.04); border: 1px solid rgba(123,108,255,0.14); border-radius: 14px; padding: 24px; margin: 24px 0; }
  .who-for-title { font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
  .who-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 10px; }
  .who-card { background: rgba(123,108,255,0.06); border: 1px solid rgba(123,108,255,0.12); border-radius: 10px; padding: 14px; }
  .who-emoji { font-size: 18px; margin-bottom: 6px; }
  .who-role { font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
  .who-why { font-size: 12px; color: var(--muted); line-height: 1.5; font-weight: 300; }

  /* ─── VS WRAP ─── */
  .vs-wrap { background: var(--bg3); border: 1px solid var(--border-active); border-radius: 14px; padding: 22px 24px; margin: 22px 0; }
  .vs-title { font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
  .vs-row { display: flex; align-items: flex-start; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
  .vs-row:last-child { border-bottom: none; padding-bottom: 0; }
  .vs-browser { font-weight: 500; color: var(--text); min-width: 130px; flex-shrink: 0; }
  .vs-note { color: var(--muted); font-weight: 300; line-height: 1.5; flex: 1; }
  .vs-winner { font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 6px; white-space: nowrap; }
  .vs-win  { background: rgba(0,212,170,0.1); color: var(--accent2); }
  .vs-lose { background: rgba(255,107,107,0.1); color: var(--accent3); }
  .vs-tie  { background: rgba(255,179,71,0.1); color: var(--amber); }

  /* ─── QUICK TAKE ─── */
  .quick-take { display: flex; gap: 16px; align-items: flex-start; background: rgba(255,255,255,0.03); border-radius: 12px; padding: 20px 22px; margin: 22px 0; border: 1px solid var(--border); }
  .qt-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
  .qt-label { font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
  .qt-text { font-size: 14px; color: #c5c3d5; font-weight: 300; line-height: 1.65; }
  .qt-text strong { color: var(--text); font-weight: 500; }

  /* ─── FEATURE GRID ─── */
  .feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 8px; margin-bottom: 24px; }
  .feat { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: #a8a6b8; line-height: 1.5; padding: 9px 12px; background: rgba(255,255,255,0.02); border-radius: 8px; }
  .feat-dot { width: 6px; height: 6px; border-radius: 50%; margin-top: 5px; flex-shrink: 0; }
  .dot-purple { background: var(--accent); } .dot-teal { background: var(--accent2); }
  .dot-red { background: var(--accent3); } .dot-blue { background: #4a90d9; }
  .dot-green { background: #4caf82; } .dot-amber { background: var(--amber); }
  .dot-gray { background: #6b7280; }

  /* ─── DETAIL PANELS ─── */
  .detail-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; }
  .dp-box { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 12px; padding: 18px; }
  .dp-title { font-size: 11px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
  .dp-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
  .dp-list li { font-size: 13px; color: #c5c3d5; padding-left: 14px; position: relative; line-height: 1.5; }
  .dp-list li::before { content: '→'; position: absolute; left: 0; color: var(--muted); font-size: 11px; top: 2px; }
  .dp-list.pros li::before { content: '✓'; color: var(--accent2); }
  .dp-list.cons li::before { content: '✕'; color: var(--accent3); }

  /* ─── REAL-WORLD TESTS ─── */
  .rw-tests { margin: 20px 0; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
  .rw-header { padding: 10px 16px; background: rgba(255,255,255,0.03); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--border); }
  .rw-row { display: flex; align-items: center; gap: 12px; padding: 11px 16px; border-bottom: 1px solid var(--border); font-size: 13px; }
  .rw-row:last-child { border-bottom: none; }
  .rw-task { flex: 1; color: #c5c3d5; }
  .rw-note { font-size: 12px; color: var(--muted); font-style: italic; flex: 1; }
  .rw-result { font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 6px; white-space: nowrap; }
  .rr-good    { background: rgba(0,212,170,0.1); color: var(--accent2); }
  .rr-partial { background: rgba(255,179,71,0.1); color: var(--amber); }
  .rr-bad     { background: rgba(255,107,107,0.1); color: var(--accent3); }

  /* ─── SCORE BARS ─── */
  .scores { margin: 20px 0; }
  .score-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; font-size: 13px; }
  .score-label { width: 170px; color: var(--muted); flex-shrink: 0; font-size: 12px; }
  .score-bar-wrap { flex: 1; height: 4px; background: rgba(255,255,255,0.06); border-radius: 2px; }
  .score-bar { height: 100%; border-radius: 2px; }
  .score-val { width: 40px; text-align: right; color: var(--text); font-weight: 500; font-size: 12px; font-family: 'Syne', sans-serif; }
  .bar-teal { background: var(--accent2); } .bar-purple { background: var(--accent); }
  .bar-amber { background: var(--amber); } .bar-blue { background: #4a90d9; }
  .bar-red { background: var(--accent3); } .bar-green { background: #4caf82; }
  .bar-gray { background: #6b7280; }

  /* ─── SECURITY BOX ─── */
  .security-box { background: rgba(255,107,107,0.04); border: 1px solid rgba(255,107,107,0.15); border-radius: 14px; padding: 20px 24px; margin: 22px 0; }
  .security-box-title { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: var(--accent3); margin-bottom: 8px; }
  .security-box p { font-size: 13px; color: #c5c3d5; font-weight: 300; line-height: 1.65; }

  /* ─── INFO BOXES ─── */
  .info-box { background: rgba(123,108,255,0.04); border: 1px solid rgba(123,108,255,0.15); border-radius: 14px; padding: 20px 24px; margin: 22px 0; }
  .info-box-title { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: var(--accent); margin-bottom: 8px; }
  .info-box p { font-size: 13px; color: #c5c3d5; font-weight: 300; line-height: 1.65; }
  .teal-box { background: rgba(0,212,170,0.04); border: 1px solid rgba(0,212,170,0.15); border-radius: 14px; padding: 20px 24px; margin: 22px 0; }
  .teal-box-title { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: var(--accent2); margin-bottom: 8px; }
  .teal-box p { font-size: 13px; color: #c5c3d5; font-weight: 300; line-height: 1.65; }
  .amber-box { background: rgba(255,179,71,0.04); border: 1px solid rgba(255,179,71,0.15); border-radius: 14px; padding: 20px 24px; margin: 22px 0; }
  .amber-box-title { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: var(--amber); margin-bottom: 8px; }
  .amber-box p { font-size: 13px; color: #c5c3d5; font-weight: 300; line-height: 1.65; }

  /* ─── MODEL TABLE ─── */
  .model-table { width: 100%; border-collapse: collapse; font-size: 13px; margin: 12px 0; }
  .model-table th { background: rgba(255,255,255,0.03); padding: 8px 12px; text-align: left; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--border); }
  .model-table td { padding: 9px 12px; border-bottom: 1px solid var(--border); color: #c5c3d5; }
  .model-table tr:last-child td { border-bottom: none; }
  .model-table tr:hover td { background: rgba(255,255,255,0.02); }
  .mt-tier-free { color: var(--accent2); font-weight: 500; font-size: 11px; }
  .mt-tier-paid { color: var(--amber); font-weight: 500; font-size: 11px; }

  /* ─── VERDICT ─── */
  .bc-verdict { padding: 16px 20px; background: rgba(255,255,255,0.03); border-radius: 10px; border: 1px solid var(--border); font-size: 13px; color: var(--muted); line-height: 1.65; }
  .bc-verdict strong { color: var(--text); font-weight: 500; }

  /* ─── EXPERT RATING ─── */
  .expert-rating { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 10px; margin: 22px 0; }
  .er-box { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 12px; padding: 16px 12px; text-align: center; }
  .er-score { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; letter-spacing: -0.03em; }
  .er-label { font-size: 11px; color: var(--muted); margin-top: 4px; line-height: 1.4; }
  .er-teal { color: var(--accent2); } .er-purple { color: var(--accent); }
  .er-amber { color: var(--amber); } .er-red { color: var(--accent3); }
  .er-blue { color: #4a90d9; } .er-green { color: #4caf82; } .er-gray { color: #9ca3af; }

  /* ─── USE CASE CARDS ─── */
  .use-cases { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; margin: 16px 0; }
  .uc-card { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 10px; padding: 14px; }
  .uc-who { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
  .uc-use { font-size: 13px; color: #c5c3d5; line-height: 1.5; }

  /* ─── COMPARISON TABLE ─── */
  .table-wrap { overflow-x: auto; margin: 40px 0; border-radius: 16px; border: 1px solid var(--border); }
  table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 720px; }
  thead th { background: var(--bg3); padding: 12px 16px; text-align: left; font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--border); white-space: nowrap; }
  tbody td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: #c5c3d5; vertical-align: middle; }
  tbody tr:last-child td { border-bottom: none; }
  tbody tr:hover td { background: rgba(255,255,255,0.02); }
  .td-name { font-weight: 500; color: var(--text); font-family: 'Syne', sans-serif; font-size: 12px; }
  .check { color: var(--accent2); } .cross { color: var(--accent3); } .partial { color: var(--amber); }

  /* ─── VERDICT GRID ─── */
  .verdict-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-top: 36px; }
  .verdict-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 16px; padding: 26px; transition: border-color 0.2s; }
  .verdict-card:hover { border-color: var(--border-active); }
  .vc-label { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
  .vc-pick { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 8px; }
  .vc-reason { font-size: 13px; color: var(--muted); font-weight: 300; line-height: 1.65; }

  /* ─── DECISION MATRIX ─── */
  .decision-tree { background: var(--bg2); border: 1px solid var(--border); border-radius: 16px; padding: 32px; margin: 32px 0; }
  .dt-title { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 20px; }
  .dt-row { display: flex; align-items: flex-start; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--border); }
  .dt-row:last-child { border-bottom: none; padding-bottom: 0; }
  .dt-if { font-size: 13px; color: var(--muted); flex: 1.2; font-weight: 300; line-height: 1.5; }
  .dt-then { font-size: 13px; color: var(--text); flex: 1; font-weight: 500; }
  .dt-arrow { color: var(--accent); font-size: 14px; padding-top: 1px; }

  /* ─── FAQ ─── */
  .faq-item { border-bottom: 1px solid var(--border); padding: 24px 0; }
  .faq-q { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 12px; }
  .faq-a { color: #c5c3d5; font-size: 15px; font-weight: 300; line-height: 1.75; }
  .faq-a strong { color: var(--text); font-weight: 500; }

  /* ─── DIVIDERS ─── */
  .sdiv { height: 1px; background: linear-gradient(90deg, transparent, var(--border-active), transparent); margin: 0; }

  /* ─── REVIEWER QUOTE ─── */
  .reviewer-quote { background: rgba(255,255,255,0.025); border-left: 3px solid var(--accent2); border-radius: 0 12px 12px 0; padding: 18px 22px; margin: 20px 0; }
  .rq-text { font-size: 15px; color: #d0cee0; font-style: italic; font-weight: 300; line-height: 1.7; margin-bottom: 8px; }
  .rq-source { font-size: 12px; color: var(--muted); }

  /* ─── PRICING TABLE ─── */
  .pricing-table { width: 100%; border-collapse: collapse; font-size: 13px; margin: 12px 0; }
  .pricing-table th { background: rgba(255,255,255,0.03); padding: 8px 14px; text-align: left; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--border); }
  .pricing-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); color: #c5c3d5; vertical-align: top; }
  .pricing-table tr:last-child td { border-bottom: none; }
  .pricing-table tr:hover td { background: rgba(255,255,255,0.02); }
  .pt-tier { font-weight: 500; color: var(--text); }
  .pt-price { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--accent2); white-space: nowrap; }
  .pt-price-paid { color: var(--amber); }

  /* ─── CONCLUSION ─── */
  .conclusion { padding: 60px 0 80px; }
  .conclusion h2 { font-family: 'Syne', sans-serif; font-size: clamp(26px, 3.5vw, 40px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 24px; }
  .conclusion p { color: #c5c3d5; font-weight: 300; margin-bottom: 16px; }

  /* ─── FOOTER ─── */
  .post-footer {
    padding: 40px 6vw 60px;
    border-top: 1px solid var(--border);
    display: flex; align-items: center;
    justify-content: space-between; gap: 20px; flex-wrap: wrap;
    max-width: var(--page-max); margin: 0 auto;
  }
  .pf-brand { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px; letter-spacing: -0.01em; }
  .pf-brand span { color: var(--accent2); }
  .pf-note { font-size: 13px; color: var(--muted); }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1100px) {
    .page-wrapper {
      grid-template-columns: 1fr;
      padding: 0 5vw;
    }
    .sidebar { display: none; }
    .toc-mobile { display: block; }
    .hero-content-grid {
      grid-template-columns: 1fr;
    }
    .hero-right { display: none; }
    .stats-bar-inner {
      grid-template-columns: repeat(3, 1fr);
    }
    .stat-item:nth-child(3) { border-right: none; }
    .stat-item:nth-child(4),
    .stat-item:nth-child(5),
    .stat-item:nth-child(6) { border-top: 1px solid var(--border); padding-top: 24px; margin-top: 8px; }
  }

  @media (max-width: 700px) {
    .hero { padding: 80px 6vw 60px; }
    .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none !important; border-bottom: 1px solid var(--border); padding-bottom: 20px; margin-bottom: 8px; }
    .stat-item:last-child { border-bottom: none; }
    .pros-cons-grid { grid-template-columns: 1fr; }
    .detail-panel { grid-template-columns: 1fr; }
    .browser-card { padding: 24px; }
    .bc-header { flex-direction: column; gap: 12px; }
    .score-label { width: 120px; }
    .verdict-grid { grid-template-columns: 1fr; }
    .rw-row { flex-wrap: wrap; gap: 8px; }
    .rw-note { flex: 1 1 100%; }
    .vs-row { flex-wrap: wrap; }
    .vs-browser { min-width: unset; }
  }
