:root {
  --brand: #6c47ff;
  --brand-dark: #4f2fe0;
  --bg: #0e0e14;
  --surface: #16161e;
  --surface2: #1e1e2a;
  --border: #2a2a3a;
  --text: #e8e8f0;
  --muted: #8888a8;
  --green: #22c55e;
  --red: #ef4444;
  --yellow: #f59e0b;
  --blue: #3b82f6;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;background:var(--bg);color:var(--text);line-height:1.6;font-size:16px}
a{color:var(--brand);text-decoration:none}
a:hover{text-decoration:underline}

/* NAV */
nav{background:var(--surface);border-bottom:1px solid var(--border);position:sticky;top:0;z-index:100;padding:0 1rem}
.nav-inner{max-width:1100px;margin:0 auto;display:flex;align-items:center;gap:1rem;height:56px;overflow-x:auto;white-space:nowrap}
.nav-logo{font-weight:700;font-size:1.1rem;color:var(--text);flex-shrink:0}
.nav-logo span{color:var(--brand)}
.nav-links{display:flex;gap:0.25rem;flex-shrink:0}
.nav-links a{color:var(--muted);font-size:0.85rem;padding:0.3rem 0.6rem;border-radius:6px;transition:all 0.15s}
.nav-links a:hover,.nav-links a.active{color:var(--text);background:var(--surface2);text-decoration:none}

/* HERO */
.hero{background:linear-gradient(135deg,#1a0a40 0%,#0e0e14 60%);padding:3rem 1rem 2rem;text-align:center;border-bottom:1px solid var(--border)}
.hero h1{font-size:clamp(1.6rem,4vw,2.6rem);font-weight:800;line-height:1.2;margin-bottom:0.75rem}
.hero h1 em{color:var(--brand);font-style:normal}
.hero p{color:var(--muted);font-size:1.05rem;max-width:600px;margin:0 auto 1.5rem}
.badge{display:inline-block;background:var(--surface2);border:1px solid var(--border);border-radius:20px;padding:0.25rem 0.75rem;font-size:0.8rem;color:var(--muted);margin-bottom:1rem}

/* CARDS GRID */
.cards{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:1rem;padding:2rem 1rem;max-width:1100px;margin:0 auto}
.card{background:var(--surface);border:1px solid var(--border);border-radius:12px;padding:1.5rem;transition:border-color 0.2s,transform 0.2s}
.card:hover{border-color:var(--brand);transform:translateY(-2px);text-decoration:none}
.card h2{font-size:1.1rem;margin-bottom:0.5rem;color:var(--text)}
.card p{font-size:0.9rem;color:var(--muted)}
.card .verdict{font-size:0.8rem;margin-top:0.75rem;padding:0.3rem 0.6rem;border-radius:6px;display:inline-block}
.verdict-claude{background:rgba(108,71,255,0.15);color:#a585ff}
.verdict-tie{background:rgba(245,158,11,0.15);color:#fbbf24}
.verdict-gpt{background:rgba(59,130,246,0.15);color:#60a5fa}

/* COMPARISON PAGE */
.page-wrap{max-width:900px;margin:0 auto;padding:2rem 1rem}
.page-hero{padding:2.5rem 1rem 1.5rem;text-align:center;border-bottom:1px solid var(--border);margin-bottom:2rem}
.page-hero h1{font-size:clamp(1.4rem,3.5vw,2.2rem);font-weight:800;margin-bottom:0.5rem}
.page-hero .meta{color:var(--muted);font-size:0.9rem;margin-bottom:0.75rem}
.page-hero .tldr{background:var(--surface);border:1px solid var(--border);border-radius:10px;padding:1rem 1.5rem;margin-top:1rem;text-align:left;font-size:0.95rem}
.page-hero .tldr strong{color:var(--brand)}

/* TABLE */
.comp-table-wrap{overflow-x:auto;margin:1.5rem 0;border-radius:12px;border:1px solid var(--border)}
table{width:100%;border-collapse:collapse}
thead{background:var(--surface2)}
thead th{padding:0.85rem 1rem;font-size:0.85rem;font-weight:600;color:var(--muted);text-align:left;border-bottom:1px solid var(--border)}
thead th:first-child{width:35%}
thead th.highlight{background:rgba(108,71,255,0.12);color:var(--brand)}
tbody tr{border-bottom:1px solid var(--border)}
tbody tr:last-child{border-bottom:none}
tbody tr:hover{background:var(--surface2)}
tbody td{padding:0.85rem 1rem;font-size:0.9rem}
tbody td:first-child{color:var(--muted);font-weight:500}
.check{color:var(--green)}
.cross{color:var(--red)}
.partial{color:var(--yellow)}
.win{color:var(--brand);font-weight:600}

/* SECTIONS */
h2.section-title{font-size:1.3rem;font-weight:700;margin:2rem 0 1rem;padding-bottom:0.5rem;border-bottom:1px solid var(--border)}
.pros-cons{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin:1rem 0}
@media(max-width:600px){.pros-cons{grid-template-columns:1fr}}
.pros-cons-box{background:var(--surface);border:1px solid var(--border);border-radius:10px;padding:1.25rem}
.pros-cons-box h3{font-size:0.9rem;font-weight:700;margin-bottom:0.75rem;text-transform:uppercase;letter-spacing:0.05em}
.pros-cons-box.pros h3{color:var(--green)}
.pros-cons-box.cons h3{color:var(--red)}
.pros-cons-box ul{list-style:none;display:flex;flex-direction:column;gap:0.4rem}
.pros-cons-box ul li{font-size:0.9rem;color:var(--muted);padding-left:1.25rem;position:relative}
.pros-cons-box.pros ul li::before{content:"✓";position:absolute;left:0;color:var(--green)}
.pros-cons-box.cons ul li::before{content:"✗";position:absolute;left:0;color:var(--red)}

/* VERDICT BOX */
.verdict-box{background:linear-gradient(135deg,rgba(108,71,255,0.12),rgba(108,71,255,0.04));border:1px solid rgba(108,71,255,0.3);border-radius:12px;padding:1.5rem;margin:2rem 0}
.verdict-box h2{font-size:1.1rem;color:var(--brand);margin-bottom:0.75rem}
.verdict-box p{color:var(--muted);font-size:0.95rem}

/* FAQ */
.faq{margin:2rem 0}
.faq-item{border-bottom:1px solid var(--border);padding:1rem 0}
.faq-item:last-child{border-bottom:none}
.faq-q{font-weight:600;margin-bottom:0.5rem;font-size:0.95rem}
.faq-a{color:var(--muted);font-size:0.9rem}

/* FOOTER */
footer{background:var(--surface);border-top:1px solid var(--border);padding:2rem 1rem;margin-top:4rem}
.footer-inner{max-width:1100px;margin:0 auto}
.footer-inner h3{font-size:0.85rem;color:var(--muted);text-transform:uppercase;letter-spacing:0.08em;margin-bottom:1rem}
.footer-tools{display:flex;flex-wrap:wrap;gap:0.5rem;margin-bottom:1.5rem}
.footer-tools a{background:var(--surface2);border:1px solid var(--border);border-radius:6px;padding:0.3rem 0.7rem;font-size:0.82rem;color:var(--muted);transition:all 0.15s}
.footer-tools a:hover{color:var(--text);border-color:var(--brand);text-decoration:none}
.footer-copy{color:var(--muted);font-size:0.8rem;margin-top:1rem}
.footer-comparisons{display:flex;flex-wrap:wrap;gap:0.5rem;margin-bottom:1rem}

/* PRICING TABLE */
.pricing-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:1rem;margin:1rem 0}
.price-card{background:var(--surface);border:1px solid var(--border);border-radius:10px;padding:1.25rem}
.price-card.highlight{border-color:var(--brand)}
.price-card h3{font-size:0.9rem;font-weight:700;margin-bottom:0.25rem}
.price-card .price{font-size:1.5rem;font-weight:800;color:var(--brand);margin:0.5rem 0}
.price-card .price span{font-size:0.8rem;font-weight:400;color:var(--muted)}
.price-card ul{list-style:none;font-size:0.82rem;color:var(--muted);display:flex;flex-direction:column;gap:0.3rem}
.price-card ul li::before{content:"· ";color:var(--brand)}

/* INLINE LINK CHIPS */
.see-also{background:var(--surface);border:1px solid var(--border);border-radius:8px;padding:0.75rem 1rem;margin:1.5rem 0;font-size:0.88rem}
.see-also a{margin-right:0.75rem}

/* HIGHLIGHT PILL */
.pill{display:inline-block;font-size:0.75rem;padding:0.15rem 0.5rem;border-radius:20px;margin-left:0.5rem;vertical-align:middle}
.pill-best{background:rgba(34,197,94,0.15);color:#4ade80}
.pill-popular{background:rgba(245,158,11,0.15);color:#fbbf24}
