:root {
  --bg: #06060a;
  --surface: #0e0e14;
  --surface-2: #15151e;
  --surface-3: #1c1c28;
  --border: #252535;
  --border-light: #30304a;
  --text: #eaeaf0;
  --text-muted: #7a7a9a;
  --text-dim: #50506a;
  --accent: #00ffaa;
  --accent-rgb: 0,255,170;
  --accent-dim: rgba(0,255,170,0.08);
  --blue: #4cc9ff;
  --blue-rgb: 76,201,255;
  --purple: #a78bfa;
  --red: #ff5c6a;
  --orange: #ffb347;
  --font-display: 'JetBrains Mono', monospace;
  --font-body: 'Outfit', sans-serif;
  --radius: 14px;
  --max-w: 1240px;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{background:var(--bg);color:var(--text);font-family:var(--font-body);line-height:1.7;overflow-x:hidden}
body::after{content:'';position:fixed;inset:0;background:url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");pointer-events:none;z-index:10000}
::-webkit-scrollbar{width:6px}
::-webkit-scrollbar-track{background:var(--bg)}
::-webkit-scrollbar-thumb{background:var(--border);border-radius:3px}
a{color:var(--accent);text-decoration:none;transition:opacity .2s}
a:hover{opacity:.85}

/* NAV */
nav{position:fixed;top:0;left:0;right:0;z-index:1000;background:rgba(6,6,10,.92);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);border-bottom:1px solid var(--border)}
.nav-inner{max-width:var(--max-w);margin:0 auto;padding:0 28px;height:64px;display:flex;align-items:center;justify-content:space-between}
.logo{font-family:var(--font-display);font-size:17px;font-weight:700;color:var(--text);text-decoration:none;display:flex;align-items:center;gap:10px;letter-spacing:-.02em}
.logo-icon{width:30px;height:30px;background:linear-gradient(135deg,var(--accent),var(--blue));border-radius:7px;display:flex;align-items:center;justify-content:center;font-size:14px}
.nav-links{display:flex;gap:6px;list-style:none}
.nav-links a{color:var(--text-muted);text-decoration:none;font-size:14px;font-weight:500;padding:7px 14px;border-radius:7px;transition:all .2s}
.nav-links a:hover{color:var(--text);background:var(--surface-2)}
.nav-cta{background:var(--accent);color:var(--bg);padding:8px 20px;border-radius:7px;font-weight:700;font-size:13px;text-decoration:none;transition:all .25s}
.nav-cta:hover{box-shadow:0 0 25px rgba(var(--accent-rgb),.3)}
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:8px;background:none;border:none}
.hamburger span{width:22px;height:2px;background:var(--text);border-radius:2px}

/* ARTICLE PAGE */
.article-hero{padding:120px 28px 48px;max-width:800px;margin:0 auto}
.article-hero .breadcrumb{font-size:13px;color:var(--text-dim);margin-bottom:20px}
.article-hero .breadcrumb a{color:var(--text-muted)}
.article-hero .article-tag{display:inline-block;background:rgba(var(--accent-rgb),.1);color:var(--accent);padding:4px 14px;border-radius:6px;font-size:12px;font-weight:600;margin-bottom:16px;letter-spacing:.03em}
.article-hero h1{font-size:clamp(28px,4vw,44px);font-weight:900;line-height:1.12;letter-spacing:-.03em;margin-bottom:16px}
.article-meta{display:flex;gap:20px;font-size:14px;color:var(--text-muted);flex-wrap:wrap}

.article-body{max-width:800px;margin:0 auto;padding:0 28px 80px}
.article-body h2{font-size:24px;font-weight:800;letter-spacing:-.02em;margin:48px 0 16px;padding-top:24px;border-top:1px solid var(--border)}
.article-body h3{font-size:19px;font-weight:700;margin:32px 0 12px}
.article-body p{color:var(--text-muted);font-size:16px;margin-bottom:20px;line-height:1.8}
.article-body ul,.article-body ol{color:var(--text-muted);font-size:16px;margin:0 0 20px 24px;line-height:1.8}
.article-body li{margin-bottom:8px}
.article-body strong{color:var(--text);font-weight:600}
.article-body blockquote{border-left:3px solid var(--accent);padding:16px 24px;margin:24px 0;background:var(--surface);border-radius:0 12px 12px 0;font-style:italic;color:var(--text-muted)}

/* SCORE BOX */
.score-box{background:var(--surface);border:1px solid var(--border);border-radius:16px;padding:32px;margin:32px 0;display:grid;grid-template-columns:120px 1fr;gap:28px;align-items:center}
.score-big{font-family:var(--font-display);font-size:56px;font-weight:700;color:var(--accent);text-align:center;line-height:1}
.score-big small{font-size:18px;color:var(--text-dim);font-weight:400}
.score-details h3{margin:0 0 12px;font-size:18px}
.score-bars{display:flex;flex-direction:column;gap:8px}
.score-bar-row{display:flex;align-items:center;gap:12px;font-size:13px}
.score-bar-row .label{width:100px;color:var(--text-muted)}
.score-bar{flex:1;height:8px;background:var(--surface-2);border-radius:4px;overflow:hidden}
.score-bar-fill{height:100%;background:linear-gradient(90deg,var(--accent),var(--blue));border-radius:4px;transition:width 1s ease}
.score-bar-row .val{width:30px;font-family:var(--font-display);font-weight:600;font-size:12px;color:var(--text)}

/* PROS CONS */
.pros-cons{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin:32px 0}
.pros-col,.cons-col{background:var(--surface);border:1px solid var(--border);border-radius:14px;padding:24px}
.pros-col h3,.cons-col h3{font-size:15px;margin-bottom:14px;display:flex;align-items:center;gap:8px}
.pros-col h3{color:var(--accent)}
.cons-col h3{color:var(--red)}
.pros-col ul,.cons-col ul{list-style:none;margin:0;padding:0}
.pros-col li,.cons-col li{padding:8px 0;border-bottom:1px solid var(--border);font-size:14px;color:var(--text-muted);display:flex;align-items:center;gap:8px}
.pros-col li:last-child,.cons-col li:last-child{border-bottom:none}
.pros-col li::before{content:'✓';color:var(--accent);font-weight:700}
.cons-col li::before{content:'✗';color:var(--red);font-weight:700}

/* CTA BOX */
.cta-box{background:linear-gradient(135deg,var(--surface),var(--surface-2));border:1px solid var(--border);border-radius:16px;padding:36px;margin:40px 0;text-align:center}
.cta-box h3{font-size:22px;font-weight:800;margin-bottom:10px}
.cta-box p{color:var(--text-muted);font-size:15px;margin-bottom:20px}
.cta-btn{display:inline-block;background:var(--accent);color:var(--bg);padding:14px 36px;border-radius:10px;font-weight:700;font-size:15px;transition:all .25s}
.cta-btn:hover{box-shadow:0 4px 30px rgba(var(--accent-rgb),.3);transform:translateY(-1px);opacity:1}

/* COMPARISON TABLE in articles */
.article-table{width:100%;border-collapse:collapse;background:var(--surface);border-radius:14px;overflow:hidden;border:1px solid var(--border);margin:28px 0}
.article-table th{background:var(--surface-2);padding:14px 18px;text-align:left;font-size:12px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--text-dim)}
.article-table td{padding:14px 18px;font-size:14px;border-top:1px solid var(--border);color:var(--text-muted)}
.article-table tr:hover td{background:var(--surface-2)}
.check{color:var(--accent);font-weight:700}
.cross{color:var(--text-dim)}

/* NEWSLETTER INLINE */
.nl-inline{background:var(--surface);border:1px solid var(--border);border-radius:16px;padding:36px;margin:40px 0;text-align:center}
.nl-inline h3{font-size:20px;font-weight:700;margin-bottom:8px}
.nl-inline p{color:var(--text-muted);font-size:14px;margin-bottom:20px}
.nl-inline-form{display:flex;max-width:400px;margin:0 auto;gap:10px}
.nl-inline-form input{flex:1;padding:12px 16px;background:var(--bg);border:1px solid var(--border);border-radius:8px;color:var(--text);font-size:14px;font-family:var(--font-body);outline:none}
.nl-inline-form button{padding:12px 24px;background:var(--accent);color:var(--bg);border:none;border-radius:8px;font-weight:700;font-size:14px;cursor:pointer;font-family:var(--font-body)}

/* FOOTER */
footer{border-top:1px solid var(--border);background:var(--surface);margin-top:40px}
.footer-inner{max-width:var(--max-w);margin:0 auto;padding:48px 28px}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px;margin-bottom:40px}
.footer-brand p{color:var(--text-muted);font-size:14px;margin-top:14px;line-height:1.7}
.footer-col h4{font-size:12px;font-weight:700;margin-bottom:16px;letter-spacing:.06em;text-transform:uppercase}
.footer-col a{display:block;color:var(--text-muted);text-decoration:none;font-size:14px;margin-bottom:10px}
.footer-col a:hover{color:var(--accent)}
.footer-bottom{display:flex;justify-content:space-between;padding-top:24px;border-top:1px solid var(--border);font-size:13px;color:var(--text-dim)}
.footer-links{display:flex;gap:20px}
.footer-links a{color:var(--text-dim);text-decoration:none}
.affiliate-bar{text-align:center;padding:14px;font-size:11px;color:var(--text-dim);background:var(--bg);border-top:1px solid var(--border)}

@media(max-width:768px){
  .nav-links{display:none}
  .hamburger{display:flex}
  .score-box{grid-template-columns:1fr;text-align:center}
  .pros-cons{grid-template-columns:1fr}
  .nl-inline-form{flex-direction:column}
  .footer-grid{grid-template-columns:1fr 1fr;gap:24px}
  .article-meta{flex-direction:column;gap:8px}
}
@media(max-width:480px){
  .footer-grid{grid-template-columns:1fr}
}
