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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', -apple-system, sans-serif;
    background: #0a0a0c;
    color: #ccc;
    line-height: 1.7;
}

/* Nav */

nav {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

.accent {
    color: #34d399;
    margin: 0 2px;
}

.tagline {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
}

/* Main */

main {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero */

.hero {
    padding: 72px 0 56px;
    max-width: 640px;
}

h1 {
    font-size: clamp(28px, 4.5vw, 42px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

.hero p strong {
    color: rgba(255, 255, 255, 0.85);
}

/* Verdict */

.verdict-strip {
    padding-bottom: 64px;
}

.verdict-card {
    border-radius: 16px;
    padding: 36px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.verdict-card.winner {
    border-color: rgba(52, 211, 153, 0.2);
    background: rgba(52, 211, 153, 0.03);
}

.verdict-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #34d399;
    margin-bottom: 14px;
}

.verdict-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.verdict-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    line-height: 1.8;
}

.verdict-facts {
    list-style: none;
    margin-bottom: 24px;
}

.verdict-facts li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.verdict-facts li:last-child {
    border-bottom: none;
}

.verdict-facts strong {
    color: rgba(255, 255, 255, 0.75);
}

.cta {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: #0a0a0c;
    background: #34d399;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cta:hover {
    background: #2bc48a;
    transform: translateY(-1px);
}

/* Others */

.others {
    padding-bottom: 64px;
}

.others h2 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.others-intro {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 28px;
}

.others-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.other-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 24px;
    transition: border-color 0.2s;
}

.other-card:hover {
    border-color: rgba(255, 255, 255, 0.08);
}

.other-rank {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    margin-bottom: 8px;
}

.other-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.other-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 12px;
    line-height: 1.7;
}

.other-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
}

/* How we tested */

.how-we-tested {
    padding: 48px 0 64px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.how-we-tested h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.test-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
}

.test-num {
    font-size: 28px;
    font-weight: 700;
    color: #34d399;
}

.test-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 4px;
}

.how-we-tested > p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.8;
}

/* Bottom CTA */

.bottom-cta {
    text-align: center;
    padding: 64px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.bottom-cta h2 {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.bottom-cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 28px;
}

/* Footer */

footer {
    text-align: center;
    padding: 32px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

footer p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.12);
}

/* Responsive */

@media (max-width: 640px) {
    .others-grid {
        grid-template-columns: 1fr;
    }

    .test-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tagline {
        display: none;
    }

    .hero {
        padding: 48px 0 40px;
    }
}
