:root {
    --bg-color: #06080f;
    --bg-surface: rgba(18, 22, 38, 0.6);
    --bg-surface-hover: rgba(28, 33, 56, 0.8);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    /* Brand Colors */
    --brand-blue: #3b82f6;
    --brand-indigo: #6366f1;
    --brand-purple: #8b5cf6;
    --brand-electric: #00f0ff;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
    --gradient-glow: linear-gradient(135deg, rgba(59, 130, 246, 0.5), rgba(139, 92, 246, 0.5));
    
    /* Borders & Glass */
    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
    --border-glow: 1px solid rgba(99, 102, 241, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(99, 102, 241, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(139, 92, 246, 0.04) 0%, transparent 50%);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.text-green { color: #10b981; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: var(--border-glass);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(6, 8, 15, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: var(--border-glass);
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 38px;
    width: 38px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(99, 102, 241, 0.4);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.35);
    background: #090b14;
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    border-color: var(--brand-electric);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: white;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.discord-icon-link {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
}

.discord-icon-link:hover {
    color: var(--brand-indigo);
}

.discord-svg {
    width: 24px;
    height: 24px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 2rem 100px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero {
        grid-template-columns: 1fr 1fr;
        padding-top: 200px;
    }
}

.hero-bg-lights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.light {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.light-blue {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--brand-blue);
}

.light-purple {
    bottom: 20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: var(--brand-purple);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-full);
    color: var(--brand-electric);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.badge i {
    width: 16px;
    height: 16px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 4.5rem;
    }
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: var(--bg-surface);
    border: var(--border-glass);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
}

.dashboard-mockup::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    z-index: -1;
    border-radius: calc(var(--radius-lg) + 2px);
    opacity: 0.3;
    filter: blur(20px);
}

.mockup-header {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    border-bottom: var(--border-glass);
}

.mockup-header-logo {
    height: 22px;
    width: 22px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 0.5rem;
    vertical-align: middle;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.dots span:nth-child(1) { background: #ef4444; }
.dots span:nth-child(2) { background: #eab308; }
.dots span:nth-child(3) { background: #22c55e; }

.mockup-header .title {
    margin-left: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.mockup-body {
    padding: 2rem;
}

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.m-stat {
    background: rgba(255, 255, 255, 0.03);
    border: var(--border-glass);
    padding: 1rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.m-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.m-value {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.mockup-graph {
    height: 150px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding-top: 1rem;
    border-top: var(--border-glass);
}

.graph-bar {
    flex: 1;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 4px 4px 0 0;
    transition: height 1s ease;
}

.graph-bar.active {
    background: var(--gradient-primary);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

/* Stats Section */
.stats-section {
    padding: 4rem 2rem;
    background: linear-gradient(to right, transparent, rgba(99, 102, 241, 0.03), transparent);
    border-top: var(--border-glass);
    border-bottom: var(--border-glass);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--brand-electric);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Common Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 3rem;
    }
}

/* Features (Bento Grid) */
.features-section {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bento-item {
    background: var(--bg-surface);
    border: var(--border-glass);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.bento-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bento-item:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.bento-item:hover::before {
    opacity: 1;
}

.bento-icon {
    width: 48px;
    height: 48px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-electric);
    margin-bottom: 0.5rem;
}

.bento-item h3 {
    font-size: 1.25rem;
    color: white;
    position: relative;
    z-index: 1;
}

.bento-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .bento-item.wide {
        grid-column: span 2;
    }
}

/* How It Works */
.how-it-works-section {
    padding: 8rem 2rem;
    background: rgba(0, 0, 0, 0.2);
}

.steps-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
}

@media (min-width: 768px) {
    .steps-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .steps-container::before {
        content: '';
        position: absolute;
        top: 30px;
        left: 50px;
        right: 50px;
        height: 1px;
        background: var(--border-glass);
        z-index: 0;
    }
}

.step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--bg-surface);
    border: var(--border-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-electric);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--text-muted);
}

.steps-cta {
    text-align: center;
    margin-top: 4rem;
}

/* Live Growth Simulation */
.live-growth-section {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .live-growth-section {
        grid-template-columns: 1fr 1fr;
    }
}

.terminal-window {
    background: #0d1117;
    border: 1px solid #30363d;
    border-radius: var(--radius-md);
    overflow: hidden;
    font-family: monospace;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.terminal-header {
    background: #161b22;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #30363d;
    color: #8b949e;
    font-size: 0.85rem;
}

.terminal-header .dots {
    margin-right: 1rem;
}

.terminal-body {
    padding: 1.5rem;
    height: 300px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #c9d1d9;
    font-size: 0.9rem;
}

.terminal-line {
    animation: fadeIn 0.3s ease;
}

.terminal-line.success { color: #3fb950; }
.terminal-line.info { color: #58a6ff; }
.terminal-line.highlight { color: #d2a8ff; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Comparison Section */
.comparison-section {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .comparison-container {
        grid-template-columns: 1fr 1fr;
    }
}

.comparison-card {
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: var(--border-glass);
}

.comparison-card.without {
    background: rgba(255, 0, 0, 0.02);
}

.comparison-card.with {
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.2);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

.comparison-card h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
}

.comparison-card ul {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.comparison-card li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.comparison-card.with li {
    color: white;
}

.comparison-card.without i {
    color: #ef4444;
}

.comparison-card.with i {
    color: #10b981;
}

/* CTA Section */
.cta-section {
    padding: 4rem 2rem 8rem;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-panel {
    background: var(--bg-surface);
    border: var(--border-glass);
    padding: 4rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: var(--brand-indigo);
    filter: blur(100px);
    opacity: 0.2;
    z-index: 0;
}

.cta-panel h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-panel p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

/* FAQ */
.faq-section {
    padding: 8rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-surface);
    border: var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-sans);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question i {
    transition: transform 0.3s ease;
}

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

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
}

/* Footer */
footer {
    border-top: var(--border-glass);
    padding: 4rem 2rem 2rem;
    background: rgba(0, 0, 0, 0.3);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1.5fr 2fr;
    }
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
    font-weight: 500;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-group h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.link-group a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.link-group a:hover {
    color: var(--brand-electric);
}

.footer-discord-link {
    color: var(--brand-indigo) !important;
    font-weight: 600;
}

.footer-discord-link:hover {
    color: var(--brand-electric) !important;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: var(--border-glass);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}
