/* =========================================
   1. CORE SETUP & VARIABLES
   ========================================= */
:root {
    --bg-deep: #050505;
    --bg-card: #0a0a0a;
    --gold-main: #D4AF37;
    --gold-glow: rgba(212, 175, 55, 0.3);
    --gold-highlight: #F4C430;
    --text-white: #ffffff;
    --text-dim: #888888;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --neon-green: #00ff00;
    --neon-red: #ff4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Overrides to match Bot */
h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gold-text {
    color: var(--gold-main);
    text-shadow: 0 0 10px var(--gold-glow);
}

/* =========================================
   2. NAVIGATION (GLASSMORPHISM)
   ========================================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo {
    height: 40px;
    width: auto;
}

.brand-name {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 3px;
}

.nav-status {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.8rem;
    color: var(--text-dim);
    border: 1px solid var(--glass-border);
    padding: 5px 15px;
    border-radius: 4px;
}

.status-live {
    color: var(--neon-green);
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
    animation: pulse 2s infinite;
}

/* =========================================
   3. HERO SECTION
   ========================================= */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    /* Subtle grid pattern background */
    background-image: 
        linear-gradient(rgba(20, 20, 20, 0.9), var(--bg-deep)),
        url('https://www.transparenttextures.com/patterns/dark-matter.png'); 
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-dim);
    max-width: 700px;
    margin-bottom: 40px;
}

/* Button Styles */
.cta-container {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-gold {
    background: var(--gold-main);
    color: #000;
    padding: 15px 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    border: 1px solid var(--gold-main);
    transition: all 0.3s ease;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.btn-gold:hover {
    background: var(--gold-highlight);
    box-shadow: 0 0 20px var(--gold-glow);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--gold-main);
    padding: 15px 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--gold-main);
    transition: all 0.3s ease;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--text-white);
}

.hero-stats {
    display: flex;
    gap: 30px;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.8rem;
    color: var(--text-dim);
    opacity: 0.8;
}

/* =========================================
   4. COMPARISON SECTION
   ========================================= */
.comparison-section {
    padding: 80px 10%;
    background: #080808;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.gold-divider {
    width: 60px;
    height: 3px;
    background: var(--gold-main);
    margin: 0 auto;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.comp-card {
    background: var(--bg-card);
    padding: 40px;
    border: 1px solid #222;
    position: relative;
}

.comp-card h3 {
    margin-bottom: 25px;
    font-size: 1.4rem;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.comp-card ul {
    list-style: none;
}

.comp-card li {
    margin-bottom: 15px;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Specific styling for Nexus card to make it pop */
.comp-card.nexus {
    border: 1px solid var(--glass-border);
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
    background: linear-gradient(145deg, #0a0a0a, #111);
}

.comp-card.nexus h3 {
    color: var(--gold-main);
    border-bottom: 1px solid var(--gold-main);
}

/* =========================================
   5. FEATURES (TECH GRID)
   ========================================= */
.features-section {
    padding: 80px 10%;
    background: var(--bg-deep);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 30px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: var(--gold-main);
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.05);
}

.icon-box {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--gold-main);
}

.feature-box h4 {
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.feature-box p {
    font-size: 0.9rem;
    color: var(--text-dim);
}

/* =========================================
   6. PRICING (HIGH END)
   ========================================= */
.pricing-section {
    padding: 100px 10%;
    background: #080808;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center; /* Centers cards vertically if heights differ */
}

.price-card {
    background: var(--bg-card);
    border: 1px solid #333;
    padding: 0;
    position: relative;
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px);
}

/* Highlighted "Tycoon" Card */
.price-card.featured {
    border: 1px solid var(--gold-main);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.1);
    transform: scale(1.05);
    z-index: 2;
}

.best-value-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-main);
    color: #000;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: bold;
    font-family: 'Roboto Mono', monospace;
    letter-spacing: 1px;
}

.card-header {
    padding: 40px 30px;
    text-align: center;
    border-bottom: 1px solid #222;
    background: rgba(0,0,0,0.2);
}

.price-card.featured .card-header {
    border-bottom: 1px solid var(--glass-border);
    background: rgba(212, 175, 55, 0.05);
}

.card-header h3 {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 15px;
}

.price-card.featured .card-header h3 {
    color: var(--gold-main);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.price span {
    font-size: 1rem;
    color: var(--text-dim);
    font-weight: 400;
}

.card-body {
    padding: 40px 30px;
}

.card-body ul {
    list-style: none;
    margin-bottom: 30px;
}

.card-body li {
    margin-bottom: 15px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-purchase {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    background: #222;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    border: 1px solid #333;
}

.btn-purchase:hover {
    background: #333;
    border-color: #555;
}

/* =========================================
   7. FAQ & FOOTER
   ========================================= */
.faq-section {
    padding: 80px 20%;
    background: var(--bg-deep);
}

.faq-container h2 {
    text-align: center;
    margin-bottom: 50px;
}

.faq-item {
    margin-bottom: 30px;
    border-bottom: 1px solid #222;
    padding-bottom: 20px;
}

.faq-item h4 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item p {
    color: var(--text-dim);
    padding-left: 30px;
    font-size: 0.95rem;
}

footer {
    background: #000;
    border-top: 1px solid #222;
    padding: 50px 0;
    text-align: center;
}

.footer-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
}

.footer-logo {
    height: 30px;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold-main);
}

.disclaimer {
    font-size: 0.7rem;
    color: #444;
    max-width: 600px;
    margin: 0 auto 20px;
}

.copyright {
    color: #444;
    font-size: 0.8rem;
}

/* =========================================
   8. ANIMATIONS
   ========================================= */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .cta-container {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-gold, .btn-outline {
        width: 100%;
        text-align: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .navbar {
        padding: 15px;
    }
    
    .price-card.featured {
        transform: none;
    }
}

/* =========================================
   9. MOBILE OPTIMIZATION PATCH (UPDATED)
   ========================================= */
@media (max-width: 768px) {

    /* 1. FIX: Navbar covering Header */
    /* We increase padding-top to 180px to clear the taller mobile navbar */
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding-top: 180px; 
        padding-bottom: 80px;
        padding-left: 20px;
        padding-right: 20px;
    }

    /* 2. FIX: "Secure Monthly Pass" Pushed Off */
    /* We reduce the font size and padding so the text fits inside the button */
    .btn-gold, .btn-purchase, .btn-outline {
        width: 100%;
        display: block;
        text-align: center;
        padding: 15px 10px; /* Reduced side padding */
        font-size: 0.85rem; /* Slightly smaller text to prevent overflow */
        white-space: nowrap; /* Forces text to stay on one line */
    }

    /* 3. FIX: Navbar Layout */
    .navbar {
        padding: 15px 20px;
        flex-direction: column; 
        gap: 15px;
        background: rgba(5, 5, 5, 0.98); /* Almost solid black for readability */
    }

    /* 4. General Layout Fixes */
    .hero-title {
        font-size: 2rem;
        margin-top: 20px;
    }

    .cta-container {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    /* Force grids to single column */
    .comparison-grid, 
    .features-grid, 
    .pricing-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0;
    }

    .pricing-section, .features-section, .comparison-section {
        padding: 60px 20px;
    }

    /* Fix the "Best Value" badge */
    .best-value-badge {
        width: 100%;
        top: 0;
        left: 0;
        transform: none;
        border-radius: 4px 4px 0 0;
    }
}