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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #F8FAFB;
    color: #0A2E4D;
    overflow-x: hidden;
}

/* 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;
}

.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 {
    width: 100%;
    min-height: 100vh;
    position: relative;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(180deg, #F8FAFB 0%, rgba(248, 250, 251, 0) 100%);
}

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

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

.nav-link {
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: #0A2E4D;
    border: 1.5px solid #E1E8ED;
    border-radius: 50px;
    background: white;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

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

.nav-cta {
    background: #1A3D3D;
    color: white;
    border-color: #1A3D3D;
}

.nav-cta:hover {
    background: #0F2929;
}

/* Hero Section */
.hero {
    height: 90svh;
    max-height: 90svh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
    overflow: visible;
}

/* Animated Cursors */
.cursor {
    position: absolute;
    pointer-events: none;
    z-index: 10;
    opacity: 0; /* Start hidden */
    transition: transform 0.3s ease;
}

.cursor svg {
    width: 20px;
    height: 20px;
    transform: rotate(-45deg);
}

.cursor-label {
    position: absolute;
    top: -8px;
    left: 24px;
    background: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

/* Creative Director - Gold/Amber */
.cursor-adam {
    color: #F59E0B;
}
.cursor-adam .cursor-label {
    background: #FEF3C7;
    color: #92400E;
}

/* Development Team - Blue */
.cursor-mike,
.cursor-mosaad,
.cursor-garry,
.cursor-faahim {
    color: #3B82F6;
}
.cursor-mike .cursor-label,
.cursor-mosaad .cursor-label,
.cursor-garry .cursor-label,
.cursor-faahim .cursor-label {
    background: #DBEAFE;
    color: #1E40AF;
}

/* Project Management - Red/Coral */
.cursor-sarah {
    color: #EF4444;
}
.cursor-sarah .cursor-label {
    background: #FEE2E2;
    color: #991B1B;
}

/* Design Team - Purple */
.cursor-chloe {
    color: #A855F7;
}
.cursor-chloe .cursor-label {
    background: #F3E8FF;
    color: #6B21A8;
}

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

.pill {
    position: absolute;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: auto;
    opacity: 1;
    transform: scale(1);
}

/* Generated pills */
.pill-generated {
    pointer-events: auto !important;
    z-index: 45 !important;
    position: absolute !important;
    display: block !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 50px !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.pill-generated.pill-dev {
    background: #EFF6FF !important;
    color: #1E40AF !important;
    border: 1.5px solid #BFDBFE !important;
    box-shadow: 0 2px 12px rgba(59, 130, 246, 0.15) !important;
}

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

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

.pill:hover {
    transform: scale(1.08) translateY(-4px);
    z-index: 20;
}

/* Development Pills - Blue Theme */
.pill-dev {
    background: #EFF6FF;
    color: #1E40AF;
    border: 1.5px solid #BFDBFE;
    box-shadow: 0 2px 12px rgba(59, 130, 246, 0.15);
}

.pill-dev:hover {
    background: #DBEAFE;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.25);
}

/* Design Pills - Purple Theme */
.pill-design {
    background: #FAF5FF;
    color: #6B21A8;
    border: 1.5px solid #E9D5FF;
    box-shadow: 0 2px 12px rgba(168, 85, 247, 0.15);
}

.pill-design:hover {
    background: #F3E8FF;
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.25);
}

/* Strategy Pills - Amber Theme */
.pill-strategy {
    background: #FFFBEB;
    color: #92400E;
    border: 1.5px solid #FED7AA;
    box-shadow: 0 2px 12px rgba(245, 158, 11, 0.15);
}

.pill-strategy:hover {
    background: #FEF3C7;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.25);
}

/* Hero Content */
.hero-content {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 50;
}

/* Generated Stickers */
.generated-sticker {
    z-index: 60 !important;
    position: absolute !important;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #0A2E4D;
    position: relative;
    overflow: hidden;
}

.title-line {
    display: block;
    position: relative;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #5A7184;
    margin-bottom: 2.5rem;
}

.hero-cta {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    background: #FFE3B3;
    color: #8B6914;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Text Transition Classes */
.title-transitioning .title-line {
    position: relative;
}

.title-word-exit {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Content Blocks */
.content-block {
    padding: 5rem 2rem;
    background: white;
    border-top: 1px solid #E1E8ED;
}

.content-block-alt {
    background: #F8FAFB;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.content-block h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #0A2E4D;
    margin-bottom: 1.5rem;
    text-align: center;
}

.content-block p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #5A7184;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    background: #F8FAFB;
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.content-block-alt .feature {
    background: white;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature h3 {
    font-size: 1.25rem;
    color: #0A2E4D;
    margin-bottom: 1rem;
}

.feature p {
    font-size: 1rem;
    margin: 0;
    text-align: left;
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #1A3D3D;
    color: white;
}

.btn-primary:hover {
    background: #0F2929;
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: #0A2E4D;
    border: 2px solid #E1E8ED;
}

.btn-secondary:hover {
    background: #F8FAFB;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        padding: 1.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .cursor {
        display: none;
    }
    
    .pill {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}