:root {
    --max-width: 800px;
    --bg-color: #0d0d0d;
    --card-bg: #1a1a1a;
    --text-light: #e0e0e0;
    --text-muted: #A9A9A9;
    --primary: #cc0000;
    --primary-light: #ff4d4d;
    --accent: #808080;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Full‑viewport grid on html */
html {
    background-color: var(--bg-color);
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

body {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    /* Opaque background to cover the grid behind content */
    background-color: var(--bg-color);
    font-family: 'Arial Black', Arial, sans-serif;
    color: #fff;
    line-height: 1.5;
    min-height: 100vh;
}

/* ---- Header ---- */
.site-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 0 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.title {
    font: 900 clamp(1.5rem, 5vw, 2rem) / 1.4 'Arial Black', sans-serif;
    white-space: nowrap;
}

.red {
    background: linear-gradient(to bottom, #ff4d4d, #cc0000);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.wit {
    background: linear-gradient(to bottom, #ffffff, #cccccc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    right: 5px;
}

/* ---- Hero ---- */
.hero {
    text-align: center;
    padding: 30px 0 25px;
}

.hero-tagline {
    font: 900 clamp(1.3rem, 4vw, 1.8rem) / 1.35 'Arial Black', sans-serif;
    background: linear-gradient(to right, #ffffff, #808080);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 0.95rem;
    white-space: nowrap;
}

.btn i {
    font-size: 1.1em;
}

.btn-primary {
    background: linear-gradient(135deg, #ff4d4d, #cc0000);
    color: #fff;
    box-shadow: 0 4px 12px rgba(204, 0, 0, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(204, 0, 0, 0.5);
}

.btn-secondary {
    background: rgba(255,255,255,0.08);
    color: #ddd;
    border: 1px solid #555;
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.btn-large {
    padding: 14px 32px;
    font-size: 1.1rem;
}

/* ---- Stats ---- */
.stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 25px 0;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    margin: 10px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 100px;
    flex: 1 0 auto;
}

.stat-number {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
    font-weight: 900;
    background: linear-gradient(to right, #ffffff, #808080);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ---- Section Headings ---- */
.section-heading {
    font: 900 clamp(1.6rem, 5vw, 2rem) / 1.3 'Arial Black', sans-serif;
    text-align: center;
    background: linear-gradient(to right, #ffffff, #808080);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 35px;
    font-size: 1rem;
    padding: 0 10px;
}

/* ---- Features ---- */
.features {
    padding: 40px 0;
}

.feature-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 25px 25px 25px 30px;
    position: relative;
    transition: border-color 0.2s;
}
.feature-card:hover {
    border-color: #cc0000;
}

.feature-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #ff4d4d, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    color: #fff;
    box-shadow: 0 4px 10px rgba(204,0,0,0.4);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #fff;
}

.feature-card p {
    color: #bbb;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ---- Showcase ---- */
.showcase {
    padding: 40px 0;
    text-align: center;
}

.video-placeholder {
    background: #1a1a1a;
    border: 2px dashed #333;
    border-radius: 12px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #888;
    font-size: 1rem;
    transition: border-color 0.2s;
    margin: 0 10px;
}
.video-placeholder i {
    font-size: 2.8rem;
    color: #cc0000;
}
.video-placeholder:hover {
    border-color: #cc0000;
}

/* ---- Pricing ---- */
.pricing {
    padding: 40px 0;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.plan-card {
    background: var(--card-bg);
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 30px 20px;
    flex: 1 1 260px;
    max-width: 320px;
    text-align: center;
    position: relative;
    transition: transform 0.2s, border-color 0.2s;
    margin-bottom: 15px;
}

.plan-card:hover {
    transform: translateY(-5px);
    border-color: #444;
}

.plan-card.popular {
    border-color: #cc0000;
    box-shadow: 0 0 15px rgba(204,0,0,0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #cc0000;
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.plan-name {
    font-size: 1.6rem;
    margin: 15px 0 5px;
}

.plan-price {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.plan-duration {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin: 0 auto 25px;
    max-width: 220px;
    color: #ccc;
    font-family: Arial, sans-serif;
}

.plan-features li {
    padding: 6px 0;
    border-bottom: 1px solid #222;
    font-size: 0.9rem;
}

.plan-features li:last-child {
    border-bottom: none;
}

.not-on-sale {
    color: #999;
    font-style: italic;
    padding: 12px;
    background: rgba(255,255,255,0.03);
    border-radius: 6px;
    font-size: 0.85rem;
}

/* ---- CTA ---- */
.cta {
    text-align: center;
    padding: 50px 0 60px;
    background: linear-gradient(180deg, rgba(204,0,0,0.08) 0%, transparent 80%);
    border-top: 1px solid #222;
    margin-top: 20px;
}

.cta-heading {
    font: 900 clamp(1.7rem, 6vw, 2.2rem) / 1.3 'Arial Black', sans-serif;
    margin-bottom: 15px;
    background: linear-gradient(to right, #ffffff, #808080);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cta-brand {
    background: linear-gradient(to bottom, #ff4d4d, #cc0000);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cta-text {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 25px;
    padding: 0 10px;
}

/* ---- RESPONSIVE FINE-TUNING ---- */
@media (max-width: 600px) {
    .site-header {
        padding: 20px 0 10px;
    }
    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .stats {
        gap: 20px;
    }
    .feature-card {
        padding: 20px 20px 20px 25px;
    }
    .feature-number {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        top: -12px;
        left: -12px;
    }
    .plan-card {
        max-width: 100%;
    }
}