/* VECTA AI MASTERY: Futuristic Minimalist Theme */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #00ffff;      /* Neon Cyan */
    --secondary-color: #007bff;     /* Electric Blue */
    --bg-dark: #0A192F;             /* Deep Space Blue */
    --text-light: #e6f1ff;          /* Off-White */
    --text-mid: #8892b0;
    --font-heading: 'SF Mono', 'Roboto Mono', monospace;
    --font-body: 'Poppins', 'Segoe UI', sans-serif;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    background-color: var(--bg-dark);
    color: var(--text-light);
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    padding: 0 15px;
}

/* Header and Navigation */
header {
    background: var(--bg-dark);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header h1 {
    float: left;
    font-size: 1.8rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

header nav {
    float: right;
    margin-top: 5px;
}

header a {
    color: var(--text-mid);
    text-decoration: none;
    font-size: 0.9rem;
    margin-left: 25px;
    transition: color 0.3s;
    font-family: var(--font-heading);
}

header a:hover {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 600;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-dark); /* Dark text on bright button */
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--bg-dark);
}

/* --- HERO Section --- */
.hero {
    position: relative;
    padding: 150px 0 100px;
    overflow: hidden;
    text-align: center;
}

/* Canvas for the dynamic background */
#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
}

.hero-content h2 {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.1;
    font-family: var(--font-heading);
}

.tagline {
    font-size: 1.2rem;
    color: var(--text-mid);
    margin-bottom: 40px;
}

/* CTA Box (Webinar) */
.cta-box {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    border: 1px solid var(--secondary-color);
    padding: 25px;
    border-radius: 8px;
    max-width: 550px;
    margin: 30px auto;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.cta-box h3 {
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.cta-box .date {
    font-size: 1.1rem;
    color: #ff3366; /* Hot Pink for urgency */
    font-weight: bold;
    margin: 15px 0;
}

/* --- Generic Sections --- */
section {
    padding: 80px 0;
}

h3.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-family: var(--font-heading);
    text-transform: uppercase;
}

/* --- Social Proof / Logos Section --- */
.social-proof {
    background-color: #071320;
    border-top: 1px solid rgba(0, 255, 255, 0.05);
}
.logo-strip {
    display: flex;
    justify-content: space-around;
    align-items: center;
    opacity: 0.6;
}
.logo-strip img {
    height: 30px; /* Example size */
    filter: grayscale(100%);
}

/* --- 5-Level Roadmap (L2 on Homepage) --- */
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.level-card {
    background: #112240;
    padding: 30px;
    border-radius: 6px;
    border-left: 3px solid var(--primary-color);
    transition: transform 0.3s, box-shadow 0.3s;
}
.level-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.15);
}
.level-card .level-num {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    opacity: 0.8;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}
.level-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}
.level-card .tools {
    font-style: italic;
    font-size: 0.85rem;
    color: var(--text-mid);
    margin-top: 10px;
}

/* --- Segmented Benefits --- */
.segments-benefits {
    background-color: var(--bg-dark);
}
.benefit-row {
    display: flex;
    gap: 40px;
    padding: 40px 0;
    align-items: center;
    border-bottom: 1px solid rgba(136, 146, 176, 0.1);
}
.benefit-row:last-child {
    border-bottom: none;
}
.benefit-icon {
    font-size: 3rem;
    color: var(--primary-color);
    flex-shrink: 0;
    width: 80px;
    text-align: center;
}
.benefit-text h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}
.benefit-text p {
    color: var(--text-mid);
}

/* --- Instructor Section --- */
.instructor-profile {
    text-align: center;
    background-color: #071320;
    border-top: 1px solid rgba(0, 255, 255, 0.05);
}
.instructor-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--secondary-color); /* Placeholder color */
    margin: 0 auto 20px;
    border: 5px solid var(--primary-color);
}
.instructor-profile h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}
.instructor-profile p {
    color: var(--text-mid);
    max-width: 700px;
    margin: 10px auto;
}

/* --- Final CTA --- */
.final-cta {
    text-align: center;
    padding: 50px 0;
}
.final-cta h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Footer */
footer {
    background: #071320;
    color: var(--text-mid);
    text-align: center;
    padding: 20px 0;
    font-size: 0.85rem;
    border-top: 1px solid rgba(0, 255, 255, 0.05);
}

/* Utility for clearing floats */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 768px) {
    .hero { padding: 100px 0 50px; }
    .hero-content h2 { font-size: 2.5rem; }
    header h1, header nav { float: none; text-align: center; }
    header nav a { margin: 0 10px; display: inline-block; }
    .benefit-row { flex-direction: column; text-align: center; }
    .benefit-icon { margin-bottom: 20px; }
}