/* ========================================
   SuperShots AI - Landing Page Styles
   Modern, Professional Design with Purple/Teal Theme
   Complete Redesign for WOW Effect
   ======================================== */

/* ========================================
   CSS VARIABLES - DESIGN SYSTEM
   ======================================== */
:root {
    /* Brand Colors - From iOS App */
    --primary: #5E5CE6;
    --primary-dark: #4B49CC;
    --primary-light: #7B79F0;
    --accent: #00C7BE;
    --accent-dark: #00A39A;
    --accent-light: #33D4CC;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #5E5CE6 0%, #7B79F0 100%);
    --gradient-primary-hover: linear-gradient(135deg, #4B49CC 0%, #5E5CE6 100%);
    --gradient-radial: radial-gradient(circle at 50% 50%, rgba(94, 92, 230, 0.15) 0%, transparent 50%);
    --gradient-dark: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #2d1b4e 100%);
    --gradient-hero-bg: linear-gradient(180deg, #fafafa 0%, #f0f0ff 100%);

    /* Neutral Colors */
    --white: #FFFFFF;
    --black: #000000;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-400: #BDBDBD;
    --gray-500: #9E9E9E;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;

    /* Spacing */
    --space-xxxs: 2px;
    --space-xxs: 4px;
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-xxl: 48px;
    --space-xxxl: 64px;
    --space-xxxxl: 96px;
    --space-xxxxxl: 128px;

    /* Border Radius */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-xxl: 24px;
    --radius-xxxl: 32px;
    --radius-full: 9999px;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Font Sizes */
    --font-xs: 12px;
    --font-sm: 14px;
    --font-md: 16px;
    --font-lg: 18px;
    --font-xl: 20px;
    --font-xxl: 24px;
    --font-xxxl: 32px;
    --font-display: 48px;
    --font-hero: clamp(36px, 5vw, 64px);
    --font-hero-xl: clamp(42px, 6vw, 72px);

    /* Font Weights */
    --weight-light: 300;
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
    --weight-extrabold: 800;
    --weight-black: 900;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(94, 92, 230, 0.5);
    --shadow-glow-strong: 0 0 30px rgba(94, 92, 230, 0.6), 0 0 60px rgba(94, 92, 230, 0.3);
    --glow-purple-intense: 0 0 80px rgba(94, 92, 230, 0.5), 0 0 160px rgba(94, 92, 230, 0.2);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);

    /* Animations */
    --duration-instant: 100ms;
    --duration-fast: 200ms;
    --duration-standard: 300ms;
    --duration-slow: 500ms;
    --easing-standard: cubic-bezier(0.4, 0, 0.2, 1);
    --easing-decelerate: cubic-bezier(0, 0, 0.2, 1);
    --easing-accelerate: cubic-bezier(0.4, 0, 1, 1);
    --easing-spring: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-dramatic: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-md);
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--duration-standard) var(--easing-standard);
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
    background: none;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }
}

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

/* Gradient Orbs Background */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.gradient-orb-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(94, 92, 230, 0.7) 0%, rgba(94, 92, 230, 0.3) 40%, transparent 70%);
    top: -10%;
    right: -10%;
    animation: float-orb 20s ease-in-out infinite;
}

.gradient-orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 199, 190, 0.15) 0%, transparent 70%);
    bottom: 10%;
    left: -5%;
    animation: float-orb 25s ease-in-out infinite reverse;
}

.gradient-orb-3 {
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(94, 92, 230, 0.6) 0%, rgba(94, 92, 230, 0.25) 40%, transparent 70%);
    top: -20%;
    left: -10%;
    animation: float-orb 30s ease-in-out infinite;
}

.gradient-orb-4 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 199, 190, 0.18) 0%, transparent 70%);
    bottom: -15%;
    right: -10%;
    animation: float-orb 22s ease-in-out infinite reverse;
}

@keyframes float-orb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 30px) scale(0.9);
    }
}

/* Section Badge */
.section-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: linear-gradient(135deg, rgba(94, 92, 230, 0.18) 0%, rgba(94, 92, 230, 0.25) 100%);
    border: 1px solid rgba(94, 92, 230, 0.35);
    border-radius: var(--radius-full);
    font-size: var(--font-sm);
    font-weight: var(--weight-semibold);
    color: var(--primary);
    margin-bottom: var(--space-md);
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-lg) 0;
    transition: all var(--duration-standard) var(--easing-standard);
    background: transparent;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: var(--space-md) 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: var(--weight-bold);
    font-size: var(--font-lg);
    color: var(--gray-900);
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(94, 92, 230, 0.15);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-weight: var(--weight-medium);
    font-size: var(--font-sm);
    color: var(--gray-700);
    position: relative;
    padding: var(--space-xs) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--duration-standard) var(--easing-standard);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Language Selector */
.lang-selector {
    display: flex;
    align-items: center;
    gap: var(--space-xxs);
    padding: var(--space-xxs);
    background: var(--gray-100);
    border-radius: var(--radius-full);
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--font-xs);
    font-weight: var(--weight-semibold);
    color: var(--gray-600);
    background: transparent;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--duration-fast) var(--easing-standard);
}

.lang-btn:hover {
    color: var(--gray-900);
    background: var(--white);
}

.lang-btn.active {
    color: var(--white);
    background: var(--primary);
    box-shadow: 0 2px 8px rgba(94, 92, 230, 0.3);
}

.lang-code {
    letter-spacing: 0.5px;
}

/* Mobile language selector */
@media (max-width: 768px) {
    .lang-selector {
        order: -1;
        margin-bottom: var(--space-sm);
    }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: var(--space-xxs);
    padding: var(--space-xs);
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-900);
    transition: all var(--duration-standard) var(--easing-standard);
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--space-lg);
        gap: var(--space-md);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        transition: transform var(--duration-standard) var(--easing-standard);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-weight: var(--weight-semibold);
    font-size: var(--font-md);
    transition: all var(--duration-standard) var(--easing-standard);
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.btn-primary:hover {
    background: var(--gradient-primary-hover);
    box-shadow: var(--shadow-lg), var(--shadow-glow-strong);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid rgba(94, 92, 230, 0.3);
}

.btn-secondary:hover {
    background: rgba(94, 92, 230, 0.05);
    border-color: rgba(94, 92, 230, 0.5);
    box-shadow: 0 0 0 3px rgba(94, 92, 230, 0.1);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid rgba(94, 92, 230, 0.25);
}

.btn-outline:hover {
    background: rgba(94, 92, 230, 0.08);
    border-color: rgba(94, 92, 230, 0.4);
    color: var(--primary-dark);
}

.btn-small {
    padding: var(--space-xs) var(--space-md);
    font-size: var(--font-sm);
}

.btn-large {
    padding: var(--space-md) var(--space-xl);
    font-size: var(--font-md);
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform var(--duration-slow) var(--easing-standard);
}

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

.btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--space-xxxxl) + 80px) 0 var(--space-xxxxl);
    overflow: hidden;
    background: var(--gradient-hero-bg);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xxxl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 1s var(--easing-decelerate) both;
}

.hero-title {
    font-size: var(--font-hero-xl);
    font-weight: var(--weight-black);
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    color: var(--gray-900);
}

.hero-subtitle {
    font-size: var(--font-xl);
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: var(--space-xl);
    max-width: 540px;
}

.hero-cta {
    display: flex;
    flex-direction: row;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    align-items: center;
    flex-wrap: wrap;
}

.hero-cta .btn {
    flex: 0 1 auto;
    white-space: nowrap;
}

/* Hero Badges */
.hero-badges {
    display: flex;
    flex-direction: row;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(94, 92, 230, 0.15);
    border-radius: var(--radius-full);
    font-size: var(--font-sm);
    font-weight: var(--weight-medium);
    color: var(--gray-700);
}

.hero-badge .badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

/* ========================================
   ORBITAL SCREENSHOTS SYSTEM - IMPACTFUL
   ======================================== */
.orbital-system {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    pointer-events: none;
    z-index: 0;
}

/* Orbit Rings */
.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px dashed rgba(94, 92, 230, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit-ring-1 {
    width: 300px;
    height: 300px;
    animation: rotate-orbit 40s linear infinite;
}

.orbit-ring-2 {
    width: 450px;
    height: 450px;
    animation: rotate-orbit 60s linear infinite reverse;
}

.orbit-ring-3 {
    width: 600px;
    height: 600px;
    animation: rotate-orbit 80s linear infinite;
}

@keyframes rotate-orbit {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Category Labels floating around */
.category-label {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 0 40px rgba(94, 92, 230, 0.15);
    z-index: 10;
    animation: float-category 5s ease-in-out infinite;
}

.category-label .cat-icon {
    font-size: 16px;
}

.cat-recipes {
    top: 8%;
    right: 25%;
    color: #E07B4C;
    border: 2px solid rgba(224, 123, 76, 0.3);
    animation-delay: 0s;
}

.cat-travel {
    top: 35%;
    right: -5%;
    color: #28A745;
    border: 2px solid rgba(40, 167, 69, 0.3);
    animation-delay: -1.2s;
}

.cat-work {
    bottom: 30%;
    right: 0%;
    color: #0066CC;
    border: 2px solid rgba(0, 102, 204, 0.3);
    animation-delay: -2.5s;
}

.cat-social {
    bottom: 8%;
    right: 30%;
    color: #E83E8C;
    border: 2px solid rgba(232, 62, 140, 0.3);
    animation-delay: -3.8s;
}

@keyframes float-category {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.02); }
}

/* Orbiting Screenshots */
.orbiting-screenshot {
    position: absolute;
    width: 70px;
    height: 100px;
    z-index: 5;
}

.screenshot-mini {
    width: 100%;
    height: 100%;
    position: relative;
}

.screenshot-img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(94, 92, 230, 0.2);
    position: relative;
    overflow: hidden;
}

/* Screenshot backgrounds with realistic content hint */
.recipe-img {
    background: linear-gradient(135deg, #FFE4D6 0%, #FFCDB2 100%);
}
.recipe-img::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    right: 15%;
    height: 40%;
    background: rgba(224, 123, 76, 0.3);
    border-radius: 6px;
}
.recipe-img::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 15%;
    right: 15%;
    height: 25%;
    background: repeating-linear-gradient(
        0deg,
        rgba(224, 123, 76, 0.2) 0px,
        rgba(224, 123, 76, 0.2) 4px,
        transparent 4px,
        transparent 8px
    );
}

.recipe-img-2 {
    background: linear-gradient(135deg, #FFF0E6 0%, #FFE4D6 100%);
}
.recipe-img-2::before {
    content: '🍕';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    opacity: 0.7;
}

.travel-img {
    background: linear-gradient(135deg, #D4EDDA 0%, #A8E6CF 100%);
}
.travel-img::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    height: 50%;
    background: linear-gradient(180deg, rgba(40, 167, 69, 0.2) 0%, rgba(40, 167, 69, 0.4) 100%);
    border-radius: 6px;
}
.travel-img::after {
    content: '✈️';
    position: absolute;
    bottom: 15%;
    right: 15%;
    font-size: 20px;
}

.travel-img-2 {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
}
.travel-img-2::before {
    content: '🗺️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    opacity: 0.7;
}

.work-img {
    background: linear-gradient(135deg, #CCE5FF 0%, #99CCFF 100%);
}
.work-img::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    right: 15%;
    bottom: 15%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 102, 204, 0.15) 0px,
        rgba(0, 102, 204, 0.15) 8px,
        transparent 8px,
        transparent 16px
    );
}

.work-img-2 {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
}
.work-img-2::before {
    content: '📊';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    opacity: 0.7;
}

.social-img {
    background: linear-gradient(135deg, #FCE4EC 0%, #F8BBD9 100%);
}
.social-img::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 25px;
    height: 25px;
    background: rgba(232, 62, 140, 0.3);
    border-radius: 50%;
}
.social-img::after {
    content: '';
    position: absolute;
    top: 55%;
    left: 15%;
    right: 15%;
    height: 30%;
    background: repeating-linear-gradient(
        0deg,
        rgba(232, 62, 140, 0.15) 0px,
        rgba(232, 62, 140, 0.15) 4px,
        transparent 4px,
        transparent 8px
    );
}

.social-img-2 {
    background: linear-gradient(135deg, #FFF0F5 0%, #FCE4EC 100%);
}
.social-img-2::before {
    content: '💬';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    opacity: 0.7;
}

/* Seeking animation - line connecting to category */
.screenshot-seeking {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 0;
    pointer-events: none;
}

.seeking-dot {
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary);
    animation: pulse-dot 1.5s ease-in-out infinite;
}

.seeking-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 30px;
    background: linear-gradient(to top, transparent, var(--primary));
    opacity: 0.5;
}

@keyframes pulse-dot {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary);
    }
    50% {
        transform: translateX(-50%) scale(1.3);
        box-shadow: 0 0 20px var(--primary), 0 0 40px var(--primary);
    }
}

/* Screenshot positions - orbiting around center */
.os-1 {
    top: 5%;
    left: 40%;
    animation: orbit-float-1 12s ease-in-out infinite;
}

.os-2 {
    top: 20%;
    right: 5%;
    animation: orbit-float-2 14s ease-in-out infinite;
}

.os-3 {
    top: 50%;
    right: -2%;
    animation: orbit-float-3 11s ease-in-out infinite;
}

.os-4 {
    bottom: 15%;
    right: 10%;
    animation: orbit-float-4 13s ease-in-out infinite;
}

.os-5 {
    bottom: 5%;
    left: 35%;
    animation: orbit-float-5 15s ease-in-out infinite;
}

.os-6 {
    bottom: 25%;
    left: 5%;
    animation: orbit-float-6 10s ease-in-out infinite;
}

.os-7 {
    top: 35%;
    left: 0%;
    animation: orbit-float-7 12s ease-in-out infinite;
}

.os-8 {
    top: 10%;
    left: 15%;
    animation: orbit-float-8 14s ease-in-out infinite;
}

/* Complex orbital float animations */
@keyframes orbit-float-1 {
    0%, 100% { transform: translate(0, 0) rotate(-5deg); }
    25% { transform: translate(15px, 20px) rotate(3deg); }
    50% { transform: translate(-10px, 35px) rotate(-3deg); }
    75% { transform: translate(-20px, 10px) rotate(5deg); }
}

@keyframes orbit-float-2 {
    0%, 100% { transform: translate(0, 0) rotate(5deg); }
    25% { transform: translate(-25px, 15px) rotate(-3deg); }
    50% { transform: translate(-15px, -20px) rotate(8deg); }
    75% { transform: translate(10px, -10px) rotate(-5deg); }
}

@keyframes orbit-float-3 {
    0%, 100% { transform: translate(0, 0) rotate(-3deg); }
    33% { transform: translate(-30px, -25px) rotate(5deg); }
    66% { transform: translate(15px, 20px) rotate(-8deg); }
}

@keyframes orbit-float-4 {
    0%, 100% { transform: translate(0, 0) rotate(8deg); }
    25% { transform: translate(20px, -30px) rotate(-5deg); }
    50% { transform: translate(-15px, -20px) rotate(3deg); }
    75% { transform: translate(-25px, 10px) rotate(-3deg); }
}

@keyframes orbit-float-5 {
    0%, 100% { transform: translate(0, 0) rotate(-8deg); }
    33% { transform: translate(25px, -15px) rotate(5deg); }
    66% { transform: translate(-10px, -30px) rotate(-3deg); }
}

@keyframes orbit-float-6 {
    0%, 100% { transform: translate(0, 0) rotate(3deg); }
    25% { transform: translate(30px, 15px) rotate(-5deg); }
    50% { transform: translate(20px, -25px) rotate(8deg); }
    75% { transform: translate(-10px, -15px) rotate(-8deg); }
}

@keyframes orbit-float-7 {
    0%, 100% { transform: translate(0, 0) rotate(-5deg); }
    50% { transform: translate(25px, 25px) rotate(5deg); }
}

@keyframes orbit-float-8 {
    0%, 100% { transform: translate(0, 0) rotate(5deg); }
    33% { transform: translate(-15px, 30px) rotate(-8deg); }
    66% { transform: translate(20px, 15px) rotate(3deg); }
}

/* Connection Particles */
.particles-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.6;
    animation: particle-float 8s ease-in-out infinite;
}

.p1 { top: 30%; left: 25%; animation-delay: 0s; }
.p2 { top: 50%; left: 45%; animation-delay: -1.5s; }
.p3 { top: 70%; left: 30%; animation-delay: -3s; }
.p4 { top: 25%; right: 30%; animation-delay: -4.5s; }
.p5 { top: 60%; right: 25%; animation-delay: -6s; }
.p6 { bottom: 20%; left: 50%; animation-delay: -7s; }

@keyframes particle-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(20px, -30px) scale(1.5);
        opacity: 0.3;
    }
    50% {
        transform: translate(-15px, -50px) scale(0.8);
        opacity: 0.8;
    }
    75% {
        transform: translate(25px, -20px) scale(1.2);
        opacity: 0.4;
    }
}

/* Responsive adjustments for orbital system */
@media (max-width: 1200px) {
    .orbital-system {
        width: 550px;
        height: 550px;
        right: 5%;
    }

    .orbit-ring-1 { width: 250px; height: 250px; }
    .orbit-ring-2 { width: 380px; height: 380px; }
    .orbit-ring-3 { width: 500px; height: 500px; }
}

@media (max-width: 1024px) {
    .orbital-system {
        display: none;
    }
}

/* Legacy floating screenshot cleanup */
.floating-screenshots {
    display: none;
}

/* Hero Visual - 3D Phone Mockup */
.hero-visual {
    position: relative;
    animation: fadeInUp 1s var(--easing-decelerate) 0.2s both;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup-3d {
    transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
    transition: transform 0.6s var(--ease-dramatic);
    animation: float-gentle 6s ease-in-out infinite;
}

.phone-mockup-3d:hover {
    transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}

.phone-frame {
    width: 280px;
    aspect-ratio: 9 / 19.5;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: var(--radius-xxxl);
    padding: 8px;
    box-shadow:
        var(--shadow-2xl),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 22px;
    background: #000000;
    border-radius: 12px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: calc(var(--radius-xxxl) - var(--space-sm));
    overflow: hidden;
    position: relative;
}

/* Real App Screenshot */
.app-screenshot-real {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: calc(var(--radius-xxxl) - var(--space-sm));
}

.phone-screen-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shine 4s infinite;
    z-index: 20;
}

@keyframes shine {
    0% { left: -100%; }
    20%, 100% { left: 200%; }
}

@keyframes float-gentle {
    0%, 100% {
        transform: perspective(1200px) rotateY(-8deg) rotateX(4deg) translateY(0);
    }
    50% {
        transform: perspective(1200px) rotateY(-8deg) rotateX(4deg) translateY(-20px);
    }
}

/* App UI Preview inside phone */
.app-ui-preview {
    padding: var(--space-xl) var(--space-md) var(--space-md);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.app-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.app-logo {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: var(--weight-bold);
    font-size: var(--font-sm);
}

.app-search-bar {
    flex: 1;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: var(--gray-100);
    border-radius: var(--radius-md);
    font-size: 10px;
    color: var(--gray-500);
}

.app-categories {
    display: flex;
    gap: var(--space-xs);
    overflow-x: auto;
}

.category-pill {
    padding: var(--space-xxs) var(--space-sm);
    background: var(--gray-100);
    border-radius: var(--radius-full);
    font-size: 9px;
    font-weight: var(--weight-medium);
    color: var(--gray-600);
    white-space: nowrap;
}

.category-pill.active {
    background: var(--gradient-primary);
    color: white;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xs);
    flex: 1;
}

.grid-item {
    background: var(--gray-200);
    border-radius: var(--radius-sm);
    aspect-ratio: 1;
    animation: pulse-grid 2s ease-in-out infinite;
}

.grid-item:nth-child(1) { animation-delay: 0s; background: linear-gradient(135deg, #FFE4D6 0%, #FFCDB2 100%); }
.grid-item:nth-child(2) { animation-delay: 0.2s; background: linear-gradient(135deg, #CCE5FF 0%, #99CCFF 100%); }
.grid-item:nth-child(3) { animation-delay: 0.4s; background: linear-gradient(135deg, #D4EDDA 0%, #A8E6CF 100%); }
.grid-item:nth-child(4) { animation-delay: 0.6s; background: linear-gradient(135deg, #FFF3CD 0%, #FFEEBA 100%); }
.grid-item:nth-child(5) { animation-delay: 0.8s; background: linear-gradient(135deg, #F8D7DA 0%, #F5C6CB 100%); }
.grid-item:nth-child(6) { animation-delay: 1s; background: linear-gradient(135deg, #E2E3E5 0%, #D6D8DB 100%); }

@keyframes pulse-grid {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(0.98); }
}

/* ========================================
   PROBLEM SECTION - DARK DRAMATIC
   ======================================== */
.problem-section {
    background: var(--gradient-dark);
    padding: var(--space-xxxxl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.problem-content {
    max-width: 900px;
    margin: 0 auto;
}

.problem-line {
    font-size: clamp(20px, 3.5vw, 36px);
    font-weight: var(--weight-semibold);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-lg);
    line-height: 1.4;
}

.problem-line em {
    color: #ef4444;
    font-style: normal;
    font-weight: var(--weight-bold);
    text-transform: uppercase;
}

.problem-conclusion {
    font-size: clamp(28px, 4.5vw, 52px);
    font-weight: var(--weight-black);
    color: var(--white);
    margin-top: var(--space-xxl);
    margin-bottom: var(--space-lg);
}

.problem-solution {
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: var(--weight-black);
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
    padding: var(--space-xxxxl) 0;
    background: linear-gradient(180deg, rgba(94, 92, 230, 0.03) 0%, rgba(94, 92, 230, 0.08) 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xxxl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(var(--font-xxxl), 4vw, var(--font-display));
    font-weight: var(--weight-extrabold);
    background: linear-gradient(135deg, #5E5CE6 0%, #7B79F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.section-subtitle {
    font-size: var(--font-xl);
    color: var(--gray-600);
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-xxl);
    border: 1px solid var(--gray-200);
    transition: all var(--duration-standard) var(--easing-standard);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(94, 92, 230, 0.4);
    background: linear-gradient(135deg, rgba(94, 92, 230, 0.02) 0%, rgba(94, 92, 230, 0.05) 100%);
}

.feature-icon-wrapper {
    margin-bottom: var(--space-lg);
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--duration-standard) var(--easing-spring);
}

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

.feature-title {
    font-size: var(--font-xxl);
    font-weight: var(--weight-bold);
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

.feature-description {
    font-size: var(--font-md);
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.feature-list li {
    font-size: var(--font-sm);
    color: var(--gray-700);
    padding-left: var(--space-lg);
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: var(--weight-bold);
    font-size: var(--font-md);
}

/* ========================================
   USE CASES SECTION
   ======================================== */
.use-cases {
    padding: var(--space-xxxxl) 0;
    background: var(--white);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-md);
}

@media (max-width: 1024px) {
    .use-cases-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.use-case-card {
    padding: var(--space-lg);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--duration-standard) var(--easing-standard);
    border: 1px solid transparent;
}

.use-case-card:hover {
    background: var(--white);
    border-color: rgba(94, 92, 230, 0.3);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.use-case-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(94, 92, 230, 0.1) 0%, rgba(0, 199, 190, 0.1) 100%);
    border-radius: var(--radius-lg);
    color: var(--primary);
}

.use-case-title {
    font-size: var(--font-md);
    font-weight: var(--weight-bold);
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
}

.use-case-description {
    font-size: var(--font-sm);
    color: var(--gray-600);
    line-height: 1.5;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-it-works {
    padding: var(--space-xxxxl) 0;
    background: linear-gradient(180deg, rgba(94, 92, 230, 0.03) 0%, rgba(94, 92, 230, 0.08) 100%);
}

.steps {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xxxl);
    position: relative;
}

.step:last-child {
    margin-bottom: 0;
}

.step-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-xxxl);
    font-weight: var(--weight-extrabold);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    position: relative;
    z-index: 10;
}

.step-line {
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
    opacity: 0.3;
    flex: 1;
    margin-top: var(--space-md);
}

.step:last-child .step-line {
    display: none;
}

.step-content {
    padding-top: var(--space-md);
}

.step-title {
    font-size: var(--font-xxl);
    font-weight: var(--weight-bold);
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

.step-description {
    font-size: var(--font-md);
    color: var(--gray-600);
    line-height: 1.7;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
    padding: var(--space-xxxxl) 0;
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--duration-standard) var(--easing-standard);
}

.faq-item:hover {
    border-color: rgba(94, 92, 230, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    background: none;
    border: none;
    text-align: left;
    font-size: var(--font-lg);
    font-weight: var(--weight-semibold);
    color: var(--gray-900);
    cursor: pointer;
    transition: all var(--duration-standard) var(--easing-standard);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--duration-standard) var(--easing-standard);
    color: var(--gray-500);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-slow) var(--easing-standard);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--gray-600);
    line-height: 1.7;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta {
    padding: var(--space-xxxxl) 0;
    background: linear-gradient(180deg, rgba(94, 92, 230, 0.05) 0%, rgba(94, 92, 230, 0.12) 100%);
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(var(--font-xxxl), 4vw, var(--font-display));
    font-weight: var(--weight-extrabold);
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.cta-subtitle {
    font-size: var(--font-xl);
    color: var(--gray-600);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

.cta-note {
    font-size: var(--font-sm);
    color: var(--gray-500);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: var(--space-xxxl) 0 var(--space-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-xxxl);
    margin-bottom: var(--space-xl);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-logo .logo-text {
    font-size: var(--font-lg);
    font-weight: var(--weight-bold);
    color: var(--white);
}

.footer-tagline {
    font-size: var(--font-sm);
    color: var(--gray-500);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.footer-column-title {
    font-size: var(--font-sm);
    font-weight: var(--weight-semibold);
    color: var(--white);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-link-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-link-list a {
    font-size: var(--font-sm);
    color: var(--gray-400);
    transition: color var(--duration-fast) var(--easing-standard);
}

.footer-link-list a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-copyright {
    font-size: var(--font-sm);
    color: var(--gray-600);
}

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

@keyframes text-reveal {
    from {
        clip-path: inset(0 100% 0 0);
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        clip-path: inset(0 0 0 0);
        opacity: 1;
        transform: translateY(0);
    }
}

[data-aos] {
    opacity: 0;
    transition: opacity var(--duration-slow) var(--easing-decelerate),
                transform var(--duration-slow) var(--easing-decelerate);
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-40px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(40px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-xxl);
        text-align: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-content {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-badges {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-xxl);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: calc(var(--space-xxxl) + 80px) 0 var(--space-xxxl);
    }

    .hero-title {
        font-size: clamp(32px, 8vw, 48px);
    }

    .hero-subtitle {
        font-size: var(--font-md);
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 320px;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .hero-visual {
        padding: 0 var(--space-xl);
    }

    .phone-frame {
        width: 240px;
        padding: 6px;
        border-radius: 28px;
    }

    .phone-screen {
        border-radius: 22px;
    }

    .phone-notch {
        width: 50px;
        height: 14px;
        top: 14px;
        border-radius: 8px;
    }

    .app-screenshot-real {
        border-radius: 22px;
    }

    .floating-screenshot {
        width: 60px;
        height: 90px;
    }

    .section-title {
        font-size: var(--font-xxxl);
    }

    .section-subtitle {
        font-size: var(--font-md);
    }

    .step {
        grid-template-columns: 70px 1fr;
        gap: var(--space-md);
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: var(--font-xxl);
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .cta-title {
        font-size: var(--font-xxxl);
    }

    .cta-subtitle {
        font-size: var(--font-md);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .btn-large {
        padding: var(--space-sm) var(--space-lg);
        font-size: var(--font-sm);
    }

    .feature-card {
        padding: var(--space-lg);
    }

    .hero-visual {
        padding: 0 var(--space-lg);
    }

    .phone-frame {
        width: 200px;
        padding: 5px;
        border-radius: 24px;
    }

    .phone-screen {
        border-radius: 20px;
    }

    .phone-notch {
        width: 45px;
        height: 12px;
        top: 12px;
        border-radius: 6px;
    }

    .app-screenshot-real {
        border-radius: 20px;
    }

    .floating-screenshot {
        display: none;
    }

    .hero-title {
        font-size: clamp(28px, 7vw, 36px);
        margin-bottom: var(--space-md);
    }

    .hero-subtitle {
        font-size: var(--font-sm);
        margin-bottom: var(--space-lg);
    }

    .hero {
        padding: calc(var(--space-xxl) + 80px) 0 var(--space-xxl);
    }

    .problem-section {
        padding: var(--space-xxxl) 0;
    }

    .features,
    .use-cases,
    .how-it-works,
    .faq,
    .cta {
        padding: var(--space-xxxl) 0;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .phone-mockup-3d {
        transform: none;
    }

    .floating-screenshot {
        display: none;
    }
}

/* Focus styles */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

button:focus-visible {
    outline-color: var(--primary);
}

/* ========================================
   AUTH PAGES - Supabase Authentication
   ======================================== */

/* Auth Page Layout */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero-bg);
    padding: var(--space-xl);
    position: relative;
    overflow: hidden;
}

.auth-page .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.auth-page .gradient-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(94, 92, 230, 0.3) 0%, transparent 70%);
    top: -20%;
    right: -10%;
}

.auth-page .gradient-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 199, 190, 0.25) 0%, transparent 70%);
    bottom: -15%;
    left: -10%;
}

/* Auth Container */
.auth-container {
    text-align: center;
    z-index: 1;
    max-width: 480px;
    width: 100%;
}

/* Auth Logo */
.auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xxl);
}

.auth-logo img {
    width: 48px;
    height: 48px;
}

.auth-logo span {
    font-size: var(--font-xl);
    font-weight: var(--weight-bold);
    color: var(--gray-900);
}

/* Auth Card */
.auth-card {
    background: var(--white);
    border-radius: var(--radius-xxl);
    padding: var(--space-xxl);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(94, 92, 230, 0.08);
    text-align: center;
}

/* Auth Icon */
.auth-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 40px;
    color: var(--white);
}

.auth-icon.success {
    background: linear-gradient(135deg, var(--accent) 0%, #00A39A 100%);
    box-shadow: 0 8px 24px rgba(0, 199, 190, 0.3);
}

.auth-icon.error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
}

.auth-icon.loading {
    background: var(--gray-100);
    color: var(--gray-400);
}

.auth-icon.form {
    background: var(--gradient-primary);
    box-shadow: 0 8px 24px rgba(94, 92, 230, 0.3);
}

/* Auth Title & Subtitle */
.auth-card h1 {
    font-size: var(--font-xxl);
    font-weight: var(--weight-bold);
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

.auth-card p {
    font-size: var(--font-md);
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

/* Auth States */
.auth-loading,
.auth-success,
.auth-error,
.auth-content {
    display: none;
}

.auth-loading.show,
.auth-success.show,
.auth-error.show,
.auth-content.show {
    display: block;
}

.auth-content:not(.hidden) {
    display: block;
}

.auth-content.hidden {
    display: none;
}

/* Loading Spinner */
.auth-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: auth-spin 1s linear infinite;
    margin: 0 auto var(--space-lg);
}

@keyframes auth-spin {
    to { transform: rotate(360deg); }
}

/* Auth Buttons */
.auth-card .btn {
    width: 100%;
    margin-top: var(--space-md);
}

.auth-card .btn-secondary {
    margin-top: var(--space-sm);
}

/* Auth Form */
.auth-form {
    text-align: left;
}

.auth-form .form-group {
    margin-bottom: var(--space-lg);
}

.auth-form label {
    display: block;
    font-size: var(--font-sm);
    font-weight: var(--weight-semibold);
    color: var(--gray-700);
    margin-bottom: var(--space-xs);
}

.auth-form input[type="password"],
.auth-form input[type="email"],
.auth-form input[type="text"] {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    font-size: var(--font-md);
    font-family: var(--font-family);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--white);
    transition: all var(--duration-fast) var(--easing-standard);
}

.auth-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(94, 92, 230, 0.1);
}

.auth-form input.error {
    border-color: #ef4444;
}

/* Password Requirements */
.password-requirements {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-top: var(--space-sm);
}

.password-requirements .req {
    font-size: var(--font-xs);
    padding: var(--space-xxs) var(--space-xs);
    border-radius: var(--radius-full);
    background: var(--gray-100);
    color: var(--gray-500);
    transition: all var(--duration-fast) var(--easing-standard);
}

.password-requirements .req.valid {
    background: rgba(0, 199, 190, 0.15);
    color: var(--accent-dark);
}

.password-requirements .req.valid::before {
    content: '✓ ';
}

/* Form Error Message */
.form-error {
    display: none;
    font-size: var(--font-sm);
    color: #ef4444;
    margin-top: var(--space-sm);
    padding: var(--space-sm);
    background: rgba(239, 68, 68, 0.1);
    border-radius: var(--radius-sm);
    text-align: center;
}

.form-error.show {
    display: block;
}

/* Auth Error Message */
.auth-error-message {
    font-size: var(--font-md);
    color: var(--gray-700);
    margin-bottom: var(--space-lg);
}

/* Auth Links */
.auth-links {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--gray-200);
}

.auth-links a {
    display: inline-block;
    font-size: var(--font-sm);
    color: var(--primary);
    font-weight: var(--weight-medium);
}

.auth-links a:hover {
    text-decoration: underline;
}

/* Auth Footer Note */
.auth-note {
    margin-top: var(--space-xl);
    font-size: var(--font-sm);
    color: var(--gray-500);
}

/* App Store Badge in Auth */
.auth-app-badge {
    display: inline-flex;
    margin-top: var(--space-md);
}

.auth-app-badge img {
    height: 44px;
    width: auto;
}

/* Responsive Auth */
@media (max-width: 480px) {
    .auth-page {
        padding: var(--space-md);
    }

    .auth-card {
        padding: var(--space-xl);
    }

    .auth-card h1 {
        font-size: var(--font-xl);
    }

    .auth-icon {
        width: 64px;
        height: 64px;
        font-size: 32px;
    }

    .password-requirements {
        gap: var(--space-xxs);
    }

    .password-requirements .req {
        font-size: 10px;
        padding: 2px 6px;
    }
}
