/* SyncGrid Color Palette */
:root {
    --sync-teal: #00C8D8;
    --grid-navy: #0A0F1F;
    --signal-gray: #D9E0E6;
    --pulse-purple: #8A4FFF;
    --link-blue: #3A7BFF;
}

/* Global */
body {
    margin: 0;
    padding: 0;
    background: var(--grid-navy);
    color: white;
    font-family: "Inter", sans-serif;
    text-align: center;
}

/* Header */
.header {
    padding: 40px 0 10px;
}

.logo {
    width: 90px;
    height: auto;
}

.brand {
    font-size: 2rem;
    letter-spacing: 4px;
    margin-top: 10px;
}

/* Hero Section */
.hero {
    margin-top: 40px;
    padding: 0 20px;
}

.title {
    font-size: 2.5rem;
    color: var(--sync-teal);
}

.subtitle {
    max-width: 600px;
    margin: 10px auto 40px;
    font-size: 1.2rem;
    color: var(--signal-gray);
}

/* Coming Soon Box */
.coming-soon-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    max-width: 400px;
    margin: 0 auto 40px;
}

.coming-soon-box h3 {
    color: var(--pulse-purple);
    margin-bottom: 10px;
}

/* Email Box */
.email-box {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.email-box input {
    padding: 12px 15px;
    border-radius: 8px;
    border: none;
    width: 250px;
    font-size: 1rem;
}

.email-box button {
    padding: 12px 20px;
    background: var(--sync-teal);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    color: black;
    font-weight: bold;
    transition: 0.2s;
}

.email-box button:hover {
    background: var(--pulse-purple);
    color: white;
}

/* Footer */
.footer {
    margin-top: 80px;
    padding-bottom: 30px;
    color: var(--signal-gray);
    font-size: 0.9rem;
}

/* Animated Grid Background */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(var(--grid-navy) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-navy) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.15;
    z-index: -1;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    from {
        background-position: 0 0, 0 0;
    }
    to {
        background-position: 200px 200px, 200px 200px;
    }
}

/* Floating Dots Background */
.dots {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background: radial-gradient(circle, var(--sync-teal) 2px, transparent 2px) 0 0,
                radial-gradient(circle, var(--pulse-purple) 2px, transparent 2px) 50px 50px;
    background-size: 120px 120px;
    opacity: 0.12;
    animation: dotsMove 25s linear infinite;
}

@keyframes dotsMove {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-200px);
    }
}
