@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&display=swap');

body {
    background-color: #050505;
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    margin: 0;
    overflow-x: hidden;
}

.sales-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    align-items: center;
    border-bottom: 1px solid #111;
}

.logo { font-size: 1.5rem; font-weight: bold; letter-spacing: 2px; }
.logo span { color: #00ffcc; }

.nav-connect {
    background: transparent;
    border: 1px solid #00ffcc;
    color: #00ffcc;
    padding: 10px 20px;
    cursor: pointer;
    transition: 0.3s;
}

.nav-connect:hover { background: #00ffcc; color: #000; box-shadow: 0 0 15px rgba(0,255,204,0.4); }

/* HERO SECTION */
.hero-section {
    padding: 100px 50px;
    text-align: center;
    background: radial-gradient(circle at center, #0a1512 0%, #050505 100%);
}

.hero-content h1 { font-size: 3rem; margin-bottom: 20px; }
.highlight { color: #00ffcc; }
.hero-content p { color: #888; max-width: 700px; margin: 0 auto 40px; line-height: 1.6; }

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.stat span { font-size: 0.7rem; color: #444; }

/* BOT PREVIEW SECTION */
.bot-preview {
    padding: 60px 20px;
    background: #050505;
    display: flex;
    justify-content: center;
}

.preview-container {
    width: 100%;
    max-width: 800px;
    background: #0a0a0a;
    border-radius: 10px;
    border: 1px solid #333;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.9), 0 0 30px rgba(0, 255, 204, 0.05);
}

.window-header {
    background: #161616;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #222;
}

.circles { display: flex; gap: 8px; margin-right: 25px; }
.circles span { width: 12px; height: 12px; border-radius: 50%; }
.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.window-title {
    font-size: 0.65rem;
    color: #555;
    letter-spacing: 2px;
    font-weight: bold;
}

.screenshot-wrapper {
    position: relative;
    width: 100%;
    background: #000;
}

.terminal-img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.9;
}

.overlay-glow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,255,204,0.03), transparent);
    pointer-events: none;
}

/* SYSTEM BRIEF STYLING */
.system-brief {
    padding: 80px 20px;
    background: #080808;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
}

.brief-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.brief-title {
    font-size: 1.8rem;
    letter-spacing: 4px;
    color: #fff;
    margin-bottom: 20px;
}

.brief-lead {
    color: #888;
    line-height: 1.8;
    font-size: 0.9rem;
    max-width: 800px;
    margin: 0 auto 50px;
}

.brief-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.brief-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 157, 0.1);
    border-radius: 8px;
    transition: 0.3s;
}

.brief-item:hover {
    border-color: #00ffcc;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.05);
}

.brief-item i {
    font-size: 2rem;
    color: #00ffcc;
    margin-bottom: 15px;
}

.brief-item h4 { font-size: 0.8rem; margin-bottom: 10px; color: #eee; }
.brief-item p { font-size: 0.75rem; color: #666; line-height: 1.5; }

/* TIER NOTES - FIXED GAP HERE */
.tier-breakdown {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 60px; /* CREATES THE GAP BELOW THE CARDS */
}

.tier-note {
    padding: 15px 25px;
    font-size: 0.7rem;
    border-radius: 4px;
    text-align: left;
    max-width: 400px;
    flex: 1;
}

.basic-note { background: #111; border-left: 3px solid #666; color: #aaa; }
.elite-note { background: rgba(0, 255, 204, 0.05); border-left: 3px solid #00ffcc; color: #eee; }

/* BLINKING CURSOR EFFECT */
.blink {
    animation: blinker 1s linear infinite;
    color: #00ffcc;
}

@keyframes blinker {
    50% { opacity: 0; }
}

/* PRICING CARDS */
.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 50px;
}

.price-card {
    background: #0a0a0a;
    border: 1px solid #222;
    padding: 40px;
    width: 300px;
    border-radius: 4px;
    transition: 0.3s;
}

.price-card.elite { border-color: #00ffcc; position: relative; transform: scale(1.05); }

.price { font-size: 2.5rem; margin: 20px 0; font-weight: bold; }
.price span { font-size: 1rem; color: #444; }

.features { list-style: none; padding: 0; margin-bottom: 30px; text-align: left; }
.features li { margin-bottom: 12px; font-size: 0.85rem; color: #ccc; }
.features i { color: #00ffcc; margin-right: 10px; }

.buy-btn {
    width: 100%;
    padding: 15px;
    background: #111;
    border: 1px solid #444;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
}

.elite-btn { background: #00ffcc; color: #000; border: none; }
.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #00ffcc;
    color: #000;
    font-size: 0.6rem;
    padding: 4px 10px;
    font-weight: bold;
}

.sales-footer { text-align: center; padding: 40px; font-size: 0.7rem; color: #333; }
.status-online { color: #00ff00; }

/* RESPONSIVE - FIXED MOBILE STACKING */
@media (max-width: 768px) {
    .brief-grid {
        grid-template-columns: 1fr;
    }
    
    .tier-breakdown {
        flex-direction: column;
        align-items: center;
        margin-top: 40px;
    }
    
    .tier-note {
        max-width: 100%;
        width: 100%;
    }

    .pricing-container {
        flex-direction: column;
        align-items: center;
    }
}