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

:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #60a5fa;
    --secondary: #8b5cf6;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --light: #f8fafc;
    --border: #e2e8f0;
    --success: #10b981;
    --accent: #3b82f6;
    --ink: #0f172a;
    --gradient: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --gradient-hero: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--ink);
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #3b82f6 0%, #60a5fa 100%);
    border-radius: 10px;
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #2563eb 0%, #3b82f6 100%);
    border: 2px solid #e2e8f0;
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, #1d4ed8 0%, #2563eb 100%);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #3b82f6 #f1f5f9;
}

/* Animated Dot Wave Background */
.wave-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #ffffff;
}

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

/* Navigation - Removed */

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: white;
    padding: 11px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.5);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--dark);
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: white;
    color: var(--ink);
    border: 1.5px solid var(--border);
    padding: 11px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-block;
    text-align: center;
    font-size: 15px;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #eff6ff;
}

.btn-large {
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

.btn-large:hover {
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5);
}

.btn-invite-main {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(59, 130, 246, 0.5), 0 0 30px rgba(59, 130, 246, 0.3);
    }
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    margin-bottom: 60px;
}

.hero-image {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.dashboard-screenshot {
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border);
}

.placeholder-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    border: 2px dashed var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    text-align: center;
    color: var(--gray);
}

.placeholder-icon {
    font-size: 80px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.placeholder-content p {
    font-size: 14px;
    font-weight: 500;
}

/* Hero Logo */
.hero-logo {
    font-size: 80px;
    margin-bottom: 24px;
    animation: float-logo 3s ease-in-out infinite;
}

@keyframes float-logo {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--ink);
    letter-spacing: -1.5px;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 21px;
    color: var(--gray);
    margin-bottom: 36px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle strong {
    color: var(--ink);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.hero-trust {
    font-size: 14px;
    color: var(--gray-light);
    margin: 0;
    font-weight: 500;
}

.hero-proof {
    display: flex;
    gap: 48px;
    justify-content: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.proof-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.proof-label {
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
}

.screenshot-badge {
    text-align: center;
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 12px;
    font-weight: 500;
}

.discord-icon {
    display: inline-flex;
    align-items: center;
}

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

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Social Proof Section */
.social-proof {
    padding: 60px 0;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s;
}

.testimonial:hover {
    border-color: #dbeafe;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.testimonial-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink);
    margin-bottom: 16px;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-author strong {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--gray);
}

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

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--ink);
    letter-spacing: -1px;
}

.section-header p {
    font-size: 19px;
    color: var(--gray);
    font-weight: 400;
}

.section-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin-top: 8px;
}

/* Features Section */
.features {
    padding: 100px 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
    position: relative;
}

.feature-card:hover {
    border-color: #dbeafe;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.12);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--ink);
    letter-spacing: -0.3px;
}

.feature-card p {
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 15px;
}

.feature-image {
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    border: 1px solid var(--border);
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-meta {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 8px 0;
    color: var(--gray);
    display: flex;
    align-items: center;
}

.feature-list li:before {
    content: "✓";
    color: var(--success);
    font-weight: bold;
    margin-right: 8px;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: #dbeafe;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.12);
    transform: translateY(-2px);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.16);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.pricing-header h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--ink);
    letter-spacing: -0.3px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: var(--ink);
    margin: 12px 0;
    letter-spacing: -2px;
}

.price span {
    font-size: 18px;
    color: var(--gray);
    font-weight: 500;
}

.pricing-desc {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.5;
}

.pricing-features li strong {
    color: var(--ink);
    font-weight: 600;
}

/* Commands Section */
.commands {
    padding: 100px 0;
    background: #fafafa;
}

.commands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.command-category {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s;
}

.command-category:hover {
    border-color: var(--primary-light);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.command-category h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.command-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.command-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.command-item code {
    background: #eff6ff;
    padding: 8px 12px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: var(--primary-dark);
    font-weight: 600;
    border: 1px solid #dbeafe;
}

.command-item span {
    font-size: 14px;
    color: var(--gray);
    padding-left: 12px;
}

/* CTA Section - Removed */

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-top: 2px solid var(--primary);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

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

.sticky-cta-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sticky-cta-text strong {
    font-size: 16px;
    color: var(--ink);
    font-weight: 700;
}

.sticky-cta-text span {
    font-size: 13px;
    color: var(--gray);
}


/* Responsive */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

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

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-proof {
        flex-direction: column;
        gap: 24px;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .pricing-card {
        padding: 28px 24px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }

    .cta h2 {
        font-size: 28px;
    }
    
    .sticky-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .sticky-cta-text {
        align-items: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

