/* --- Base & Typography --- */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #1a1a2e; /* Fallback */
    background: linear-gradient(135deg, #1a1a2e 0%, #1e1e3f 50%, #3c1e5a 100%);
    color: #eaeaea;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    color: #ffffff;
}

a {
    color: #6a11cb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2575fc;
}

.app-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    overflow-x: hidden;
}

/* --- Navigation Bar --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.logo {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: #fff;
}

/* --- CTA Button --- */
.cta-button {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    box-shadow: 0px 8px 20px rgba(106, 17, 203, 0.4);
    transition: all 0.3s ease;
    border: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0px 12px 25px rgba(106, 17, 203, 0.6);
}


/* --- Hero Section --- */
.hero-section {
    text-align: center;
    padding: 80px 0;
}

.hero-headline {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ffffff, #c5c5c5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-headline .highlight {
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subheadline {
    font-size: 20px;
    color: #c5c5c5;
    max-width: 650px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* --- General Section Styling --- */
.section-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: #c5c5c5;
    max-width: 700px;
    margin: 0 auto 60px auto;
    line-height: 1.7;
}

/* --- Video Placeholder --- */
.video-placeholder {
    max-width: 900px;
    margin: 60px auto;
    aspect-ratio: 16 / 9;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    border: 1px solid #3a3a5a;
}


/* --- Build-Out Grid / Offer Section --- */
.offer-section {
    padding: 80px 0;
}

.build-out-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.grid-item {
    background-color: rgba(30, 30, 63, 0.5);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #3a3a5a;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 40px rgba(0,0,0,0.3);
    border-color: #6a11cb;
}

.grid-item-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.grid-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.grid-item p {
    color: #c5c5c5;
    line-height: 1.7;
}

/* --- Path to Dominance --- */
.path-section {
    padding: 80px 0;
}

.path-steps {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 60px;
}

.step {
    flex-basis: 31%;
    text-align: center;
}

.step-number {
    font-size: 60px;
    font-weight: 800;
    color: #6a11cb;
    line-height: 1;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.step p {
    color: #c5c5c5;
}

/* --- Ads Section & Final CTA Section --- */
.ads-section, .final-cta-section {
    padding: 80px 0;
    background-color: rgba(30, 30, 63, 0.3);
    border-radius: 20px;
    margin: 60px 0;
    text-align: center;
}


/* --- Footer --- */
.footer {
    text-align: center;
    padding: 40px 0;
    margin-top: 60px;
    border-top: 1px solid #3a3a5a;
    color: #c5c5c5;
    font-size: 14px;
}

.footer p {
    margin: 5px 0;
}


/* --- Responsive Design --- */
@media (max-width: 992px) {
    .hero-headline {
        font-size: 52px;
    }

    .section-title {
        font-size: 40px;
    }

    .build-out-grid {
        grid-template-columns: 1fr;
    }

    .path-steps {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .app-container {
        padding: 0 20px;
    }

    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    .hero-headline {
        font-size: 42px;
    }

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

    .section-title {
        font-size: 34px;
    }

}

