:root {
    --bg: #0a0a0a;
    --surface: #141414;
    --border: #222;
    --text: #e0e0e0;
    --muted: #888;
    --accent: #ff3333;
    --accent2: #ff6b6b;
    --green: #00cc66;
    --blue: #1a6fb5;
    --purple: #9966ff;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
}
a { color: var(--accent2); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Nav */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    max-width: 1200px; margin: 0 auto;
}
.logo { font-size: 1.4rem; font-weight: bold; color: var(--accent); }
.logo span { color: var(--text); }
.logo .blue { color: var(--blue); }
nav a { color: var(--muted); margin-left: 2rem; font-size: 0.9rem; }
nav a:hover { color: var(--text); text-decoration: none; }

/* Hero */
.hero {
    max-width: 900px; margin: 0 auto;
    padding: 6rem 2rem 4rem;
    text-align: center;
}
.hero h1 {
    font-size: 2.8rem; line-height: 1.2;
    margin-bottom: 1.5rem;
}
.hero h1 .red { color: var(--accent); }
.red { color: var(--accent); }
.blue { color: var(--blue); }
.hero p {
    font-size: 1.1rem; color: var(--muted);
    max-width: 700px; margin: 0 auto 2rem;
}
.hero-cta {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 0.9rem 2.5rem;
    font-size: 1rem;
    font-family: inherit;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.hero-cta:hover { background: var(--accent2); text-decoration: none; }

/* Sections */
section {
    max-width: 1100px; margin: 0 auto;
    padding: 4rem 2rem;
}
section h2 {
    font-size: 1.8rem; margin-bottom: 0.5rem;
}
section h2 .red { color: var(--accent); }
.section-sub {
    color: var(--muted); margin-bottom: 2.5rem; font-size: 0.95rem;
}

/* What we test */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 1.5rem;
}
.card h3 {
    font-size: 1rem; margin-bottom: 0.5rem;
    color: var(--accent2);
}
.card p { font-size: 0.85rem; color: var(--muted); }

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}
.price-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
}
.price-card.featured {
    border-color: var(--accent);
}
.price-card .badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: #fff;
    padding: 0.2rem 0.8rem; font-size: 0.7rem; text-transform: uppercase;
}
.price-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.price-card .price {
    font-size: 2rem; color: var(--accent);
    margin-bottom: 0.3rem;
}
.price-card .freq {
    font-size: 0.8rem; color: var(--muted);
    margin-bottom: 1.5rem;
}
.price-card ul {
    list-style: none; text-align: left;
    font-size: 0.8rem; color: var(--muted);
}
.price-card ul li {
    padding: 0.3rem 0;
    border-bottom: 1px solid var(--border);
}
.price-card ul li:last-child { border: none; }
.check { color: var(--green); margin-right: 0.5rem; }

/* How it works */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    counter-reset: step;
}
.step {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 1.5rem;
    counter-increment: step;
}
.step::before {
    content: counter(step);
    display: block;
    font-size: 2rem; font-weight: bold;
    color: var(--accent);
    margin-bottom: 0.5rem;
}
.step h3 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.8rem; color: var(--muted); }

/* CTA */
.cta-section {
    text-align: center;
    padding: 5rem 2rem;
    border-top: 1px solid var(--border);
}
.cta-section h2 { margin-bottom: 1rem; }
.cta-section p { color: var(--muted); margin-bottom: 2rem; }
.cta-email {
    font-size: 1.3rem; color: var(--accent);
    font-weight: bold;
}

/* Footer */
footer {
    border-top: 1px solid var(--border);
    padding: 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--muted);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 1.8rem; }
    nav { flex-direction: column; gap: 1rem; }
    nav a { margin-left: 1rem; }
}
