/* Universal Reset & Font Setup */
@import url('https://googleapis.com');

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

body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
    color: #f8fafc;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-x: hidden;
}

/* Card Container */
.construction-container {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 24px;
    width: 100%;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Animated Gear Icon */
.icon-wrapper {
    font-size: 4rem;
    margin-bottom: 20px;
    display: inline-block;
}

.gear-icon {
    display: inline-block;
    animation: rotateGear 4s linear infinite;
}

@keyframes rotateGear {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Typography */
h1 {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.025em;
    background: linear-gradient(to right, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Progress Bar Component */
.progress-container {
    margin-bottom: 32px;
    text-align: left;
}

.progress-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #38bdf8;
    margin-bottom: 8px;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: #334155;
    border-radius: 9999px;
    overflow: hidden;
}

.progress-fill {
    width: 75%;
    height: 100%;
    background: linear-gradient(to right, #38bdf8, #6366f1);
    border-radius: 9999px;
    position: relative;
    animation: fillPulse 2s ease-in-out infinite;
}

@keyframes fillPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

/* Email Signup Form */
.notify-form {
    display: flex;
    gap: 12px;
    width: 100%;
}

.notify-form input {
    flex: 1;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid #334155;
    background: #0f172a;
    color: #f8fafc;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

.notify-form input:focus {
    border-color: #38bdf8;
}

.notify-form button {
    padding: 14px 24px;
    border-radius: 12px;
    border: none;
    background: #38bdf8;
    color: #0f172a;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.notify-form button:hover {
    background: #7dd3fc;
}

.notify-form button:active {
    transform: scale(0.98);
}

/* Responsive Breakpoints */
@media (max-width: 480px) {
    .construction-container {
        padding: 24px;
    }
    h1 {
        font-size: 1.75rem;
    }
    .notify-form {
        flex-direction: column;
    }
    .notify-form button {
        width: 100%;
    }
}
