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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: #0f0f13;
    color: #e0e0e6;
    line-height: 1.7;
}

/* Nav */

nav {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 24px;
}

.nav-inner {
    max-width: 720px;
    margin: 0 auto;
}

.site-name {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.3px;
}

.dot {
    color: #7c5cfc;
}

/* Article */

article {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero */

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

.meta {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
    display: flex;
    gap: 8px;
}

.sep {
    color: rgba(255, 255, 255, 0.2);
}

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

.subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

/* Body text */

.intro, .review, .bottom-line {
    padding-bottom: 48px;
}

.intro {
    padding-top: 8px;
}

article p {
    margin-bottom: 16px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
}

article p strong {
    color: #fff;
    font-weight: 600;
}

article a {
    color: #7c5cfc;
    text-decoration: none;
}

article a:hover {
    text-decoration: underline;
}

h2 {
    font-size: clamp(22px, 3.5vw, 30px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin: 0 0 48px;
}

/* Quick Summary */

.picks {
    padding-bottom: 48px;
}

.summary-grid {
    display: grid;
    gap: 12px;
}

.summary-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.summary-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    min-width: 100px;
}

.summary-card .pick-tagline {
    flex: 1;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    min-width: 200px;
}

.summary-card .pick-price {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    white-space: nowrap;
}

.pick-top {
    background: rgba(124, 92, 252, 0.06);
    border-color: rgba(124, 92, 252, 0.15);
}

.pick-badge {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #7c5cfc;
    background: rgba(124, 92, 252, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
}

.pick-number {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
}

.summary-card .btn {
    margin-left: auto;
}

/* Review header */

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.review-header .pick-badge {
    margin-bottom: 8px;
    display: inline-block;
}

/* Pros/Cons */

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
}

.pros, .cons {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 20px;
}

.pros h4, .cons h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.pros h4 {
    color: #4ade80;
}

.cons h4 {
    color: #f87171;
}

.pros ul, .cons ul {
    list-style: none;
}

.pros li, .cons li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    padding: 4px 0;
    padding-left: 18px;
    position: relative;
}

.pros li::before {
    content: "+";
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: 700;
}

.cons li::before {
    content: "\2013";
    position: absolute;
    left: 0;
    color: #f87171;
    font-weight: 700;
}

/* CTA box */

.cta-box {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #7c5cfc;
    color: #fff;
}

.btn-primary:hover {
    background: #6b4ef0;
    transform: translateY(-1px);
    text-decoration: none;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
}

/* Comparison table */

.comparison {
    padding-bottom: 48px;
}

.table-wrap {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

thead {
    background: rgba(255, 255, 255, 0.03);
}

th {
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

td {
    padding: 12px 16px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.6);
}

td strong {
    color: #fff;
}

.check {
    color: #4ade80;
    font-weight: 700;
}

/* Bottom line */

.bottom-line {
    padding-top: 0;
}

/* Footer */

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

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

/* Responsive */

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

    .summary-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .summary-card .btn {
        margin-left: 0;
        margin-top: 4px;
    }

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