/* ================================
   Somnia Landing Page Styles
   "Midnight Dreams" Design System
   ================================ */

/* CSS Variables - Midnight Dreams Palette */
:root {
    /* Primary Colors - Violet/Purple Dream Theme */
    --primary: #8B5CF6;
    --primary-dark: #7C3AED;
    --primary-light: #A78BFA;
    --primary-glow: rgba(139, 92, 246, 0.4);

    /* Accent Colors */
    --accent-pink: #F472B6;
    --accent-blue: #38BDF8;
    --accent-gold: #FBBF24;
    --secondary: #34D399;

    /* Background - Dark Dreamy Theme (Hero) */
    --bg-dark: #0B0A10;
    --bg-darker: #06050A;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --bg-glass: rgba(139, 92, 246, 0.08);
    --bg-main: #0F0D15;
    --bg-white: #ffffff;
    --bg-section: rgba(139, 92, 246, 0.03);
    --bg-section-alt: rgba(244, 114, 182, 0.03);

    /* Light Theme Colors (Content Sections) */
    --bg-light: #FAFAFC;
    --bg-light-alt: #F5F3FF;
    --bg-light-card: #ffffff;
    --bg-light-glass: rgba(139, 92, 246, 0.06);
    --border-light: rgba(139, 92, 246, 0.12);
    --border-light-hover: rgba(139, 92, 246, 0.25);

    /* Text Colors */
    --text-primary: #F8FAFC;
    --text-secondary: #A3A3C2;
    --text-tertiary: #6B6B8D;
    --text-white: #ffffff;
    --text-dark: #1F1D2B;
    --text-dark-secondary: #64628A;
    --text-dark-tertiary: #9794B0;

    /* Dream/Cosmic Colors */
    --star-gold: #FBBF24;
    --star-pink: #F472B6;
    --star-blue: #38BDF8;
    --star-lavender: #C4B5FD;
    --star-white: #ffffff;
    --nebula-pink: rgba(244, 114, 182, 0.15);
    --nebula-purple: rgba(139, 92, 246, 0.12);
    --nebula-blue: rgba(56, 189, 248, 0.10);
    --nebula-lavender: rgba(196, 181, 253, 0.08);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    --space-5xl: 128px;

    /* Border Radius - More rounded for dreamy feel */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-2xl: 36px;
    --radius-pill: 100px;
    --radius-full: 50%;

    /* Shadows with Glow */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.4);
    --shadow-glow-primary: 0 0 40px rgba(139, 92, 246, 0.3), 0 0 80px rgba(139, 92, 246, 0.15);
    --shadow-glow-pink: 0 0 40px rgba(244, 114, 182, 0.3);
    --shadow-glow-blue: 0 0 30px rgba(56, 189, 248, 0.25);

    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-weight: 600;
}
a { text-decoration: none; color: inherit; }
::selection {
    background: var(--primary);
    color: var(--text-white);
}

/* Animated Background (Hero Only) */
.dreamy-background {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    z-index: 0;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, var(--nebula-purple) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, var(--nebula-pink) 0%, transparent 40%),
        radial-gradient(ellipse 50% 30% at 20% 80%, var(--nebula-blue) 0%, transparent 40%),
        linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 50%, var(--bg-main) 100%);
}

/* Star Field Layer 1 - Small stars */
.stars {
    position: absolute;
    width: 100%; height: 100%;
    background-image:
        radial-gradient(2px 2px at 10% 20%, var(--star-white), transparent),
        radial-gradient(2px 2px at 20% 40%, var(--star-lavender), transparent),
        radial-gradient(1px 1px at 30% 15%, var(--star-white), transparent),
        radial-gradient(2px 2px at 40% 60%, var(--star-pink), transparent),
        radial-gradient(1px 1px at 50% 35%, var(--star-white), transparent),
        radial-gradient(2px 2px at 60% 80%, var(--star-blue), transparent),
        radial-gradient(1px 1px at 70% 25%, var(--star-white), transparent),
        radial-gradient(2px 2px at 80% 50%, var(--star-gold), transparent),
        radial-gradient(1px 1px at 90% 70%, var(--star-white), transparent),
        radial-gradient(2px 2px at 15% 85%, var(--star-lavender), transparent),
        radial-gradient(1px 1px at 25% 55%, var(--star-white), transparent),
        radial-gradient(2px 2px at 35% 90%, var(--star-pink), transparent),
        radial-gradient(1px 1px at 45% 10%, var(--star-white), transparent),
        radial-gradient(2px 2px at 55% 75%, var(--star-blue), transparent),
        radial-gradient(1px 1px at 65% 45%, var(--star-white), transparent),
        radial-gradient(2px 2px at 75% 5%, var(--star-gold), transparent),
        radial-gradient(1px 1px at 85% 65%, var(--star-white), transparent),
        radial-gradient(2px 2px at 95% 30%, var(--star-lavender), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: twinkleStars 6s ease-in-out infinite;
}

/* Star Field Layer 2 - Larger stars */
.stars::before {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    background-image:
        radial-gradient(3px 3px at 5% 30%, var(--star-gold), transparent),
        radial-gradient(4px 4px at 25% 70%, var(--star-pink), transparent),
        radial-gradient(3px 3px at 45% 20%, var(--star-blue), transparent),
        radial-gradient(4px 4px at 65% 85%, var(--star-lavender), transparent),
        radial-gradient(3px 3px at 85% 40%, var(--star-gold), transparent),
        radial-gradient(4px 4px at 15% 95%, var(--star-pink), transparent),
        radial-gradient(3px 3px at 55% 50%, var(--star-white), transparent),
        radial-gradient(4px 4px at 75% 15%, var(--star-blue), transparent);
    background-repeat: repeat;
    background-size: 300px 300px;
    animation: twinkleStars 8s ease-in-out infinite reverse;
}

.moon {
    position: absolute;
    width: 200px; height: 200px;
    background:
        radial-gradient(circle at 35% 35%, #ffffff 0%, #e8e4f0 30%, #c9c2d9 70%, #a99bc4 100%);
    border-radius: var(--radius-full);
    top: 5%; right: 10%;
    box-shadow:
        0 0 80px rgba(196, 181, 253, 0.6),
        0 0 160px rgba(139, 92, 246, 0.3),
        inset -30px -30px 60px rgba(139, 92, 246, 0.15);
    animation: moonFloat 20s ease-in-out infinite, moonGlow 4s ease-in-out infinite;
}

/* Moon craters effect */
.moon::before {
    content: '';
    position: absolute;
    width: 30px; height: 30px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    top: 25%; left: 20%;
    box-shadow:
        40px 20px 0 15px rgba(139, 92, 246, 0.08),
        20px 60px 0 8px rgba(139, 92, 246, 0.06),
        70px 50px 0 12px rgba(139, 92, 246, 0.05);
}

/* Large Planets in Hero */
.planet {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.planet-1 {
    width: 100px; height: 100px;
    background: linear-gradient(135deg, var(--star-lavender) 0%, var(--primary) 100%);
    top: 65%; left: 5%;
    box-shadow:
        0 0 50px rgba(196, 181, 253, 0.4),
        0 0 100px rgba(139, 92, 246, 0.2),
        inset -15px -15px 30px rgba(0, 0, 0, 0.2);
    animation: planetFloat1 25s ease-in-out infinite;
}
/* Planet 1 ring */
.planet-1::before {
    content: '';
    position: absolute;
    width: 160px; height: 40px;
    border: 2px solid rgba(196, 181, 253, 0.3);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) rotateX(70deg);
}
.planet-2 {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--accent-pink) 0%, #db2777 100%);
    top: 20%; left: 8%;
    box-shadow:
        0 0 30px rgba(244, 114, 182, 0.5),
        inset -10px -10px 20px rgba(0, 0, 0, 0.2);
    animation: planetFloat2 30s ease-in-out infinite 5s;
}

.nebula {
    position: absolute;
    border-radius: var(--radius-full);
    filter: blur(100px);
    opacity: 0.6;
    pointer-events: none;
}
.nebula-1 {
    width: 600px; height: 600px;
    background: var(--nebula-purple);
    top: -10%; left: -20%;
    animation: nebulaDrift1 35s ease-in-out infinite;
}
.nebula-2 {
    width: 500px; height: 500px;
    background: var(--nebula-pink);
    top: 30%; right: -15%;
    animation: nebulaDrift2 40s ease-in-out infinite;
}
.nebula-3 {
    width: 400px; height: 400px;
    background: var(--nebula-blue);
    bottom: 10%; left: 20%;
    animation: nebulaDrift3 30s ease-in-out infinite;
}

/* Large Shooting Stars in Hero */
.shooting-star {
    position: absolute;
    width: 250px; height: 2px;
    background: linear-gradient(90deg, var(--star-white) 0%, var(--star-lavender) 30%, var(--primary-light) 60%, transparent 100%);
    transform: rotate(-45deg);
    opacity: 0;
    border-radius: 2px;
    filter: blur(0.5px);
}
.shooting-star::before {
    content: '';
    position: absolute;
    left: 0; top: -3px;
    width: 8px; height: 8px;
    background: radial-gradient(circle, var(--star-white) 0%, var(--star-lavender) 50%, transparent 100%);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--star-lavender), 0 0 20px var(--primary-light);
}
.shooting-star-1 { top: 15%; left: 80%; animation: shootingStar1 10s ease-in-out infinite; }
.shooting-star-2 { top: 35%; left: 65%; width: 180px; animation: shootingStar2 14s ease-in-out infinite 5s; }
.shooting-star-3 { top: 55%; left: 90%; width: 200px; animation: shootingStar3 12s ease-in-out infinite 8s; }

/* Section Decorations (Stars, Planets, Shooting Stars for all sections) */
.section-decoration {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

/* Decorative Stars */
.deco-star {
    position: absolute;
    border-radius: 50%;
    animation: twinkleStar 3s ease-in-out infinite;
    box-shadow: 0 0 6px currentColor;
}
.deco-star-1 { width: 6px; height: 6px; background: var(--star-gold); top: 15%; right: 10%; animation-delay: 0s; }
.deco-star-2 { width: 5px; height: 5px; background: var(--star-pink); top: 45%; left: 5%; animation-delay: 1s; }
.deco-star-3 { width: 4px; height: 4px; background: var(--star-blue); bottom: 20%; right: 15%; animation-delay: 2s; }
.deco-star-4 { width: 6px; height: 6px; background: var(--star-lavender); top: 20%; left: 8%; animation-delay: 0.5s; }
.deco-star-5 { width: 4px; height: 4px; background: var(--star-gold); bottom: 30%; right: 8%; animation-delay: 1.5s; }
.deco-star-6 { width: 5px; height: 5px; background: var(--star-pink); top: 25%; right: 5%; animation-delay: 0.3s; }
.deco-star-7 { width: 3px; height: 3px; background: var(--star-blue); bottom: 15%; left: 10%; animation-delay: 2.5s; }

/* Decorative Planets */
.deco-planet {
    position: absolute;
    border-radius: 50%;
}
.deco-planet-1 {
    width: 35px; height: 35px;
    background: linear-gradient(135deg, var(--star-lavender) 0%, var(--primary) 100%);
    bottom: 10%; right: 5%;
    box-shadow: 0 0 20px rgba(196, 181, 253, 0.4), inset -5px -5px 10px rgba(0, 0, 0, 0.2);
    animation: planetFloat1 20s ease-in-out infinite;
}
.deco-planet-2 {
    width: 25px; height: 25px;
    background: linear-gradient(135deg, var(--accent-pink) 0%, #db2777 100%);
    top: 30%; right: 3%;
    box-shadow: 0 0 15px rgba(244, 114, 182, 0.4), inset -4px -4px 8px rgba(0, 0, 0, 0.2);
    animation: planetFloat2 25s ease-in-out infinite 3s;
}

/* Decorative Shooting Stars */
.deco-shooting-star {
    position: absolute;
    width: 120px; height: 2px;
    background: linear-gradient(90deg, var(--star-lavender), var(--primary-light), transparent);
    transform: rotate(-45deg);
    opacity: 0;
    border-radius: 2px;
}
.deco-shooting-1 { top: 30%; left: 80%; animation: shootingStarDeco 10s ease-in-out infinite 2s; }
.deco-shooting-2 { top: 50%; left: 70%; animation: shootingStarDeco 12s ease-in-out infinite 5s; }
.deco-shooting-3 { top: 40%; left: 85%; animation: shootingStarDeco 8s ease-in-out infinite; }

/* ================================
   ANIMATIONS
   ================================ */

/* Star Twinkle */
@keyframes twinkleStars {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Moon Animations */
@keyframes moonFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(5deg); }
}
@keyframes moonGlow {
    0%, 100% { box-shadow: 0 0 80px rgba(196, 181, 253, 0.6), 0 0 160px rgba(139, 92, 246, 0.3); }
    50% { box-shadow: 0 0 100px rgba(196, 181, 253, 0.8), 0 0 200px rgba(139, 92, 246, 0.4); }
}

/* Nebula Drift */
@keyframes nebulaDrift1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(80px, -50px) scale(1.1); }
}
@keyframes nebulaDrift2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-60px, 40px) scale(1.05); }
}
@keyframes nebulaDrift3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -60px) scale(0.95); }
}

/* Planet Float */
@keyframes planetFloat1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(10deg); }
}
@keyframes planetFloat2 {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-20px) translateX(15px); }
}

/* Shooting Star Animations */
@keyframes shootingStar1 {
    0%, 75%, 100% { opacity: 0; transform: rotate(-45deg) translateX(0); }
    78% { opacity: 1; }
    88% { opacity: 1; transform: rotate(-45deg) translateX(-400px); }
    89% { opacity: 0; }
}
@keyframes shootingStar2 {
    0%, 70%, 100% { opacity: 0; transform: rotate(-40deg) translateX(0); }
    73% { opacity: 0.9; }
    85% { opacity: 0.9; transform: rotate(-40deg) translateX(-350px); }
    86% { opacity: 0; }
}
@keyframes shootingStar3 {
    0%, 65%, 100% { opacity: 0; transform: rotate(-50deg) translateX(0); }
    68% { opacity: 0.8; }
    82% { opacity: 0.8; transform: rotate(-50deg) translateX(-320px); }
    83% { opacity: 0; }
}

/* Twinkle Star Animation for sections */
@keyframes twinkleStar {
    0%, 100% { opacity: 0.3; transform: scale(0.8); box-shadow: 0 0 4px currentColor; }
    50% { opacity: 1; transform: scale(1.3); box-shadow: 0 0 12px currentColor; }
}

/* Decorative Shooting Star Animation */
@keyframes shootingStarDeco {
    0%, 85%, 100% { opacity: 0; transform: rotate(-45deg) translateX(0); }
    88% { opacity: 0.8; }
    95% { opacity: 0.8; transform: rotate(-45deg) translateX(-180px); }
    96% { opacity: 0; }
}

/* Text & UI Animations */
@keyframes glow {
    0%, 100% { text-shadow: 0 0 20px rgba(139, 92, 246, 0.4); }
    50% { text-shadow: 0 0 40px rgba(139, 92, 246, 0.6), 0 0 80px rgba(139, 92, 246, 0.3); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.9; }
}
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.3); }
    50% { box-shadow: 0 0 40px rgba(139, 92, 246, 0.5), 0 0 60px rgba(139, 92, 246, 0.2); }
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}
@keyframes voiceWave {
    0%, 100% { height: 20px; }
    50% { height: 50px; }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ================================
   NAVIGATION
   ================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: var(--space-md) var(--space-xl);
    background: rgba(11, 10, 16, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all var(--transition-normal);
}
.nav.scrolled {
    background: rgba(11, 10, 16, 0.9);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
/* Light theme navigation (when over light sections) */
.nav.light {
    background: rgba(250, 250, 252, 0.85);
    border-bottom: 1px solid var(--border-light);
}
.nav.light.scrolled {
    background: rgba(250, 250, 252, 0.95);
    box-shadow: 0 4px 30px rgba(139, 92, 246, 0.1);
}
.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}
.logo-icon { width: 36px; height: 36px; }
.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all var(--transition-normal);
}
/* Light nav logo */
.nav.light .logo-text {
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}
.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    position: relative;
}
.nav-links a:hover {
    color: var(--text-primary);
}
/* Light nav links */
.nav.light .nav-links a {
    color: var(--text-dark-secondary);
}
.nav.light .nav-links a:hover {
    color: var(--text-dark);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent-pink));
    border-radius: 2px;
    transition: width var(--transition-normal);
}
.nav-links a:hover::after {
    width: 100%;
}
.lang-switch {
    padding: var(--space-xs) var(--space-md);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary) !important;
    border-radius: var(--radius-pill);
    font-size: 13px !important;
    font-weight: 600 !important;
    transition: all var(--transition-normal);
}
/* Light nav language switch */
.nav.light .lang-switch {
    background: var(--bg-light-card);
    border: 1px solid var(--border-light);
    color: var(--text-dark) !important;
}
.lang-switch:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    box-shadow: var(--shadow-glow-primary);
}
.lang-switch::after { display: none; }

/* ================================
   HERO SECTION
   ================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px var(--space-xl) var(--space-4xl);
    gap: var(--space-4xl);
    z-index: 1;
}
.hero-content {
    max-width: 560px;
    animation: fadeInUp 1s ease-out;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--primary-light);
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}
.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--primary);
}
.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.75rem, 5.5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.03em;
}
.title-line {
    display: block;
    color: var(--text-primary);
}
.title-highlight {
    display: block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-pink) 50%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 4s ease-in-out infinite;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
    line-height: 1.8;
}
.hero-cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* ================================
   STORE BUTTONS
   ================================ */
.store-button {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 16px 28px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-white);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
    cursor: pointer;
    backdrop-filter: blur(10px);
}
.store-button:hover {
    transform: translateY(-4px);
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow-primary);
}
.store-button.large { padding: 20px 36px; }
.store-icon { width: 26px; height: 26px; }
.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.store-label {
    font-size: 11px;
    opacity: 0.7;
    line-height: 1.2;
}
.store-name {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.2;
}
.play-store {
    opacity: 0.4;
    cursor: not-allowed;
}
.play-store:hover {
    transform: none;
    box-shadow: none;
    background: var(--glass-bg);
    border-color: var(--glass-border);
}

/* ================================
   PHONE MOCKUP
   ================================ */
.hero-visual {
    animation: float 6s ease-in-out infinite;
}
.phone-mockup {
    width: 300px;
    height: 620px;
    background: linear-gradient(145deg, #1f1b2e 0%, #0d0b14 100%);
    border-radius: 48px;
    padding: 12px;
    box-shadow:
        var(--shadow-xl),
        0 0 100px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.phone-notch {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 26px;
    background: #0d0b14;
    border-radius: 16px;
    z-index: 10;
}
.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-dark) 100%);
    border-radius: 40px;
    overflow: hidden;
}
.app-preview {
    height: 100%;
    display: flex;
    flex-direction: column;
}
/* App Preview - Dark Theme */
.app-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 50px var(--space-md) var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--glass-border);
}
.app-header span {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}
.app-content {
    flex: 1;
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.app-greeting {
    font-size: 14px;
    color: var(--text-tertiary);
    margin-bottom: var(--space-xs);
}
.app-prompt {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
}
.app-record-btn {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-pink) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    margin-bottom: var(--space-sm);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4), 0 0 60px rgba(139, 92, 246, 0.2);
    animation: pulse 2s ease-in-out infinite, pulseGlow 2s ease-in-out infinite;
}
.app-hint {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-bottom: var(--space-xl);
}
.app-recent {
    width: 100%;
    text-align: left;
}
.app-recent-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-tertiary);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.app-dream-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-sm);
    display: flex;
    gap: var(--space-sm);
}
.dream-card-img {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--nebula-purple), var(--nebula-pink));
    border-radius: var(--radius-md);
}
.dream-card-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.dream-card-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}
.dream-card-date {
    font-size: 11px;
    color: var(--text-tertiary);
}
.app-nav {
    display: flex;
    justify-content: space-around;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid var(--glass-border);
}
.app-nav-item {
    color: var(--text-tertiary);
    padding: var(--space-sm);
    transition: color var(--transition-fast);
}
.app-nav-item.active {
    color: var(--primary-light);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-tertiary);
    animation: bounce 2s ease-in-out infinite;
    opacity: 0.6;
}

/* Section Divider - Hidden for dark theme */
.section-divider {
    display: none;
}

/* ================================
   SECTION STYLING
   ================================ */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--space-md);
}
.section-label::before {
    content: '';
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent-pink));
    border-radius: 2px;
}
.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.section-description {
    font-size: 1.125rem;
    color: var(--text-dark-secondary);
    line-height: 1.8;
    margin-top: var(--space-md);
}
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

/* ================================
   FEATURES SECTION (Light Theme)
   ================================ */
.features {
    position: relative;
    background: var(--bg-light);
    padding: var(--space-5xl) var(--space-xl);
    z-index: 2;
    overflow: hidden;
}
.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}
.features-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.features-intro {
    max-width: 600px;
    margin-bottom: var(--space-4xl);
}
.features-showcase {
    display: flex;
    flex-direction: column;
    gap: var(--space-4xl);
}
.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}
.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }
.feature-visual { display: flex; justify-content: center; }
.feature-phone {
    width: 260px;
    height: 520px;
    background: linear-gradient(145deg, #1f1b2e 0%, #0d0b14 100%);
    border-radius: 40px;
    padding: 10px;
    box-shadow:
        var(--shadow-xl),
        0 0 80px rgba(139, 92, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.feature-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-dark) 100%);
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
}

/* Voice Screen */
.voice-screen {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
}
.voice-animation {
    display: flex;
    gap: 10px;
    align-items: center;
    height: 100px;
    margin-bottom: var(--space-xl);
}
.voice-wave {
    width: 6px;
    height: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    animation: voiceWave 0.8s ease-in-out infinite;
}
.voice-wave:nth-child(1) { animation-delay: 0s; height: 25px; }
.voice-wave:nth-child(2) { animation-delay: 0.1s; height: 35px; }
.voice-wave:nth-child(3) { animation-delay: 0.2s; height: 45px; }
.voice-wave:nth-child(4) { animation-delay: 0.3s; height: 35px; }
.voice-wave:nth-child(5) { animation-delay: 0.4s; height: 25px; }
.voice-text {
    color: var(--text-white);
    font-size: 16px;
    font-weight: 500;
}
.voice-timer {
    color: rgba(255, 255, 255, 0.8);
    font-size: 36px;
    font-weight: 600;
    margin-top: var(--space-md);
    font-family: 'Outfit', sans-serif;
}

/* AI Screen */
.ai-screen {
    background: var(--bg-dark);
    padding: var(--space-lg);
    align-items: flex-start;
    justify-content: flex-start;
}
.ai-response { width: 100%; }
.ai-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}
.ai-text-line {
    height: 12px;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.2), rgba(244, 114, 182, 0.1));
    border-radius: 6px;
    margin-bottom: var(--space-md);
    animation: shimmer 2s ease-in-out infinite;
    background-size: 200% 100%;
}
.ai-text-line.short { width: 60%; }
.ai-text-line.medium { width: 80%; }
.ai-symbol { margin-top: var(--space-xl); }
.ai-symbol span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.symbol-tags {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}
.symbol-tag {
    padding: 6px 14px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--primary-light);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 500;
}

/* Visual Screen */
.visual-screen {
    background: var(--bg-dark);
}
.dream-image {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--nebula-purple) 0%, var(--nebula-pink) 50%, var(--nebula-blue) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    border: 1px solid var(--glass-border);
}
.image-placeholder { color: var(--primary-light); opacity: 0.6; }
.image-placeholder svg { width: 56px; height: 56px; }
.image-caption {
    font-size: 13px;
    color: var(--text-tertiary);
    text-align: center;
}

/* Journal Screen */
.journal-screen {
    background: var(--bg-dark);
    padding: var(--space-lg);
    align-items: flex-start;
    justify-content: flex-start;
}
.journal-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}
.journal-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
}
.journal-thumb {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--nebula-purple), var(--nebula-pink));
    border-radius: var(--radius-md);
    flex-shrink: 0;
}
.journal-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}
.journal-title-line {
    height: 12px;
    width: 80%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}
.journal-date-line {
    height: 8px;
    width: 50%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

/* Feature Info */
.feature-info { max-width: 480px; }
.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    background: var(--bg-light-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: var(--space-lg);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
}
.feature-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}
.feature-description {
    font-size: 1.0625rem;
    color: var(--text-dark-secondary);
    line-height: 1.8;
}

/* ================================
   HOW IT WORKS SECTION (Light Theme Alt)
   ================================ */
.how-it-works {
    position: relative;
    background: var(--bg-light-alt);
    padding: var(--space-5xl) var(--space-xl);
    overflow: hidden;
}
.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}
.steps-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-lg);
}
.step-card {
    flex: 1;
    max-width: 340px;
    background: var(--bg-light-card);
    border: 1px solid var(--border-light);
    padding: var(--space-xl);
    border-radius: var(--radius-2xl);
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 24px rgba(139, 92, 246, 0.08);
}
.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-light-hover);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15);
}
.step-number {
    font-family: 'Outfit', sans-serif;
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: var(--space-md);
}
.step-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-pink) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    margin: 0 auto var(--space-lg);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
}
.step-title { font-size: 1.25rem; font-weight: 700; color: var(--text-dark); margin-bottom: var(--space-sm); }
.step-description { font-size: 0.9375rem; color: var(--text-dark-secondary); line-height: 1.6; }
.step-connector { display: flex; align-items: center; justify-content: center; color: var(--text-dark-tertiary); padding-top: 80px; }

/* ================================
   PRICING SECTION (Light Theme)
   ================================ */
.pricing {
    position: relative;
    background: var(--bg-light);
    padding: var(--space-5xl) var(--space-xl);
    overflow: hidden;
}
.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}
.pricing-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}
.pricing-card {
    background: var(--bg-light-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    position: relative;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 24px rgba(139, 92, 246, 0.08);
}
.pricing-card:hover {
    border-color: var(--border-light-hover);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15);
    transform: translateY(-5px);
}
.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 8px 40px rgba(139, 92, 246, 0.2);
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.08), rgba(244, 114, 182, 0.04));
}
.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-pink) 100%);
    color: var(--text-white);
    padding: 8px 24px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}
.pricing-header {
    text-align: center;
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border-light);
    margin-bottom: var(--space-lg);
}
.pricing-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
}
.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}
.price {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-dark), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.period {
    font-size: 1rem;
    color: var(--text-dark-tertiary);
}
.pricing-desc {
    font-size: 0.875rem;
    color: var(--text-dark-secondary);
    margin-top: var(--space-sm);
}
.pricing-features {
    list-style: none;
    margin-bottom: var(--space-xl);
}
.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    font-size: 0.9375rem;
    color: var(--text-dark);
}
.pricing-features li svg {
    flex-shrink: 0;
    color: var(--secondary);
}
.pricing-features li.disabled {
    color: var(--text-dark-tertiary);
    opacity: 0.5;
}
.pricing-features li.disabled svg {
    color: var(--text-dark-tertiary);
}
.pricing-cta {
    display: block;
    width: 100%;
    padding: 16px;
    border-radius: var(--radius-xl);
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-normal);
    border: none;
}
.pricing-cta.secondary {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border-light);
}
.pricing-cta.secondary:hover {
    background: rgba(139, 92, 246, 0.08);
    border-color: var(--primary);
    color: var(--primary);
}
.pricing-cta.primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-pink) 100%);
    color: var(--text-white);
}
.pricing-cta.primary:hover {
    box-shadow: var(--shadow-glow-primary);
    transform: translateY(-3px);
}

/* ================================
   FINAL CTA SECTION (Light Theme with subtle gradient)
   ================================ */
.final-cta {
    position: relative;
    background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        var(--bg-light-alt);
    padding: var(--space-5xl) var(--space-xl);
    text-align: center;
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}
.cta-container {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}
.cta-subtitle {
    font-size: 1.125rem;
    color: var(--text-dark-secondary);
    margin-bottom: var(--space-2xl);
    line-height: 1.8;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}
/* Light theme store buttons */
.cta-buttons .store-button {
    background: var(--bg-light-card);
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1);
}
.cta-buttons .store-button:hover {
    background: rgba(139, 92, 246, 0.08);
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.2);
}
.cta-buttons .store-button .store-icon {
    color: var(--text-dark);
}
.cta-buttons .store-button .store-label {
    color: var(--text-dark-tertiary);
}
.cta-buttons .store-button .store-name {
    color: var(--text-dark);
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--bg-darker);
    color: var(--text-primary);
    padding: var(--space-4xl) var(--space-xl) var(--space-lg);
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}
.footer-brand .logo {
    margin-bottom: var(--space-sm);
}
.footer-brand .logo-text {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.footer-tagline {
    color: var(--text-tertiary);
    font-size: 0.875rem;
}
.footer-links {
    display: flex;
    gap: var(--space-4xl);
}
.footer-column h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-column a {
    display: block;
    color: var(--text-tertiary);
    padding: var(--space-xs) 0;
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
}
.footer-column a:hover,
.footer-column a.active {
    color: var(--primary-light);
}
.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--glass-border);
    color: var(--text-tertiary);
    font-size: 0.875rem;
}

/* Scroll Animations */
[data-aos] { opacity: 0; transform: translateY(30px); transition: all 0.6s ease-out; }
[data-aos].visible { opacity: 1; transform: translateY(0); }

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 1024px) {
    .feature-block {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    .feature-block.reverse { direction: ltr; }
    .feature-visual { order: -1; }
    .feature-info {
        text-align: center;
        max-width: 100%;
    }
    .feature-icon-wrapper {
        margin: 0 auto var(--space-lg);
    }
    .section-label::before { display: none; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px var(--space-lg) var(--space-3xl);
        gap: var(--space-2xl);
    }
    .hero-badge { justify-content: center; }
    .hero-cta { justify-content: center; }
    .hero-visual { margin-top: var(--space-lg); }
    .phone-mockup {
        width: 260px;
        height: 540px;
    }
    .moon {
        width: 120px;
        height: 120px;
        top: 3%;
        right: 5%;
    }
    .planet-1 { width: 60px; height: 60px; }
    .planet-2 { width: 40px; height: 40px; }
    .features-intro { text-align: center; }
    .steps-grid {
        flex-direction: column;
        align-items: center;
    }
    .step-connector {
        transform: rotate(90deg);
        padding: var(--space-md) 0;
    }
    .step-card { max-width: 100%; }
    .pricing-cards { grid-template-columns: 1fr; }
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-links {
        flex-direction: column;
        gap: var(--space-xl);
    }
    .scroll-indicator { display: none; }
    .nebula-1,
    .nebula-2,
    .nebula-3 {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    .store-button {
        width: 100%;
        justify-content: center;
    }
    .moon {
        width: 80px;
        height: 80px;
    }
    .moon::before { display: none; }
    .planet-1,
    .planet-2 { display: none; }
    .phone-mockup {
        width: 220px;
        height: 460px;
    }
    .feature-phone {
        width: 200px;
        height: 400px;
    }
    .shooting-star { display: none; }
}
