/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark Theme Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-hover: rgba(255, 255, 255, 0.08);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-tertiary: rgba(255, 255, 255, 0.6);
    
    /* Accent Colors */
    --accent-primary: #0EA5E9; /* Bright cyan from logo */
    --accent-secondary: #1D4ED8; /* Deep blue from logo */
    --accent-tertiary: #06D6A0; /* Teal from logo */
    --accent-glow: rgba(14, 165, 233, 0.3);
    
    /* Shadows and Effects */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px var(--accent-glow);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    --font-size-7xl: 4.5rem;
    --font-size-8xl: 5rem;
}

body {
    font-family: var(--font-family);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: #000000;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 2rem; /* Reduced padding to ensure height control */
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 118px !important; /* Force exact height - your logo is 98px visible */
    box-sizing: border-box; /* Ensure padding doesn't add to height */
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    width: 32px;
    height: 32px;
}

.logo-large {
    width: 180px;
    height: 180px; /* Keep original logo size */
    /* CROPPING CONTROLS - Adjust these numbers: */
    clip-path: inset(
        44px  /* TOP crop: REDUCED to show more logo content from top */
        0px   /* RIGHT crop: usually keep at 0 */
        30px  /* BOTTOM crop: REDUCED to show more of logo bottom */
        0px   /* LEFT crop: usually keep at 0 */
    );
    /* FINE-TUNE POSITIONING: */
    transform: translateY(-2px); /* Move logo UP by 2px to reduce top spacing */
    /* The visible height will be: 180px - top crop - bottom crop */
    /* Current visible height: 180 - 44 - 20 = 116px */
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.cta-button {
    background: linear-gradient(135deg, #1D4ED8 0%, #0EA5E9 50%, #06D6A0 100%) !important;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.25);
}

.cta-button:hover {
    background: linear-gradient(135deg, #1E40AF 0%, #0284C7 50%, #047857 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(29, 78, 216, 0.4), 0 4px 12px rgba(6, 182, 212, 0.3);
}

/* Hero Section - Clean & Professional */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(16, 185, 129, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

/* Floating geometric shapes - REMOVED */

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: var(--font-size-6xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #1D4ED8 0%, #0EA5E9 50%, #06D6A0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: #0EA5E9;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-tertiary);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.primary-button {
    background: linear-gradient(135deg, #1D4ED8 0%, #0EA5E9 50%, #06D6A0 100%);
    color: white;
    padding: 1.25rem 2.2rem; /* 10% wider (2rem * 1.1 = 2.2rem) */
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem; /* Slightly bigger text */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(29, 78, 216, 0.25), 0 5px 15px rgba(6, 182, 212, 0.15);
    position: relative;
    overflow: hidden;
}

.primary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.primary-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 40px rgba(29, 78, 216, 0.4), 0 15px 30px rgba(6, 182, 212, 0.3), 0 25px 50px rgba(0, 0, 0, 0.6);
    border-radius: 16px;
}

.primary-button:hover::before {
    left: 100%;
}

.button-subtitle {
    font-size: var(--font-size-sm); /* Bigger subtitle (was xs, now sm) */
    opacity: 0.9;
}

.secondary-button {
    background: var(--glass-bg);
    color: var(--text-primary);
    padding: 1.25rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: var(--glass-hover);
    transform: translateY(-2px);
}

/* Demo Visual */
.demo-container {
    position: relative;
    padding: 2rem;
}

.app-window {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    min-height: 380px; /* Match text content height, not buttons */
}

.window-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
    position: relative; /* For absolute positioning of app indicator */
    justify-content: center; /* Center the title */
}

.app-context-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    position: absolute;
    left: 1rem; /* Position on the left side */
}

/* App-specific theme styling */
.app-window.theme-gmail .app-context-indicator {
    background: rgba(234, 67, 53, 0.15);
    border-color: rgba(234, 67, 53, 0.3);
    color: #ea4335;
}

.app-window.theme-gmail .window-header {
    border-bottom-color: rgba(234, 67, 53, 0.2);
}

.app-window.theme-whatsapp .app-context-indicator {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.3);
    color: #25d366;
}

.app-window.theme-whatsapp .window-header {
    border-bottom-color: rgba(37, 211, 102, 0.2);
}

.app-window.theme-word .app-context-indicator {
    background: rgba(43, 87, 154, 0.15);
    border-color: rgba(43, 87, 154, 0.3);
    color: #2b579a;
}

.app-window.theme-word .window-header {
    border-bottom-color: rgba(43, 87, 154, 0.2);
}

.app-window.theme-slack .app-context-indicator {
    background: rgba(74, 21, 75, 0.15);
    border-color: rgba(74, 21, 75, 0.3);
    color: #4a154b;
}

.app-window.theme-slack .window-header {
    border-bottom-color: rgba(74, 21, 75, 0.2);
}

.app-window.theme-chatgpt .app-context-indicator {
    background: rgba(16, 163, 127, 0.15);
    border-color: rgba(16, 163, 127, 0.3);
    color: #10a37f;
}

.app-window.theme-chatgpt .window-header {
    border-bottom-color: rgba(16, 163, 127, 0.2);
}

.app-window.theme-figma .app-context-indicator {
    background: rgba(242, 78, 30, 0.15);
    border-color: rgba(242, 78, 30, 0.3);
    color: #f24e1e;
}

.app-window.theme-figma .window-header {
    border-bottom-color: rgba(242, 78, 30, 0.2);
}

.app-window.theme-asana .app-context-indicator {
    background: rgba(252, 104, 100, 0.15);
    border-color: rgba(252, 104, 100, 0.3);
    color: #fc6864;
}

.app-window.theme-asana .window-header {
    border-bottom-color: rgba(252, 104, 100, 0.2);
}

.app-window.theme-notion .app-context-indicator {
    background: rgba(55, 53, 47, 0.15);
    border-color: rgba(55, 53, 47, 0.3);
    color: #37352f;
}

.app-window.theme-notion .window-header {
    border-bottom-color: rgba(55, 53, 47, 0.2);
}

.app-window.theme-discord .app-context-indicator {
    background: rgba(88, 101, 242, 0.15);
    border-color: rgba(88, 101, 242, 0.3);
    color: #5865f2;
}

.app-window.theme-discord .window-header {
    border-bottom-color: rgba(88, 101, 242, 0.2);
}

.app-window.theme-linkedin .app-context-indicator {
    background: rgba(40, 103, 178, 0.15);
    border-color: rgba(40, 103, 178, 0.3);
    color: #2867b2;
}

.app-window.theme-linkedin .window-header {
    border-bottom-color: rgba(40, 103, 178, 0.2);
}

.app-window.theme-googledocs .app-context-indicator {
    background: rgba(66, 133, 244, 0.15);
    border-color: rgba(66, 133, 244, 0.3);
    color: #4285f4;
}

.app-window.theme-googledocs .window-header {
    border-bottom-color: rgba(66, 133, 244, 0.2);
}

.app-icon {
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.app-icon svg {
    width: 16px;
    height: 16px;
    color: inherit;
}

.app-name {
    font-weight: 500;
    color: var(--text-primary);
}

.window-controls {
    display: flex;
    gap: 0.5rem;
    position: absolute;
    right: 1rem; /* Position on the right side */
}

.control {
    width: 14px;
    height: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.control:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.control.close::after {
    content: '×';
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
    font-weight: bold;
}

.control.minimize::after {
    content: '−';
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
    font-weight: bold;
}

.control.maximize::after {
    content: '□';
    color: rgba(255, 255, 255, 0.7);
    font-size: 8px;
    font-weight: bold;
}

.window-title {
    font-weight: 600;
    color: var(--text-secondary);
}

.window-content {
    padding: 2rem;
    text-align: center;
    position: relative; /* For demo mouse positioning */
}

.microphone-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mic-icon {
    width: 60px;
    height: 60px;
    background: #6b7280; /* Start with gray idle state */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    box-shadow: 0 0 10px rgba(107, 114, 128, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.mic-icon.listening {
    background: #ef4444;
    animation: redPulse 0.8s infinite;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}

.mic-icon.listening::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid #ef4444;
    border-radius: 50%;
    opacity: 0;
    animation: redRipple 0.8s infinite;
}

.mic-icon.ready {
    background: var(--accent-tertiary) !important; /* Teal when ready - force override */
    animation: none !important;
    box-shadow: 0 0 20px rgba(6, 214, 160, 0.4) !important;
}

/* Removed - now handled by .listening state */

.mic-icon.ready::before {
    border-color: var(--accent-primary);
    animation: none;
    opacity: 0;
}

.listening-text {
    color: #6b7280; /* Start with gray to match idle mic */
    font-weight: 600;
    transition: color 0.3s ease;
    opacity: 1;
}

.listening-text.listening {
    color: #ef4444;
}

.listening-text.ready {
    color: var(--accent-tertiary);
}

.transcription-demo {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 1.5rem;
    font-style: italic;
    color: var(--text-secondary);
}

/* Essential animations only */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* float-shape animation removed */

/* Gentle, professional animations */
@keyframes gentleFadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* gradientShift animation removed */

@keyframes redPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
    }
    50% {
        transform: scale(1.15);
        box-shadow: 0 0 30px rgba(239, 68, 68, 0.8);
    }
}

@keyframes redRipple {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        transform: scale(2);
    }
}

/* advancedPulse animation removed */

@keyframes ripple {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        transform: scale(2);
    }
}

@keyframes magneticHover {
    0% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(-2deg); }
    50% { transform: scale(1.05) rotate(2deg); }
    75% { transform: scale(1.1) rotate(-1deg); }
    100% { transform: scale(1) rotate(0deg); }
}

@keyframes glowPulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(14, 165, 233, 0.3);
        filter: brightness(1);
    }
    50% { 
        box-shadow: 0 0 40px rgba(14, 165, 233, 0.8);
        filter: brightness(1.2);
    }
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(16, 185, 129, 0.5); }
    50% { text-shadow: 0 0 20px rgba(16, 185, 129, 0.8); }
}

/* Section Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.how-it-works-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.section-subtitle {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4rem;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.step {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-color);
    transition: all 0.3s ease;
}

.step:hover .step-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary));
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.step-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.universal-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3rem;
    text-align: center;
}

.smart-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.smart-feature {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.smart-feature:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-color);
    transition: all 0.3s ease;
}

.smart-feature:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary));
}

.feature-text h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.feature-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Features Section */
.features {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.1);
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.feature-card:hover .feature-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary));
}

.feature-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Accessibility Section */
.accessibility {
    background: var(--bg-primary);
    position: relative;
}

.accessibility::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(14, 165, 233, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.accessibility-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.accessibility-header {
    text-align: center;
    margin-bottom: 4rem;
}

.accessibility-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.accessibility-text h2 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.large-text {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.accessibility-benefits {
    margin-bottom: 2.5rem;
}

.benefit {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.benefit:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.benefit:hover .benefit-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary));
}

.benefit-text h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-text p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.testimonial {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
    font-style: italic;
    color: var(--text-secondary);
    position: relative;
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    color: var(--accent-primary);
    font-style: normal;
    font-weight: 600;
}

.accessibility-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.inclusion-graphic {
    position: relative;
    width: 300px;
    height: 300px;
}

.user-avatar {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    border: 2px solid var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    animation: float 3s ease-in-out infinite;
}

.user-avatar:nth-child(1) { top: 20px; left: 60px; animation-delay: 0s; }
.user-avatar:nth-child(2) { top: 60px; right: 20px; animation-delay: 0.5s; }
.user-avatar:nth-child(3) { bottom: 60px; right: 60px; animation-delay: 1s; }
.user-avatar:nth-child(4) { bottom: 20px; left: 20px; animation-delay: 1.5s; }

.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: var(--shadow-glow);
}

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

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 2px solid var(--accent-primary);
    background: rgba(14, 165, 233, 0.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.pricing-card h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: 1rem;
}

.price {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 2rem;
}

.price span {
    font-size: var(--font-size-lg);
    color: var(--text-tertiary);
    font-weight: 400;
}

.features-list {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.features-list li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 2rem;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 600;
}

.pricing-button {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.pricing-button.primary {
    background: var(--accent-primary);
    color: white;
}

.pricing-button.primary:hover {
    background: var(--accent-secondary);
    transform: translateY(-2px);
}

.pricing-button.secondary {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.pricing-button.secondary:hover {
    background: var(--glass-hover);
}

/* Waitlist Section */
.waitlist {
    background: var(--bg-primary);
    text-align: center;
    position: relative;
}

.waitlist::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 30%, rgba(14, 165, 233, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.waitlist-content h2 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1D4ED8 0%, #0EA5E9 50%, #06D6A0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.waitlist-content p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.waitlist-form-container {
    margin-bottom: 3rem;
}

.waitlist-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 1rem;
    align-items: stretch;
    margin-bottom: 1rem;
}

.form-group input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: var(--font-size-base);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.form-group input[type="email"]:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-group input[type="email"]::placeholder {
    color: var(--text-tertiary);
}

.waitlist-button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #1D4ED8 0%, #0EA5E9 50%, #06D6A0 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: var(--font-size-base);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.waitlist-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(29, 78, 216, 0.4);
}

.form-note {
    color: var(--text-tertiary);
    font-size: var(--font-size-sm);
    margin-top: 0.5rem;
}

.launch-timeline {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.launch-timeline h4 {
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.launch-timeline ul {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
}

.launch-timeline li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.launch-timeline li:last-child {
    border-bottom: none;
}

.system-requirements ul {
    list-style: none;
    text-align: left;
}

.system-requirements li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 2rem;
}

.system-requirements li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 60px 0 40px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 24px;
    height: 24px;
}

.footer-logo span {
    font-weight: 600;
    color: var(--text-primary);
}

.footer-brand p {
    color: var(--text-tertiary);
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-section a {
    display: block;
    color: var(--text-tertiary);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--text-secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    color: var(--text-tertiary);
    font-size: var(--font-size-sm);
}

/* Responsive Design */

/* Medium-Large Screens */
@media (min-width: 1200px) and (max-width: 1439px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .steps-container {
        gap: 3rem;
    }
    
    .smart-features {
        gap: 3rem;
    }
}

/* Large Screens - Better scaling for big displays */
@media (min-width: 1440px) {
    .container, .nav-container {
        max-width: 1400px;
    }
    
    .hero-container {
        max-width: 1400px;
        gap: 6rem;
    }
    
    .hero-title {
        font-size: var(--font-size-7xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-2xl);
    }
    
    .section-title {
        font-size: 4rem;
    }
    
    .how-it-works-content {
        max-width: 1200px;
    }
    
    /* Larger demo window on big screens */
    .app-window {
        min-height: 450px;
    }
    
    .demo-container {
        padding: 3rem;
    }
    
    .steps-container {
        gap: 4rem;
    }
    
    .smart-features {
        max-width: 1200px;
        gap: 4rem;
    }
    
    .feature-icon {
        width: 100px;
        height: 100px;
    }
    
    .feature-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .step-icon {
        width: 100px;
        height: 100px;
    }
    
    .step-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .features-grid {
        max-width: 1400px;
        gap: 2.5rem;
    }
    
    .feature-card {
        padding: 2.5rem;
    }
    
    .feature-card h3 {
        font-size: var(--font-size-xl);
    }
    
    section {
        padding: 120px 0;
    }
}

@media (min-width: 1920px) {
    .container, .nav-container {
        max-width: 1600px;
    }
    
    .hero-container {
        max-width: 1600px;
        gap: 8rem;
    }
    
    .hero-title {
        font-size: var(--font-size-8xl);
    }
    
    .section-title {
        font-size: var(--font-size-7xl);
    }
    
    .how-it-works-content {
        max-width: 1400px;
    }
    
    /* Extra large demo window for ultra-wide screens */
    .app-window {
        min-height: 520px;
    }
    
    .demo-container {
        padding: 4rem;
    }
    
    .steps-container {
        gap: 5rem;
    }
    
    .smart-features {
        max-width: 1400px;
        gap: 5rem;
    }
    
    .features-grid {
        max-width: 1600px;
        gap: 3rem;
    }
    
    .feature-card {
        padding: 3rem;
    }
    
    .feature-card h3 {
        font-size: var(--font-size-2xl);
    }
    
    .feature-card p {
        font-size: var(--font-size-lg);
    }
    
    section {
        padding: 150px 0;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 0.25rem; /* Even less left padding */
        transform: scale(0.8); /* Scale entire navbar down by 20% on mobile */
        transform-origin: left center; /* Scale from left instead of center */
        justify-content: flex-start; /* Move everything to the left */
        margin-left: -0.5rem; /* Pull everything further left */
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: var(--font-size-4xl);
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    /* Mobile Demo Window Optimizations */
    .demo-container {
        padding: 1rem;
        display: flex;
        justify-content: center;
    }
    
    .app-window {
        min-height: 420px; /* Even taller to ensure all text shows */
        max-height: 480px;
        margin: 0 auto;
        max-width: 100%;
        width: 90%;
    }
    
    .window-header {
        padding: 0.75rem 0.5rem; /* Less horizontal padding on mobile */
        flex-direction: column; /* Stack elements vertically on mobile */
        gap: 0.5rem;
        align-items: center;
    }
    
    .window-controls {
        position: absolute;
        top: 0.75rem;
        right: 0.5rem;
    }
    
    .window-title {
        order: 1; /* Talkativ first */
        margin: 0;
    }
    
    .app-context-indicator {
        order: 2; /* App name below Talkativ */
        font-size: 0.8rem;
        padding: 0.25rem 0.75rem;
        position: static;
        margin: 0;
        max-width: none; /* No width restriction needed */
        text-align: center;
    }
    

    
    .window-content {
        padding: 1.5rem 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .microphone-indicator {
        width: 120px;
        height: 120px;
    }
    
    .mic-icon {
        width: 32px;
        height: 32px;
    }
    
    .listening-text {
        font-size: 1rem;
        margin-top: 1rem;
    }
    
    .transcription-demo {
        margin-top: 1.5rem;
        padding: 1rem;
        font-size: 0.9rem;
        line-height: 1.4;
        min-height: 120px; /* Ensure enough space for longer text */
        display: flex;
        align-items: center;
    }
    
    .accessibility-benefits {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .waitlist-button {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-lg);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Extra small mobile optimizations */
    .demo-container {
        padding: 0.5rem;
        display: flex;
        justify-content: center;
    }
    
    .app-window {
        min-height: 380px; /* Taller for small screens too */
        max-height: 430px;
        border-radius: 12px;
        width: 95%;
    }
    
    .window-header {
        padding: 0.5rem 0.25rem; /* Even less padding on small screens */
        flex-direction: column; /* Stack elements vertically on small mobile too */
        gap: 0.4rem;
        align-items: center;
    }
    
    .window-controls {
        position: absolute;
        top: 0.5rem;
        right: 0.25rem;
    }
    
    .window-title {
        order: 1; /* Talkativ first */
        margin: 0;
    }
    
    .app-context-indicator {
        order: 2; /* App name below Talkativ */
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
        position: static;
        margin: 0;
        max-width: none; /* No width restriction needed */
        text-align: center;
    }
    
    .window-content {
        padding: 1rem 0.75rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .microphone-indicator {
        width: 100px;
        height: 100px;
    }
    
    .mic-icon {
        width: 28px;
        height: 28px;
    }
    
    .listening-text {
        font-size: 0.9rem;
    }
    
    .transcription-demo {
        font-size: 0.85rem;
        padding: 0.75rem;
        margin-top: 1rem;
        min-height: 100px; /* Ensure enough space on small screens */
        display: flex;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    /* How It Works Responsive */
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: var(--font-size-2xl);
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .step {
        padding: 1.5rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .universal-title {
        font-size: var(--font-size-2xl);
    }
    
    .smart-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .smart-feature {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
}

/* Custom Cursor Effects - REMOVED */

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
    color: var(--text-primary);
}

.loading-logo {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: advancedPulse 2s infinite;
}

.loading-text {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-primary) 50%, var(--accent-tertiary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 2px;
    animation: loadingProgress 1.5s ease forwards;
}

@keyframes loadingProgress {
    from { width: 0%; }
    to { width: 100%; }
}

/* Animated Mouse Cursor for Demo */
.demo-cursor {
    position: absolute;
    width: 16px;
    height: 20px;
    pointer-events: none;
    z-index: 100;
    opacity: 0;
    transition: all 0.8s ease;
    left: -30px;
    top: 40px;
}

.demo-cursor svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.8));
}

.demo-cursor.active {
    opacity: 1;
}

.demo-cursor.clicking {
    transform: scale(0.9);
}

/* Click ripple effect */
.click-ripple {
    position: absolute;
    border: 2px solid rgba(16, 185, 129, 0.6);
    border-radius: 50%;
    pointer-events: none;
    animation: clickRipple 0.8s ease-out forwards;
    width: 10px;
    height: 10px;
}

@keyframes clickRipple {
    0% {
        transform: scale(0);
        opacity: 0.8;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        transform: scale(8);
        opacity: 0;
    }
}

/* Enhanced Accessibility */
@media (prefers-reduced-motion: reduce) {
    .demo-cursor {
        display: none;
    }
    
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
