:root {
    --primary-color: #0F1B2F;
    --secondary-color: #FFD166;
    --accent-color: #F25F5C;
    --accent-alt: #70D6FF;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --bg-light: #F8F9FA;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #FFFFFF;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1A2B4E 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 209, 102, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 80% 80%, rgba(112, 214, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 40% 40%, rgba(242, 95, 92, 0.05) 0%, transparent 30%);
}

.logo-container {
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-out;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo i {
    color: var(--secondary-color);
    margin-right: 12px;
    font-size: 2.8rem;
}

.coming-soon {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    letter-spacing: -0.03em;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.tagline {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 3rem;
    max-width: 600px;
    letter-spacing: 0.01em;
    animation: fadeInUp 1s ease-out 0.4s both;
    opacity: .5 !important;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

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

.countdown-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
    font-family: 'Space Grotesk', sans-serif;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
    letter-spacing: 1px;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 15s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation-duration: 20s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: 100px;
    animation-duration: 25s;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 70%;
    animation-duration: 30s;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
    }

    33% {
        transform: translateY(-30px) translateX(20px) scale(1.1);
    }

    66% {
        transform: translateY(30px) translateX(-20px) scale(0.9);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Notify Section */
.notify {
    padding: 100px 0;
    background: var(--bg-light);
    text-align: center;
}

.notify h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.notify h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.notify p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    width: auto;
    margin-left: auto;
    margin-right: auto;
}

.notify-form {
    user-select: none;
    display: flex;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.notify-form input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    outline: none;
    font-size: 1rem;
    background: white;
}

.notify-form input:disabled {
    cursor: not-allowed;
}

.notify-form button {
    padding: 16px 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.notify-form button:hover {
    background: #1A2B4E;
}

.notify-form.subscribed button {
    cursor: not-allowed;
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 20px 0 20px;
    text-align: center;
}


/* Responsive */
@media (max-width: 500px) {
    .logo {
        font-size: 30px;
    }

    .coming-soon {
        font-size: 45px;
    }

    .tagline {
        font-size: 17px;
    }

    .countdown {
        gap: 5px;
        width: 100%;
        justify-content: center;
    }

    .countdown-number {
        font-size: 20px;
    }

    .countdown-label {
        font-size: 14px;
    }

    .notify-form {
        flex-direction: column;
        border-radius: 5px;
        overflow: hidden;
    }

    .notify-form input,
    .notify-form button {
        width: 100%;
        padding: 18px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-title,
    .notify h2 {
        font-size: 2rem;
    }
}