:root {
    --bg-dark: #0a0a0c;
    --bg-card: rgba(20, 20, 25, 0.7);
    --primary: #bc13fe;
    --primary-glow: rgba(188, 19, 254, 0.5);
    --secondary: #00ff9f;
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Metamorphous', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* BACKGROUND GLOWS */
.glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 20% 30%, rgba(188, 19, 254, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 159, 0.1) 0%, transparent 40%);
}

/* NAVBAR */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 1rem 0;
}

.glass-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    font-size: 1.5rem;
    text-shadow: 0 0 10px var(--primary-glow);
}

nav a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary);
}

/* BUTTONS */
.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px var(--primary-glow);
}

.btn-nav {
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
}

/* HERO SECTION */
.hero-section {
    padding: 10rem 0 5rem;
    min-height: 100vh;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary-glow);
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.microcopy {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

.hero-visual .visual-wrapper {
    position: relative;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.hero-img {
    width: 100%;
    display: block;
    transition: transform 0.5s;
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--bg-dark), transparent);
}

/* PROBLEM SECTION */
.problem-section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.glass {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 8px;
    transition: transform 0.3s;
}

.glass:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.emoji {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.quote {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: white;
}

/* STEPS SECTION */
.glass-bg {
    background: rgba(20, 20, 25, 0.4);
    padding: 7rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 1rem;
}

/* BENEFITS */
.benefit-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 5rem 0;
}

.benefit-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.micro-proof {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 159, 0.1);
    border: 1px solid var(--secondary);
    color: var(--secondary);
    font-size: 0.85rem;
    border-radius: 4px;
}

/* TESTIMONIALS */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 700;
    color: var(--primary);
}

/* FAQ */
.faq-section {
    padding: 7rem 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* FINAL CTA */
.cta-section {
    background: radial-gradient(circle at center, rgba(188, 19, 254, 0.2) 0%, transparent 70%);
    padding: 8rem 0;
    border-top: 1px solid var(--glass-border);
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.urgency {
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.risk-reversal {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.microcopy-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.math-banner {
    margin-top: 3rem;
    font-size: 1.5rem;
    color: var(--secondary);
    text-shadow: 0 0 10px rgba(0, 255, 159, 0.5);
}

/* FOOTER */
.footer {
    padding: 3rem 0;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ANIMATIONS */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.pulsing {
    animation: pulse 3s infinite ease-in-out;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .hero-grid,
    .benefit-row {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2.5rem;
    }

    .problem-grid,
    .steps-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}