.acs-coming-soon {
    min-height: 100vh;
    margin: 0;
    background: var(--acs-background-color, #020202);
    color: #f5f5f5;
    font-family: var(--acs-body-font);
}

.acs-launch-shell {
    position: relative;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    border: 0;
    background: radial-gradient(circle at center, color-mix(in srgb, var(--acs-accent-color) 16%, transparent) 0%, color-mix(in srgb, var(--acs-accent-color) 6%, transparent) 36%, rgba(0, 0, 0, 0) 72%), var(--acs-background-color, #020202);
    border-radius: 0;
    overflow: hidden;
    display: grid;
    grid-template-rows: auto auto auto;
    align-content: center;
}

.acs-launch-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 62%, color-mix(in srgb, var(--acs-accent-color) 14%, transparent), transparent 55%),
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: auto, 56px 56px, 56px 56px;
}

.acs-launch-shell::after {
    content: "";
    position: absolute;
    top: 10%;
    left: 50%;
    width: min(88vw, 1320px);
    aspect-ratio: 1 / 1;
    transform: translateX(-50%);
    border-radius: 50%;
    border: min(18px, 1.6vw) solid var(--acs-accent-color);
    box-shadow:
        0 0 70px color-mix(in srgb, var(--acs-accent-color) 56%, transparent),
        0 0 180px color-mix(in srgb, var(--acs-accent-color) 38%, transparent),
        0 0 320px color-mix(in srgb, var(--acs-accent-color) 26%, transparent),
        inset 0 0 38px color-mix(in srgb, var(--acs-accent-color) 72%, transparent);
    filter: blur(0.7px);
    pointer-events: none;
    opacity: 0.98;
}

.acs-topbar {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    top: clamp(86px, 13vh, 170px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
}

.acs-logo {
    margin: 0;
}

.acs-logo-img {
    max-height: 32px;
    width: auto;
}

.acs-logo-text {
    font-family: var(--acs-heading-font);
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
}

.acs-launch-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(44px, 7vw, 88px) 20px 0;
    max-width: 980px;
    margin: clamp(30px, 4.5vh, 56px) auto 0;
}

.acs-days-pill {
    margin-top: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.acs-countdown {
    margin: 0 0 24px;
    display: flex;
    gap: 10px;
    justify-content: center;
    width: auto;
    border: 0;
    background: transparent;
}

.acs-countdown-item {
    min-width: clamp(84px, 10vw, 106px);
    padding: 14px 8px 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(18, 18, 18, 0.62) 40%, rgba(14, 14, 14, 0.76) 100%);
    backdrop-filter: blur(2px);
}

.acs-countdown-number {
    color: #f7f7f7;
    font-size: clamp(34px, 4.5vw, 56px);
    font-weight: 500;
    line-height: 1;
}

.acs-countdown-label {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.acs-heading {
    margin: 0;
    font-family: var(--acs-heading-font);
    color: #f8f8f8;
    font-weight: 700;
    font-size: clamp(44px, 6.2vw, 86px);
    line-height: 1.03;
    max-width: 12ch;
}

.acs-subheading {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(18px, 2vw, 24px);
}

.acs-message {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.58);
    font-size: clamp(16px, 1.5vw, 24px);
    line-height: 1.5;
    max-width: 700px;
}

.acs-newsletter-form {
    margin-top: 22px;
    width: min(640px, 100%);
}

.acs-newsletter-heading,
.acs-newsletter-description {
    display: block;
    text-align: center;
}

.acs-newsletter-heading {
    margin: 0 0 8px;
    color: #f3f3f3;
    font-family: var(--acs-heading-font);
    font-size: clamp(22px, 2.4vw, 32px);
    font-weight: 600;
    line-height: 1.2;
}

.acs-newsletter-description {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.62);
    font-size: clamp(14px, 1.2vw, 17px);
    line-height: 1.5;
}

.acs-subscribe-form {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
        "email button"
        "gdpr gdpr"
        "msg msg";
    align-items: center;
    column-gap: 10px;
    row-gap: 12px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    padding: 0;
}

.acs-input-name,
.acs-input-phone {
    display: none;
}

.acs-input {
    flex: 1;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(10, 10, 10, 0.68);
    color: #f4f4f4;
    min-width: 0;
    height: 54px;
    padding: 0 18px;
}

.acs-input-email {
    grid-area: email;
}

.acs-input::placeholder {
    color: rgba(255, 255, 255, 0.48);
}

.acs-btn-subscribe {
    grid-area: button;
    height: 54px;
    border-radius: 999px;
    min-width: 168px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    background: #ffffff;
    color: #070707;
    font-weight: 600;
    padding: 0 20px;
}

.acs-btn-subscribe:hover {
    opacity: 0.95;
}

.acs-gdpr-consent {
    grid-area: gdpr;
    margin-top: 8px;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.72);
    display: flex;
    justify-content: center;
    font-size: 13px;
}

.acs-gdpr-consent label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.acs-login-link,
.acs-contact-info {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.68);
}

.acs-login-link a,
.acs-contact-info a {
    color: #ffffff;
}

.acs-footer {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    padding: 4px 18px 14px;
    gap: 8px;
}

.acs-footer .acs-social-links {
    display: flex;
    gap: 10px;
    margin-top: 0;
}

.acs-social-link {
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.acs-footer-text {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
    text-align: center;
}

@media (max-width: 980px) {
    .acs-launch-shell {
        width: 100%;
        margin: 0;
    }

    .acs-launch-shell::after {
        width: min(120vw, 860px);
        top: 16%;
    }

    .acs-topbar {
        top: clamp(42px, 8vh, 84px);
        justify-content: center;
        padding: 0 14px;
    }

    .acs-countdown {
        flex-wrap: wrap;
    }

    .acs-countdown-item {
        min-width: 84px;
    }

    .acs-subscribe-form {
        grid-template-columns: 1fr;
        grid-template-areas:
            "email"
            "button"
            "gdpr"
            "msg";
    }

    .acs-input,
    .acs-btn-subscribe {
        width: 100%;
    }
}
.acs-form-message {
    grid-area: msg;
}
