:root {
    --mah-orange: #ff8a00;
    --mah-orange-deep: #f26b1d;
    --mah-blue: #0077ff;
    --mah-blue-soft: #3fa6ff;
    --mah-bg: #ffedd5;
    --mah-dark: #1f2937;
    --mah-muted: #6b7280;
    --mah-card-bg: #ffffff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body.coming-soon-body {
    min-height: 100vh;
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, #ffe6c7 0, #ffb973 35%, #ff8a00 70%, #f97316 100%);
    color: var(--mah-dark);
    position: relative;
    overflow: hidden;
}

.gradient-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.55), transparent 55%),
        radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.35), transparent 55%);
    opacity: 0.9;
}

.coming-soon-card {
    position: relative;
    z-index: 1;
    max-width: 960px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.98));
    border-radius: 32px;
    padding: 2.75rem 2.25rem;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.14),
        0 0 0 1px rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(18px);
}

@media (max-width: 575.98px) {
    .coming-soon-card {
        border-radius: 24px;
        padding: 1.75rem 1.5rem;
        margin-inline: 1rem;
    }
}

.logo-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    border-radius: 40px;
    background: radial-gradient(circle at 30% 0, #fff7ed 0, #fed7aa 40%, #fb923c 85%);
    box-shadow:
        0 18px 40px rgba(248, 113, 113, 0.25),
        0 0 0 8px rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.logo-wrapper::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 32px;
    background: radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.85), transparent 60%);
    opacity: 0.7;
}

.logo-img {
    position: relative;
    z-index: 1;
    max-width: 72%;
    height: auto;
}

.app-title {
    font-weight: 800;
    font-size: clamp(2.1rem, 2.6vw, 2.6rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mah-dark);
}

.tagline {
    font-size: 0.98rem;
    color: var(--mah-muted);
    max-width: 32rem;
}

.badge-coming-soon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    background: linear-gradient(135deg, rgba(255, 148, 37, 0.16), rgba(59, 130, 246, 0.17));
    color: var(--mah-dark);
    border: 1px solid rgba(253, 186, 116, 0.85);
}

.badge-coming-soon::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #ffffff, #22c55e);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.2);
}

.countdown {
    --box-bg: #f9fafb;
}

.time-box {
    flex: 1 1 90px;
    min-width: 90px;
    background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.9), transparent 55%), var(--box-bg);
    border-radius: 20px;
    padding: 0.9rem 0.75rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.28);
}

.time-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--mah-dark);
}

.time-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--mah-muted);
}

.sub-copy {
    font-size: 0.95rem;
    color: var(--mah-muted);
}

.feature-chips {
    margin-top: 0.5rem;
}

.feature-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--mah-dark);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9)),
        radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.9), transparent 55%);
    border: 1px solid rgba(249, 115, 22, 0.35);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

@media (max-width: 575.98px) {
    .feature-chip {
        white-space: normal;
    }
}

.coming-footer {
    border-top: 1px solid rgba(148, 163, 184, 0.3);
    padding-top: 0.75rem;
    margin-top: 1.75rem;
    color: rgba(100, 116, 139, 0.98);
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    margin-right: 0.35rem;
    background: radial-gradient(circle at 30% 30%, #ffffff, #f97316);
    box-shadow: 0 0 0 5px rgba(248, 113, 22, 0.25);
}

@media (prefers-reduced-motion: no-preference) {
    .logo-wrapper {
        transform: translateY(0);
        animation: floatLogo 6s ease-in-out infinite;
    }

    body.coming-soon-body {
        animation: subtleGradientShift 18s ease-in-out infinite alternate;
    }
}

@keyframes floatLogo {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes subtleGradientShift {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

