/* ===== ROOT VARIABLES ===== */
:root {
    --primary: #00ff88;
    --secondary: #0088ff;
    --accent: #ff0088;
    --dark: #0a0a0a;
    --darker: #050505;
    --white: #ffffff;
    --gray: #b0b0b0;
    --gradient: linear-gradient(135deg, #00ff88, #0088ff);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* 3D Background */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.6;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 255, 136, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    gap: 1.5rem;
}

.logo-3d {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.brand {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.logo-tagline {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gray);
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    margin-left: auto;
    margin-right: 1.5rem;
    padding: 0;
}

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.nav-links a:hover {
    color: var(--white);
    border-color: var(--primary);
    background: rgba(0, 255, 136, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}

.btn-go-live {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(120deg, #ff005a, #ff9300, #00ff88);
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-go-live strong {
    letter-spacing: 0.08em;
    font-size: 0.9rem;
}

.btn-go-live small {
    display: block;
    font-size: 0.65rem;
    color: rgba(0, 0, 0, 0.7);
}

.pulse-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff005a;
    box-shadow: 0 0 15px rgba(255, 0, 90, 0.8);
    animation: pulse 1.5s infinite;
}

.btn-go-live:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 0, 90, 0.5);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.title-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.hero-list {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 1rem;
    color: var(--white);
    letter-spacing: 0.03em;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
}

/* ===== BUTTONS ===== */
.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.btn-primary {
    background: var(--gradient);
    color: var(--dark);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-xlarge {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

.btn-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: 0.2rem;
}

.btn-link span,
.btn-link small {
    color: inherit;
}

.btn-platform {
    background: var(--gradient);
    color: var(--dark);
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-platform:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

/* ===== CRYPTO SHOWCASE ===== */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.market-visual {
    position: relative;
    width: 100%;
    min-height: 320px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 136, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.market-grid {
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 136, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 136, 255, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridMove 12s linear infinite;
}

.market-overlay {
    position: absolute;
    inset: 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.market-overlay h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.market-overlay p {
    color: var(--gray);
    max-width: 320px;
}

.coin-cards {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.8rem;
}

.coin-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.coin-card img {
    width: 36px;
    height: 36px;
}

.coin-card strong {
    display: block;
    font-family: 'Orbitron', monospace;
    letter-spacing: 0.1em;
}

.coin-card small {
    color: var(--gray);
    font-size: 0.75rem;
}

@keyframes gridMove {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 40px 40px, 40px 40px; }
}

/* ===== VALUE PROPS ===== */
.value-props {
    padding: 5rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.section-heading {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.section-heading .section-subtitle {
    margin-bottom: 0;
}

.props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
    justify-content: center;
    justify-items: stretch;
}

.prop-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: var(--white);
}

.prop-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.prop-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.prop-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.prop-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    color: var(--gray);
    margin-bottom: 0.2rem;
}

.bonus-label {
    font-family: 'Orbitron', monospace;
    font-size: 2.2rem;
    font-weight: 900;
    text-align: center;
    letter-spacing: 0.4em;
    color: #ffedf6;
    padding-bottom: 1.2rem;
    text-transform: uppercase;
}

.prop-list {
    list-style: none;
    margin: 0;
    padding: 0;
    color: var(--gray);
}

.prop-list li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
    margin-top: 0.4rem;
}

.prop-list li::before {
    content: '>';
    color: var(--primary);
    font-size: 0.9rem;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 255, 136, 0.4);
    background: rgba(0, 255, 136, 0.1);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.contact-pill:hover {
    background: rgba(0, 255, 136, 0.2);
    transform: translateY(-1px);
}

.bonus-card {
    position: relative;
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(255, 0, 90, 0.2), rgba(255, 149, 0, 0.2));
    border: 2px solid #ff005a;
    overflow: hidden;
}

.bonus-glow {
    position: absolute;
    inset: 0;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 40px rgba(255, 0, 90, 0.6);
    animation: bonusGlow 3s ease-in-out infinite;
    pointer-events: none;
}

.bonus-card > * {
    position: relative;
    text-align: center;
}

.bonus-cta {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 0, 90, 0.2);
    border: 1px solid rgba(255, 0, 90, 0.5);
    border-radius: 999px;
    padding: 0.4rem 1rem;
    font-weight: 700;
    color: #ffedf6;
}

.bonus-pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff005a;
    box-shadow: 0 0 15px rgba(255, 0, 90, 0.8);
    animation: pulse 1.3s infinite;
}

/* ===== PLATFORM SHOWCASE ===== */
.platform-showcase {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.workspace-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.workspace-row {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.workspace-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.workspace-card h3 {
    font-size: 1.8rem;
}

.platform-tag {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
    display: inline-block;
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    color: var(--gray);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.feature-list li {
    display: flex;
    gap: 0.4rem;
    align-items: flex-start;
}

.feature-list li::before {
    content: '>';
    color: var(--primary);
    margin-top: 0.1rem;
}

.workspace-actions {
    margin-top: auto;
}

.workspace-card a {
    color: var(--primary);
    text-decoration: none;
}

.intelligence-card {
    border-color: rgba(0, 136, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 136, 255, 0.2);
}

.war-card {
    border-color: rgba(255, 0, 136, 0.3);
}

.support-card {
    border-style: dashed;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.testimonial-avatar {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.testimonial-profit {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: var(--primary);
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 136, 255, 0.1));
    text-align: center;
}

.cta-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-guarantee {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.guarantee-item {
    color: var(--primary);
    font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--darker);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(0, 255, 136, 0.3);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-disclaimer {
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
}

.footer-registration {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    color: var(--gray);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
    }
    
    .brand {
        align-items: center;
    }
    
    .nav-links {
        margin: 0;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-cta {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .props-grid {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
    }

    .workspace-grid,
    .workspace-row {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-guarantee {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .props-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.mb-2 { margin-bottom: 2rem; }
.mt-2 { margin-top: 2rem; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes bonusGlow {
    0% { box-shadow: 0 0 30px rgba(255, 0, 90, 0.4); }
    50% { box-shadow: 0 0 60px rgba(255, 149, 0, 0.8); }
    100% { box-shadow: 0 0 30px rgba(255, 0, 90, 0.4); }
}

/* ===== LOADING STATES ===== */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}



