*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg: #0f172a;
    --bg-glass: rgba(255,255,255,0.04);
    --border-glass: rgba(255,255,255,0.08);
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --accent-1: #3b82f6;
    --accent-2: #8b5cf6;
    --accent-3: #10b981;
}

body { background: var(--bg); color: var(--text-primary); font-family: 'Outfit', sans-serif; min-height: 100vh; overflow-x: hidden; }

.background-glow { position: fixed; width: 600px; height: 600px; border-radius: 50%; filter: blur(120px); opacity: 0.12; pointer-events: none; z-index: 0; }
.background-glow { background: var(--accent-1); top: -200px; left: -200px; }
.background-glow.glow-2 { background: var(--accent-2); bottom: -200px; right: -200px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; }

/* Header */
.glass-header { position: sticky; top: 0; z-index: 100; backdrop-filter: blur(20px); background: rgba(15,23,42,0.8); border-bottom: 1px solid var(--border-glass); padding: 1rem 0; }
.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 800; font-size: 1.3rem; }
nav { display: flex; gap: 2rem; }
.nav-link { color: var(--text-secondary); text-decoration: none; font-weight: 600; transition: color 0.2s; }
.nav-link:hover { color: var(--text-primary); }
.gradient-text { background: linear-gradient(135deg, var(--accent-1), var(--accent-2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Hero */
.hero-section { text-align: center; padding: 4rem 0 3rem; }
.hero-banner { width: 100%; max-width: 900px; border-radius: 20px; margin-bottom: 2.5rem; border: 1px solid var(--border-glass); }
.hero-badge { display: inline-block; background: linear-gradient(135deg, var(--accent-1), var(--accent-2)); color: white; padding: 0.3rem 1rem; border-radius: 20px; font-size: 0.85rem; font-weight: 700; margin-bottom: 1.5rem; letter-spacing: 1px; }
.hero-title { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; }
.hero-subtitle { font-size: 1.2rem; color: var(--text-secondary); max-width: 700px; margin: 0 auto 2.5rem; line-height: 1.7; }
.stats-row { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }
.stat-pill { background: var(--bg-glass); border: 1px solid var(--border-glass); border-radius: 30px; padding: 0.5rem 1.5rem; font-size: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.stat-num { font-weight: 800; color: var(--accent-1); font-size: 1.3rem; }

/* Glass Card */
.glass-card { background: var(--bg-glass); backdrop-filter: blur(16px); border: 1px solid var(--border-glass); border-radius: 20px; padding: 2rem; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.glass-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); border-color: rgba(255,255,255,0.15); }

/* Section titles */
.section-title { font-size: 2rem; font-weight: 700; margin-bottom: 2rem; }

/* Categories */
.categories-section { margin-bottom: 5rem; }
.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 1.5rem; }
.category-card { cursor: default; }
.category-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
.category-card .shift { font-size: 0.9rem; color: var(--accent-3); font-weight: 600; margin-bottom: 1rem; }
.category-card .tools-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tool-tag { background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2); color: var(--accent-1); padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.8rem; font-weight: 600; }

/* Verdict */
.verdict-section { margin-bottom: 5rem; }
.verdict-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.verdict-card { text-align: center; }
.verdict-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.verdict-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; }
.verdict-card p { color: var(--text-secondary); line-height: 1.6; font-size: 0.95rem; }

/* Skeleton */
.skeleton { animation: pulse 2s cubic-bezier(0.4,0,0.6,1) infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

footer { text-align: center; padding: 2rem; color: var(--text-secondary); border-top: 1px solid var(--border-glass); margin-top: 4rem; font-size: 0.9rem; }

@media(max-width: 768px) { .hero-title { font-size: 2.2rem; } nav { display: none; } }
