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

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #faf8f5 0%, #f5f0eb 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            position: relative;
            overflow: hidden;
        }

        /* Animated background orbs */
        .bg-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.15;
            animation: float 20s infinite ease-in-out;
            pointer-events: none;
        }

        .orb-1 {
            width: 400px;
            height: 400px;
            background: #ff6b35;
            top: -100px;
            right: -100px;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 350px;
            height: 350px;
            background: #ffd93d;
            bottom: -80px;
            left: -80px;
            animation-delay: 5s;
        }

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

        .container {
            max-width: 520px;
            width: 100%;
            animation: fadeInUp 0.8s ease-out;
            position: relative;
            z-index: 1;
        }

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

        .header {
            text-align: center;
            margin-bottom: 48px;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: linear-gradient(135deg, #ff6b35 0%, #ff8157 100%);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.3px;
            margin-bottom: 20px;
            animation: pulse 2s ease-in-out infinite;
            position: relative;
        }

        .badge::before {
            content: '';
            width: 6px;
            height: 6px;
            background: white;
            border-radius: 50%;
            animation: blink 2s ease-in-out infinite;
        }

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

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

        h1 {
            font-family: 'Fraunces', serif;
            font-size: 42px;
            font-weight: 700;
            color: #1a1a1a;
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .subtitle {
            font-size: 17px;
            color: #6b6b6b;
            line-height: 1.6;
            max-width: 420px;
            margin: 0 auto;
        }

        .form-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            padding: 48px 40px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02), 
                        0 12px 24px rgba(0, 0, 0, 0.04),
                        0 0 0 1px rgba(0, 0, 0, 0.02);
            transition: all 0.3s ease;
        }

        .form-card:hover {
            box-shadow: 0 8px 12px rgba(0, 0, 0, 0.03), 
                        0 20px 40px rgba(0, 0, 0, 0.06),
                        0 0 0 1px rgba(0, 0, 0, 0.02);
        }

        .form-group {
            margin-bottom: 24px;
            position: relative;
        }

        label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: #2a2a2a;
            margin-bottom: 8px;
            letter-spacing: -0.01em;
        }

        .input-wrapper {
            position: relative;
        }

        .input-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #a8a8a8;
            font-size: 18px;
            pointer-events: none;
            transition: color 0.2s ease;
        }

        input {
            width: 100%;
            padding: 14px 16px 14px 44px;
            font-size: 15px;
            font-family: 'Inter', sans-serif;
            border: 2px solid #e8e8e8;
            border-radius: 12px;
            background: #fafafa;
            color: #1a1a1a;
            transition: all 0.2s ease;
            outline: none;
        }

        input:focus {
            background: white;
            border-color: #ff6b35;
            box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.08);
        }

        input:focus + .input-icon {
            color: #ff6b35;
        }

        input::placeholder {
            color: #a8a8a8;
        }

        input.valid {
            border-color: #6BCF7F;
            background: #f8fdf9;
        }

        input.invalid {
            border-color: #ff4444;
            background: #fff8f8;
        }

        .error-message {
            display: none;
            font-size: 13px;
            color: #ff4444;
            margin-top: 6px;
            animation: slideDown 0.2s ease-out;
        }

        .error-message.active {
            display: block;
        }

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

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            margin: 28px 0;
        }

        .checkbox-wrapper {
            display: flex;
            align-items: center;
            cursor: pointer;
        }

        input[type="checkbox"] {
            width: 20px;
            height: 20px;
            margin-right: 12px;
            cursor: pointer;
            flex-shrink: 0;
            margin-top: 2px;
            accent-color: #ff6b35;
        }

        .checkbox-label {
            font-size: 14px;
            color: #4a4a4a;
            line-height: 1.5;
            cursor: pointer;
        }

        .checkbox-label a {
            color: #ff6b35;
            text-decoration: none;
            font-weight: 500;
        }

        .checkbox-label a:hover {
            text-decoration: underline;
        }

        .submit-btn {
            width: 100%;
            padding: 16px;
            font-size: 16px;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #ff6b35 0%, #ff8157 100%);
            color: white;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
            letter-spacing: -0.01em;
            position: relative;
            overflow: hidden;
        }

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

        .submit-btn:hover::before {
            left: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
        }

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

        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .btn-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .spinner {
            display: none;
            width: 16px;
            height: 16px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-top-color: white;
            border-radius: 50%;
            animation: spin 0.6s linear infinite;
        }

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

        .social-proof {
            text-align: center;
            margin-top: 32px;
            padding-top: 32px;
            border-top: 1px solid #f0f0f0;
        }

        .avatars {
            display: flex;
            justify-content: center;
            margin-bottom: 12px;
        }

        .avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 2px solid white;
            margin-left: -8px;
            background: linear-gradient(135deg, #ff6b35, #ffd93d);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
            font-weight: 600;
        }

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

        .avatar:nth-child(2) {
            background: linear-gradient(135deg, #6BCF7F, #4ECDC4);
        }

        .avatar:nth-child(3) {
            background: linear-gradient(135deg, #F7971E, #FFD200);
        }

        .avatar:nth-child(4) {
            background: linear-gradient(135deg, #A8EDEA, #FED6E3);
        }

        .social-text {
            font-size: 14px;
            color: #6b6b6b;
        }

        .social-text strong {
            color: #2a2a2a;
            font-weight: 600;
        }

        .success-message {
            display: none;
            text-align: center;
            animation: fadeInUp 0.6s ease-out;
        }

        .success-message.active {
            display: block;
        }

        .success-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #6BCF7F 0%, #4ECDC4 100%);
            border-radius: 50%;
            margin: 0 auto 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            animation: scaleIn 0.5s ease-out;
        }

        @keyframes scaleIn {
            from {
                transform: scale(0) rotate(-180deg);
            }
            to {
                transform: scale(1) rotate(0);
            }
        }

        .success-title {
            font-family: 'Fraunces', serif;
            font-size: 28px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 12px;
        }

        .success-text {
            font-size: 16px;
            color: #6b6b6b;
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .waitlist-position {
            display: inline-block;
            background: #f5f5f5;
            padding: 12px 24px;
            border-radius: 12px;
            font-size: 14px;
            color: #4a4a4a;
        }

        .waitlist-position strong {
            color: #ff6b35;
            font-size: 20px;
            font-weight: 700;
        }

        @media (max-width: 640px) {
            h1 {
                font-size: 36px;
            }

            .form-card {
                padding: 36px 28px;
            }

            input {
                padding: 14px 16px 14px 40px;
            }
        }