:root {
    --bg: #121212;
    --card: #1e1e1e;
    --accent: #c5a059;
    --green: #2d5a27;
    --text: #ffffff;
    --gray: #b3b3b3;
}

/* New Announcement Banner */
.announcement-banner {
    background-color: #1a1a1a;
    color: var(--gray);
    text-align: center;
    padding: 10px;
    font-size: 0.85rem;
    border-bottom: 1px solid #333;
    letter-spacing: 0.5px;
}

.announcement-banner span {
    color: var(--accent);
    font-weight: 700;
    margin-left: 10px;
}

/* Enhancing the Hero Text */
.hero-content p {
    max-width: 600px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
    color: #e0e0e0;
}

/* Stronger Feature Headings */
.feature-card h3 {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
}

/* =========================================
   1. NAVIGATION
   ========================================= */
nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 5%;
    background: var(--bg);
    border-bottom: 1px solid #333;
}

.logo {
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    gap: 1.5rem;
    margin: 0;
}

nav a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

nav a:hover {
    color: var(--text);
    border-bottom: 2px solid var(--accent);
}

.cta-btn {
    background: var(--accent);
    color: #000 !important;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 700;
    white-space: nowrap;
    border: none;
}

/* =========================================
   2. HERO SECTION
   ========================================= */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1535131749006-b7f58c99034b?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    padding: 4rem 1.5rem;
}

.hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-btns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.primary-btn, .secondary-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.primary-btn { background-color: var(--green); color: white; border: none; }
.secondary-btn { background: transparent; color: var(--accent); border: 2px solid var(--accent); }

/* =========================================
   3. SECTIONS & CARDS (Mobile Default)
   ========================================= */
.features, .comparison {
    padding: 4rem 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.feature-card, .comparison-card {
    background: var(--card);
    padding: 2rem;
    border-top: 3px solid var(--accent);
    margin-bottom: 1.5rem;
}

/* =========================================
   4. COMPARISON LIST FIX
   ========================================= */
.comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
section#comparison h2 {
    display: block;      /* Ensures it takes up the full width */
    text-align: center;  /* Centers the text inside that width */
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    margin-bottom: 2rem; /* Adds space before the grid starts */
}
.comparison-card h3 {
    margin-top: 0;
    color: var(--accent);
    border-bottom: 1px solid #333; /* Adds a clean separator line */
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem; /* FIX: Adds breathing room between items */
    color: #e0e0e0;
}

.comparison-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}
footer {
    text-align: center;
    padding: 3rem 1.5rem;
    background: #0a0a0a;
    border-top: 1px solid #333;
    color: var(--gray);
    font-size: 0.9rem;
}

footer a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
}

/* =========================================
   5. DESKTOP OVERRIDES (Screens > 768px)
   ========================================= */
@media (min-width: 768px) {
    /* Horizontal Nav */
    nav {
        flex-direction: row;
        justify-content: space-between;
        padding: 1.5rem 5%;
    }
    .logo { margin-bottom: 0; }

    /* Big Hero Text */
    .hero h1 { font-size: 3.5rem; }
    .hero-btns { flex-direction: row; justify-content: center; }
    .primary-btn, .secondary-btn { width: auto; padding: 1rem 2.5rem; }

    /* --- THE CONCEPT SECTION FIX --- */
    /* Using Flexbox instead of Grid prevents the "2 blocks then 1" issue.
       It forces items to wrap nicely or stay centered. */
    .features {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }

    /* Force the header to take full width so it sits on top */
    .section-header { width: 100%; }

    /* The 3 Concept Cards */
    .feature-card {
        flex: 1 1 300px; /* Grow to fill space, but ideally ~300px wide */
        max-width: 400px; /* Prevents them from getting ridiculously wide */
        margin-bottom: 0;
    }

    /* --- COMPARISON TABLE FIX --- */
    .comparison-grid {
        display: grid;
        grid-template-columns: 1fr 1fr; /* Strict 50/50 split */
        gap: 3rem;
        max-width: 1000px;
        margin: 0 auto;
    }

    /* --- CURRENT STATUS FIX --- */
    /* Because we switched .features to Flexbox + Centered above,
       the single "Current Status" card will now automatically center
       itself at the bottom, looking much more professional. */
}