:root {
    /* Colors - Dark Ethereal Theme */
    --bg-color: #050814;
    --bg-color-alt: #0a0f25;
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    
    /* Accents - Gold / Divine light */
    --accent-gold: #d4af37;
    --accent-gold-glow: rgba(212, 175, 55, 0.4);
    --accent-gold-light: #fbe69b;
    
    /* Accents - Soft Blue / Ethereal */
    --accent-blue: #3b82f6;
    --accent-blue-glow: rgba(59, 130, 246, 0.2);

    /* Gradients */
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #fbe69b 50%, #b8860b 100%);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    
    /* Spacing & Sizes */
    --space-sm: 0.4rem;
    --space-md: 0.8rem;
    --space-lg: 1.2rem;
    --space-xl: 2rem;
    --border-radius: 16px;
}

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

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

h1, h2, h3, h4, .badge {
    font-family: 'Outfit', sans-serif;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out alternate;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--accent-blue-glow) 0%, transparent 70%);
}

.orb-2 {
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--accent-gold-glow) 0%, transparent 70%);
    animation-delay: -5s;
}

.orb-3 {
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(5%, 5%) scale(1.1); }
}

/* Typography & Highlights */
.highlight {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.highlight-red {
    color: #ef4444;
    font-weight: 600;
}

.text-center { text-align: center; }
.mb-xl { margin-bottom: var(--space-xl); }
.mt-xl { margin-top: var(--space-xl); }
.mt-l { margin-top: var(--space-lg); }

/* Buttons */
.cta-button {
    display: inline-block;
    background: var(--gold-gradient);
    color: #000;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px var(--accent-gold-glow);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg);
    transition: 0.5s;
}

.cta-button:hover::after {
    left: 150%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px var(--accent-gold-glow);
}

.pulse-effect {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 0 15px 0;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    color: var(--accent-gold-light);
    font-size: 0.9rem;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero .headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero .subheadline {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px auto;
}

/* Sections Global */
section {
    padding: 24px 0;
}

/* Glassmorphism Panels */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Problem Section */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.problem-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s;
}

.problem-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.04);
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 24px;
}

.cascade-text {
    text-align: center;
    font-size: 1.15rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Solution Section */
.solution-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
}

.solution-desc {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.even-if-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.even-if-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0,0,0,0.2);
    padding: 16px;
    border-radius: 8px;
}

.even-if-list svg {
    width: 24px;
    height: 24px;
    color: var(--accent-gold);
    flex-shrink: 0;
}

/* Features Section */
.features-section h3 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
    border: 1px solid rgba(255,255,255,0.05);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-top: 1px solid var(--accent-gold);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
}

/* Results Section */
.results-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.2rem;
    padding: 20px;
    background: rgba(59, 130, 246, 0.05);
    border-left: 4px solid var(--accent-blue);
    border-radius: 0 8px 8px 0;
}

.result-item .plus {
    font-size: 1.5rem;
    color: var(--accent-blue);
    font-weight: bold;
}

.final-result {
    font-size: 1.5rem;
    font-weight: 500;
}

/* Pitch Section */
.highlight-large {
    font-size: 1.4rem;
    text-align: center;
    font-weight: 600;
}

.imagine-box {
    position: relative;
    padding: 50px 40px;
    text-align: center;
}

.imagine-box p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.imagine-box p:last-child {
    margin-bottom: 0;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    color: var(--accent-gold);
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}

/* Offer Section */
.offer-section {
    padding: 30px 0;
}

.offer-card {
    background: linear-gradient(145deg, #0f1631, #0a0f25);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.glow-border {
    position: relative;
}

.glow-border::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    background: var(--gold-gradient);
    z-index: -1;
    opacity: 0.5;
    filter: blur(10px);
}

.glow-border::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 25px;
    background: var(--gold-gradient);
    z-index: -1;
}

.offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: #000;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.offer-card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.offer-mission {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 40px;
}

.price-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 30px;
    color: var(--accent-gold-light);
}

.currency {
    font-size: 2rem;
    margin-top: 10px;
    margin-right: 5px;
}

.price {
    font-family: 'Inter', sans-serif;
    font-size: 6rem;
    line-height: 1;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cents {
    font-size: 2rem;
    margin-top: 10px;
}

.offer-desc {
    margin-bottom: 40px;
}

.large-cta {
    width: 100%;
    max-width: 400px;
    font-size: 1.2rem;
    padding: 22px 30px;
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    color: #4ade80;
    font-size: 0.9rem;
}

.footer-cta {
    font-style: italic;
    color: var(--text-muted);
}

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

/* Social Proof Section */
.testimonials-section {
    padding: 30px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
}

.testimonial-img {
    width: 100%;
    max-width: 320px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s;
}

.testimonial-img:hover {
    transform: translateY(-5px);
}

/* Animations (Intersection Observer targets) */
.hidden-animate {
    opacity: 0;
    will-change: transform, opacity;
}

.fade-up {
    transform: translateY(30px);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: var(--delay, 0s);
}

.scale-in {
    transform: scale(0.95);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slide-right {
    transform: translateX(-30px);
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: var(--delay, 0s);
}

.flip-in {
    transform: perspective(400px) rotateX(20deg);
}

.flip-in.visible {
    opacity: 1;
    transform: perspective(400px) rotateX(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: var(--delay, 0s);
}

/* Generic visible class */
.hidden-animate.visible:not(.fade-up):not(.scale-in):not(.slide-right):not(.flip-in) {
    opacity: 1;
    transition: opacity 1s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding-top: 30px;
    }
    
    .glass-panel {
        padding: 30px 20px;
    }
    
    .offer-card {
        padding: 40px 20px;
    }
    
    .price {
        font-size: 4.5rem;
    }
    
    .large-cta {
        font-size: 1rem;
        padding: 18px 20px;
    }
    
    .imagine-box {
        padding: 40px 20px;
    }
}
