    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* App Colors from Swift Code */
            --primary-blue: #007AFF;
            --bright-blue: #5AC8FA;
            --background: #0a0a0f;
            --card-bg: #1C1C1E;
            --card-hover: #2C2C2E;
            --text-primary: #FFFFFF;
            --text-secondary: rgba(255, 255, 255, 0.6);
            --text-tertiary: rgba(255, 255, 255, 0.3);
            
            /* Accent Colors */
            --orange: #FF9500;
            --yellow: #FFCC00;
            --green: #34C759;
            --purple: #AF52DE;
            --pink: #FF2D55;
            --red: #FF3B30;
        }

/* Width Fix - Prevent horizontal scrolling */
html {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}



        body {
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
            background: #0a0a0f !important;
            color: var(--text-primary);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 2rem;
            position: relative;
            overflow: visible;
            background: #0a0a0f;
        }

        .hero::before {
            display: none !important;
        }

        .hero::after {
            display: none !important;
        }

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

        .container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--bright-blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: slideUp 0.8s ease-out;
        }

        .gradient-text {
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--bright-blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

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

        .hero-text p {
            font-size: 1.25rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 2.5rem;
            animation: slideUp 0.8s ease-out 0.2s backwards;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            animation: slideUp 0.8s ease-out 0.4s backwards;
        }

        .btn {
            padding: 1rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-blue), var(--bright-blue));
            color: white;
            box-shadow: 0 10px 30px rgba(0, 122, 255, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(0, 122, 255, 0.4);
        }

        .btn-secondary {
            background: transparent !important;
            color: var(--text-primary);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .btn-secondary:hover {
            background: var(--card-hover);
            border-color: rgba(255, 255, 255, 0.2);
        }

        /* Phone Mockup */
        .phone-mockup {
            position: relative;
            animation: phoneFloat 3s ease-in-out infinite;
            perspective: 1000px;
        }

        @keyframes phoneFloat {
            0%, 100% { transform: translateY(0px) rotateY(-5deg) rotateX(2deg); }
            50% { transform: translateY(-20px) rotateY(5deg) rotateX(-2deg); }
        }

        .phone-frame {
            width: 100%;
            max-width: 360px;
            margin: 0 auto;
            position: relative;
            filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.6));
        }

        /* iPhone Frame */
        .iphone-frame {
            background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
            border-radius: 55px;
            padding: 8px;
            position: relative;
            border: 2px solid #2a2a2a;
            box-shadow: 
                inset 0 0 0 1px rgba(255, 255, 255, 0.1),
                0 0 0 1px rgba(0, 0, 0, 0.5),
                0 50px 100px rgba(0, 0, 0, 0.8);
        }

        /* Side Buttons */
        .iphone-button {
            position: absolute;
            background: linear-gradient(90deg, #1a1a1a 0%, #0a0a0a 100%);
            border: 1px solid rgba(0, 0, 0, 0.5);
        }

        .volume-up {
            width: 3px;
            height: 50px;
            top: 120px;
            left: -3px;
            border-radius: 0 2px 2px 0;
        }

        .volume-down {
            width: 3px;
            height: 50px;
            top: 190px;
            left: -3px;
            border-radius: 0 2px 2px 0;
        }

        .power-button {
            width: 3px;
            height: 80px;
            top: 150px;
            right: -3px;
            border-radius: 2px 0 0 2px;
        }

        /* Screen */
        .phone-screen {
            background: #0a0a0f !important;
            border-radius: 48px;
            overflow: hidden;
            position: relative;
            aspect-ratio: 9/19.5;
        }

        /* Dynamic Island */
        .dynamic-island {
            position: absolute;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 126px;
            height: 37px;
            background: #000000;
            border-radius: 19px;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            animation: islandPulse 3s ease-in-out infinite;
        }

        @keyframes islandPulse {
            0%, 100% { width: 126px; }
            50% { width: 136px; }
        }

        /* Camera & Sensors inside Dynamic Island */
        .island-camera {
            position: absolute;
            width: 12px;
            height: 12px;
            background: radial-gradient(circle, #1a1a2e 0%, #000000 70%);
            border-radius: 50%;
            left: 20px;
            box-shadow: inset 0 0 3px rgba(0, 122, 255, 0.3);
        }

        .island-sensor {
            position: absolute;
            width: 8px;
            height: 8px;
            background: #0a0a0a;
            border-radius: 50%;
            right: 25px;
        }

        /* Status Bar */
        .status-bar {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 60px;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 20px 25px 0;
            z-index: 10;
            font-size: 15px;
            font-weight: 600;
        }

        .status-left {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .status-right {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .signal-icon, .wifi-icon, .battery-icon {
            display: flex;
            align-items: center;
        }

        .battery-icon {
            width: 27px;
            height: 13px;
            border: 2px solid white;
            border-radius: 3px;
            position: relative;
            padding: 2px;
        }

        .battery-fill {
            width: 100%;
            height: 100%;
            background: white;
            border-radius: 1px;
        }

        .battery-tip {
            position: absolute;
            right: -3px;
            top: 50%;
            transform: translateY(-50%);
            width: 2px;
            height: 5px;
            background: white;
            border-radius: 0 1px 1px 0;
        }

        .phone-content {
            padding: 70px 20px 20px;
            height: 100%;
            position: relative;
        }

        /* Notch Glow Effect */
        .screen-glow {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 100px;
            background: radial-gradient(ellipse at top, rgba(0, 12, 255, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .phone-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }

        .phone-greeting h2 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .phone-greeting p {
            font-size: 0.875rem;
            color: var(--text-secondary);
        }

        .phone-avatar {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary-blue), var(--bright-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 122, 255, 0.4);
        }

        .phone-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 24px;
        }

        .phone-stat-card {
            background: transparent !important;
            border-radius: 16px;
            padding: 16px;
            text-align: center;
        }

        .phone-stat-card .icon {
            font-size: 1.5rem;
            margin-bottom: 8px;
        }

        .phone-stat-card .value {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .phone-stat-card .label {
            font-size: 0.75rem;
            color: var(--text-secondary);
        }

        .phone-challenge {
            background: transparent !important;
            border-radius: 20px;
            padding: 20px;
            border: 1px solid rgba(0, 122, 255, 0.3);
        }

        .phone-challenge-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .phone-challenge-icon {
            width: 48px;
            height: 48px;
            background: rgba(0, 122, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .phone-challenge-title {
            font-size: 0.9rem;
            font-weight: 600;
        }

        .phone-challenge-desc {
            font-size: 0.75rem;
            color: var(--text-secondary);
            margin-bottom: 12px;
        }

        .phone-challenge-btn {
            background: linear-gradient(135deg, var(--primary-blue), var(--bright-blue));
            color: white;
            border: none;
            padding: 12px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.875rem;
            width: 100%;
            cursor: pointer;
        }

        /* Features Section */
        .features {
            padding: 8rem 2rem;
            position: relative;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            text-align: center;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-secondary);
            font-size: 1.125rem;
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background: transparent !important;
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-blue), var(--bright-blue));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            background: var(--card-hover);
            border-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .feature-card:nth-child(1) .feature-icon { background: linear-gradient(135deg, var(--primary-blue), var(--bright-blue)); }
        .feature-card:nth-child(2) .feature-icon { background: linear-gradient(135deg, var(--orange), var(--yellow)); }
        .feature-card:nth-child(3) .feature-icon { background: linear-gradient(135deg, var(--green), #32D74B); }
        .feature-card:nth-child(4) .feature-icon { background: linear-gradient(135deg, var(--purple), var(--pink)); }
        .feature-card:nth-child(5) .feature-icon { background: linear-gradient(135deg, var(--red), var(--orange)); }
        .feature-card:nth-child(6) .feature-icon { background: linear-gradient(135deg, var(--yellow), var(--orange)); }

        .feature-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

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

        /* Stats Section */
        .stats {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--bright-blue) 100%);
            position: relative;
            overflow: hidden;
        }

        .stats::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
            top: 0;
            left: 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .stat-item {
            text-align: center;
        }

        .stat-item h3 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.7));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-item p {
            font-size: 1.125rem;
            opacity: 0.9;
        }

        /* How It Works */
        .how-it-works {
            padding: 8rem 2rem;
        }

        .steps-container {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            gap: 3rem;
        }

        .step {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 2rem;
            align-items: start;
        }

        .step-number {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-blue), var(--bright-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 800;
            box-shadow: 0 10px 30px rgba(0, 122, 255, 0.3);
        }

        .step-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

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

        /* CTA Section */
        .cta-section {
            padding: 10rem 2rem;
            text-align: center;
            position: relative;
            overflow-x: clip; overflow-y: visible;
            background: transparent !important;
        }

        .cta-section::before {
            display: none !important;
        }

        @keyframes pulseGlow {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.08; }
            50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.12; }
        }

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

        .cta-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1.25rem;
            background: rgba(0, 122, 255, 0.1);
            border: 1px solid rgba(0, 122, 255, 0.3);
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--bright-blue);
            margin-bottom: 2rem;
            animation: slideUp 0.6s ease-out;
        }

        .badge-dot {
            width: 8px;
            height: 8px;
            background: var(--bright-blue);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.8); }
        }
/* Countdown Container */
.countdown-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: clamp(0.5rem, 2vw, 1.5rem) 1rem;
    box-sizing: border-box;
    overflow-x: clip; overflow-y: visible;
}

/* Countdown */
.countdown-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(0.3rem, 1vw, 1rem);
    flex-wrap: nowrap;
    white-space: nowrap;
}

/* einzelne Box */
.countdown-item {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: clamp(8px, 1.5vw, 16px);
    min-width: clamp(45px, 8vw, 120px);
    padding: clamp(0.4rem, 1vw, 1.2rem) clamp(0.3rem, 0.8vw, 1rem);
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;

    overflow-x: clip; overflow-y: visible;
    flex: 0 0 auto;
    box-sizing: border-box;
}

.countdown-number {
    font-size: clamp(1rem, 3vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0;

    background: linear-gradient(135deg, var(--primary-blue), var(--bright-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown-label {
    margin-top: clamp(0.1rem, 0.3vw, 0.5rem);
    font-size: clamp(0.4rem, 0.9vw, 1rem);
    line-height: 1.1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Doppelpunkte */
.countdown-separator {
    display: flex;
    align-items: center;
    font-size: clamp(0.9rem, 2.5vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-blue);
    opacity: 0.5;
}

/* Sehr kleine Bildschirme (< 375px) */
@media (max-width: 374px) {
    .countdown-container {
        padding: 0.5rem 0.5rem;
    }

    .countdown-display {
        gap: 0.25rem;
    }

    .countdown-item {
        min-width: 42px;
        padding: 0.35rem 0.2rem;
    }

    .countdown-number {
        font-size: 0.9rem;
    }

    .countdown-label {
        font-size: 0.38rem;
    }

    .countdown-separator {
        font-size: 0.8rem;
    }
}

/* Große Tablets und kleine Laptops */
@media (min-width: 768px) and (max-width: 1024px) {
    .countdown-item {
        min-width: 90px;
    }
}

/* Desktop */
@media (min-width: 1025px) {
    .countdown-container {
        max-width: 900px;
    }

    .countdown-item {
        min-width: 110px;
    }
}


.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--bright-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content > p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
}

        /* Waitlist Form - Professional */
        .waitlist-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .form-container {
            background: transparent !important;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .input-wrapper {
            position: relative;
            margin-bottom: 1rem;
        }

        .input-icon {
            position: absolute;
            left: 1.25rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.25rem;
            pointer-events: none;
            z-index: 2;
        }

        .form-input {
            width: 100%;
            padding: 1.25rem 1.25rem 1.25rem 3.5rem;
            font-size: 1rem;
            background: #0a0a0f !important;
            border: 2px solid rgba(255, 255, 255, 0.08);
            border-radius: 14px;
            color: var(--text-primary);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-family: inherit;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary-blue);
            background: var(--card-hover);
            box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.1);
            transform: translateY(-2px);
        }

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

        .form-button {
            width: 100%;
            padding: 1.25rem 2rem;
            font-size: 1.125rem;
            font-weight: 700;
            border: none;
            border-radius: 14px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            background: linear-gradient(135deg, var(--primary-blue), var(--bright-blue));
            color: white;
            box-shadow: 0 10px 30px rgba(0, 122, 255, 0.3);
            font-family: inherit;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            position: relative;
            overflow: hidden;
        }

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

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

        .form-button:hover:not(:disabled) {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 122, 255, 0.4);
        }

        .form-button:active:not(:disabled) {
            transform: translateY(-1px);
        }

        .form-button:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        .button-text {
            position: relative;
            z-index: 1;
        }

        .button-arrow {
            position: relative;
            z-index: 1;
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .form-button:hover .button-arrow {
            transform: translateX(5px);
        }

        /* Platform Selector */
        .platform-selector {
            width: 100%;
            margin: 1.5rem 0;
        }

        .platform-label {
            display: block;
            margin-bottom: 1rem;
            font-size: 0.938rem;
            font-weight: 600;
            color: var(--text-primary);
            text-align: center;
        }

        .platform-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }

        .platform-option {
            flex: 1;
            max-width: 200px;
            cursor: pointer;
        }

        .platform-option input[type="radio"] {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .platform-button {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 1rem 1.5rem;
            background: transparent !important;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-secondary);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .platform-button svg {
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

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

        .platform-button:hover {
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }

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

        /* iOS Style */
        .platform-option input[type="radio"]:checked + .platform-button:has(svg path[d*="M18.71"]) {
            background: linear-gradient(135deg, rgba(0, 122, 255, 0.15), rgba(10, 132, 255, 0.15));
            border-color: var(--primary-blue);
            color: var(--primary-blue);
            box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.1);
        }

        /* Android Style */
        .platform-option input[type="radio"]:checked + .platform-button:has(svg path[d*="M17.6"]) {
            background: linear-gradient(135deg, rgba(61, 220, 132, 0.15), rgba(52, 199, 89, 0.15));
            border-color: #3DDC84;
            color: #3DDC84;
            box-shadow: 0 0 0 4px rgba(61, 220, 132, 0.1);
        }

        .platform-option input[type="radio"]:checked + .platform-button svg {
            transform: scale(1.1);
        }

        .form-benefits {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            padding-top: 1.5rem;
            border-top: none !important;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
            color: var(--text-secondary);
        }

        .benefit-icon {
            color: var(--green);
            font-weight: bold;
        }

        /* Waitlist Stats - Professional */
        .waitlist-stats-pro {
            background: transparent !important;
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 2rem;
            margin: 2rem 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .stats-content {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            flex: 1;
        }

        .stats-count {
            display: flex;
            align-items: baseline;
            font-weight: 800;
        }

        .stats-number {
            font-size: 3rem;
            background: linear-gradient(135deg, var(--primary-blue), var(--bright-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stats-plus {
            font-size: 2rem;
            color: var(--primary-blue);
            margin-left: 0.25rem;
        }

        .stats-text {
            text-align: left;
        }

        .stats-label {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.25rem;
        }

        .stats-sublabel {
            font-size: 0.875rem;
            color: var(--text-secondary);
        }

        .stats-avatars {
            display: flex;
            align-items: center;
        }

        .avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--card-hover), var(--background));
            border: 3px solid var(--card-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-left: -12px;
            transition: transform 0.3s ease;
        }

        .avatar:first-child {
            margin-left: 0;
        }

        .avatar:hover {
            transform: translateY(-5px) scale(1.1);
            z-index: 10;
        }

        .avatar-more {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-blue), var(--bright-blue));
            border: 3px solid var(--card-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.875rem;
            font-weight: 700;
            color: white;
            margin-left: -12px;
        }

        /* Trust Indicators */
        .trust-indicators {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
            margin-top: 3rem;
            padding-top: 3rem;
            border-top: none !important;
        }

        .trust-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
            max-width: 180px;
        }

        .trust-icon {
            font-size: 2rem;
            width: 60px;
            height: 60px;
            background: rgba(0, 122, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .trust-text {
            font-size: 0.875rem;
            color: var(--text-secondary);
            text-align: center;
            line-height: 1.5;
        }

        /* Social Media Section */
        .social-section {
            margin-top: 3rem;
            padding-top: 3rem;
            border-top: none !important;
        }

        .social-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .social-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .social-btn {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 1.75rem;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.938rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .social-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }

        .social-btn:hover::before {
            transform: translateX(0);
        }

        .social-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .social-btn svg {
            width: 20px;
            height: 20px;
            position: relative;
            z-index: 1;
        }

        .social-btn span {
            position: relative;
            z-index: 1;
        }

        /* Platform-specific colors with slide-in effect */
        .social-btn.instagram::before {
            background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }

        .social-btn.discord::before {
            background: linear-gradient(135deg, #5865F2 0%, #7289DA 100%);
        }

        .social-btn.tiktok::before {
            background: linear-gradient(135deg, #25F4EE 0%, #69C9D0 25%, #89D4DB 50%, #FE2C55 75%, #EE1D52 100%);
        }

        .social-btn.youtube::before {
            background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
        }

        .social-btn.instagram:hover,
        .social-btn.discord:hover,
        .social-btn.tiktok:hover,
        .social-btn.youtube:hover {
            border-color: transparent;
            color: white !important;
        }

        .social-btn.instagram:hover {
            box-shadow: 0 10px 40px rgba(188, 24, 136, 0.5);
        }

        .social-btn.discord:hover {
            box-shadow: 0 10px 40px rgba(88, 101, 242, 0.5);
        }

        .social-btn.tiktok:hover {
            box-shadow: 0 10px 40px rgba(238, 29, 82, 0.5);
        }

        .social-btn.youtube:hover {
            box-shadow: 0 10px 40px rgba(255, 0, 0, 0.5);
        }

        .form-message {
            margin-top: 1rem;
            padding: 1rem;
            border-radius: 12px;
            font-size: 0.938rem;
            font-weight: 500;
            animation: slideDown 0.3s ease-out;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .form-message.success {
            background: rgba(52, 199, 89, 0.15);
            color: var(--green);
            border: 1px solid rgba(52, 199, 89, 0.3);
        }

        .form-message.error {
            background: rgba(255, 59, 48, 0.15);
            color: var(--red);
            border: 1px solid rgba(255, 59, 48, 0.3);
        }

        /* Impressum Section */
        .impressum {
            padding: 8rem 2rem;
            background: #0a0a0f !important;
        }

        .impressum-content {
            max-width: 800px;
            margin: 2rem auto 0;
            background: transparent !important;
            border-radius: 20px;
            padding: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            line-height: 1.8;
        }

        .impressum-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-top: 2rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .impressum-content h3:first-child {
            margin-top: 0;
        }

        .impressum-content h4 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-top: 1.5rem;
            margin-bottom: 0.75rem;
            color: var(--bright-blue);
        }

        .impressum-content p {
            color: var(--text-secondary);
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        .impressum-content a {
            color: var(--primary-blue);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .impressum-content a:hover {
            color: var(--bright-blue);
            text-decoration: underline;
        }

        .impressum-content ul {
            color: var(--text-secondary);
            margin-left: 1.5rem;
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .impressum-content li {
            margin-bottom: 0.5rem;
        }

        /* Footer */
        footer {
            background: transparent !important;
            padding: 3rem 2rem;
            border-top: none !important;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            font-weight: 700;
            margin-bottom: 1rem;
        }

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

        .footer-section a:hover {
            color: var(--primary-blue);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: none !important;
            color: var(--text-secondary);
        }

        /* Scroll Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Admin Panel */
        .admin-button {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-blue), var(--bright-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 122, 255, 0.4);
            transition: all 0.3s ease;
            z-index: 9999;
            border: none;
            font-size: 1.5rem;
        }

        .admin-button:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 15px 40px rgba(0, 122, 255, 0.6);
        }

        .admin-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 10000;
            backdrop-filter: blur(10px);
            animation: fadeIn 0.3s ease;
        }

        .admin-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .admin-content {
            background: transparent !important;
            border-radius: 20px;
            padding: 2rem;
            max-width: 900px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            border: 1px solid rgba(255, 255, 255, 0.1);
            animation: slideUp 0.3s ease;
        }

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

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

        .admin-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .admin-header h2 {
            font-size: 1.5rem;
            font-weight: 700;
        }

        .admin-close {
            background: var(--card-hover);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--text-primary);
            transition: all 0.3s ease;
        }

        .admin-close:hover {
            background: rgba(255, 59, 48, 0.2);
            color: var(--red);
        }

        .admin-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .admin-stat-card {
            background: var(--card-hover);
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
        }

        .admin-stat-card .value {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
        }

        .admin-stat-card .label {
            font-size: 0.875rem;
            color: var(--text-secondary);
        }

        .admin-table-container {
            overflow-x: auto;
            margin-bottom: 1.5rem;
        }

        .admin-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.875rem;
        }

        .admin-table th {
            background: var(--card-hover);
            padding: 1rem;
            text-align: left;
            font-weight: 600;
            border-bottom: 2px solid rgba(255, 255, 255, 0.1);
        }

        .admin-table td {
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .admin-table tr:hover {
            background: var(--card-hover);
        }

        .admin-actions {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-top: 1rem;
        }

        .admin-btn {
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.875rem;
        }

        .admin-btn-primary {
            background: linear-gradient(135deg, var(--primary-blue), var(--bright-blue));
            color: white;
        }

        .admin-btn-danger {
            background: rgba(255, 59, 48, 0.15);
            color: var(--red);
        }

        .admin-btn-secondary {
            background: var(--card-hover);
            color: var(--text-primary);
        }

        .admin-btn:hover {
            transform: translateY(-2px);
            opacity: 0.9;
        }

        .delete-btn {
            background: rgba(255, 59, 48, 0.15);
            color: var(--red);
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            cursor: pointer;
            font-size: 0.75rem;
            transition: all 0.3s ease;
        }

        .delete-btn:hover {
            background: rgba(255, 59, 48, 0.3);
        }

        .empty-state {
            text-align: center;
            padding: 3rem;
            color: var(--text-secondary);
        }

        .empty-state-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            opacity: 0.5;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .phone-frame {
                max-width: 280px;
            }

            .step {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .step-number {
                margin: 0 auto;
            }
        }

        /* Detailed Features Section */
        .detailed-features {
            padding: 6rem 2rem;
            background: #0a0a0f !important;
            margin-top: -1px;
        }

        .detail-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 2rem;
        }

        /* Center last card if it's alone in the row */
        .detail-card:nth-child(7) {
            grid-column: 2 / 3;
        }

        @media (max-width: 900px) {
            .detail-card:nth-child(7) {
                grid-column: auto;
            }
        }

        .detail-card {
            background: rgba(28, 28, 30, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .detail-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-blue), var(--bright-blue));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .detail-card:hover {
            background: rgba(28, 28, 30, 0.8);
            border-color: rgba(90, 200, 250, 0.3);
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 122, 255, 0.15);
        }

        .detail-card:hover::before {
            transform: scaleX(1);
        }

        .detail-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .detail-icon-modern {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(0, 122, 255, 0.2), rgba(90, 200, 250, 0.2));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--bright-blue);
            transition: all 0.3s ease;
        }

        .detail-card:hover .detail-icon-modern {
            background: linear-gradient(135deg, rgba(0, 122, 255, 0.3), rgba(90, 200, 250, 0.3));
            transform: rotate(5deg) scale(1.05);
        }

        .detail-header h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0;
        }

        .detail-description {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .detail-features {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .detail-feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            transition: transform 0.2s ease;
        }

        .detail-feature-item:hover {
            transform: translateX(5px);
        }

        .detail-bullet {
            min-width: 8px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-blue), var(--bright-blue));
            margin-top: 8px;
            box-shadow: 0 0 10px rgba(0, 122, 255, 0.5);
        }

        .detail-feature-item strong {
            display: block;
            color: var(--text-primary);
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 0.25rem;
        }

        .detail-feature-item p {
            color: var(--text-secondary);
            font-size: 0.875rem;
            line-height: 1.4;
            margin: 0;
        }

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

            .detail-card {
                padding: 1.5rem;
            }
        }

        /* Waitlist Goal Inline (inside CTA section) */
        .waitlist-goal-inline {
            margin-top: 3rem;
            padding: 2rem;
            background: linear-gradient(135deg, rgba(28, 28, 30, 0.6), rgba(28, 28, 30, 0.4));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .waitlist-goal-inline::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(90, 200, 250, 0.08), transparent);
            animation: shimmer 3s infinite;
        }

        .goal-inline-title {
            font-size: 1.75rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-blue), var(--bright-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .goal-inline-subtitle {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .goal-stats-inline {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .goal-stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .goal-stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-blue), var(--bright-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }

        .goal-stat-label {
            font-size: 0.75rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 0.25rem;
        }

        .goal-stat-divider {
            font-size: 2rem;
            color: var(--text-tertiary);
            font-weight: 300;
            margin: 0 0.5rem;
        }

        .progress-bar-inline {
            position: relative;
            margin: 1.5rem 0;
        }

        .progress-bar-inline-bg {
            width: 100%;
            height: 16px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .progress-bar-inline-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--primary-blue), var(--bright-blue), var(--primary-blue));
            background-size: 200% 100%;
            border-radius: 8px;
            transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            animation: progressShine 2s ease-in-out infinite;
            box-shadow: 0 0 15px rgba(0, 122, 255, 0.4);
        }

        .progress-bar-inline-shine {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: shine 2s infinite;
        }

        .progress-percentage-inline {
            position: absolute;
            top: -30px;
            right: 0;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--bright-blue);
            text-shadow: 0 0 10px rgba(90, 200, 250, 0.5);
        }

        .goal-message-inline {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem;
            background: rgba(0, 122, 255, 0.08);
            border-radius: 10px;
            margin-top: 1.5rem;
            border: 1px solid rgba(0, 122, 255, 0.15);
        }

        .goal-emoji-inline {
            font-size: 1.25rem;
            animation: bounce 2s infinite;
        }

        #goalMessageTextInline {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--bright-blue);
        }

        @media (max-width: 768px) {
            .goal-inline-title {
                font-size: 1.35rem;
            }

            .goal-stat-number {
                font-size: 2rem;
            }

            .waitlist-goal-inline {
                padding: 1.5rem;
            }
        }

        /* Waitlist Goal Section */
        .waitlist-goal-section {
            padding: 4rem 2rem;
            background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
        }

        .goal-card {
            max-width: 600px;
            margin: 0 auto;
            background: linear-gradient(135deg, rgba(28, 28, 30, 0.8), rgba(28, 28, 30, 0.6));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 3rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(20px);
        }

        .goal-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(90, 200, 250, 0.1), transparent);
            animation: shimmer 3s infinite;
        }

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

        .goal-title {
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-blue), var(--bright-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .goal-subtitle {
            color: var(--text-secondary);
            font-size: 1rem;
            margin-bottom: 2rem;
        }

        .goal-stats {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin-bottom: 2rem;
        }

        .goal-current,
        .goal-target {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }

        .goal-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--text-primary);
            line-height: 1;
        }

        .goal-current .goal-number {
            background: linear-gradient(135deg, var(--primary-blue), var(--bright-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .goal-label {
            font-size: 0.875rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .progress-bar-container {
            position: relative;
            margin: 2rem 0;
        }

        .progress-bar-bg {
            width: 100%;
            height: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .progress-bar-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--primary-blue), var(--bright-blue), var(--primary-blue));
            background-size: 200% 100%;
            border-radius: 10px;
            transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            animation: progressShine 2s ease-in-out infinite;
            box-shadow: 0 0 20px rgba(0, 122, 255, 0.5);
        }

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

        .progress-bar-shine {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: shine 2s infinite;
        }

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

        .progress-percentage {
            position: absolute;
            top: -35px;
            right: 0;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--bright-blue);
            text-shadow: 0 0 10px rgba(90, 200, 250, 0.5);
        }

        .goal-message {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 1rem;
            background: rgba(0, 122, 255, 0.1);
            border-radius: 12px;
            margin-top: 2rem;
            border: 1px solid rgba(0, 122, 255, 0.2);
        }

        .goal-emoji {
            font-size: 1.5rem;
            animation: bounce 2s infinite;
        }

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

        #goalMessageText {
            font-size: 1rem;
            font-weight: 600;
            color: var(--bright-blue);
        }

        @media (max-width: 768px) {
            .goal-title {
                font-size: 1.5rem;
            }

            .goal-stats {
                gap: 2rem;
            }

            .goal-number {
                font-size: 2.5rem;
            }

            .goal-card {
                padding: 2rem 1.5rem;
            }
        }

        /* Terms of Service Page */
        .terms-container {
            max-width: 800px;
            margin: 4rem auto;
            padding: 2rem;
            background: rgba(28, 28, 30, 0.8);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .terms-container h1 {
            color: #007AFF;
            margin-bottom: 2rem;
        }

        .terms-container h2 {
            color: #5AC8FA;
            margin-top: 2rem;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .terms-container p {
            line-height: 1.8;
            margin-bottom: 1rem;
            color: rgba(255, 255, 255, 0.85);
        }

        .terms-container ul {
            margin-left: 2rem;
            margin-bottom: 1rem;
        }

        .terms-container li {
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 0.5rem;
        }

        .back-link {
            display: inline-block;
            margin-top: 2rem;
            color: #007AFF;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .back-link:hover {
            color: #5AC8FA;
        }

/* ===== Prevent horizontal scroll ===== */

/* ===== Phone Carousel ===== */
.phone-carousel {
    position: relative;
    width: 100%;
    margin: 6rem auto 8rem auto;
    overflow: visible;
    cursor: grab;
    padding: 2rem 0;
}

.phone-carousel:active {
    cursor: grabbing;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 400px;
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Purple neon horizon glow behind phones */
.carousel-track::before {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    max-width: 1600px;
    height: 400px;
    background: radial-gradient(ellipse 85% 65% at center bottom,
        rgba(147, 51, 234, 1) 0%,
        rgba(138, 43, 226, 0.9) 15%,
        rgba(138, 43, 226, 0.6) 35%,
        rgba(138, 43, 226, 0.3) 55%,
        transparent 85%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
    opacity: 1;
}

.phone-slide {
    position: absolute;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: flex-end;
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    user-select: none;
    left: 50%;
    transform-origin: center center;
}

.phone-mockup-img {
    width: 200px;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 26px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.phone-slide.active .phone-mockup-img {
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.8);
    width: 280px;
    max-height: 560px;
}

.phone-caption {
    text-align: center;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 200px;
    pointer-events: none;
    margin-bottom: 24px;
    transform: translateY(20px);
}

.phone-slide.active .phone-caption {
    opacity: 1;
    transform: translateY(0);
}

.phone-caption h3 {
    color: #FFFFFF;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.phone-caption p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Tablet */
@media (max-width: 1024px) {
    .phone-carousel {
        margin: 5rem auto 6rem auto;
        padding: 1.5rem 0;
    }

    .carousel-track {
        height: 45vh;
        min-height: 380px;
        max-height: 500px;
    }

    .phone-mockup-img {
        width: min(22vw, 200px);
        max-height: min(44vw, 400px);
    }

    .phone-slide.active .phone-mockup-img {
        width: min(30vw, 260px);
        max-height: min(60vw, 520px);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .phone-carousel {
        margin: 4rem auto 5rem auto;
        padding: 1rem 0;
    }

    .carousel-track {
        height: 55vh;
        min-height: 450px;
        max-height: 550px;
    }

    .phone-mockup-img {
        width: 35vw;
        max-height: 70vw;
        border-radius: 32px;
    }

    .phone-slide.active .phone-mockup-img {
        width: 50vw;
        max-height: 100vw;
    }

    .phone-caption {
        width: 220px;
    }

    .phone-caption h3 {
        font-size: 1.1rem;
    }

    .phone-caption p {
        font-size: 0.85rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .phone-carousel {
        margin: 3rem auto 4rem auto;
    }

    .carousel-track {
        height: 60vh;
        min-height: 420px;
        max-height: 500px;
    }

    .phone-mockup-img {
        width: 40vw;
        max-height: 80vw;
        border-radius: 28px;
    }

    .phone-slide.active .phone-mockup-img {
        width: 55vw;
        max-height: 110vw;
    }

    .phone-caption {
        width: 200px;
    }
}

/* ===== Detail Cards ===== */
.detail-cards {
    display: grid !important;
    gap: 1.5rem !important;
    margin-top: 2rem !important;
}

@media (min-width: 1024px) {
    .detail-cards {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (min-width: 769px) and (max-width: 1023px) {
    .detail-cards {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .detail-cards {
        grid-template-columns: 1fr !important;
    }
}

/* ===== Smooth Page Background with Glows ===== */
html {
    background: #0a0a0f !important;
}

body {
    background:
        /* Top center - hellblau */
        radial-gradient(ellipse 140% 70% at 50% -10%, rgba(90, 200, 250, 0.12) 0%, transparent 50%),
        /* Top right - lila/blau mix */
        radial-gradient(ellipse 100% 80% at 80% 10%, rgba(120, 80, 200, 0.1) 0%, transparent 50%),
        /* Left side - lila */
        radial-gradient(ellipse 70% 90% at -15% 50%, rgba(100, 60, 180, 0.08) 0%, transparent 50%),
        /* Right side - blau */
        radial-gradient(ellipse 70% 90% at 115% 40%, rgba(60, 140, 220, 0.08) 0%, transparent 50%),
        /* Bottom center - lila */
        radial-gradient(ellipse 120% 50% at 50% 110%, rgba(100, 70, 180, 0.1) 0%, transparent 50%),
        /* Base gradient */
        linear-gradient(180deg, #0c0c14 0%, #0a0a0f 30%, #0a0a0f 70%, #08080c 100%) !important;
    background-attachment: fixed !important;
    min-height: 100vh;
}

.hero,
.detailed-features,
.cta-section,
footer,
section {
    background: transparent !important;
}

.hero::before,
.hero::after,
.cta-section::before,
.cta-section::after,
.detailed-features::before,
.detailed-features::after {
    display: none !important;
}

