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

.acs-blush-shell {
    --acs-blush-image: url('../../assets/images/acs-backgrounds/blush-default.jpg');
    position: relative;
    min-height: 100vh;
    padding: clamp(20px, 4vw, 38px) clamp(18px, 4vw, 36px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    isolation: isolate;
    background: var(--acs-background-color, #08142f);
}

.acs-blush-bg,
.acs-blush-bg > div {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.acs-blush-bg {
    z-index: 0;
}

.acs-blush-bg-image {
    background-image:
        linear-gradient(112deg, rgba(3, 8, 26, 0.25), rgba(3, 8, 26, 0.72)),
        var(--acs-blush-image);
    background-size: cover;
    background-position: 28% 45%;
    clip-path: polygon(0 0, 58% 0, 41% 48%, 0 100%);
}

.acs-blush-bg-right {
    background:
        radial-gradient(circle at 44% 44%, color-mix(in srgb, var(--acs-accent-color) 60%, #9ceecb) 0%, color-mix(in srgb, var(--acs-accent-color) 16%, #0b2148) 19%, rgba(8, 15, 52, 0.98) 45%, rgba(7, 12, 44, 1) 76%),
        linear-gradient(26deg, rgba(5, 11, 38, 1) 42%, color-mix(in srgb, var(--acs-accent-color) 22%, #143f58) 100%);
    clip-path: polygon(58% 0, 100% 0, 100% 100%, 41% 48%);
}

.acs-blush-bg-grid {
    background:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: 0.22;
}

.acs-blush-bg-glow {
    background:
        radial-gradient(circle at 50% 46%, color-mix(in srgb, var(--acs-accent-color) 28%, transparent) 0%, transparent 58%);
    mix-blend-mode: screen;
    opacity: 0.7;
}

.acs-blush-topbar,
.acs-blush-content,
.acs-footer {
    position: relative;
    z-index: 2;
}

.acs-blush-topbar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: clamp(26px, 6vh, 74px);
    padding-left: clamp(64px, 7vw, 110px);
}

.acs-logo {
    margin: 0;
}

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

.acs-logo-text {
    font-family: var(--acs-heading-font);
    font-size: 24px;
    font-weight: 600;
}

.acs-blush-content {
    max-width: min(560px, 100%);
    padding-top: clamp(14px, 3.4vh, 36px);
    margin-left: clamp(64px, 7vw, 110px);
}

.acs-eyebrow {
    margin: 0 0 10px;
    font-size: 26px;
    line-height: 1.2;
    color: rgba(236, 244, 255, 0.94);
    font-family: var(--acs-heading-font);
}

.acs-heading {
    margin: 0;
    font-family: var(--acs-heading-font);
    font-size: clamp(78px, 15vw, 126px);
    line-height: 0.9;
    letter-spacing: -0.03em;
    color: #f4f8ff;
}

.acs-message {
    margin-top: 16px;
    max-width: 420px;
    font-size: clamp(14px, 1.5vw, 17px);
    line-height: 1.55;
    color: rgba(208, 222, 247, 0.9);
}

.acs-countdown {
    margin-top: 18px;
    display: flex;
    gap: 8px;
}

.acs-countdown-item {
    min-width: 70px;
    border-radius: 12px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(12, 18, 52, 0.56);
}

.acs-countdown-number {
    font-size: 28px;
    line-height: 1;
    color: #f3fbff;
}

.acs-countdown-label {
    margin-top: 4px;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(211, 224, 245, 0.82);
}

.acs-newsletter-form {
    margin-top: 24px;
    max-width: 500px;
    width: 100%;
}

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

.acs-newsletter-heading {
    margin: 0 0 6px;
    font-family: var(--acs-heading-font);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.2;
    color: #f1f7ff;
}

.acs-newsletter-description {
    margin: 0 0 12px;
    color: rgba(210, 224, 245, 0.9);
    font-size: clamp(13px, 1.35vw, 16px);
    line-height: 1.45;
    max-width: 460px;
}

.acs-subscribe-form {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
        "email button"
        "gdpr gdpr"
        "msg msg";
    gap: 10px;
    align-items: center;
}

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

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

.acs-input {
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(240, 247, 255, 0.42);
    background: rgba(6, 9, 31, 0.6);
    color: #eef5ff;
    padding: 0 16px;
}

.acs-input::placeholder {
    color: rgba(196, 208, 227, 0.72);
}

.acs-btn-subscribe {
    grid-area: button;
    height: 40px;
    min-width: 112px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    background: #f9fcff;
    color: #0d1a3d;
    font-weight: 600;
    padding: 0 18px;
}

.acs-btn-subscribe:hover {
    background: #ffffff;
}

.acs-gdpr-consent {
    grid-area: gdpr;
    margin-top: 2px;
    color: rgba(216, 226, 242, 0.86);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.acs-gdpr-consent input {
    width: 16px;
    height: 16px;
}

.acs-form-message {
    grid-area: msg;
}

.acs-login-link,
.acs-contact-info {
    margin-top: 10px;
    color: rgba(223, 232, 246, 0.86);
}

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

.acs-footer {
    margin-top: auto;
    padding-top: 18px;
    padding-left: clamp(64px, 7vw, 110px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

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

.acs-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(7, 14, 42, 0.58);
    color: #ffffff;
}

.acs-social-link:hover {
    background: color-mix(in srgb, var(--acs-accent-color) 32%, #0a2a41);
    border-color: rgba(255, 255, 255, 0.56);
}

.acs-footer-text {
    color: rgba(198, 211, 236, 0.76);
    font-size: 14px;
}

@media (max-width: 768px) {
    .acs-blush-content {
        margin-left: 0;
    }

    .acs-blush-topbar {
        padding-left: 0;
    }

    .acs-blush-shell {
        --acs-blush-image: url('../../assets/images/acs-backgrounds/blush-default.jpg');
    }

    .acs-blush-bg-image {
        clip-path: polygon(0 0, 100% 0, 100% 34%, 0 56%);
        background-position: center 38%;
    }

    .acs-blush-bg-right {
        clip-path: polygon(0 56%, 100% 34%, 100% 100%, 0 100%);
    }

    .acs-blush-topbar {
        margin-bottom: 24px;
    }

    .acs-heading {
        font-size: clamp(58px, 20vw, 90px);
    }

    .acs-eyebrow {
        font-size: 22px;
    }

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

    .acs-btn-subscribe,
    .acs-input {
        width: 100%;
    }

    .acs-footer {
        align-items: center;
        text-align: center;
        width: 100%;
        padding-left: 0;
    }
}
