/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    background-color: #0a0a0f;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
}

.section {
    padding: 100px 20px;
    position: relative;
    z-index: 1;
}

.section-dark {
    background: rgba(0, 0, 0, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-size: 14px;
    color: #00f7ff;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 16px;
    font-family: 'Space Mono', monospace;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.2;
}

.muted {
    color: rgba(255, 255, 255, 0.5);
}

.cyan {
    color: #00f7ff;
}

.gold {
    color: #ffd700;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Background Effects */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(0, 247, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 0, 128, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 247, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.grid-pattern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 247, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 247, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* Money Text Gradient */
.money-text {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 25%, #ffd700 50%, #ffb800 75%, #ffd700 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

/* Glass Card */
.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s ease;
}

.glass-card:hover {
    border-color: rgba(0, 247, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 247, 255, 0.1);
    transform: translateY(-5px);
}

/* Buttons */
.cta-button {
    background: linear-gradient(135deg, #00f7ff 0%, #00c4cc 50%, #00f7ff 100%);
    background-size: 200% auto;
    border: none;
    padding: 20px 48px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: #0a0a0f;
    cursor: pointer;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 247, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
    animation: shimmer 1.5s linear infinite;
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(0, 247, 255, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.secondary-button {
    background: transparent;
    border: 2px solid #00f7ff;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    color: #00f7ff;
    cursor: pointer;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: rgba(0, 247, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 247, 255, 0.3);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0) 100%);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-emoji {
    font-size: 32px;
}

.nav-text {
    font-family: 'Space Mono', monospace;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #00f7ff;
}

.nav-cta {
    padding: 12px 24px;
    font-size: 14px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.floating-claw {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 60px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(0, 247, 255, 0.5));
    transition: left 0.5s ease-out;
}

.hero-inner {
    animation: fadeInUp 0.8s ease-out;
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 247, 255, 0.1);
    border: 1px solid rgba(0, 247, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 24px;
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    letter-spacing: 2px;
    color: #00f7ff;
}

.hero-title {
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.stats-row {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 42px;
    font-weight: 800;
    color: #00f7ff;
    font-family: 'Space Mono', monospace;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    letter-spacing: 2px;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(0, 247, 255, 0.5), transparent);
}

/* Story Section */
.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    font-size: 14px;
    color: #00f7ff;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 16px;
    font-family: 'Space Mono', monospace;
}

.story-content h3 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.story-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.story-card-wrapper {
    position: relative;
    padding: 40px;
}

.profit-card {
    background: linear-gradient(135deg, rgba(0, 247, 255, 0.1) 0%, rgba(255, 0, 128, 0.05) 100%);
    text-align: center;
}

.profit-emoji {
    font-size: 80px;
    margin-bottom: 20px;
}

.profit-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    letter-spacing: 2px;
    font-family: 'Space Mono', monospace;
}

.profit-value {
    font-size: clamp(32px, 8vw, 44px);
    font-weight: 700;
    color: #ffd700;
    font-family: 'Space Mono', monospace;
}

.profit-increase {
    margin-top: 20px;
    padding: 12px;
    background: rgba(0, 255, 100, 0.1);
    border-radius: 8px;
    color: #00ff64;
    font-size: 14px;
}

.decorative-circle {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(0, 247, 255, 0.2);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    transition: all 0.4s ease;
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.feature-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.6;
}

/* Included Grid */
.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.included-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.included-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 247, 255, 0.2);
}

.included-emoji {
    font-size: 32px;
    flex-shrink: 0;
}

.included-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.included-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Pricing Section */
.pricing-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(0, 247, 255, 0.15) 0%, rgba(255, 0, 128, 0.08) 100%);
    border: 2px solid rgba(0, 247, 255, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, #ffd700, #ffb800);
    color: #000;
    padding: 8px 40px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.pricing-tier {
    font-size: 16px;
    color: #00f7ff;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.pricing-original {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.pricing-current {
    font-size: 64px;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Space Mono', monospace;
}

.pricing-note {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
    font-size: 14px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 32px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.check {
    color: #00ff64;
    font-size: 18px;
}

.pricing-cta {
    width: 100%;
    margin-bottom: 16px;
}

.secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* FAQ Section */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 247, 255, 0.3);
}

.faq-item.active {
    background: rgba(0, 247, 255, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
}

.faq-toggle {
    color: #00f7ff;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Final CTA */
.final-cta {
    text-align: center;
}

.final-title {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.final-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    line-height: 1.7;
}

.final-note {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    margin-top: 16px;
}

/* Footer */
.footer {
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 24px;
}

.footer-text {
    font-family: 'Space Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #00f7ff;
}

.footer-links {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00f7ff;
}

/* Countdown Banner */
.countdown-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #ff0080, #ff4d4d, #ff0080);
    background-size: 200% auto;
    animation: gradientShift 3s ease infinite;
    padding: 12px 20px;
    z-index: 1000;
    text-align: center;
}

@keyframes gradientShift {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

.countdown-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.countdown-fire {
    font-size: 20px;
}

.countdown-text {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.countdown-text strong {
    font-weight: 800;
    text-transform: uppercase;
}

.countdown-timer {
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    font-family: 'Space Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 6px;
    letter-spacing: 1px;
}

/* Adjust navbar position when banner is visible */
body.banner-active .navbar {
    top: 48px;
}

body.banner-active .hero {
    padding-top: 128px;
}

/* Contact Modal */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.contact-modal.active {
    display: flex;
}

.contact-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.contact-modal-content {
    position: relative;
    background: linear-gradient(135deg, #0f0f15 0%, #0a0a0f 100%);
    border: 1px solid rgba(0, 247, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 247, 255, 0.1);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.contact-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.contact-modal-title {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #00f7ff;
    margin-bottom: 8px;
    text-align: center;
}

.contact-modal-subtitle {
    font-family: 'Outfit', sans-serif;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-bottom: 32px;
    font-size: 15px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(0, 247, 255, 0.1);
    border-color: rgba(0, 247, 255, 0.3);
    transform: translateX(4px);
}

.contact-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 247, 255, 0.1);
    border-radius: 10px;
}

.contact-label {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
}

.contact-value {
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    color: #00f7ff;
    margin-left: auto;
}

.contact-message {
    font-family: 'Outfit', sans-serif;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Checkout Section */
.checkout-wrapper {
    background: linear-gradient(135deg, rgba(0, 247, 255, 0.1) 0%, rgba(255, 0, 128, 0.05) 100%);
    border: 2px solid rgba(0, 247, 255, 0.3);
    border-radius: 16px;
    padding: 32px;
    min-height: 400px;
}

#whop-checkout {
    width: 100%;
    min-height: 350px;
}

#whop-checkout iframe {
    border-radius: 12px;
}

.checkout-fallback {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.checkout-fallback p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.checkout-fallback a {
    color: #00f7ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.checkout-fallback a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 16px 20px;
    }
    
    .nav-text {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-row {
        gap: 24px;
    }
    
    .stat-value {
        font-size: 32px;
    }
    
    .story-grid {
        gap: 40px;
    }
    
    .pricing-current {
        font-size: 48px;
    }
    
    .trust-badges {
        gap: 20px;
    }
}