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

:root {
    /* Colors */
    --bg-dark: #050508;
    --surface-dark: #0f0f13;
    --surface-light: #16161c;
    --primary: #3b82f6;
    --primary-glow: rgba(59, 130, 246, 0.5);
    --secondary: #8b5cf6;
    --accent: #10b981;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-color: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--surface-light); border-radius: 10px; }

/* Typography */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
a { text-decoration: none; color: inherit; transition: var(--transition-base); }
ul { list-style: none; }

/* Glassmorphism Utility */
.glass { background: var(--glass-bg); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--glass-border); }
.glass-card { background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%); backdrop-filter: blur(10px); border: 1px solid var(--glass-border); border-radius: 24px; box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37); transition: var(--transition-base); }

/* Button System */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.75rem 1.5rem; border-radius: 12px; font-weight: 600; font-size: 1rem; cursor: pointer; transition: var(--transition-base); border: none; gap: 0.5rem; }
.btn-primary { background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); color: white; box-shadow: 0 4px 15px var(--primary-glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px var(--primary-glow); }
.btn-outline { background: transparent; border: 1px solid var(--glass-border); color: var(--text-primary); }
.btn-outline:hover { background: var(--glass-bg); border-color: var(--text-secondary); }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.875rem; }

/* Container */
.container { max-width: 1280px; margin: 0 auto; padding: 0 var(--space-md); }

/* Badge */
.badge { display: inline-block; padding: 0.4rem 1rem; background: rgba(59, 130, 246, 0.1); border: 1px solid rgba(59, 130, 246, 0.2); color: var(--primary); border-radius: 99px; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1.5rem; }

/* Section Headers */
.section-header { text-align: center; margin-bottom: 4rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.section-header p { font-size: 1.1rem; color: var(--text-secondary); }

/* Gradient Text */
.gradient-text { background: linear-gradient(135deg, #fff 0%, #3b82f6 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* Navbar */
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 1.5rem 0; transition: var(--transition-base); }
.navbar.scrolled { padding: 1rem 0; background: rgba(5, 5, 8, 0.8); backdrop-filter: blur(15px); border-bottom: 1px solid var(--border-color); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 800; letter-spacing: -1px; }
.logo-accent { color: var(--primary); }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-secondary); position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }
.nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--primary); transition: var(--transition-base); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.mobile-toggle { display: none; flex-direction: column; gap: 6px; background: transparent; border: none; cursor: pointer; }
.mobile-toggle span { width: 24px; height: 2px; background: var(--text-primary); transition: var(--transition-base); }

/* Hero Section */
.hero { padding: 10rem 0 8rem; min-height: 100vh; display: flex; align-items: center; position: relative; }
.inner-hero { min-height: 60vh; padding: 8rem 0 4rem; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 5rem; align-items: center; }
.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }
.hero-content h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1.5rem; }
.hero-content p { font-size: 1.15rem; color: var(--text-secondary); margin-bottom: 2.5rem; max-width: 580px; }
.hero-btns { display: flex; gap: 1.2rem; margin-bottom: 4rem; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.trust-item { display: flex; align-items: center; gap: 0.75rem; }
.trust-icon { font-size: 1.2rem; }
.trust-text { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

/* Dashboard Mockup */
.hero-visual { position: relative; perspective: 1000px; }
.dashboard-mockup { background: rgba(22, 22, 28, 0.4); backdrop-filter: blur(25px); border: 1px solid var(--glass-border); border-radius: 32px; padding: 2rem; width: 100%; max-width: 600px; box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.6); transform: rotateY(-5deg) rotateX(5deg); transition: transform 0.5s ease; }
.dashboard-mockup:hover { transform: rotateY(0) rotateX(0); }
.dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.dash-user { display: flex; align-items: center; gap: 1rem; }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(45deg, var(--primary), var(--secondary)); border: 2px solid rgba(255, 255, 255, 0.1); box-shadow: 0 0 15px var(--primary-glow); }
.dash-badge { padding: 0.3rem 0.8rem; background: rgba(16, 185, 129, 0.1); color: var(--accent); border-radius: 6px; font-size: 0.75rem; font-weight: 700; border: 1px solid rgba(16, 185, 129, 0.2); }
.dash-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.stat-card { padding: 1.5rem; }
.card-label { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.5rem; display: block; }
.card-value { font-size: 1.4rem; font-weight: 700; display: block; }
.card-trend { font-size: 0.7rem; font-weight: 600; margin-top: 0.4rem; display: block; }
.card-trend.up { color: var(--accent); }
.graph-card { padding: 1.5rem; margin-bottom: 1.5rem; }
.graph-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.2rem; }
.graph-legend { display: flex; gap: 1rem; font-size: 0.75rem; color: var(--text-muted); }
.legend-item { display: flex; align-items: center; gap: 0.4rem; }
.legend-item .dot { width: 8px; height: 8px; border-radius: 50%; }
.dot.primary { background: var(--primary); }
.dot.secondary { background: var(--secondary); }
.graph-period { font-size: 0.7rem; background: rgba(255,255,255,0.05); padding: 0.2rem 0.5rem; border-radius: 4px; }
.graph-container { height: 140px; width: 100%; position: relative; }
.revenue-svg { width: 100%; height: 100%; }
.dash-bottom-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 1rem; }
.mini-card { padding: 1rem; }
.mini-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.8rem; display: block; }
.geo-list { display: flex; flex-direction: column; gap: 0.5rem; }
.geo-item { display: flex; justify-content: space-between; font-size: 0.8rem; padding: 0.3rem 0; border-bottom: 1px solid rgba(255,255,255,0.03); }
.geo-val { font-weight: 600; color: var(--text-primary); }
.camp-stack { display: flex; margin-bottom: 0.8rem; }
.stack-item { width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--surface-light); background: var(--surface-dark); margin-right: -10px; }
.stack-item:nth-child(1) { background: var(--primary); }
.stack-item:nth-child(2) { background: var(--secondary); }
.stack-item:nth-child(3) { background: var(--accent); }
.mini-val { font-size: 0.85rem; font-weight: 600; }
.badge-wrapper { position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%); z-index: 10; }
.floating-badge { padding: 1rem 1.5rem; border-radius: 16px; display: flex; align-items: center; gap: 0.8rem; font-size: 0.85rem; font-weight: 600; white-space: nowrap; }
.badge-icon { font-size: 1.2rem; }

/* Filter UI */
.filter-bar { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 3rem; background: var(--glass-bg); padding: 1.5rem; border-radius: 20px; border: 1px solid var(--glass-border); }
.filter-group { flex: 1; min-width: 200px; position: relative; }
.filter-input { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); padding: 0.8rem 1.2rem; border-radius: 12px; color: var(--text-primary); font-family: inherit; }
.filter-input:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 15px var(--primary-glow); }

/* Offer Cards */
.offer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.offer-card { padding: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.offer-header { display: flex; justify-content: space-between; align-items: flex-start; }
.offer-icon { font-size: 2rem; }
.offer-tag { font-size: 0.7rem; font-weight: 700; color: var(--primary); text-transform: uppercase; }
.offer-card h3 { font-size: 1.1rem; }
.offer-meta { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.85rem; color: var(--text-muted); }
.meta-item { display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.03); padding-bottom: 0.3rem; }
.meta-item span:last-child { color: var(--text-primary); font-weight: 500; }
.offer-card .btn { margin-top: auto; }

/* Contact Form */
.contact-container { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; margin-top: 4rem; }
.contact-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full { grid-column: span 2; }
.form-group label { font-size: 0.9rem; font-weight: 600; color: var(--text-secondary); }
.form-input { background: var(--glass-bg); border: 1px solid var(--glass-border); padding: 1rem; border-radius: 12px; color: var(--text-primary); font-family: inherit; transition: var(--transition-base); }
.form-input:focus { border-color: var(--primary); outline: none; background: rgba(255,255,255,0.08); }
textarea.form-input { min-height: 150px; resize: none; }

/* Accordion */
.faq-container { max-width: 800px; margin: 4rem auto; }
.accordion-item { border-bottom: 1px solid var(--border-color); }
.accordion-header { width: 100%; padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; background: none; border: none; color: var(--text-primary); font-size: 1.1rem; font-weight: 600; cursor: pointer; text-align: left; }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; color: var(--text-secondary); font-size: 0.95rem; }
.accordion-item.active .accordion-content { max-height: 200px; padding-bottom: 1.5rem; }
.accordion-icon { transition: transform 0.3s; }
.accordion-item.active .accordion-icon { transform: rotate(45deg); }

/* CTA Section */
.cta-section { padding: 8rem 0; margin: 4rem 0; position: relative; }
.cta-box { text-align: center; padding: 5rem; border-radius: 40px; overflow: hidden; position: relative; }
.cta-box h2 { font-size: 3rem; margin-bottom: 1.5rem; }
.cta-box p { font-size: 1.2rem; color: var(--text-secondary); margin-bottom: 3rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 1.5rem; justify-content: center; }

/* Footer */
.footer { padding: 6rem 0 3rem; border-top: 1px solid var(--border-color); background: var(--surface-dark); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 4rem; margin-bottom: 4rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-top: 1rem; max-width: 300px; }
.footer-links h4 { font-size: 1rem; margin-bottom: 1.5rem; color: var(--text-primary); }
.footer-links ul { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-links a { font-size: 0.9rem; color: var(--text-muted); }
.footer-links a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; color: var(--text-muted); font-size: 0.85rem; }
.social-links { display: flex; gap: 1.5rem; }

/* Partners Section */
.partners { padding: 4rem 0; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); overflow: hidden; }
.partners-title { text-align: center; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2.5rem; text-transform: uppercase; letter-spacing: 0.1em; }
.marquee { width: 100%; }
.logo-item { font-size: 1.5rem; font-weight: 700; color: var(--text-muted); padding: 0 4rem; filter: grayscale(1); transition: var(--transition-base); opacity: 0.5; }
.logo-item:hover { filter: grayscale(0); opacity: 1; color: var(--text-primary); }

/* Features Section */
.features { padding: 8rem 0; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.feature-card { padding: 2.5rem; text-align: left; }
.feature-icon { font-size: 2.5rem; margin-bottom: 1.5rem; }
.feature-card h3 { font-size: 1.25rem; margin-bottom: 1rem; }
.feature-card p { color: var(--text-secondary); font-size: 0.95rem; }
.feature-card:hover { transform: translateY(-10px); border-color: var(--primary); }

/* Platform Advantages Section */
.platform-advantages { padding: 8rem 0; background: rgba(59, 130, 246, 0.02); }
.platform-advantages .features-grid { margin-top: 2rem; }

/* Categories Section */
.categories { padding: 8rem 0; }
.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.category-card { padding: 2rem; text-align: center; border-radius: 20px; }
.cat-icon { font-size: 2rem; margin-bottom: 1rem; }
.category-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.category-card p { font-size: 0.85rem; color: var(--text-muted); }
.category-card:hover { background: rgba(59, 130, 246, 0.05); border-color: var(--primary-glow); }

/* How It Works */
.how-it-works { padding: 8rem 0; background: var(--surface-dark); }
.process-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.path-title { font-size: 1.5rem; margin-bottom: 2.5rem; text-align: center; color: var(--primary); }
.steps { display: flex; flex-direction: column; gap: 2rem; position: relative; }
.step-card { padding: 1.5rem; border-left: 2px solid var(--primary); background: var(--glass-bg); border-radius: 0 16px 16px 0; transition: var(--transition-base); }
.step-num { font-size: 0.8rem; font-weight: 800; color: var(--primary); opacity: 0.5; margin-bottom: 0.5rem; display: block; }
.step-card h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.9rem; color: var(--text-secondary); }
.step-card:hover { background: rgba(255,255,255,0.05); transform: translateX(10px); }

/* Offers Preview */
.offers-preview { padding: 8rem 0; }
.table-container { padding: 0; overflow-x: auto; }
.offers-table { width: 100%; border-collapse: collapse; text-align: left; }
.offers-table th { padding: 1.5rem; color: var(--text-muted); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; border-bottom: 1px solid var(--border-color); }
.offers-table td { padding: 1.5rem; border-bottom: 1px solid var(--border-color); font-size: 0.95rem; }
.offer-title { font-weight: 600; }
.payout { color: var(--accent); font-weight: 700; font-family: monospace; font-size: 1.1rem; }
.tag { background: rgba(59, 130, 246, 0.1); color: var(--primary); padding: 0.3rem 0.8rem; border-radius: 6px; font-size: 0.75rem; font-weight: 600; }
.offers-table tr:hover td { background: rgba(255,255,255,0.02); }

/* Split Benefits */
.split-benefits { padding: 8rem 0; }
.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.benefit-card { padding: 3rem; display: flex; flex-direction: column; gap: 1.5rem; }
.benefit-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.benefit-list li { display: flex; align-items: center; gap: 0.75rem; color: var(--text-secondary); font-size: 1rem; }
.benefit-list li span { color: var(--accent); font-weight: bold; }
.benefit-card h2 { font-size: 2rem; }
.benefit-card .btn { align-self: flex-start; }
.pub-benefit:hover { border-color: var(--primary); box-shadow: 0 0 30px var(--primary-glow); }
.adv-benefit:hover { border-color: var(--secondary); box-shadow: 0 0 30px rgba(139, 92, 246, 0.2); }

/* Split Section Helper */
.split-section { padding: 8rem 0; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.visual-block { padding: 3rem; border-radius: 32px; }
