:root {
    --primary: #305CDE;
    --primary-dark: #2549b3;
    --accent: #1ABCC1;
    --bg: #F9FAFB;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: #E5EDF5;
    --text-main: #15191E;
    --text-muted: #60646C;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navbar Styles */
.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-logo-img {
    height: 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.btn-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: transform 0.2s ease, background 0.2s ease;
}

.btn-contact:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(48, 92, 222, 0.25);
}

.btn-arrow-svg {
    width: 14px;
    height: auto;
}

/* Coming Soon Section */
.coming-soon-wrapper {
    min-height: 100vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-bottom: 4rem;
}

.coming-soon-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.glass-card {
    background: #FFFFFF;
    border: 1px solid #CBD5E1;
    border-radius: 24px;
    padding: 5rem 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInScale 0.8s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.status-tag {
    background: rgba(48, 92, 222, 0.1);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(48, 92, 222, 0.2);
}

.coming-soon-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    color: #000;
}

.gradient-text {
    color: var(--primary);
}

.coming-soon-desc {
    font-size: 1.125rem;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 3.5rem;
    max-width: 600px;
}

.countdown-container {
    display: flex;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

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

.count {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    color: var(--primary);
}

.label {
    font-size: 0.75rem;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 0.5rem;
}

.subscription-box {
    display: flex;
    width: 100%;
    max-width: 480px;
    background: #FFFFFF;
    border: 1px solid #CBD5E1;
    border-radius: 12px;
    padding: 6px;
    transition: all 0.3s ease;
}

.subscription-box:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(48, 92, 222, 0.1);
}

.email-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #1E293B;
    padding: 12px 20px;
    outline: none;
    font-size: 1rem;
}

.notify-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.notify-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Background Blobs */
.background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.6;
    border-radius: 50%;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: rgba(48, 92, 222, 0.08);
    top: -50px;
    left: -50px;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: rgba(26, 188, 193, 0.08);
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
}

.blob-3 {
    width: 250px;
    height: 250px;
    background: rgba(48, 92, 222, 0.05);
    top: 40%;
    right: 15%;
    animation-duration: 8s;
}

@media (max-width: 640px) {
    .nav-menu {
        display: none;
        /* Keep it simple for standalone mobile */
    }

    .countdown-container {
        gap: 1.5rem;
    }

    .count {
        font-size: 2rem;
    }

    .subscription-box {
        flex-direction: column;
        border: none;
        padding: 0;
        gap: 12px;
    }

    .email-input {
        background: #FFFFFF;
        border: 1px solid #CBD5E1;
        border-radius: 10px;
        width: 100%;
    }

    .notify-btn {
        width: 100%;
    }

    .glass-card {
        padding: 3rem 1.5rem;
    }
}