/* ═══ RESET & BASE ═══ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a0a0f;
    color: #f0f0ff;
    line-height: 1.7;
    scroll-behavior: smooth;
}

a {
    color: #5865F2;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══ NAVIGATION ═══ */
nav {
    padding: 20px 0;
    border-bottom: 1px solid #2a2a3e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    position: sticky;
    top: 0;
    background: rgba(10, 10, 15, 0.92);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    z-index: 100;
}

.logo {
    font-size: 26px;
    font-weight: 900;
    background: linear-gradient(135deg, #5865F2, #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    color: #a0a0b8;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s;
    position: relative;
}

.nav-links a:hover {
    color: #f0f0ff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #5865F2, #00d4ff);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* ═══ HERO ═══ */
.hero {
    padding: 100px 0 60px;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(88, 101, 242, 0.15);
    color: #5865F2;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid rgba(88, 101, 242, 0.2);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero h1 .gradient {
    background: linear-gradient(135deg, #5865F2, #00d4ff, #9b59b6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 20px;
    color: #a0a0b8;
    max-width: 640px;
    margin: 0 auto 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══ BUTTONS ═══ */
.command-prompt {
    background: #1a1a2e;
    padding: 2px 10px;
    border-radius: 6px;
    color: #5865F2;
}

.about-paragraph {
    margin-top: 12px;
}

.footer-note {
    color: #6a6a82;
    font-size: 12px;
}

.btn-primary {
    background: linear-gradient(135deg, #5865F2, #9b59b6);
    color: #fff;
    padding: 14px 36px;
    border-radius: 12px;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(88, 101, 242, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: #f0f0ff;
    padding: 14px 36px;
    border-radius: 12px;
    font-weight: 700;
    border: 1px solid #2a2a3e;
    transition: background 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

/* ═══ SECTIONS ═══ */
section {
    padding: 60px 0;
}

.section-alt {
    background: #111118;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
}

.section-title span {
    background: linear-gradient(135deg, #5865F2, #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-sub {
    text-align: center;
    color: #a0a0b8;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* ═══ FEATURES ═══ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.feature-card {
    background: #1a1a2e;
    padding: 28px 24px;
    border-radius: 16px;
    border: 1px solid #2a2a3e;
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: #5865F2;
}

.feature-card .icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.feature-card p {
    color: #a0a0b8;
    font-size: 14px;
}

/* ═══ COMMANDS ═══ */
.commands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.command-item {
    background: #1a1a2e;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid #2a2a3e;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    transition: border-color 0.2s;
}

.command-item:hover {
    border-color: #5865F2;
}

.command-item code {
    background: #0a0a0f;
    padding: 2px 10px;
    border-radius: 6px;
    color: #5865F2;
    font-size: 13px;
}

.command-item span {
    display: block;
    color: #a0a0b8;
    font-weight: 400;
    font-size: 12px;
    margin-top: 4px;
}

/* ═══ PRICING ═══ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 16px;
}

.pricing-card {
    background: #1a1a2e;
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid #2a2a3e;
    text-align: center;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card.popular {
    border-color: #5865F2;
    position: relative;
}

.pricing-card.popular::before {
    content: '⭐ Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #5865F2;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.pricing-card .name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.pricing-card .price {
    font-size: 40px;
    font-weight: 900;
    margin: 12px 0 4px;
    color: #5865F2;
}

.pricing-card .desc {
    color: #a0a0b8;
    font-size: 14px;
    margin-bottom: 16px;
}

.pricing-card .features-list {
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 16px 0 20px;
}

.pricing-card .features-list li {
    padding: 6px 0;
    font-size: 14px;
    border-bottom: 1px solid #2a2a3e;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-card .features-list li:last-child {
    border-bottom: none;
}

.pricing-card .features-list .check {
    color: #5865F2;
    font-weight: 700;
}

.btn-small {
    display: inline-block;
    background: #5865F2;
    color: #fff;
    padding: 10px 28px;
    border-radius: 10px;
    font-weight: 700;
    transition: background 0.2s, transform 0.2s;
}

.btn-small:hover {
    background: #4752c4;
    transform: translateY(-2px);
}

/* ═══ ABOUT ═══ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text {
    font-size: 16px;
    color: #a0a0b8;
}

.about-text strong {
    color: #f0f0ff;
}

.about-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.about-stats .stat {
    text-align: center;
}

.about-stats .stat .number {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, #5865F2, #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-stats .stat .label {
    color: #a0a0b8;
    font-size: 14px;
}

/* ═══ CONTACT ═══ */
.contact-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-links a {
    background: #1a1a2e;
    padding: 14px 24px;
    border-radius: 12px;
    border: 1px solid #2a2a3e;
    color: #f0f0ff;
    font-weight: 600;
    transition: border-color 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-links a:hover {
    border-color: #5865F2;
    transform: translateY(-2px);
}

/* ═══ DISCLAIMER ═══ */
.disclaimer-box {
    background: rgba(231, 76, 60, 0.06);
    border: 1px solid rgba(231, 76, 60, 0.15);
    border-radius: 12px;
    padding: 20px 24px;
    max-width: 800px;
    margin: 20px auto 0;
    text-align: center;
}

.disclaimer-box p {
    color: #a0a0b8;
    font-size: 13px;
}

.disclaimer-box strong {
    color: #e74c3c;
}

/* ═══ FOOTER ═══ */
footer {
    border-top: 1px solid #2a2a3e;
    padding: 24px 0;
    text-align: center;
    color: #6a6a82;
    font-size: 14px;
}

footer a {
    color: #5865F2;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    .hero p {
        font-size: 17px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-stats {
        justify-content: center;
    }
    .section-title {
        font-size: 26px;
    }
    nav {
        flex-direction: column;
        align-items: center;
    }
    .nav-links {
        justify-content: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    .contact-links a {
        width: 100%;
        justify-content: center;
    }
}

/* ═══ SCROLLBAR ═══ */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0a0a0f;
}
::-webkit-scrollbar-thumb {
    background: #2a2a3e;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #5865F2;
}