/* Version 5: Discipline Areas Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Version Switcher */
.version-switcher {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.version-btn {
    padding: 8px 20px;
    border: 2px solid #E1E8ED;
    background: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #0A2E4D;
    text-decoration: none;
    display: inline-block;
}

.version-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 46, 77, 0.08);
}

.version-btn.active {
    background: #1A3D3D;
    color: white;
    border-color: #1A3D3D;
}

/* Hero Container */
.hero-container {
    width: 100vw;
    height: 100vh;
    position: relative;
    background: #F8FAFB;
}

/* Navigation */
.nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0A2E4D;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #5A7184;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #0A2E4D;
}

.nav-cta {
    background: #FFE3B3;
    color: #8B6914;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #FFD899;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 199, 95, 0.3);
}

/* Hero Section */
.hero {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Expertise Pills Container */
.expertise-pills {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 40;
}

/* Discipline Bubbles */
.discipline-bubble {
    position: absolute;
    padding: 1.5rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    pointer-events: auto;
    z-index: 45;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.discipline-bubble:hover {
    transform: scale(1.15);
}

/* Pills */
.pill {
    position: absolute;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    pointer-events: none;
    z-index: 44;
}

.pill-generated {
    transition: none;
}

/* Pill disciplines */
.pill-dev {
    background: #EFF6FF;
    color: #3B82F6;
    border: 1.5px solid #BFDBFE;
    box-shadow: 0 2px 12px rgba(59, 130, 246, 0.15);
}

.pill-design {
    background: #FAF5FF;
    color: #A855F7;
    border: 1.5px solid #E9D5FF;
    box-shadow: 0 2px 12px rgba(168, 85, 247, 0.15);
}

.pill-strategy {
    background: #FFFBEB;
    color: #F59E0B;
    border: 1.5px solid #FED7AA;
    box-shadow: 0 2px 12px rgba(245, 158, 11, 0.15);
}

/* Hero Content */
.hero-content {
    text-align: center;
    z-index: 50;
    position: relative;
    max-width: 900px;
    padding: 0 2rem;
    pointer-events: none;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #0A2E4D;
}

.title-line {
    display: block;
    opacity: 0;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #5A7184;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
}

.hero-cta {
    display: inline-block;
    background: #FFE3B3;
    color: #8B6914;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: auto;
}

.hero-cta:hover {
    background: #FFD899;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 199, 95, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav {
        padding: 1.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .hero-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .discipline-bubble {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
    
    .pill {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
}