/* --- MODERN VARIABLES --- */
:root {
    --navy: #001f3f;
    --navy-dark: #000a14; /* Darker for better contrast */
    --navy-light: #003366; /* Lighter for the "glow" */
    --orange: #ff8a00;
    --teal: #0074a5;
    --cyan: #00aaff; /* Brighter accent for glows */
    --white: #ffffff;
    --off-white: #e0e6ed;
    --grey-text: #94a3b8;

    /* Premium Glass Effect Variables */
    --glass: rgba(0, 31, 63, 0.65); 
    --glass-border: rgba(255, 255, 255, 0.08);
    --card-bg: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);

    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- RESET --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    /* GLOBAL BACKGROUND UPGRADE - The "Spotlight" Effect */
    background-color: #000a14; /* HARDCODED FALLBACK (Fixes white screen flash) */
    /* A rich radial gradient that mimics a studio light from the top */
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(0, 78, 138, 0.4) 0%, transparent 60%),
        radial-gradient(circle at 85% 30%, rgba(0, 116, 165, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 15% 80%, rgba(255, 138, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3 { 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 800; /* Bolder headings */
    color: var(--white); 
    letter-spacing: -0.02em;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }

/* --- UTILITIES --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.small-container { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; position: relative; } /* Increased padding for grander feel */
.text-center { text-align: center; }

/* Dark Alt - subtle separation */
.dark-alt { 
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0, 10, 20, 0.5), rgba(0,0,0,0));
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 12px; /* Slightly squarer for a tech feel */
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), #ff5500);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(255, 138, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 138, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

.glow {
    /* Pulse animation for CTA */
    animation: pulse-glow 3s infinite;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(255, 138, 0, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 138, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 138, 0, 0); }
}

.btn-lg { padding: 18px 42px; font-size: 1.1rem; }

/* --- NAVBAR (Glassmorphism) --- */
.navbar {
    position: sticky;
    top: 20px; /* Floating look */
    z-index: 1000;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(0, 18, 38, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px; /* Rounded floating bar */
    padding: 12px 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.nav-content { display: flex; justify-content: space-between; align-items: center; padding: 0; }

/* LOGO STYLES (Fixed) */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    color: var(--white);
}

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.nav-links { display: flex; gap: 32px; }
.nav-links a { 
    font-size: 0.9rem; 
    font-weight: 500; 
    color: var(--grey-text); 
    position: relative;
    padding: 8px 0;
}
.nav-links a:hover { color: var(--white); }
/* Glowing dot indicator instead of underline */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 6px; height: 6px;
    background: var(--orange);
    border-radius: 50%;
    bottom: 0; left: 50%;
    transform: translateX(-50%) scale(0);
    transition: transform 0.3s ease;
    box-shadow: 0 0 8px var(--orange);
}
.nav-links a:hover::after { transform: translateX(-50%) scale(1); }

.mobile-toggle { display: none; font-size: 1.5rem; cursor: pointer; color: var(--white); }

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 90vh; /* Full viewport height */
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 60px;
}

.hero-bg { display: none; } /* Using body gradient instead */

.hero-container { 
    max-width: 900px; 
    margin: 0 auto; 
    position: relative; 
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers elements */
}

/* --- STATUS BADGE (NEW) --- */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 30px;
    margin-bottom: 32px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4ade80; /* Bright green text */
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.1);
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 8px #4ade80;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Legacy Badge Removal */
.badge { display: none; }

.hero h1 { 
    font-size: 4rem; /* Larger title */
    line-height: 1.1; 
    margin-bottom: 24px; 
    /* Silver Gradient Text */
    background: linear-gradient(180deg, #ffffff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.hero-sub { 
    font-size: 1.25rem; 
    color: var(--grey-text); 
    margin-bottom: 48px; 
    max-width: 600px; 
    margin-left: auto; 
    margin-right: auto; 
}

.hero-actions { 
    display: flex; 
    gap: 20px; 
    justify-content: center; 
    flex-wrap: wrap; 
    margin-bottom: 48px;
}

/* --- SOCIAL PROOF (AVATARS) (NEW) --- */
.social-proof-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.avatar-stack {
    display: flex;
    justify-content: center;
}

.avatar-stack img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--navy-dark);
    margin-left: -12px;
    object-fit: cover;
    transition: transform 0.3s ease;
    background-color: var(--navy-light); /* Fallback */
}

.avatar-stack img:first-child { margin-left: 0; }

.avatar-stack img:hover {
    transform: translateY(-5px);
    z-index: 10;
    border-color: var(--teal);
}

.social-text .stars {
    color: var(--orange);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 4px;
    display: block; 
}

.social-text p {
    font-size: 0.95rem;
    color: var(--grey-text);
    margin: 0;
}

.social-text strong {
    color: var(--white);
}

/* --- HOW IT WORKS --- */
.section-header { text-align: center; margin-bottom: 80px; }
.section-header h2 { font-size: 3rem; margin-bottom: 16px; color: var(--white); }
.section-header p { font-size: 1.2rem; color: var(--grey-text); max-width: 600px; margin: 0 auto; }

.steps-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.step-item {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(5px);
}

.step-item::before {
    /* Subtle highlight on top edge */
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.step-item:hover { 
    transform: translateY(-10px); 
    background: rgba(255, 255, 255, 0.07);
    box-shadow: var(--card-shadow);
}

.step-icon {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, rgba(0, 116, 165, 0.2), rgba(0, 31, 63, 0.8));
    color: var(--cyan);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px; /* Squircle */
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.step-item h3 { margin-bottom: 12px; font-size: 1.4rem; }
.step-item p { font-size: 1rem; color: var(--grey-text); }

/* --- SPLIT LAYOUT (CREATORS) --- */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split-content .eyebrow { 
    color: var(--orange); 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    font-size: 0.8rem; 
    display: block; 
    margin-bottom: 12px;
}

.split-content h2 { font-size: 3rem; margin: 0 0 24px; line-height: 1.1; }
.split-content p { font-size: 1.1rem; color: var(--grey-text); margin-bottom: 32px; }

.check-list { list-style: none; margin-bottom: 40px; }
.check-list li { margin-bottom: 16px; display: flex; align-items: center; gap: 16px; font-size: 1.1rem; color: var(--off-white); }
.check-list i { 
    color: var(--navy-dark); 
    background: var(--teal); 
    width: 24px; height: 24px; 
    display: flex; align-items: center; justify-content: center; 
    border-radius: 50%; 
    font-size: 0.8rem;
}

.split-image img {
    border-radius: 30px;
    box-shadow: 
        0 30px 60px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255,255,255,0.1);
    transform: rotate(2deg); /* Slightly stylish tilt */
    transition: var(--transition);
}
.split-image img:hover { transform: rotate(0deg) scale(1.02); }

/* --- BENTO GRID --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 24px;
}

.bento-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* Inner glow effect */
.bento-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.bento-card:hover { 
    transform: translateY(-5px); 
    border-color: rgba(255,255,255,0.2); 
    box-shadow: var(--card-shadow);
}

.bento-card i { font-size: 2.5rem; color: var(--orange); margin-bottom: 20px; }
.bento-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.bento-card p { font-size: 1rem; color: var(--grey-text); line-height: 1.5; }

.bento-card.large { 
    grid-column: span 2; 
    grid-row: span 2; 
    background: linear-gradient(135deg, rgba(0, 60, 110, 0.4), rgba(0, 10, 20, 0.4));
}
.bento-card.wide { grid-column: span 2; }

/* --- TESTIMONIALS --- */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.review-card::before {
    content: '\201C'; /* Quote mark */
    position: absolute; top: 10px; left: 20px;
    font-size: 5rem; color: rgba(255, 138, 0, 0.1);
    font-family: serif; line-height: 1;
}

.stars { color: var(--orange); margin-bottom: 20px; letter-spacing: 4px; font-size: 0.9rem; }
.review-card p { font-size: 1.1rem; font-style: italic; margin-bottom: 30px; color: var(--off-white); flex-grow: 1; position: relative; z-index: 1; }
.reviewer { 
    border-top: 1px solid rgba(255,255,255,0.1); 
    padding-top: 20px;
    font-weight: 700; color: var(--white); 
}
.reviewer span { display: block; font-weight: 500; color: var(--teal); font-size: 0.85rem; margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }

/* --- FAQ --- */
.accordion { max-width: 800px; margin: 0 auto; border: 1px solid var(--glass-border); border-radius: 20px; overflow: hidden; background: rgba(0,0,0,0.2); }
.acc-item { border-bottom: 1px solid var(--glass-border); }
.acc-item:last-child { border-bottom: none; }

.acc-header {
    padding: 24px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.02);
    transition: background 0.3s;
}
.acc-header:hover { background: rgba(255, 255, 255, 0.05); color: var(--orange); }
.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: var(--grey-text);
    padding: 0 30px;
    background: rgba(0, 0, 0, 0.2);
}
.acc-item.active .acc-body { max-height: 300px; padding-bottom: 30px; padding-top: 10px; }
.acc-item.active i { transform: rotate(180deg); color: var(--orange); }

/* --- FOOTER --- */
footer { 
    background: var(--navy-dark); 
    padding: 100px 0 30px; 
    border-top: 1px solid var(--glass-border); 
    position: relative;
    z-index: 10;
}
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 60px; margin-bottom: 80px; align-items: flex-start; }
.footer-left { max-width: 400px; }
.footer-left h3 { font-size: 2rem; margin-bottom: 16px; letter-spacing: 1px; background: linear-gradient(90deg, #fff, #999); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.footer-left p { color: var(--grey-text); margin-bottom: 24px; }
.email-link { 
    color: var(--orange); 
    font-weight: 600; 
    font-size: 1.1rem; 
    display: inline-flex; 
    align-items: center; gap: 8px;
}
.email-link:hover { color: #ffaa33; }

.socials { display: flex; gap: 16px; }
.socials a {
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--grey-text);
    transition: var(--transition);
    font-size: 1.2rem;
}
.socials a:hover { 
    background: var(--teal); 
    border-color: var(--teal); 
    color: var(--white); 
    transform: translateY(-5px) rotate(5deg); 
    box-shadow: 0 10px 20px rgba(0, 116, 165, 0.4);
}
.copyright { text-align: center; color: rgba(255,255,255,0.2); font-size: 0.9rem; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; }

/* --- FORM --- */
.apply-form {
    background: rgba(0, 10, 20, 0.6);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.form-group { margin-bottom: 28px; }
.form-group label { display: block; margin-bottom: 10px; color: var(--orange); font-weight: 600; font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: white;
    font-size: 1.05rem;
    transition: var(--transition);
    font-family: inherit;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { 
    outline: none; 
    border-color: var(--orange); 
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 4px rgba(255, 138, 0, 0.1);
}

/* --- RESPONSIVE --- */
@media (max-width: 960px) {
    .navbar { width: 100%; top: 0; border-radius: 0; }
    .nav-links, .nav-btn { display: none; }
    .mobile-toggle { display: block; }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; width: 100%;
        background: rgba(0, 10, 20, 0.98);
        padding: 40px;
        text-align: center;
        border-bottom: 1px solid var(--border);
        backdrop-filter: blur(15px);
        height: 100vh;
    }
    .nav-links a { font-size: 1.5rem; padding: 15px 0; }

    .hero h1 { font-size: 2.8rem; }
    .split-layout { grid-template-columns: 1fr; gap: 40px; }
    .split-image { order: -1; } /* Image on top mobile */
    .bento-grid { grid-template-columns: 1fr; }
    .bento-card.large, .bento-card.wide { grid-column: span 1; grid-row: auto; }

    .section { padding: 80px 0; }
    .footer-content { flex-direction: column; text-align: center; }
    .socials { justify-content: center; }

    .social-proof-container { flex-direction: column; gap: 10px; }
}