:root {
    --bg-color: #050508;
    --text-main: #f0f0f5;
    --text-muted: #8e8e9f;
    --accent-neon: #00ffcc;
    --accent-purple: #8a2be2;
    --card-bg: rgba(20, 20, 30, 0.6);
    --border-glow: rgba(0, 255, 204, 0.2);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background glowing orbs */
.background-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(circle, rgba(138,43,226,0.15) 0%, rgba(0,255,204,0.05) 40%, rgba(5,5,8,0) 70%);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 0 60px;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 255, 204, 0.1);
    color: var(--accent-neon);
    border: 1px solid var(--border-glow);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

h1 .highlight {
    background: linear-gradient(90deg, var(--accent-neon), #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 255, 204, 0.3);
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.subheadline strong {
    color: var(--text-main);
    font-weight: 600;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, var(--accent-neon) 0%, #00b38f 100%);
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    padding: 18px 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px rgba(0, 255, 204, 0.6);
}

.guarantee {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Features Section */
.features {
    padding: 60px 0 100px;
}

.features h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-weight: 600;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 0 20px rgba(255,255,255,0.02), 0 10px 30px rgba(0,0,0,0.5);
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.icon-wrapper {
    background: rgba(138, 43, 226, 0.15);
    border: 1px solid rgba(138, 43, 226, 0.3);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.2);
}

.feature-list strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-main);
}

.feature-list p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }
    .subheadline {
        font-size: 1.1rem;
    }
    .feature-card {
        padding: 25px;
    }
}