* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    background: #030303;
    color: #f5f5f5;
    min-height: 100vh;
}

.coming-soon {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 1.2rem;
    position: relative;
    overflow: hidden;
}

.glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 999px;
    filter: blur(65px);
    opacity: 0.22;
    pointer-events: none;
}

.glow-left {
    background: #7c3aed;
    top: -120px;
    left: -80px;
}

.glow-right {
    background: #0ea5e9;
    right: -120px;
    bottom: -120px;
}

.card {
    width: min(940px, 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    padding: 2.5rem 1.6rem;
    text-align: center;
    backdrop-filter: blur(8px);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.45);
    position: relative;
    z-index: 2;
}

.badge {
    margin: 0;
    letter-spacing: 0.2em;
    font-size: 0.72rem;
    color: #a3a3a3;
}

h1 {
    margin: 0.7rem 0 0;
    font-size: clamp(2rem, 6vw, 4.2rem);
    font-weight: 800;
}

.subtitle {
    margin: 0.8rem 0 1.8rem;
    color: #c5c5c5;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.time-box {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.35);
    border-radius: 14px;
    padding: 1rem 0.4rem;
}

.value {
    display: block;
    font-size: clamp(1.4rem, 4vw, 2.7rem);
    font-weight: 700;
}

.label {
    display: block;
    margin-top: 0.3rem;
    color: #b0b0b0;
    font-size: 0.88rem;
}

.subscribe-block {
    margin-top: 1.5rem;
}

.subscribe-block h2 {
    margin: 0;
    font-size: 1.1rem;
}

.subscribe-block p {
    margin: 0.35rem 0 0.7rem;
    color: #bfbfbf;
}

.subscribe-form {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.subscribe-form input {
    width: min(360px, 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.35);
    color: #f3f4f6;
    border-radius: 10px;
    padding: 0.62rem 0.75rem;
}

.subscribe-form input::placeholder {
    color: #9ca3af;
}

.subscribe-form button {
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 10px;
    padding: 0.62rem 1rem;
    cursor: pointer;
}

.subscribe-form button:hover {
    background: rgba(255, 255, 255, 0.16);
}

.subscribe-success {
    display: inline-block;
    margin-bottom: 0.65rem;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    font-weight: 600;
    color: #bbf7d0;
    background: rgba(34, 197, 94, 0.18);
    border: 1px solid rgba(34, 197, 94, 0.45);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.subscribe-success.is-hiding {
    opacity: 0;
    transform: translateY(-6px);
}

/* Override `.subscribe-block p` gray so errors stay clearly red */
.subscribe-block .subscribe-error {
    display: inline-block;
    margin-bottom: 0.65rem;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    font-weight: 600;
    color: #fecaca;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(248, 113, 113, 0.55);
}

.social-links {
    margin-top: 1.4rem;
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.social-links a {
    color: #f5f5f5;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 180ms ease;
}

.social-links a:hover {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.14);
}

.social-links svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}

@media (max-width: 640px) {
    .countdown {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .subscribe-form {
        flex-direction: column;
        align-items: stretch;
    }
}
