@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --primary: #02a1d3;
    --primary-glow: rgba(2, 161, 211, 0.15);
    --bg-light: #f8fafc;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(2, 161, 211, 0.1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.85) 0%, rgba(248, 250, 252, 0.6) 100%),
                url('./solid_const_light_bg.png');
    background-size: cover;
    background-position: center;
}

.bg-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(2, 161, 211, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, transparent, rgba(2, 161, 211, 0.03), transparent);
    animation: scan 8s linear infinite;
    pointer-events: none;
    z-index: 3;
}

@keyframes scan {
    from { transform: translateY(-200px); }
    to { transform: translateY(100vh); }
}

.main-content {
    text-align: center;
    max-width: 600px;
    padding: 3rem;
    z-index: 1;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
    animation: fadeIn 1.2s ease-out;
}

.logo-container {
    margin-bottom: 2rem;
}

.brand-logo {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.05));
}

.subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.coming-soon-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.notify-section {
    margin: 0 auto;
}

.input-group {
    display: flex;
    background: white;
    border: 1px solid #e2e8f0;
    padding: 8px;
    border-radius: 100px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.input-group:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-dark);
    padding: 0 1.5rem;
    font-size: 1rem;
    outline: none;
}

input[type="email"]::placeholder {
    color: #94a3b8;
}

button.submit-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.9rem 2.2rem;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

button.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--primary-glow);
}

.social-links {
    margin-top: 3.5rem;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
}

.social-icon {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

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

@media (max-width: 600px) {
    .main-content { padding: 2rem; margin: 1rem; }
    .brand-logo { max-width: 200px; }
    .coming-soon-text { font-size: 2rem; }
    .input-group { flex-direction: column; border-radius: 20px; gap: 10px; padding: 10px; }
    button.submit-btn { width: 100%; }
}
