@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    --bg: #0a0e1f;
    --dark-deep: #0f172a;
    --neon-purple: #d946ef;
    --neon-cyan: #06b6d4;
    --gold: #fbbf24;
    --gold-glow: #f59e0b;
}

/* ===== GLOBAL RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== BODY ===== */
body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--bg), var(--dark-deep));
    min-height: 100vh;
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

/* Animated background grid */
body::before {
    content: '';
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 300%;
    background: repeating-linear-gradient(
        0deg,
        transparent 0px,
        transparent 30px,
        rgba(217, 70, 239, 0.06) 30px,
        rgba(6, 182, 212, 0.08) 60px
    );
    animation: fall 30s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes fall {
    0% { transform: translateY(0); }
    100% { transform: translateY(100%); }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ===== NAVIGATION ===== */
.logo-text {
    font-weight: 900;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: #e0e7ff;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--neon-cyan);
    background: rgba(6, 182, 212, 0.1);
}

.mobile-nav-link {
    color: #e0e7ff;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    display: block;
}

.mobile-nav-link:hover {
    color: var(--neon-cyan);
    background: rgba(6, 182, 212, 0.1);
}

/* ===== BUTTONS ===== */
.cta-button-small {
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    color: #0f172a;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.625rem 1.5rem;
    border-radius: 2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(217, 70, 239, 0.5);
}

.cta-button {
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    color: #0f172a;
    font-weight: 800;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(217, 70, 239, 0.4);
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(217, 70, 239, 0.6);
}

.cta-button-large {
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem;
}

.cta-button-extra-large {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.secondary-button {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: #e0e7ff;
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 2rem;
    border: 2px solid rgba(217, 70, 239, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.secondary-button:hover {
    background: rgba(217, 70, 239, 0.1);
    border-color: var(--neon-purple);
    transform: translateY(-2px);
}

/* Irresistible glow effect */
.irresistible-glow {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(217, 70, 239, 0.4);
    }
    50% {
        box-shadow: 0 15px 60px rgba(217, 70, 239, 0.8);
    }
}

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

@keyframes pulse-scale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    z-index: 2;
}

.gradient-text {
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.animate-pulse-slow {
    animation: pulse-slow 3s infinite;
}

@keyframes pulse-slow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Hero background shapes */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.hero-bg-shapes::before,
.hero-bg-shapes::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.hero-bg-shapes::before {
    width: 500px;
    height: 500px;
    background: var(--neon-purple);
    top: -200px;
    left: -200px;
    animation: float 15s ease-in-out infinite;
}

.hero-bg-shapes::after {
    width: 400px;
    height: 400px;
    background: var(--neon-cyan);
    bottom: -150px;
    right: -150px;
    animation: float 20s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(50px, 50px);
    }
}

/* ===== SECTIONS ===== */
.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(90deg, #e0e7ff, #f3e8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== STATS BANNER ===== */
.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(217, 70, 239, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.stat-icon {
    font-size: 2.5rem;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #94a3b8;
    font-weight: 600;
}

/* ===== HOW IT WORKS - STEPS ===== */
.step-card {
    position: relative;
    padding: 2rem;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    border: 2px solid rgba(217, 70, 239, 0.2);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 50px rgba(6, 182, 212, 0.3);
}

.step-number {
    position: absolute;
    top: -1rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.25rem;
    color: #0f172a;
    box-shadow: 0 5px 20px rgba(217, 70, 239, 0.5);
}

.step-icon {
    font-size: 3rem;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #e0e7ff;
    margin-bottom: 0.75rem;
}

.step-description {
    color: #94a3b8;
    line-height: 1.6;
}

/* ===== EARNINGS TIERS ===== */
.tier-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    border: 2px solid rgba(217, 70, 239, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(217, 70, 239, 0.3);
}

.tier-header {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.2), rgba(6, 182, 212, 0.2));
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tier-badge {
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 800;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.tier-badge-1 {
    background: linear-gradient(90deg, var(--neon-cyan), #0891b2);
    color: #0f172a;
}

.tier-badge-2 {
    background: linear-gradient(90deg, var(--neon-purple), #a855f7);
    color: #fff;
}

.tier-badge-3 {
    background: linear-gradient(90deg, var(--gold), var(--gold-glow));
    color: #0f172a;
}

.tier-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #e0e7ff;
}

.tier-content {
    padding: 2rem;
}

.tier-percentage {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.tier-description {
    color: #94a3b8;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.tier-example {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(217, 70, 239, 0.1);
    border-radius: 0.75rem;
    border: 1px solid rgba(217, 70, 239, 0.3);
    color: #e0e7ff;
    font-weight: 600;
}

/* Example Card */
.example-card {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    border: 2px solid var(--gold);
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(251, 191, 36, 0.3);
}

.example-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.example-label {
    color: #e0e7ff;
    font-weight: 600;
}

.example-amount {
    color: var(--gold);
    font-weight: 900;
    font-size: 1.25rem;
}

.example-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(90deg, rgba(217, 70, 239, 0.2), rgba(6, 182, 212, 0.2));
    border-radius: 0.75rem;
    border: 2px solid var(--gold);
    margin-top: 1rem;
}

.example-amount-total {
    color: var(--gold);
    font-weight: 900;
    font-size: 2rem;
}

/* ===== MISSION & VALUES ===== */
.mission-card {
    text-align: center;
    padding: 2.5rem;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.3);
}

.mission-icon {
    font-size: 4rem;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    border: 2px solid rgba(217, 70, 239, 0.2);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-purple);
    box-shadow: 0 20px 50px rgba(217, 70, 239, 0.4);
}

.value-icon {
    font-size: 3rem;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #e0e7ff;
    margin-bottom: 0.75rem;
}

.value-description {
    color: #94a3b8;
    line-height: 1.6;
}

/* ===== BENEFITS GRID ===== */
.benefit-card {
    padding: 2rem;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    border: 2px solid rgba(217, 70, 239, 0.2);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    background: linear-gradient(90deg, var(--gold), var(--gold-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #e0e7ff;
    margin-bottom: 0.75rem;
}

.benefit-description {
    color: #94a3b8;
    line-height: 1.6;
}

/* ===== SERVICES (WHAT WE DO) ===== */
.service-card {
    position: relative;
    padding: 2rem;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    border: 2px solid rgba(217, 70, 239, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 50px rgba(6, 182, 212, 0.3);
}

.service-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(217, 70, 239, 0.2);
}

.service-icon {
    font-size: 3rem;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #e0e7ff;
    margin-bottom: 0.75rem;
}

.service-description {
    color: #94a3b8;
    line-height: 1.6;
}

.promise-card {
    padding: 2.5rem;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    border: 2px solid var(--gold);
    box-shadow: 0 20px 60px rgba(251, 191, 36, 0.3);
}

/* ===== URGENCY SECTION ===== */
.urgency-icon {
    animation: swing 2s ease-in-out infinite;
}

@keyframes swing {
    0%, 100% {
        transform: rotate(-10deg);
    }
    50% {
        transform: rotate(10deg);
    }
}

.delay-300 {
    animation-delay: 0.3s;
}

/* Floating elements */
.floating-element {
    position: absolute;
    animation: float-up-down 6s ease-in-out infinite;
}

@keyframes float-up-down {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ===== STAT BADGE ===== */
.stat-badge {
    text-align: center;
}

/* ===== TESTIMONIALS ===== */
.testimonial-preview-card,
.testimonial-card {
    padding: 2rem;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    border: 2px solid rgba(217, 70, 239, 0.2);
    transition: all 0.3s ease;
}

.testimonial-preview-card:hover,
.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-purple);
    box-shadow: 0 20px 50px rgba(217, 70, 239, 0.4);
}

.testimonial-avatar {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    border: 2px solid var(--neon-cyan);
}

.testimonial-name {
    font-weight: 700;
    color: #e0e7ff;
    font-size: 1.125rem;
}

.testimonial-location {
    font-size: 0.875rem;
    color: #94a3b8;
}

.testimonial-text {
    color: #94a3b8;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-earnings {
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 0.5rem;
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: var(--gold);
    font-weight: 700;
    text-align: center;
}

/* Filter buttons */
.filter-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(217, 70, 239, 0.2);
    border-radius: 2rem;
    color: #e0e7ff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(217, 70, 239, 0.2);
    border-color: var(--neon-purple);
    color: #fff;
}

/* ===== FAQ ===== */
.faq-item {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 2px solid rgba(217, 70, 239, 0.2);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--neon-cyan);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: #e0e7ff;
    font-size: 1.125rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--neon-cyan);
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--neon-purple);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p,
.faq-answer ul {
    padding: 0 1.5rem 1.5rem;
    color: #94a3b8;
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer-link {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--neon-cyan);
}

/* ===== GOLDEN CTA BUTTON (FIXED) ===== */
#goldenCTA {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
    color: #1a0d2e;
    font-weight: 900;
    font-size: clamp(1.15rem, 4vw, 1.5rem);
    padding: 20px 50px;
    border-radius: 70px;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 60px rgba(251, 191, 36, 0.8), inset 0 0 30px rgba(255, 255, 255, 0.3);
    animation: pulse-gold 2.5s infinite, float-gold 6s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 18px;
    white-space: nowrap;
    min-width: 320px;
}

#goldenCTA:hover {
    transform: translateX(-50%) translateY(-10px) scale(1.07);
    box-shadow: 0 0 100px rgba(251, 191, 36, 1), inset 0 0 40px rgba(255, 255, 255, 0.4);
}

.dollar {
    font-size: 1.8em;
    animation: spin 3s linear infinite;
    display: inline-block;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse-gold {
    0%, 100% {
        box-shadow: 0 0 60px rgba(251, 191, 36, 0.8);
    }
    50% {
        box-shadow: 0 0 100px rgba(251, 191, 36, 1);
    }
}

@keyframes float-gold {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-20px);
    }
}

/* ===== ACCESS PANEL (MODAL) ===== */
#insiderPanel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 460px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(24px);
    border: 2px solid rgba(217, 70, 239, 0.5);
    border-radius: 32px;
    padding: 44px 36px;
    box-shadow: 0 0 80px rgba(217, 70, 239, 0.7);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.7s cubic-bezier(0.2, 0.8, 0.2, 1.2);
}

#insiderPanel.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

input {
    width: 100%;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(217, 70, 239, 0.4);
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

input:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.4);
}

input[readonly] {
    background: rgba(217, 70, 239, 0.2);
    border-color: var(--neon-purple);
    color: #e0e7ff;
}

.cta-btn-form {
    width: 100%;
    padding: 24px;
    font-size: 1.4rem;
    font-weight: 900;
    color: #0f172a;
    background: linear-gradient(90deg, #06b6d4, #d946ef);
    border: none;
    border-radius: 24px;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 15px 40px rgba(217, 70, 239, 0.6);
    transition: all 0.4s;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cta-btn-form:hover {
    transform: translateY(-5px) scale(1.04);
    box-shadow: 0 25px 60px rgba(217, 70, 239, 0.9);
}

.cta-btn-form::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%) translateY(-100%) rotate(30deg);
    transition: all 0.6s;
}

.cta-btn-form:hover::after {
    transform: translateX(100%) translateY(100%) rotate(30deg);
}

/* ===== MATRIX OVERLAY ===== */
#matrixOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 20000;
    display: none;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#matrixOverlay.show {
    display: flex;
}

.matrix-text {
    font-size: clamp(3rem, 11vw, 8rem);
    font-weight: 900;
    background: linear-gradient(90deg, #00ff41, #39ff14);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 50px #00ff41;
    animation: glow-matrix 1.8s infinite alternate;
}

@keyframes glow-matrix {
    from {
        text-shadow: 0 0 50px #00ff41;
    }
    to {
        text-shadow: 0 0 100px #39ff14;
    }
}

.usd {
    position: absolute;
    color: #00ff41;
    font-size: 2.5em;
    opacity: 0.9;
    animation: fallUSD linear forwards;
}

@keyframes fallUSD {
    from {
        transform: translateY(-120vh) rotate(0);
    }
    to {
        transform: translateY(120vh) rotate(360deg);
    }
}

/* ===== MOBILE RESPONSIVENESS ===== */
@media (max-width: 768px) {
    #goldenCTA {
        min-width: 280px;
        padding: 16px 40px;
        font-size: 1rem;
        bottom: 20px;
    }
    
    .dollar {
        font-size: 1.5em;
    }
    
    #insiderPanel {
        padding: 32px 24px;
        max-width: 95%;
    }
}

@media (max-width: 640px) {
    .stat-card {
        padding: 1rem;
    }
    
    .step-card,
    .tier-card,
    .benefit-card,
    .service-card {
        padding: 1.5rem;
    }
    
    .example-card {
        padding: 1.5rem;
    }
}

/* ===== SUPPORT PAGE ===== */
.support-card {
    padding: 2rem;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    border: 2px solid rgba(217, 70, 239, 0.2);
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 50px rgba(6, 182, 212, 0.3);
}

.support-icon {
    font-size: 3rem;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

/* ===== LEGAL PAGES ===== */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    border: 2px solid rgba(217, 70, 239, 0.2);
}

.legal-content h2 {
    color: var(--neon-cyan);
    font-size: 1.75rem;
    font-weight: 800;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    color: var(--neon-purple);
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p,
.legal-content li {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    padding-left: 2rem;
}

.legal-content strong {
    color: #e0e7ff;
    font-weight: 700;
}