﻿:root {
    --bg-main: #0a0814;
    --bg-surface: #120e24;
    --bg-surface-elevated: #1a1435;
    --bg-card: rgba(26, 20, 53, 0.65);
    --border-color: rgba(139, 92, 246, 0.2);
    --border-glow: rgba(168, 85, 247, 0.5);
    
    --primary: #8b5cf6;
    --primary-light: #a78bfa;
    --primary-dark: #6d28d9;
    --primary-glow: rgba(139, 92, 246, 0.4);
    
    --accent: #c084fc;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-main);
    color: var(--text-main);
}

body {
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
}

code {
    font-family: 'JetBrains Mono', monospace;
    background: rgba(139, 92, 246, 0.15);
    color: var(--accent);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}

/* Background Ambient Glow Orbs */
.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.35;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: #7c3aed;
    top: -100px;
    left: 10%;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: #9333ea;
    bottom: 10%;
    right: 5%;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: #4f46e5;
    top: 50%;
    left: 45%;
}

.grid-overlay {
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography & Gradient Effects */
.gradient-text {
    background: linear-gradient(135deg, #c084fc 0%, #a855f7 50%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
    background: rgba(10, 8, 20, 0.75);
    border-bottom: 1px solid var(--border-color);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 800;
    font-size: 1.3rem;
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 0 16px var(--primary-glow);
}

.logo-icon svg {
    width: 20px;
    height: 20px;
}

.logo-accent {
    color: var(--accent);
}

.version-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 8px;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: var(--radius-full);
    color: var(--primary-light);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: var(--text-main);
}

.discord-link {
    color: #a5b4fc;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #9d73f8 0%, #7c3aed 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--primary-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

.pulse-glow {
    box-shadow: 0 0 20px var(--primary-glow);
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 15px var(--primary-glow); }
    50% { box-shadow: 0 0 30px rgba(168, 85, 247, 0.7); }
}

/* Hero Section */
.hero-section {
    padding: 100px 0 80px;
    text-align: center;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-full);
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
}

.badge-text {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 24px 36px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    max-width: 800px;
    margin: 0 auto;
}

.stat-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-val {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-lbl {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border-color);
}

/* Section Common */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Loader Showcase */
.loader-showcase-section {
    padding: 80px 0;
}

.loader-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.loader-info-col {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.feature-item {
    display: flex;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--primary);
    transform: translateX(6px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(139, 92, 246, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-item h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Loader Window Mockup */
.loader-window-mockup {
    background: #110d22;
    border: 1px solid #7c3aed;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.25);
    overflow: hidden;
}

.mockup-header {
    background: #171130;
    padding: 12px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.mockup-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mockup-dot-icon {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #a855f7;
}

.mockup-controls {
    display: flex;
    gap: 12px;
    color: #64748b;
    font-size: 0.9rem;
    cursor: default;
}

.mockup-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mockup-logo-badge {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--accent);
}

.mockup-field label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.mockup-field input {
    width: 100%;
    padding: 10px 14px;
    background: #1a1435;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: #f1f5f9;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
}

.mockup-status-box {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #94a3b8;
}

.status-indicator-green {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 6px #10b981;
}

.mockup-progress-bar {
    width: 100%;
    height: 6px;
    background: #1e173e;
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-fill {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #7c3aed, #c084fc);
    border-radius: var(--radius-full);
}

/* Features Cards Grid */
.features-section {
    padding: 80px 0;
}

.features-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.f-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.f-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.15);
}

.f-card-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.f-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.f-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Pricing Grid */
.pricing-section {
    padding: 90px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-4px);
}

.popular-card {
    background: linear-gradient(180deg, rgba(35, 25, 75, 0.85) 0%, rgba(20, 15, 45, 0.85) 100%);
    border: 2px solid var(--primary);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.25);
    transform: scale(1.03);
}

.popular-card:hover {
    transform: scale(1.03) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #7c3aed, #d946ef);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    letter-spacing: 1px;
}

.card-tier {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 12px;
}

.card-price {
    font-size: 2.6rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.card-price .currency {
    font-size: 1.8rem;
    color: var(--primary-light);
}

.card-price .period {
    font-size: 0.95rem;
    color: var(--text-dim);
    font-weight: 500;
}

.card-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    min-height: 42px;
}

.card-hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    flex-grow: 1;
}

.card-features li {
    font-size: 0.92rem;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-features .check {
    color: #34d399;
    font-weight: 800;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.faq-question {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: #f1f5f9;
}

.faq-answer {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Modal */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(5, 3, 12, 0.8);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal-backdrop.open {
    display: flex;
}

.modal-card {
    background: #15102c;
    border: 1px solid var(--primary);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.35);
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

.modal-header {
    padding: 20px 24px;
    background: #1c153a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
}

.modal-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(139, 92, 246, 0.1);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
}

.summary-price {
    font-size: 1.4rem;
    color: var(--accent);
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    background: #1c163b;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: white;
    font-size: 0.95rem;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pay-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #1c163b;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.pay-method.active {
    border-color: var(--primary);
    background: rgba(139, 92, 246, 0.2);
}

.modal-pay-btn {
    padding: 14px;
    font-size: 1.05rem;
}

.modal-secure-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-dim);
}

.generated-key-box {
    background: #0f0a20;
    border: 1px dashed var(--primary-light);
    border-radius: var(--radius-sm);
    padding: 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.15rem;
    color: #4ade80;
    font-weight: 700;
    margin: 16px 0;
    user-select: all;
}

.text-center {
    text-align: center;
}

.sub-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.modal-divider {
    height: 1px;
    background: var(--border-color);
    margin: 12px 0;
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--border-color);
    background: #07050e;
    padding: 40px 0;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 6px;
}

.footer-left p {
    color: var(--text-dim);
    font-size: 0.85rem;
}

.footer-right {
    display: flex;
    gap: 24px;
}

.footer-right a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-right a:hover {
    color: var(--text-main);
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    .loader-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 2.6rem;
    }
    .popular-card {
        transform: none;
    }
    .popular-card:hover {
        transform: translateY(-4px);
    }
}
