:root {
    --primary-color: #ff8c00;
    /* Vibrant Orange */
    --primary-glow: #ffa500;
    --bg-dark: #f8fafc;
    /* Whitish background */
    --bg-gradient-start: #e2e8f0;
    --text-white: #0f172a;
    /* Dark text */
    --text-dim: #64748b;
    --glass-bg: rgba(255, 255, 255, 0.7);
    /* White glass */
    --glass-border: rgba(255, 255, 255, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, var(--bg-gradient-start) 0%, var(--bg-dark) 100%);
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 140, 0, 0.15);
    border-radius: 50%;
    pointer-events: none;
    animation: float ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-20px) translateX(10px);
    }
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    z-index: 1;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 140, 0, 0.3));
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #0f172a, #334155);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.tagline {
    font-size: 1.125rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
    font-weight: 300;
}

.features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature-pill {
    padding: 0.5rem 1.5rem;
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-pill:hover {
    background: rgba(255, 140, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.2);
}



/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards 0.3s;
}

.fade-in-delay-1 {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards 0.5s;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards 0.7s;
}

.fade-in-delay-3 {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards 0.9s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .glass-card {
        padding: 2rem 1.5rem;
    }

    form {
        flex-direction: column;
    }

    button {
        width: 100%;
    }
}

/* Coming Soon Highlight */
.highlight-text {
    display: block;
    font-size: 1.1em;
    margin-top: 0.2rem;
    background: linear-gradient(135deg, #ff3d00 0%, #ff3d00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 4px 20px rgba(255, 140, 0, 0.3);
    letter-spacing: 1px;
    font-weight: 800;
}

@media (max-width: 480px) {
    .highlight-text {
        font-size: 1.1em;
    }
}