/* assets/coming-soon/style.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Space+Grotesk:wght@700&display=swap');

:root {
    --bg-dark: #0f172a;
    --accent: #38bdf8;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
}

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

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

/* Industrial Discovery Background */
.bg-nodes {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 20% 30%, rgba(56, 189, 248, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(56, 189, 248, 0.1) 0%, transparent 40%);
}

.bg-grid {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    opacity: 0.5;
}

main {
    max-width: 900px;
    text-align: center;
    padding: 2rem;
    animation: fadeIn 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-node {
    font-family: 'Space+Grotesk', sans-serif;
    color: var(--accent);
    font-size: 3rem;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 3rem;
}

/* Industrial Countdown Node */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.timer-node {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 1.5rem;
    min-width: 120px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.timer-val {
    font-family: 'Space+Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    display: block;
}

.timer-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.action-node {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.input-node {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 3rem;
    color: #fff;
    font-size: 1rem;
    width: 300px;
    outline: none;
    transition: 0.3s;
}

.input-node:focus {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

.btn-node {
    background: var(--accent);
    color: var(--bg-dark);
    border: none;
    padding: 1rem 2rem;
    border-radius: 3rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-node:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(56, 189, 248, 0.4);
}

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

@media (max-width: 600px) {
    .countdown-container { gap: 0.75rem; }
    .timer-node { min-width: 75px; padding: 1rem; }
    .timer-val { font-size: 1.75rem; }
    .action-node { flex-direction: column; align-items: center; }
    .input-node { width: 100%; max-width: 300px; }
}
