/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #6366f1;
    --primary-purple-light: #8b5cf6;
    --primary-purple-dark: #4f46e5;
    --primary-purple-glow: rgba(99, 102, 241, 0.15);
    --background: #0a0a0a;
    --background-elevated: #111111;
    --text-primary: #ffffff;
    --text-secondary: #e4e4e7;
    --text-light: #a1a1aa;
    --border: #27272a;

    
    /* Enhanced spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    
    /* Enhanced shadows */
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);

    --shadow-purple-glow: 0 0 20px rgba(99, 102, 241, 0.3);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
    /* Enhanced text rendering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    /* Enhanced scroll behavior */
    scroll-behavior: smooth;
    opacity: 0;
    transition: opacity 0.5s ease-out;
    /* Mobile viewport fix */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body.loaded {
    opacity: 1;
}

/* Container and layout */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: var(--space-xl);
    position: relative;
    z-index: 2;
}

/* Hero section */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-2xl) 0;
    position: relative;
}

.hero-content {
    max-width: 800px;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

/* Logo */
.logo {
    margin-bottom: var(--space-xl);
}

.logo-text {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.logo-text:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px var(--primary-purple-glow));
}

/* Tagline */
.tagline {
    font-size: clamp(1.25rem, 3.5vw, 1.75rem);
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.4;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.6s forwards;
    /* Enhanced mobile readability */
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}





/* Launch Section */
.launch-section {
    margin: var(--space-xl) 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1.2s ease-out 0.6s forwards;
}

.highlight {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-purple), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.highlight:hover::after {
    opacity: 1;
}

/* Coming soon section */
.coming-soon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: var(--background-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.coming-soon:hover {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-purple-glow);
    transform: translateY(-1px);
}

.coming-soon-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-purple);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-purple-glow);
    /* Start with no animation, will be added via JavaScript */
    opacity: 0.8;
    transform: scale(1);
}

/* Footer */
.footer {
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.footer-content {
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.3s forwards;
}



.cta {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

/* Enhanced email link with better visibility and interaction */
.email-link {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: var(--space-sm) var(--space-md);
    border-radius: 8px;
    background: transparent;
    /* Enhanced touch target */
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* Enhanced text rendering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Enhanced accessibility */
    text-decoration-skip-ink: auto;
    text-underline-offset: 2px;
}

.email-link:hover {
    color: var(--primary-purple-light);
    background: var(--primary-purple-glow);
    transform: translateY(-2px);
    box-shadow: var(--shadow-purple-glow);
}

.email-link:focus {
    outline: 2px solid var(--primary-purple);
    outline-offset: 2px;
    background: var(--primary-purple-glow);
}

.email-link:active {
    transform: translateY(0);
    background: var(--primary-purple-glow);
}

.email-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-purple);
    transition: width 0.3s ease;
}

.email-link:hover::after {
    width: 100%;
}

/* Enhanced background shapes with better visibility */
.background-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    will-change: transform;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple-glow), transparent);
    opacity: 0.4;
    animation: float 25s ease-in-out infinite;
    filter: blur(1px);
    box-shadow: 0 0 30px var(--primary-purple-glow);
    will-change: transform;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: 5%;
    right: -200px;
    animation-delay: 0s;
    background: linear-gradient(135deg, var(--primary-purple-glow), var(--primary-purple-light), transparent);
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: 15%;
    left: -150px;
    animation-delay: -8s;
    background: linear-gradient(135deg, var(--primary-purple-light), var(--primary-purple-glow), transparent);
}

.shape-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    right: 5%;
    animation-delay: -16s;
    background: linear-gradient(135deg, transparent, var(--primary-purple-glow), var(--primary-purple));
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
        box-shadow: 0 0 10px var(--primary-purple-glow);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
        box-shadow: 0 0 12px var(--primary-purple-glow);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-40px) rotate(90deg) scale(1.05);
    }
    50% {
        transform: translateY(-20px) rotate(180deg) scale(0.95);
    }
    75% {
        transform: translateY(-30px) rotate(270deg) scale(1.02);
    }
}



/* Focus states for accessibility */
*:focus {
    outline: 2px solid var(--primary-purple);
    outline-offset: 2px;
}

/* Selection styling */
::selection {
    background: var(--primary-purple-glow);
    color: var(--text-primary);
}

/* Enhanced focus styles for better accessibility */
:focus-visible {
    outline: 2px solid var(--primary-purple);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Mobile-first responsive design */
@media (max-width: 768px) {
    .hero {
        padding: 1.25rem;
        min-height: calc(100vh - 120px);
        /* Enhanced mobile layout */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        padding: 0 0.75rem;
        max-width: 100%;
        /* Enhanced mobile spacing */
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-xl);
    }
    
    .footer {
        padding: 2rem 1.25rem;
        /* Enhanced mobile footer */
        border-top: 1px solid var(--border);
        background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.02));
    }
    
    .email-link {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        /* Optimized mobile touch target */
        min-height: 48px;
        border-radius: 14px;
        /* Enhanced mobile visual feedback */
        background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-light));
        color: white;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
        transition: all 0.2s ease;
    }
    
    .email-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    }
    
    .email-link:active {
        transform: translateY(0);
        box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
    }
    
    .logo-text {
        /* Enhanced mobile logo */
        font-size: clamp(3rem, 8vw, 4.5rem);
        margin-bottom: var(--space-lg);
        /* Enhanced mobile animation */
        animation: fadeInUp 0.8s ease-out 0.2s forwards;
    }
    
    .tagline {
        /* Enhanced mobile tagline */
        font-size: clamp(1.1rem, 4vw, 1.4rem);
        line-height: 1.5;
        margin-bottom: var(--space-xl);
        text-align: center;
        max-width: 500px;
        /* Enhanced mobile readability */
        font-weight: 400;
        color: var(--text-primary);
    }
    
    .coming-soon {
        /* Enhanced mobile coming soon */
        padding: 1rem 1.5rem;
        border-radius: 16px;
        background: rgba(99, 102, 241, 0.05);
        border: 1px solid rgba(99, 102, 241, 0.2);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .coming-soon-text {
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-primary);
    }
    
    .pulse-dot {
        width: 10px;
        height: 10px;
        background: var(--primary-purple);
        box-shadow: 0 0 15px var(--primary-purple-glow);
    }
    
    /* Enhanced mobile shapes */
    .shape-1 {
        width: 180px;
        height: 180px;
        right: -90px;
        opacity: 0.6;
    }
    
    .shape-2 {
        width: 120px;
        height: 120px;
        left: -60px;
        opacity: 0.4;
    }
    
    .shape-3 {
        width: 80px;
        height: 80px;
        opacity: 0.3;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1rem;
        min-height: calc(100vh - 100px);
        /* Enhanced small mobile layout */
        justify-content: center;
    }
    
    .hero-content {
        padding: 0 0.5rem;
        gap: var(--space-md);
        /* Optimized small mobile spacing */
        flex: 1;
        justify-content: center;
    }
    
    .logo-text {
        /* Enhanced small mobile logo */
        font-size: clamp(2.75rem, 12vw, 3.75rem);
        margin-bottom: var(--space-md);
        /* Enhanced small mobile animation */
        animation: fadeInUp 0.6s ease-out 0.1s forwards;
    }
    
    .tagline {
        /* Optimized small mobile tagline */
        font-size: clamp(1rem, 5vw, 1.2rem);
        line-height: 1.6;
        margin-bottom: var(--space-md);
        text-align: center;
        max-width: 400px;
        /* Enhanced small mobile readability */
        font-weight: 400;
        color: var(--text-primary);
    }
    
    .coming-soon {
        /* Optimized small mobile coming soon */
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
        border-radius: 12px;
        background: rgba(99, 102, 241, 0.08);
        border: 1px solid rgba(99, 102, 241, 0.25);
        backdrop-filter: blur(8px);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
        margin-bottom: var(--space-sm);
    }
    
    .coming-soon-text {
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--text-primary);
    }
    
    .pulse-dot {
        width: 12px;
        height: 12px;
        background: var(--primary-purple);
        box-shadow: 0 0 12px var(--primary-purple-glow);
    }
    
    .email-link {
        /* Optimized small mobile touch target */
        padding: 0.875rem 2rem;
        font-size: 1rem;
        min-height: 48px;
        border-radius: 12px;
        /* Enhanced small mobile visual feedback */
        background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-light));
        color: white;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
        transition: all 0.15s ease;
        /* Enhanced small mobile positioning */
        position: relative;
        z-index: 10;
    }
    
    .email-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
    }
    
    .email-link:active {
        transform: translateY(0);
        box-shadow: 0 2px 8px rgba(99, 102, 241, 0.25);
    }
    
    .footer {
        padding: 1.25rem 1rem;
        /* Optimized small mobile footer */
        background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.03));
    }
    
    .cta {
        font-size: 1rem;
        line-height: 1.6;
        color: var(--text-secondary);
        text-align: center;
    }
    
    /* Enhanced small mobile shapes - keep them for visual interest */
    .shape {
        opacity: 0.2;
        filter: blur(1px);
    }
    
    .shape-1 {
        width: 120px;
        height: 120px;
        right: -60px;
    }
    
    .shape-2 {
        width: 80px;
        height: 80px;
        left: -40px;
    }
    
    .shape-3 {
        width: 60px;
        height: 60px;
    }
}

/* Extra small screens (iPhone SE, etc.) */
@media (max-width: 375px) {
    .hero {
        padding: 0.75rem;
        min-height: calc(100vh - 80px);
        /* Enhanced extra small mobile layout */
        justify-content: center;
    }
    
    .hero-content {
        padding: 0 0.25rem;
        gap: var(--space-md);
        /* Enhanced extra small mobile spacing */
        flex: 1;
        justify-content: center;
        align-items: center;
    }
    
    .logo-text {
        /* Enhanced extra small mobile logo */
        font-size: clamp(2.5rem, 14vw, 3.5rem);
        margin-bottom: var(--space-sm);
        /* Enhanced extra small mobile animation */
        animation: fadeInUp 0.5s ease-out 0.1s forwards;
    }
    
    .tagline {
        /* Enhanced extra small mobile tagline */
        font-size: clamp(0.9rem, 5.5vw, 1.1rem);
        line-height: 1.5;
        margin-bottom: var(--space-md);
        text-align: center;
        max-width: 350px;
        /* Enhanced extra small mobile readability */
        font-weight: 400;
        color: var(--text-primary);
    }
    
    .coming-soon {
        /* Enhanced extra small mobile coming soon */
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
        border-radius: 12px;
        background: rgba(99, 102, 241, 0.1);
        border: 1px solid rgba(99, 102, 241, 0.3);
        backdrop-filter: blur(6px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        margin-bottom: var(--space-sm);
    }
    
    .coming-soon-text {
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--text-primary);
    }
    
    .pulse-dot {
        width: 10px;
        height: 10px;
        background: var(--primary-purple);
        box-shadow: 0 0 10px var(--primary-purple-glow);
    }
    
    .email-link {
        /* Optimized extra small mobile touch target */
        padding: 0.75rem 1.75rem;
        font-size: 0.95rem;
        min-height: 44px;
        border-radius: 10px;
        /* Enhanced extra small mobile visual feedback */
        background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-light));
        color: white;
        font-weight: 600;
        box-shadow: 0 3px 10px rgba(99, 102, 241, 0.25);
        transition: all 0.15s ease;
        /* Enhanced extra small mobile positioning */
        position: relative;
        z-index: 10;
    }
    
    .email-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(99, 102, 241, 0.4);
    }
    
    .email-link:active {
        transform: translateY(0);
        box-shadow: 0 2px 8px rgba(99, 102, 241, 0.25);
    }
    
    .footer {
        padding: 1.25rem 0.75rem;
        /* Enhanced extra small mobile footer */
        background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.02));
    }
    
    .cta {
        font-size: 0.9rem;
        line-height: 1.5;
        color: var(--text-secondary);
        text-align: center;
    }
    
    /* Enhanced extra small mobile shapes */
    .shape {
        opacity: 0.15;
        filter: blur(1.5px);
    }
    
    .shape-1 {
        width: 100px;
        height: 100px;
        right: -50px;
    }
    
    .shape-2 {
        width: 60px;
        height: 60px;
        left: -30px;
    }
    
    .shape-3 {
        width: 40px;
        height: 40px;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: calc(100vh - 80px);
        padding: 1rem 1.5rem;
        /* Enhanced landscape layout */
        justify-content: center;
    }
    
    .hero-content {
        /* Enhanced landscape spacing */
        gap: var(--space-lg);
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        max-width: 900px;
    }
    
    .logo-text {
        /* Enhanced landscape logo */
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        margin-bottom: 0;
        margin-right: var(--space-lg);
    }
    
    .tagline {
        /* Enhanced landscape tagline */
        font-size: clamp(1rem, 4vw, 1.3rem);
        margin-bottom: 0;
        text-align: left;
        max-width: 400px;
        flex: 1;
        min-width: 300px;
    }
    
    .launch-section {
        /* Enhanced landscape launch section */
        margin: 0;
        flex-basis: 100%;
        text-align: center;
    }
    
    .coming-soon {
        /* Enhanced landscape coming soon */
        display: inline-flex;
        margin-bottom: var(--space-md);
        padding: 0.75rem 1.25rem;
        border-radius: 14px;
        background: rgba(99, 102, 241, 0.08);
        border: 1px solid rgba(99, 102, 241, 0.25);
    }
    
    .email-link {
        /* Optimized landscape email link */
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
        min-height: 44px;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-light));
        color: white;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    }
    
    .footer {
        /* Enhanced landscape footer */
        padding: 1rem 1.5rem;
        background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.02));
    }
    
    .cta {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Enhanced landscape shapes */
    .shape {
        opacity: 0.3;
    }
    
    .shape-1 {
        width: 150px;
        height: 150px;
        right: -75px;
    }
    
    .shape-2 {
        width: 100px;
        height: 100px;
        left: -50px;
    }
    
    .shape-3 {
        width: 70px;
        height: 70px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --text-primary: #f9fafb;
        --text-secondary: #d1d5db;
        --text-light: #9ca3af;
        --background: #111827;
        --background-alt: #1f2937;
        --border: #374151;

    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Mobile-specific styles */
.mobile .email-link {
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    position: relative;
    z-index: 10;
    /* Enhanced mobile button */
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.touch-device .email-link:hover {
    transform: none;
}

.touch-device .logo-text:hover {
    transform: none;
}

/* Enhanced mobile animations */
.mobile .hero-content > * {
    will-change: opacity, transform;
}

.mobile .coming-soon {
    will-change: transform, box-shadow;
}

.mobile .email-link {
    will-change: transform, box-shadow, background;
}

/* Enhanced mobile performance */
.mobile .shape {
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Enhanced mobile accessibility */
.mobile .email-link:focus {
    outline: 2px solid var(--primary-purple);
    outline-offset: 2px;
    border-radius: 16px;
}

/* Enhanced mobile touch feedback */
.mobile .email-link:active {
    transform: scale(0.98) !important;
    transition: transform 0.1s ease !important;
}

.mobile .coming-soon:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

/* Enhanced mobile performance optimizations */
.mobile * {
    -webkit-tap-highlight-color: transparent;
}

.mobile .email-link,
.mobile .coming-soon {
    -webkit-tap-highlight-color: rgba(99, 102, 241, 0.1);
}

/* Optimized mobile touch targets */
.mobile .email-link {
    min-height: 44px; /* Apple's recommended minimum */
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile .coming-soon {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Enhanced mobile text selection */
.mobile .tagline,
.mobile .cta {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Enhanced mobile button states */
.mobile .email-link:focus-visible {
    outline: 2px solid var(--primary-purple);
    outline-offset: 2px;
    border-radius: 12px;
}

/* Enhanced mobile loading states */
.mobile .hero-content {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

/* Enhanced mobile smooth scrolling */
.mobile {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Page visibility states */
.page-hidden {
    /* Pause animations when page is hidden */
    animation-play-state: paused;
}

 