/* ==========================================
   AID Landing Page - Stylesheet
   ==========================================
   Version: 2.0
   Author: AID Technologies
   ========================================== */

/* ==========================================
   1. CSS VARIABLES & DESIGN TOKENS
   ========================================== */
:root {
    /* Colors - Primary */
    --bg-primary: #050208;
    --bg-secondary: #0a0612;
    
    /* Colors - Purple Scale */
    --purple-deep: #1a0a2e;
    --purple-dark: #2d1b4e;
    --purple-mid: #5b21b6;
    --purple-bright: #8b5cf6;
    --purple-light: #a78bfa;
    
    /* Colors - Accents */
    --pink-accent: #ec4899;
    --cyan-accent: #06b6d4;
    --green-accent: #22c55e;
    
    /* Colors - Text */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
    
    /* Glassmorphism */
    --glass-bg: rgba(139, 92, 246, 0.06);
    --glass-border: rgba(139, 92, 246, 0.15);
    
    /* Gradients */
    --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #06b6d4 100%);
    
    /* Typography */
    --font-main: 'Outfit', sans-serif;
    
    /* Animations */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================
   2. RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-scroll-behavior: smooth;
    /* iOS viewport height fix */
    height: -webkit-fill-available;
}

body {
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    cursor: none;
    /* iOS text rendering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* iOS tap highlight removal */
    -webkit-tap-highlight-color: transparent;
    /* iOS momentum scrolling */
    -webkit-overflow-scrolling: touch;
    /* iOS min height fix */
    min-height: 100vh;
    min-height: -webkit-fill-available;
}

/* iOS touch device detection - show default cursor */
@supports (-webkit-touch-callout: none) {
    body {
        cursor: auto;
    }
    .cursor, .cursor-dot {
        display: none !important;
    }
}

/* ==========================================
   3. CUSTOM CURSOR
   ========================================== */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--purple-bright);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s, background 0.15s, border-color 0.15s;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--purple-bright);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
}

.cursor.hover {
    transform: translate(-50%, -50%) scale(2.5);
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--pink-accent);
}

/* ==========================================
   4. BACKGROUND EFFECTS
   ========================================== */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    -webkit-filter: blur(100px);
    filter: blur(100px);
    opacity: 0.6;
    -webkit-animation: orbFloat 25s ease-in-out infinite;
    animation: orbFloat 25s ease-in-out infinite;
    /* iOS GPU acceleration */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.bg-orb-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--purple-mid), transparent 70%);
    top: -300px;
    left: -300px;
}

.bg-orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--pink-accent), transparent 70%);
    top: 40%;
    right: -200px;
    animation-delay: -8s;
    opacity: 0.4;
}

.bg-orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--cyan-accent), transparent 70%);
    bottom: -150px;
    left: 25%;
    animation-delay: -16s;
    opacity: 0.3;
}

@-webkit-keyframes orbFloat {
    0%, 100% { -webkit-transform: translate(0, 0) scale(1); transform: translate(0, 0) scale(1); }
    25% { -webkit-transform: translate(60px, 40px) scale(1.1); transform: translate(60px, 40px) scale(1.1); }
    50% { -webkit-transform: translate(20px, 80px) scale(0.95); transform: translate(20px, 80px) scale(0.95); }
    75% { -webkit-transform: translate(-40px, 40px) scale(1.05); transform: translate(-40px, 40px) scale(1.05); }
}
@keyframes orbFloat {
    0%, 100% { -webkit-transform: translate(0, 0) scale(1); transform: translate(0, 0) scale(1); }
    25% { -webkit-transform: translate(60px, 40px) scale(1.1); transform: translate(60px, 40px) scale(1.1); }
    50% { -webkit-transform: translate(20px, 80px) scale(0.95); transform: translate(20px, 80px) scale(0.95); }
    75% { -webkit-transform: translate(-40px, 40px) scale(1.05); transform: translate(-40px, 40px) scale(1.05); }
}

.grid-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black, transparent);
    mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black, transparent);
}

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.02;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ==========================================
   5. GLASSMORPHISM UTILITIES
   ========================================== */
.glass {
    background: rgba(139, 92, 246, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.15);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.glass-strong {
    background: rgba(139, 92, 246, 0.1);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(139, 92, 246, 0.25);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* ==========================================
   6. NAVIGATION - Apple-Inspired Tech Design
   ========================================== */
nav {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding: 8px 8px 8px 24px;
    border-radius: 80px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.6s var(--ease-out-expo);
    /* Solid fallback for iOS - shown when backdrop-filter fails */
    background: rgba(15, 10, 25, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 0 0 1px rgba(139, 92, 246, 0.1),
        0 20px 70px -10px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

/* Apply backdrop-filter only when supported */
@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    nav {
        background: rgba(10, 6, 18, 0.7);
        -webkit-backdrop-filter: blur(40px) saturate(180%);
        backdrop-filter: blur(40px) saturate(180%);
    }
}

/* Subtle tech glow effect */
nav::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 80px;
    padding: 1px;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.3), 
        transparent 40%, 
        transparent 60%, 
        rgba(236, 72, 153, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.4s;
}

nav:hover::before {
    opacity: 1;
}

/* Scanning line animation */
nav::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(139, 92, 246, 0.15), 
        rgba(236, 72, 153, 0.1),
        transparent);
    border-radius: 80px;
    animation: navScan 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes navScan {
    0%, 100% { left: -60%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

nav.scrolled {
    background: rgba(8, 5, 15, 0.98);
    border-color: rgba(139, 92, 246, 0.15);
    box-shadow: 
        0 0 0 1px rgba(139, 92, 246, 0.2),
        0 30px 80px -15px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    nav.scrolled {
        background: rgba(5, 2, 8, 0.92);
    }
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.04em;
    padding-right: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    margin-right: 8px;
    transition: all 0.3s;
}

.nav-logo:hover {
    filter: brightness(1.2);
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    padding: 4px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-links li {
    position: relative;
}

.nav-links a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 50px;
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    letter-spacing: 0.01em;
}

/* Subtle hover pill background */
.nav-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.1));
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    transform: scale(0.9);
}

.nav-links a:hover {
    color: rgba(255, 255, 255, 0.95);
}

.nav-links a:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* Remove old underline effect */
.nav-links a::after {
    display: none;
}

/* CTA Button - Premium Gradient */
.nav-cta {
    padding: 12px 24px !important;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 1) 0%, 
        rgba(168, 85, 247, 1) 50%,
        rgba(236, 72, 153, 0.9) 100%) !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 0.82rem !important;
    color: white !important;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-bounce) !important;
    box-shadow: 
        0 4px 20px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    border: none !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.35), 
        transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.nav-cta:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 8px 30px rgba(139, 92, 246, 0.5),
        0 4px 15px rgba(236, 72, 153, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    filter: brightness(1.1);
}

.nav-cta:active {
    transform: translateY(0) scale(1.02);
}

/* Status indicator dot for CTA */
.nav-cta::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px #22c55e;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

/* ==========================================
   7. HERO SECTION - Cinematic Stage
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 140px 50px 100px;
    position: relative;
    overflow: hidden;
}

/* Dramatic ambient spotlight - Apple style */
.hero::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 1200px;
    background: radial-gradient(ellipse 50% 40% at center,
        rgba(139, 92, 246, 0.15) 0%,
        rgba(139, 92, 246, 0.08) 25%,
        rgba(236, 72, 153, 0.05) 40%,
        transparent 60%);
    pointer-events: none;
    opacity: 0;
    animation: spotlightReveal 3s var(--ease-out-expo) 0.5s forwards;
}

@keyframes spotlightReveal {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0.5);
        filter: blur(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
        filter: blur(0);
    }
}

/* Secondary atmospheric glow */
.hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 600px;
    background: radial-gradient(ellipse 80% 50% at center bottom,
        rgba(139, 92, 246, 0.1) 0%,
        rgba(6, 182, 212, 0.05) 30%,
        transparent 60%);
    pointer-events: none;
    opacity: 0;
    animation: bottomGlowReveal 2.5s var(--ease-out-expo) 2s forwards;
}

@keyframes bottomGlowReveal {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 10px 10px 14px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s var(--ease-out-expo) 0.2s forwards;
    background: rgba(10, 6, 18, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 0 0 1px rgba(139, 92, 246, 0.15),
        0 10px 40px -10px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    letter-spacing: 0.02em;
}

.hero-badge span {
    padding-right: 8px;
}

.hero-badge .pulse {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-badge .pulse::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulseCore 2s ease-in-out infinite;
    box-shadow: 0 0 12px #22c55e;
}

.hero-badge .pulse::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(34, 197, 94, 0.3);
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseCore {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-size: clamp(4rem, 14vw, 9rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.05em;
    margin-bottom: 32px;
}

.hero-title .line {
    display: block;
    opacity: 0;
    transform: translateY(60px);
    filter: blur(10px);
}

/* Staggered cinematic text reveal */
.hero-title .line:first-child {
    animation: cinematicTextReveal 1.2s var(--ease-out-expo) 0.3s forwards;
}

.hero-title .line:last-child {
    animation: cinematicTextReveal 1.2s var(--ease-out-expo) 0.5s forwards;
}

@keyframes cinematicTextReveal {
    0% {
        opacity: 0;
        transform: translateY(60px);
        filter: blur(10px);
    }
    50% {
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.hero-title .gradient {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: cinematicTextReveal 1.2s var(--ease-out-expo) 0.5s forwards,
               gradientShift 8s ease-in-out 1.7s infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 56px;
    line-height: 1.8;
    font-weight: 400;
    opacity: 0;
    transform: translateY(40px);
    filter: blur(8px);
    animation: cinematicFadeUp 1.4s var(--ease-out-expo) 0.8s forwards;
}

@keyframes cinematicFadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(8px);
    }
    60% {
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: ctaGroupReveal 1.2s var(--ease-out-expo) 1s forwards;
}

@keyframes ctaGroupReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ==========================================
   8. BUTTONS
   ========================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 22px 44px;
    background: var(--gradient-purple);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-main);
    border: none;
    border-radius: 100px;
    cursor: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-bounce);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.3), transparent 60%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s;
}

.btn-primary:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.btn-primary:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 25px 80px rgba(139, 92, 246, 0.5);
}

.btn-primary svg {
    transition: transform 0.3s;
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 22px 44px;
    background: transparent;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-main);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 100px;
    cursor: none;
    text-decoration: none;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 92, 246, 0.1);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-secondary:hover {
    border-color: var(--purple-bright);
    transform: scale(1.02);
}

/* ==========================================
   9. PHONE MOCKUPS - Cinematic Apple-Style Reveal
   ========================================== */
.hero-phones {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 700px;
    -webkit-perspective: 2500px;
    perspective: 2500px;
    -webkit-perspective-origin: center 40%;
    perspective-origin: center 40%;
    opacity: 0;
    -webkit-animation: heroPhonesFadeIn 2s var(--ease-out-expo) 1.2s forwards;
    animation: heroPhonesFadeIn 2s var(--ease-out-expo) 1.2s forwards;
}

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

.phone-container {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: -webkit-transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
    /* iOS GPU acceleration */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.phone-mockup {
    width: 300px;
    height: 620px;
    border-radius: 54px;
    padding: 12px;
    position: relative;
    /* Premium glass effect */
    background: linear-gradient(165deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(139, 92, 246, 0.06) 30%,
        rgba(139, 92, 246, 0.04) 70%,
        rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 60px 120px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 0 80px rgba(139, 92, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2),
        inset 0 0 60px rgba(139, 92, 246, 0.03);
    transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
}

/* Glassy edge highlight */
.phone-mockup::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 54px;
    padding: 1px;
    background: linear-gradient(160deg, 
        rgba(255, 255, 255, 0.25) 0%, 
        rgba(255, 255, 255, 0.05) 20%,
        transparent 50%,
        rgba(139, 92, 246, 0.15) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Inner glass reflection */
.phone-mockup::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    height: 180px;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.06) 0%,
        transparent 100%);
    border-radius: 44px 44px 100px 100px;
    pointer-events: none;
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 34px;
    background: linear-gradient(180deg, #0a0612 0%, #000 100%);
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Dynamic Island style indicator */
.phone-notch::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
    animation: notchPulse 3s ease-in-out infinite;
}

@keyframes notchPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 44px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, #050208 100%);
    position: relative;
}

.phone-screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(139, 92, 246, 0.05) 0%, 
        transparent 30%);
    pointer-events: none;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Distortion backdrop - responds to scroll */
.phone-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    z-index: -2;
    opacity: 0;
    animation: cinematicGlowReveal 3s var(--ease-out-expo) 1.5s forwards;
    /* Multi-layer distortion effect */
    background: 
        radial-gradient(ellipse 60% 50% at 30% 40%, rgba(139, 92, 246, 0.4), transparent 50%),
        radial-gradient(ellipse 50% 60% at 70% 60%, rgba(236, 72, 153, 0.3), transparent 50%),
        radial-gradient(ellipse 40% 40% at 50% 50%, rgba(6, 182, 212, 0.2), transparent 50%);
    filter: blur(80px);
    transition: transform 0.1s linear, filter 0.3s;
    will-change: transform, filter;
}

/* Scroll distortion class - added via JS */
.phone-glow.distort {
    animation: distortPulse 0.6s ease-out;
}

@keyframes distortPulse {
    0% { 
        transform: scale(1) skewX(0deg);
        filter: blur(80px);
    }
    30% { 
        transform: scale(1.1) skewX(3deg);
        filter: blur(100px);
    }
    60% { 
        transform: scale(0.95) skewX(-2deg);
        filter: blur(70px);
    }
    100% { 
        transform: scale(1) skewX(0deg);
        filter: blur(80px);
    }
}

@keyframes cinematicGlowReveal {
    0% { 
        opacity: 0; 
        transform: scale(0.3);
        filter: blur(120px);
    }
    60% {
        opacity: 0.8;
        filter: blur(70px);
    }
    100% { 
        opacity: 0.6; 
        transform: scale(1);
        filter: blur(80px);
    }
}

/* Secondary distortion ring */
.hero-phones::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(139, 92, 246, 0.1) 60deg,
        transparent 120deg,
        rgba(236, 72, 153, 0.08) 180deg,
        transparent 240deg,
        rgba(6, 182, 212, 0.06) 300deg,
        transparent 360deg
    );
    filter: blur(60px);
    opacity: 0;
    z-index: -3;
    animation: ringReveal 2s var(--ease-out-expo) 2s forwards;
    transition: transform 0.2s ease-out;
    will-change: transform;
}

@keyframes ringReveal {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.5) rotate(0deg); }
    to { opacity: 0.5; transform: translate(-50%, -50%) scale(1) rotate(0deg); }
}

/* Scroll rotation for distortion ring */
.hero-phones.scrolling::before {
    animation: ringRotate 0.8s ease-out;
}

@keyframes ringRotate {
    0% { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
    50% { transform: translate(-50%, -50%) scale(1.05) rotate(15deg); }
    100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
}

/* ===== CINEMATIC PHONE REVEALS ===== */

/* Center Phone - Hero entrance */
.phone-center {
    z-index: 3;
    opacity: 0;
    transform: translate(-50%, -30%) rotateX(25deg) rotateY(0deg) scale(0.7);
    animation: centerPhoneReveal 2s var(--ease-out-expo) 1.4s forwards;
}

@keyframes centerPhoneReveal {
    0% {
        opacity: 0;
        transform: translate(-50%, -30%) rotateX(25deg) rotateY(0deg) scale(0.7);
        filter: blur(10px);
    }
    40% {
        opacity: 1;
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) rotateX(8deg) rotateY(0deg) scale(1);
        filter: blur(0);
    }
}

/* Left Phone - Cinematic slide-in */
.phone-left {
    z-index: 2;
    opacity: 0;
    transform: translate(calc(-50% - 400px), -40%) rotateY(60deg) rotateX(15deg) scale(0.5);
    animation: leftPhoneReveal 2.2s var(--ease-out-expo) 1.8s forwards;
}

@keyframes leftPhoneReveal {
    0% {
        opacity: 0;
        transform: translate(calc(-50% - 400px), -40%) rotateY(60deg) rotateX(15deg) scale(0.5);
        filter: blur(15px);
    }
    30% {
        opacity: 0.4;
        filter: blur(5px);
    }
    100% {
        opacity: 0.7;
        transform: translate(calc(-50% - 260px), -50%) rotateY(30deg) rotateX(5deg) scale(0.8);
        filter: blur(0);
    }
}

/* Right Phone - Cinematic slide-in */
.phone-right {
    z-index: 2;
    opacity: 0;
    transform: translate(calc(-50% + 400px), -40%) rotateY(-60deg) rotateX(15deg) scale(0.5);
    animation: rightPhoneReveal 2.2s var(--ease-out-expo) 2s forwards;
}

@keyframes rightPhoneReveal {
    0% {
        opacity: 0;
        transform: translate(calc(-50% + 400px), -40%) rotateY(-60deg) rotateX(15deg) scale(0.5);
        filter: blur(15px);
    }
    30% {
        opacity: 0.4;
        filter: blur(5px);
    }
    100% {
        opacity: 0.7;
        transform: translate(calc(-50% + 260px), -50%) rotateY(-30deg) rotateX(5deg) scale(0.8);
        filter: blur(0);
    }
}

/* Hover enhancement */
.phone-center:hover {
    transform: translate(-50%, -52%) rotateX(5deg) rotateY(0deg) scale(1.02);
    transition: transform 0.5s var(--ease-out-expo);
}

.phone-left:hover {
    opacity: 0.85;
    transform: translate(calc(-50% - 250px), -52%) rotateY(25deg) rotateX(3deg) scale(0.85);
    transition: all 0.5s var(--ease-out-expo);
}

.phone-right:hover {
    opacity: 0.85;
    transform: translate(calc(-50% + 250px), -52%) rotateY(-25deg) rotateX(3deg) scale(0.85);
    transition: all 0.5s var(--ease-out-expo);
}

/* ==========================================
   10. FLOATING CARDS - Cinematic Reveal
   ========================================== */
.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10;
}

.float-card {
    position: absolute;
    padding: 16px 22px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9rem;
    font-weight: 600;
    pointer-events: auto;
    cursor: none;
    background: rgba(10, 6, 18, 0.8);
    backdrop-filter: blur(30px) saturate(150%);
    -webkit-backdrop-filter: blur(30px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 0 0 1px rgba(139, 92, 246, 0.15),
        0 20px 60px -15px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 0.5s var(--ease-out-expo), 
                box-shadow 0.5s var(--ease-smooth),
                border-color 0.3s;
    /* Initial state for cinematic reveal */
    opacity: 0;
}

/* Premium gradient border on hover */
.float-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    padding: 1px;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.4), 
        transparent 50%, 
        rgba(236, 72, 153, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
}

.float-card:hover::before {
    opacity: 1;
}

.float-card:hover {
    transform: scale(1.08) translateY(-8px) !important;
    box-shadow: 
        0 0 0 1px rgba(139, 92, 246, 0.3),
        0 30px 80px -20px rgba(139, 92, 246, 0.4),
        0 10px 30px -10px rgba(0, 0, 0, 0.5);
    border-color: rgba(139, 92, 246, 0.3);
}

/* ===== CINEMATIC CARD REVEALS ===== */

/* Card 1 - Top Left: Slide from left */
.float-card-1 { 
    top: 12%; 
    left: 3%; 
    animation: floatCard1Reveal 1.8s var(--ease-out-expo) 2.8s forwards,
               floatCard 8s ease-in-out 4.6s infinite;
}

@keyframes floatCard1Reveal {
    0% {
        opacity: 0;
        transform: translateX(-100px) translateY(30px) scale(0.8) rotate(-10deg);
        filter: blur(10px);
    }
    60% {
        opacity: 1;
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateY(0) scale(1) rotate(0deg);
        filter: blur(0);
    }
}

/* Card 2 - Top Right: Slide from right */
.float-card-2 { 
    top: 20%; 
    right: 3%; 
    animation: floatCard2Reveal 1.8s var(--ease-out-expo) 3s forwards,
               floatCard 8s ease-in-out 4.8s infinite;
}

@keyframes floatCard2Reveal {
    0% {
        opacity: 0;
        transform: translateX(100px) translateY(30px) scale(0.8) rotate(10deg);
        filter: blur(10px);
    }
    60% {
        opacity: 1;
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateY(0) scale(1) rotate(0deg);
        filter: blur(0);
    }
}

/* Card 3 - Bottom Left: Rise from below */
.float-card-3 { 
    bottom: 22%; 
    left: 6%; 
    animation: floatCard3Reveal 1.8s var(--ease-out-expo) 3.2s forwards,
               floatCard 8s ease-in-out 5s infinite;
}

@keyframes floatCard3Reveal {
    0% {
        opacity: 0;
        transform: translateX(-60px) translateY(80px) scale(0.7) rotate(-5deg);
        filter: blur(12px);
    }
    60% {
        opacity: 1;
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateY(0) scale(1) rotate(0deg);
        filter: blur(0);
    }
}

/* Card 4 - Bottom Right: Rise from below */
.float-card-4 { 
    bottom: 18%; 
    right: 6%; 
    animation: floatCard4Reveal 1.8s var(--ease-out-expo) 3.4s forwards,
               floatCard 8s ease-in-out 5.2s infinite;
}

@keyframes floatCard4Reveal {
    0% {
        opacity: 0;
        transform: translateX(60px) translateY(80px) scale(0.7) rotate(5deg);
        filter: blur(12px);
    }
    60% {
        opacity: 1;
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateY(0) scale(1) rotate(0deg);
        filter: blur(0);
    }
}

/* Gentle float animation after reveal */
@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.float-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    position: relative;
    overflow: hidden;
}

/* Icon glow effect */
.float-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.float-card:hover .float-icon::after {
    opacity: 1;
}

.float-card-1 .float-icon { 
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.35), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.3);
}
.float-card-2 .float-icon { 
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.35), rgba(236, 72, 153, 0.1));
    border: 1px solid rgba(236, 72, 153, 0.3);
}
.float-card-3 .float-icon { 
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.35), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(6, 182, 212, 0.3);
}
.float-card-4 .float-icon { 
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.35), rgba(251, 191, 36, 0.1));
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.float-card-content {
    line-height: 1.2;
}

.float-card-content span {
    display: block;
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 400;
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================
   11. VALUES SECTION - Apple Style
   ========================================== */
.values-section {
    padding: 160px 50px 180px;
    position: relative;
}

/* Ambient glow behind section */
.values-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.08), transparent 60%);
    pointer-events: none;
}

.values-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.values-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.values-title .highlight {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.values-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.values-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    padding: 40px 32px;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
    cursor: none;
    background: rgba(10, 6, 18, 0.6);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 
        0 0 0 1px rgba(139, 92, 246, 0.1),
        0 20px 60px -20px rgba(0, 0, 0, 0.5);
}

/* Gradient border on hover */
.value-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 29px;
    padding: 1px;
    background: linear-gradient(160deg, 
        rgba(139, 92, 246, 0.4), 
        transparent 40%,
        transparent 60%,
        rgba(236, 72, 153, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s;
}

.value-card:hover::before {
    opacity: 1;
}

/* Inner glow on hover */
.value-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.value-card:hover::after {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.2);
    box-shadow: 
        0 0 0 1px rgba(139, 92, 246, 0.2),
        0 40px 80px -20px rgba(139, 92, 246, 0.25),
        0 20px 40px -10px rgba(0, 0, 0, 0.4);
}

.value-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.4s var(--ease-bounce);
    position: relative;
    z-index: 1;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.25), rgba(139, 92, 246, 0.1));
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 10px 30px -10px rgba(139, 92, 246, 0.4);
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.value-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 1200px) {
    .values-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .values-container {
        grid-template-columns: 1fr;
    }
    
    .values-section {
        padding: 100px 24px 120px;
    }
}

/* ==========================================
   12. SECTION HEADERS
   ========================================== */
.section-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 100px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--purple-light);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 24px;
    padding: 10px 24px;
    border-radius: 100px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    line-height: 1.05;
}

.section-title .highlight {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==========================================
   13. FEATURES SECTION - Premium Glassmorphism
   ========================================== */
.features-section {
    padding: 160px 50px;
    position: relative;
}

/* Ambient background glow */
.features-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 800px;
    background: radial-gradient(ellipse 50% 50% at center,
        rgba(139, 92, 246, 0.08) 0%,
        transparent 60%);
    pointer-events: none;
}

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

.feature-card {
    padding: 48px;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    cursor: none;
    /* Premium Glassmorphism */
    background: linear-gradient(160deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(139, 92, 246, 0.04) 50%,
        rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 0 0 1px rgba(139, 92, 246, 0.1),
        0 25px 80px -20px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: all 0.5s var(--ease-out-expo);
}

/* Gradient border overlay */
.feature-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 33px;
    padding: 1px;
    background: linear-gradient(160deg,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 30%,
        transparent 70%,
        rgba(139, 92, 246, 0.2) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.5s;
}

/* Mouse follow glow */
.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
        rgba(139, 92, 246, 0.15), transparent 40%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(139, 92, 246, 0.25);
    box-shadow:
        0 0 0 1px rgba(139, 92, 246, 0.25),
        0 40px 100px -30px rgba(139, 92, 246, 0.35),
        0 20px 50px -20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Premium Icon Container */
.feature-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
    transition: all 0.4s var(--ease-bounce);
    /* Glass effect for icons */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Icon inner glow */
.feature-icon-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2), transparent 60%);
    opacity: 0.5;
}

/* Icon pulse ring on hover */
.feature-icon-wrap::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 24px;
    border: 2px solid currentColor;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s var(--ease-out-expo);
}

.feature-card:hover .feature-icon-wrap {
    transform: scale(1.1) translateY(-4px);
}

.feature-card:hover .feature-icon-wrap::after {
    opacity: 0.3;
    transform: scale(1);
}

/* Card 1 - GPS Purple */
.feature-card:nth-child(1) .feature-icon-wrap {
    background: linear-gradient(145deg, 
        rgba(139, 92, 246, 0.4) 0%, 
        rgba(139, 92, 246, 0.15) 100%);
    border: 1px solid rgba(139, 92, 246, 0.5);
    box-shadow: 
        0 8px 32px -8px rgba(139, 92, 246, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #c4b5fd;
}

/* Card 2 - SOS Red/Pink */
.feature-card:nth-child(2) .feature-icon-wrap {
    background: linear-gradient(145deg, 
        rgba(239, 68, 68, 0.4) 0%, 
        rgba(236, 72, 153, 0.2) 100%);
    border: 1px solid rgba(239, 68, 68, 0.5);
    box-shadow: 
        0 8px 32px -8px rgba(239, 68, 68, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #fca5a5;
}

/* Card 3 - Communication Cyan */
.feature-card:nth-child(3) .feature-icon-wrap {
    background: linear-gradient(145deg, 
        rgba(6, 182, 212, 0.4) 0%, 
        rgba(6, 182, 212, 0.15) 100%);
    border: 1px solid rgba(6, 182, 212, 0.5);
    box-shadow: 
        0 8px 32px -8px rgba(6, 182, 212, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #67e8f9;
}

/* Card 4 - History Multi-color */
.feature-card:nth-child(4) .feature-icon-wrap {
    background: linear-gradient(145deg, 
        rgba(139, 92, 246, 0.3) 0%, 
        rgba(236, 72, 153, 0.2) 50%,
        rgba(6, 182, 212, 0.2) 100%);
    border: 1px solid rgba(139, 92, 246, 0.4);
    box-shadow: 
        0 8px 32px -8px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #e9d5ff;
}

.feature-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.feature-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 28px;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.feature-tag {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: all 0.3s var(--ease-smooth);
    font-weight: 500;
}

.feature-card:hover .feature-tag {
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.3);
    color: var(--purple-light);
    box-shadow: 0 4px 15px -5px rgba(139, 92, 246, 0.3);
}

/* ==========================================
   14. HOW IT WORKS SECTION
   ========================================== */
.how-section {
    padding: 160px 50px;
    position: relative;
    overflow: hidden;
}

.how-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08), transparent 60%);
    pointer-events: none;
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.steps-line {
    position: absolute;
    top: 90px;
    left: 120px;
    right: 120px;
    height: 4px;
    background: rgba(139, 92, 246, 0.15);
    border-radius: 2px;
    overflow: hidden;
}

.steps-line-fill {
    width: 0;
    height: 100%;
    background: var(--gradient-purple);
    border-radius: 2px;
    transition: width 1.5s var(--ease-out-expo);
}

.steps-line-fill.animate {
    width: 100%;
}

.step-item {
    text-align: center;
    flex: 1;
    max-width: 320px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 160px;
    height: 160px;
    margin: 0 auto 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    font-weight: 900;
    position: relative;
    transition: all 0.5s var(--ease-bounce);
    cursor: none;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: var(--gradient-purple);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.step-number:hover::before {
    opacity: 1;
}

.step-number:hover {
    transform: scale(1.15);
    box-shadow: 0 30px 80px rgba(139, 92, 246, 0.4);
}

.step-item:nth-child(1) .step-number {
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.05));
    border: 3px solid var(--purple-bright);
    color: var(--purple-bright);
}

.step-item:nth-child(2) .step-number {
    background: linear-gradient(145deg, rgba(236, 72, 153, 0.2), rgba(236, 72, 153, 0.05));
    border: 3px solid var(--pink-accent);
    color: var(--pink-accent);
}

.step-item:nth-child(3) .step-number {
    background: linear-gradient(145deg, rgba(6, 182, 212, 0.2), rgba(6, 182, 212, 0.05));
    border: 3px solid var(--cyan-accent);
    color: var(--cyan-accent);
}

.step-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.step-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==========================================
   15. SERVICES SECTION - Premium Glassmorphism
   ========================================== */
.services-section {
    padding: 160px 50px;
    position: relative;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    padding: 40px;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    cursor: none;
    /* Premium Glassmorphism */
    background: linear-gradient(160deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(139, 92, 246, 0.04) 50%,
        rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 0 0 1px rgba(139, 92, 246, 0.1),
        0 20px 60px -20px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: all 0.5s var(--ease-out-expo);
}

/* Gradient border overlay */
.service-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 29px;
    padding: 1px;
    background: linear-gradient(160deg,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 30%,
        transparent 70%,
        rgba(139, 92, 246, 0.2) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.5s;
}

/* Top accent line on hover */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-purple);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out-expo);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.25);
    box-shadow:
        0 0 0 1px rgba(139, 92, 246, 0.25),
        0 35px 80px -25px rgba(139, 92, 246, 0.3),
        0 15px 40px -15px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Premium Icon Container - matching feature cards */
.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s var(--ease-bounce);
}

/* Icon inner glow */
.service-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2), transparent 60%);
    opacity: 0.5;
}

/* Icon pulse ring on hover */
.service-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 22px;
    border: 2px solid currentColor;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s var(--ease-out-expo);
}

.service-card:hover .service-icon {
    transform: scale(1.1) translateY(-4px);
}

.service-card:hover .service-icon::after {
    opacity: 0.3;
    transform: scale(1);
}

/* Card 1 - Battery Green */
.service-card:nth-child(1) .service-icon {
    background: linear-gradient(145deg, 
        rgba(34, 197, 94, 0.4) 0%, 
        rgba(34, 197, 94, 0.15) 100%);
    border: 1px solid rgba(34, 197, 94, 0.5);
    box-shadow: 
        0 8px 32px -8px rgba(34, 197, 94, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #86efac;
}

/* Card 2 - Fuel Amber */
.service-card:nth-child(2) .service-icon {
    background: linear-gradient(145deg, 
        rgba(251, 191, 36, 0.4) 0%, 
        rgba(251, 191, 36, 0.15) 100%);
    border: 1px solid rgba(251, 191, 36, 0.5);
    box-shadow: 
        0 8px 32px -8px rgba(251, 191, 36, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #fde68a;
}

/* Card 3 - Tire Cyan */
.service-card:nth-child(3) .service-icon {
    background: linear-gradient(145deg, 
        rgba(6, 182, 212, 0.4) 0%, 
        rgba(6, 182, 212, 0.15) 100%);
    border: 1px solid rgba(6, 182, 212, 0.5);
    box-shadow: 
        0 8px 32px -8px rgba(6, 182, 212, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #67e8f9;
}

/* Card 4 - Towing Pink */
.service-card:nth-child(4) .service-icon {
    background: linear-gradient(145deg, 
        rgba(236, 72, 153, 0.4) 0%, 
        rgba(236, 72, 153, 0.15) 100%);
    border: 1px solid rgba(236, 72, 153, 0.5);
    box-shadow: 
        0 8px 32px -8px rgba(236, 72, 153, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #f9a8d4;
}

/* Card 5 - Lockout Purple */
.service-card:nth-child(5) .service-icon {
    background: linear-gradient(145deg, 
        rgba(139, 92, 246, 0.4) 0%, 
        rgba(139, 92, 246, 0.15) 100%);
    border: 1px solid rgba(139, 92, 246, 0.5);
    box-shadow: 
        0 8px 32px -8px rgba(139, 92, 246, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #c4b5fd;
}

/* Card 6 - EV Orange */
.service-card:nth-child(6) .service-icon {
    background: linear-gradient(145deg, 
        rgba(249, 115, 22, 0.4) 0%, 
        rgba(249, 115, 22, 0.15) 100%);
    border: 1px solid rgba(249, 115, 22, 0.5);
    box-shadow: 
        0 8px 32px -8px rgba(249, 115, 22, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #fdba74;
}

.service-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-price {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    font-size: 1.3rem;
    font-weight: 800;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-price span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
    -webkit-text-fill-color: var(--text-muted);
}

/* ==========================================
   16. INVESTMENT SECTION
   ========================================== */
.investment-section {
    padding: 160px 50px;
    position: relative;
    overflow: hidden;
}

.investment-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(139, 92, 246, 0.1), transparent 60%);
    pointer-events: none;
}

.investment-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.investment-content h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
    line-height: 1.05;
}

.investment-content h2 .highlight {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.investment-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.investment-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.metric-card {
    padding: 40px;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-smooth);
    cursor: none;
}

.metric-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-purple);
    opacity: 0;
    transition: opacity 0.4s;
}

.metric-card:hover::before {
    opacity: 0.1;
}

.metric-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--purple-bright);
}

.metric-value {
    font-size: 3.2rem;
    font-weight: 900;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
}

.metric-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

/* ==========================================
   17. CTA SECTION
   ========================================== */
.cta-section {
    padding: 220px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent 50%);
    pointer-events: none;
    animation: ctaGlow 10s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.8; }
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(3.5rem, 10vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    margin-bottom: 28px;
    line-height: 0.95;
}

.cta-title .gradient {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 56px;
    line-height: 1.6;
}

.waitlist-form {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    gap: 14px;
    padding: 10px;
    border-radius: 100px;
    position: relative;
}

.waitlist-form::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 100px;
    background: var(--gradient-purple);
    z-index: -1;
    opacity: 0.6;
}

.waitlist-form input {
    flex: 1;
    padding: 22px 32px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 100px;
    outline: none;
    color: var(--text-primary);
    font-size: 1.05rem;
    font-family: var(--font-main);
}

.waitlist-form input::placeholder {
    color: var(--text-muted);
}

.waitlist-form input:focus {
    background: rgba(0, 0, 0, 0.8);
}

.waitlist-form button {
    padding: 22px 40px;
    background: var(--gradient-purple);
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: var(--font-main);
    border: none;
    border-radius: 100px;
    cursor: none;
    transition: all 0.4s var(--ease-bounce);
    white-space: nowrap;
}

.waitlist-form button:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 50px rgba(139, 92, 246, 0.5);
}

/* ==========================================
   WAITLIST LIVE - Creative Animation
   ========================================== */
.waitlist-live {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    padding: 16px 32px;
    background: rgba(10, 6, 18, 0.6);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 100px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
}

/* Glowing border animation */
.waitlist-live::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 100px;
    padding: 2px;
    background: linear-gradient(90deg, 
        rgba(139, 92, 246, 0.6),
        rgba(236, 72, 153, 0.6),
        rgba(6, 182, 212, 0.6),
        rgba(139, 92, 246, 0.6));
    background-size: 300% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderGlow 4s linear infinite;
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

/* Scanning light effect */
.waitlist-live::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent);
    animation: scanLight 3s ease-in-out infinite;
}

@keyframes scanLight {
    0%, 100% { left: -60%; }
    50% { left: 100%; }
}

.waitlist-live:hover {
    transform: scale(1.05);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 
        0 0 40px rgba(139, 92, 246, 0.3),
        0 20px 60px -20px rgba(139, 92, 246, 0.4);
}

/* Pulsing indicator container */
.live-indicator {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Expanding pulse rings */
.live-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(34, 197, 94, 0.6);
    animation: pulseExpand 2.5s ease-out infinite;
}

.live-pulse.delay-1 {
    animation-delay: 0.5s;
}

.live-pulse.delay-2 {
    animation-delay: 1s;
}

@keyframes pulseExpand {
    0% {
        transform: scale(0.5);
        opacity: 1;
        border-color: rgba(34, 197, 94, 0.8);
    }
    100% {
        transform: scale(2);
        opacity: 0;
        border-color: rgba(34, 197, 94, 0);
    }
}

/* Core glowing dot */
.live-core {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 
        0 0 20px rgba(34, 197, 94, 0.8),
        0 0 40px rgba(34, 197, 94, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    animation: corePulse 1.5s ease-in-out infinite;
}

@keyframes corePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 20px rgba(34, 197, 94, 0.8),
            0 0 40px rgba(34, 197, 94, 0.4);
    }
    50% {
        transform: scale(1.15);
        box-shadow: 
            0 0 30px rgba(34, 197, 94, 1),
            0 0 60px rgba(34, 197, 94, 0.6);
    }
}

/* Text styling */
.live-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    position: relative;
    z-index: 2;
}

.live-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.live-status {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    background: linear-gradient(135deg, #22c55e 0%, #4ade80 50%, #22c55e 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 3s linear infinite;
}

@keyframes textShimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Floating particles */
.live-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 100px;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(34, 197, 94, 0.8);
    border-radius: 50%;
    animation: particleFloat 4s ease-in-out infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 3.5s;
}

.particle:nth-child(2) {
    left: 25%;
    animation-delay: 0.8s;
    animation-duration: 4.2s;
}

.particle:nth-child(3) {
    left: 40%;
    animation-delay: 1.6s;
    animation-duration: 3.8s;
}

.particle:nth-child(4) {
    left: 60%;
    animation-delay: 0.4s;
    animation-duration: 4.5s;
}

.particle:nth-child(5) {
    left: 75%;
    animation-delay: 1.2s;
    animation-duration: 3.2s;
}

.particle:nth-child(6) {
    left: 90%;
    animation-delay: 2s;
    animation-duration: 4s;
}

@keyframes particleFloat {
    0%, 100% {
        bottom: -10px;
        opacity: 0;
        transform: translateX(0) scale(0.5);
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translateX(-10px) scale(1.2);
    }
    90% {
        opacity: 0.3;
        transform: translateX(10px) scale(0.8);
    }
    100% {
        bottom: 100%;
        opacity: 0;
        transform: translateX(0) scale(0);
    }
}

/* Hover state enhancements */
.waitlist-live:hover .live-core {
    animation-duration: 0.8s;
}

.waitlist-live:hover .live-pulse {
    animation-duration: 1.5s;
}

.waitlist-live:hover .particle {
    animation-duration: 2s;
}

/* ==========================================
   18. FOOTER
   ========================================== */
footer {
    padding: 100px 50px 50px;
    border-top: 1px solid rgba(139, 92, 246, 0.15);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 80px;
    margin-bottom: 80px;
}

.footer-brand h3 {
    font-size: 2.25rem;
    font-weight: 900;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.4s var(--ease-bounce);
}

.footer-social a:hover {
    background: var(--gradient-purple);
    color: white;
    transform: translateY(-5px);
}

.footer-links h4 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    margin-bottom: 28px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-purple);
    transition: width 0.4s var(--ease-out-expo);
}

.footer-links a:hover {
    color: var(--purple-light);
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 50px;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 36px;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--purple-light);
}

/* ==========================================
   19. ANIMATIONS & REVEALS
   ========================================== */
.reveal {
    opacity: 0;
    transform: translateY(100px);
    transition: all 1.2s var(--ease-out-expo);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ==========================================
   20. RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1200px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .investment-container {
        grid-template-columns: 1fr;
        gap: 70px;
    }
}

/* ==========================================
   MOBILE MENU STYLES
   ========================================== */
/* Hide mobile menu button by default on desktop */
.mobile-menu-btn {
    display: none;
}

/* Mobile menu button styles when visible */
.mobile-menu-btn-visible {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    background-color: rgba(139, 92, 246, 0.2);
    border: 2px solid rgba(139, 92, 246, 0.5);
    border-radius: 12px;
    cursor: pointer;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    appearance: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn:hover,
.mobile-menu-btn:active {
    background-color: rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.7);
}

.hamburger-line {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #a78bfa;
    border-radius: 2px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform-origin: center;
    transform-origin: center;
    pointer-events: none;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(5px, 5px);
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(5px, -5px);
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    background: #050208;
    background: rgba(5, 2, 8, 0.99);
    z-index: 998;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 40px;
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 300px;
}

.mobile-nav-links li {
    margin: 0;
    padding: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.mobile-nav-links a {
    display: block;
    padding: 18px 30px;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 16px;
    margin-bottom: 8px;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:active {
    color: #a78bfa;
    background: rgba(139, 92, 246, 0.1);
}

.mobile-cta {
    display: block !important;
    margin-top: 24px;
    padding: 20px 50px !important;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%) !important;
    border-radius: 100px !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: white !important;
    text-align: center;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.5);
}

@media (max-width: 900px) {
    body {
        cursor: auto;
    }
    
    .cursor,
    .cursor-dot {
        display: none;
    }
    
    nav {
        width: calc(100% - 32px);
        padding: 12px 16px 12px 20px;
        gap: 0;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        -webkit-align-items: center;
        align-items: center;
    }
    
    .nav-links {
        display: none !important;
        visibility: hidden !important;
    }
    
    .mobile-menu-btn {
        display: -webkit-flex !important;
        display: flex !important;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-align-items: center;
        align-items: center;
        gap: 5px;
        width: 46px;
        height: 46px;
        background-color: rgba(139, 92, 246, 0.2);
        border: 2px solid rgba(139, 92, 246, 0.5);
        border-radius: 12px;
    }
    
    .hero {
        padding: 140px 24px 80px;
    }
    
    .hero-phones {
        height: 500px;
    }
    
    .phone-left,
    .phone-right {
        display: none;
    }
    
    .phone-center {
        transform: translate(-50%, -50%) scale(0.85);
    }
    
    .floating-cards {
        display: none;
    }
    
    .stats-container,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 70px;
    }
    
    .steps-line {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .cta-section,
    .features-section,
    .how-section,
    .services-section,
    .investment-section {
        padding: 120px 24px;
    }
    
    .waitlist-form {
        flex-direction: column;
        border-radius: 28px;
    }
    
    .waitlist-form::before {
        border-radius: 30px;
    }
    
    .waitlist-form input,
    .waitlist-form button {
        width: 100%;
    }
}

/* ==========================================
   21. UTILITY CLASSES
   ========================================== */
.text-gradient {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================
   22. iOS COMPATIBILITY FIXES
   ========================================== */

/* iOS Safari viewport height fix using CSS custom property */
:root {
    --vh: 1vh;
}

/* Apply iOS-specific styles */
@supports (-webkit-touch-callout: none) {
    /* Fix for iOS 100vh issue */
    .hero {
        min-height: calc(var(--vh, 1vh) * 100);
    }
    
    /* iOS Navigation fix - solid background fallback */
    nav {
        background: rgba(18, 12, 30, 0.97) !important;
        -webkit-backdrop-filter: blur(20px) saturate(150%);
        backdrop-filter: blur(20px) saturate(150%);
    }
    
    nav.scrolled {
        background: rgba(10, 6, 18, 0.98) !important;
    }
    
    /* Enable hardware acceleration for smoother animations */
    .bg-orb,
    .phone-mockup,
    .phone-container,
    .float-card,
    .feature-card,
    .service-card,
    .value-card,
    .metric-card,
    .btn-primary,
    .btn-secondary,
    .nav-cta {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    /* Fix blur filter performance on iOS */
    .glass,
    .glass-strong,
    nav,
    .float-card {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    
    /* Ensure buttons are tappable */
    .btn-primary,
    .btn-secondary,
    .nav-cta,
    .waitlist-form button {
        cursor: pointer;
        -webkit-appearance: none;
        appearance: none;
    }
    
    /* Fix input styling on iOS */
    .waitlist-form input {
        -webkit-appearance: none;
        appearance: none;
        border-radius: 100px;
        font-size: 16px; /* Prevents iOS zoom on focus */
    }
    
    /* Reduce animation complexity on iOS for performance */
    .phone-glow {
        -webkit-filter: blur(60px);
        filter: blur(60px);
    }
    
    /* Fix position fixed elements on iOS */
    nav {
        -webkit-transform: translateX(-50%) translateZ(0);
        transform: translateX(-50%) translateZ(0);
    }
    
    .bg-gradient,
    .grid-pattern,
    .noise {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

/* iOS Safari specific hover states - use active for touch */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover-dependent effects on touch devices */
    .cursor,
    .cursor-dot {
        display: none !important;
    }
    
    body {
        cursor: auto;
    }
    
    /* Make touch targets larger */
    .nav-links a {
        padding: 12px 20px;
    }
    
    /* Active states instead of hover for touch */
    .btn-primary:active {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
    }
    
    .btn-secondary:active {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
    }
    
    .feature-card:active,
    .service-card:active,
    .value-card:active {
        -webkit-transform: scale(0.99);
        transform: scale(0.99);
    }
    
    /* Simplify complex hover animations */
    .float-card:hover {
        -webkit-transform: none !important;
        transform: none !important;
    }
    
    .phone-center:hover,
    .phone-left:hover,
    .phone-right:hover {
        -webkit-transition: none;
        transition: none;
    }
}

/* Webkit animation keyframes for iOS */
@-webkit-keyframes heroPhonesFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@-webkit-keyframes spotlightReveal {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-50%) scale(0.5);
        -webkit-filter: blur(50px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(-50%) scale(1);
        -webkit-filter: blur(0);
    }
}

@-webkit-keyframes bottomGlowReveal {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@-webkit-keyframes slideUp {
    to { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}

@-webkit-keyframes cinematicTextReveal {
    0% {
        opacity: 0;
        -webkit-transform: translateY(60px);
        -webkit-filter: blur(10px);
    }
    50% {
        -webkit-filter: blur(0);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -webkit-filter: blur(0);
    }
}

@-webkit-keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@-webkit-keyframes cinematicFadeUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -webkit-filter: blur(8px);
    }
    60% {
        -webkit-filter: blur(0);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -webkit-filter: blur(0);
    }
}

@-webkit-keyframes ctaGroupReveal {
    0% {
        opacity: 0;
        -webkit-transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0) scale(1);
    }
}

@-webkit-keyframes navScan {
    0%, 100% { left: -60%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

@-webkit-keyframes shimmer {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

@-webkit-keyframes statusPulse {
    0%, 100% { opacity: 1; -webkit-transform: scale(1); }
    50% { opacity: 0.6; -webkit-transform: scale(1.3); }
}

@-webkit-keyframes pulseCore {
    0%, 100% { -webkit-transform: scale(1); opacity: 1; }
    50% { -webkit-transform: scale(1.2); opacity: 0.8; }
}

@-webkit-keyframes pulseRing {
    0% { -webkit-transform: scale(1); opacity: 0.6; }
    100% { -webkit-transform: scale(1.8); opacity: 0; }
}

@-webkit-keyframes pulse {
    0%, 100% { -webkit-transform: scale(1); opacity: 1; }
    50% { -webkit-transform: scale(1.5); opacity: 0.5; }
}

@-webkit-keyframes centerPhoneReveal {
    0% {
        opacity: 0;
        -webkit-transform: translate(-50%, -30%) rotateX(25deg) rotateY(0deg) scale(0.7);
        -webkit-filter: blur(10px);
    }
    40% {
        opacity: 1;
        -webkit-filter: blur(0);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) rotateX(8deg) rotateY(0deg) scale(1);
        -webkit-filter: blur(0);
    }
}

@-webkit-keyframes leftPhoneReveal {
    0% {
        opacity: 0;
        -webkit-transform: translate(calc(-50% - 400px), -40%) rotateY(60deg) rotateX(15deg) scale(0.5);
        -webkit-filter: blur(15px);
    }
    30% {
        opacity: 0.4;
        -webkit-filter: blur(5px);
    }
    100% {
        opacity: 0.7;
        -webkit-transform: translate(calc(-50% - 260px), -50%) rotateY(30deg) rotateX(5deg) scale(0.8);
        -webkit-filter: blur(0);
    }
}

@-webkit-keyframes rightPhoneReveal {
    0% {
        opacity: 0;
        -webkit-transform: translate(calc(-50% + 400px), -40%) rotateY(-60deg) rotateX(15deg) scale(0.5);
        -webkit-filter: blur(15px);
    }
    30% {
        opacity: 0.4;
        -webkit-filter: blur(5px);
    }
    100% {
        opacity: 0.7;
        -webkit-transform: translate(calc(-50% + 260px), -50%) rotateY(-30deg) rotateX(5deg) scale(0.8);
        -webkit-filter: blur(0);
    }
}

@-webkit-keyframes cinematicGlowReveal {
    0% { 
        opacity: 0; 
        -webkit-transform: scale(0.3);
        -webkit-filter: blur(120px);
    }
    60% {
        opacity: 0.8;
        -webkit-filter: blur(70px);
    }
    100% { 
        opacity: 0.6; 
        -webkit-transform: scale(1);
        -webkit-filter: blur(80px);
    }
}

@-webkit-keyframes floatCard {
    0%, 100% { -webkit-transform: translateY(0) rotate(0deg); }
    50% { -webkit-transform: translateY(-15px) rotate(2deg); }
}

@-webkit-keyframes floatCard1Reveal {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100px) translateY(30px) scale(0.8) rotate(-10deg);
        -webkit-filter: blur(10px);
    }
    60% {
        opacity: 1;
        -webkit-filter: blur(0);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0) translateY(0) scale(1) rotate(0deg);
        -webkit-filter: blur(0);
    }
}

@-webkit-keyframes floatCard2Reveal {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100px) translateY(30px) scale(0.8) rotate(10deg);
        -webkit-filter: blur(10px);
    }
    60% {
        opacity: 1;
        -webkit-filter: blur(0);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0) translateY(0) scale(1) rotate(0deg);
        -webkit-filter: blur(0);
    }
}

@-webkit-keyframes floatCard3Reveal {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-60px) translateY(80px) scale(0.7) rotate(-5deg);
        -webkit-filter: blur(12px);
    }
    60% {
        opacity: 1;
        -webkit-filter: blur(0);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0) translateY(0) scale(1) rotate(0deg);
        -webkit-filter: blur(0);
    }
}

@-webkit-keyframes floatCard4Reveal {
    0% {
        opacity: 0;
        -webkit-transform: translateX(60px) translateY(80px) scale(0.7) rotate(5deg);
        -webkit-filter: blur(12px);
    }
    60% {
        opacity: 1;
        -webkit-filter: blur(0);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0) translateY(0) scale(1) rotate(0deg);
        -webkit-filter: blur(0);
    }
}

@-webkit-keyframes ctaGlow {
    0%, 100% { -webkit-transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    50% { -webkit-transform: translate(-50%, -50%) scale(1.3); opacity: 0.8; }
}

@-webkit-keyframes borderGlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

@-webkit-keyframes scanLight {
    0%, 100% { left: -60%; }
    50% { left: 100%; }
}

@-webkit-keyframes pulseExpand {
    0% {
        -webkit-transform: scale(0.5);
        opacity: 1;
        border-color: rgba(34, 197, 94, 0.8);
    }
    100% {
        -webkit-transform: scale(2);
        opacity: 0;
        border-color: rgba(34, 197, 94, 0);
    }
}

@-webkit-keyframes corePulse {
    0%, 100% {
        -webkit-transform: scale(1);
        box-shadow: 
            0 0 20px rgba(34, 197, 94, 0.8),
            0 0 40px rgba(34, 197, 94, 0.4);
    }
    50% {
        -webkit-transform: scale(1.15);
        box-shadow: 
            0 0 30px rgba(34, 197, 94, 1),
            0 0 60px rgba(34, 197, 94, 0.6);
    }
}

@-webkit-keyframes textShimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

@-webkit-keyframes particleFloat {
    0%, 100% {
        bottom: -10px;
        opacity: 0;
        -webkit-transform: translateX(0) scale(0.5);
    }
    10% {
        opacity: 1;
        -webkit-transform: scale(1);
    }
    50% {
        opacity: 0.8;
        -webkit-transform: translateX(-10px) scale(1.2);
    }
    90% {
        opacity: 0.3;
        -webkit-transform: translateX(10px) scale(0.8);
    }
    100% {
        bottom: 100%;
        opacity: 0;
        -webkit-transform: translateX(0) scale(0);
    }
}

@-webkit-keyframes notchPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@-webkit-keyframes ringReveal {
    from { opacity: 0; -webkit-transform: translate(-50%, -50%) scale(0.5) rotate(0deg); }
    to { opacity: 0.5; -webkit-transform: translate(-50%, -50%) scale(1) rotate(0deg); }
}

/* Fix for iOS safe area (notch) */
@supports (padding-top: env(safe-area-inset-top)) {
    nav {
        top: calc(24px + env(safe-area-inset-top));
    }
    
    .hero {
        padding-top: calc(140px + env(safe-area-inset-top));
    }
    
    footer {
        padding-bottom: calc(50px + env(safe-area-inset-bottom));
    }
}
