
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.construction {
    min-height: 100vh;
    background: radial-gradient(circle at top, #f4f7fb, #e3e7f2);
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper {
    max-width: 480px;
    width: 100%;
    padding: 32px 24px;
}

.card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
    text-align: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 26px;
}

.logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0f5df4, #1fb0ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 800;
    font-size: 19px;
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.logo-text span {
    color: #0f5df4;
}

h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

p {
    font-size: 15px;
    line-height: 1.5;
    color: #4b5563;
    margin-bottom: 18px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(15, 93, 244, 0.06);
    color: #0f5df4;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 14px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: #e5e7eb;
    overflow: hidden;
    margin: 12px 0 18px;
}

.progress-bar-inner {
    width: 65%;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #0f5df4, #1fb0ff);
    animation: loading 2s ease-in-out infinite alternate;
}

@keyframes loading {
    0%   { width: 40%; }
    100% { width: 90%; }
}

.contact {
    font-size: 14px;
    color: #6b7280;
}

.contact a {
    color: #0f5df4;
    text-decoration: none;
    font-weight: 600;
}

.contact a:hover {
    text-decoration: underline;
}

footer {
    margin-top: 12px;
    text-align: center;
    font-size: 11px;
    color: #9ca3af;
}
