/* =========================================================
   WEBARTY — DEFAULT SERVER PLACEHOLDER
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

html {
    background: #edf3f4;
}

body {
    margin: 0;

    color: #283550;

    font-family:
        "Roboto",
        Arial,
        sans-serif;
}


/* =========================================================
   PAGE
   ========================================================= */

.wa-placeholder,
.wa-placeholder *,
.wa-placeholder *::before,
.wa-placeholder *::after {
    box-sizing: border-box;
}

.wa-placeholder h1,
.wa-placeholder p {
    margin: 0;
    padding: 0;
}

.wa-placeholder a,
.wa-placeholder a:hover,
.wa-placeholder a:focus,
.wa-placeholder a:visited {
    text-decoration: none;
}

.wa-placeholder {
    --wa-dark: #283550;
    --wa-dark-deep: #172238;

    --wa-teal: #00a78e;
    --wa-teal-hover: #008f7a;
    --wa-green: #36c88a;

    --wa-text: #657188;
    --wa-muted: #8793a3;

    position: relative;

    display: flex;

    width: 100%;
    min-height: 100vh;
    min-height: 100svh;

    align-items: center;
    justify-content: center;

    padding: 20px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 93% 8%,
            rgba(0, 167, 142, 0.10) 0%,
            rgba(0, 167, 142, 0) 34%
        ),
        radial-gradient(
            circle at 5% 95%,
            rgba(54, 200, 138, 0.055) 0%,
            rgba(54, 200, 138, 0) 30%
        ),
        linear-gradient(
            180deg,
            #e4edee 0%,
            #f4f7f7 100%
        );

    font-family:
        "Roboto",
        Arial,
        sans-serif;
}


/* =========================================================
   CARD
   ========================================================= */

.wa-placeholder__card {
    width: min(100%, 700px);

    overflow: hidden;

    border:
        1px solid
        rgba(40, 53, 80, 0.11);

    border-radius: 22px;

    background: #ffffff;

    box-shadow:
        0 18px 46px -20px
        rgba(40, 53, 80, 0.30);
}


/* =========================================================
   HEADER
   ========================================================= */

.wa-placeholder__header {
    position: relative;

    display: flex;

    height: 82px;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding:
        0
        34px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 96% 0%,
            rgba(54, 200, 138, 0.19),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #172238 0%,
            #203b50 68%,
            #12515b 100%
        );
}

.wa-placeholder__header::before {
    content: "";

    position: absolute;

    bottom: 0;
    left: 34px;

    width: 52px;
    height: 3px;

    border-radius:
        999px
        999px
        0
        0;

    background:
        linear-gradient(
            90deg,
            #00a78e,
            #36c88a
        );
}


/* LOGO */

.wa-placeholder__logo {
    display: inline-flex;

    width: 190px;

    align-items: center;
}

.wa-placeholder__logo img {
    display: block;

    width: 100%;
    height: auto;
}


/* HEADER LABEL */

.wa-placeholder__header-label {
    color:
        rgba(255, 255, 255, 0.56);

    font-family:
        "Roboto",
        Arial,
        sans-serif;

    font-size: 10px;
    font-weight: 700;

    line-height: 1.2;

    letter-spacing: 0.055em;

    text-transform: uppercase;
}


/* =========================================================
   CONTENT
   ========================================================= */

.wa-placeholder__content {
    padding:
        28px
        38px
        30px;
}


/* =========================================================
   META ROW
   ========================================================= */

.wa-placeholder__meta {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 18px;
}


/* EYEBROW */

.wa-placeholder__eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #008f7a;

    font-size: 11px;
    font-weight: 800;

    line-height: 1.4;

    letter-spacing: 0.085em;

    text-transform: uppercase;
}

.wa-placeholder__eyebrow-line {
    display: block;

    flex: 0 0 29px;

    width: 29px;
    height: 3px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            #00a78e,
            #36c88a
        );
}


/* STATUS */

.wa-placeholder__status {
    display: inline-flex;

    min-height: 28px;

    align-items: center;

    gap: 8px;

    padding:
        5px
        10px;

    border:
        1px solid
        rgba(0, 167, 142, 0.15);

    border-radius: 999px;

    color: #008f7a;

    background:
        rgba(0, 167, 142, 0.065);

    font-size: 9.5px;
    font-weight: 800;

    line-height: 1;

    letter-spacing: 0.055em;

    text-transform: uppercase;

    white-space: nowrap;
}

.wa-placeholder__status-dot {
    display: block;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #36c88a;

    box-shadow:
        0
        0
        0
        4px
        rgba(54, 200, 138, 0.11);
}


/* =========================================================
   TITLE
   ========================================================= */

.wa-placeholder__title {
    max-width: 590px;

    color: #283550;

    font-family:
        "Roboto",
        Arial,
        sans-serif;

    font-size:
        clamp(
            34px,
            3.5vw,
            42px
        );

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -0.043em;

    text-wrap: balance;
}


/* =========================================================
   TEXT
   ========================================================= */

.wa-placeholder__description {
    max-width: 600px;

    margin-top: 16px !important;

    color: #657188;

    font-size: 15px;
    font-weight: 400;

    line-height: 1.6;
}

.wa-placeholder__note {
    max-width: 600px;

    margin-top: 8px !important;

    color: #8a96a3;

    font-size: 12.5px;
    font-weight: 400;

    line-height: 1.55;
}


/* =========================================================
   ACTIONS
   ========================================================= */

.wa-placeholder__actions {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 11px;

    margin-top: 22px;
}


/* =========================================================
   BUTTON — BASE
   ========================================================= */

.wa-placeholder__button,
.wa-placeholder__button:visited {
    display: inline-flex;

    min-height: 48px;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding:
        12px
        21px;

    border-radius: 999px;

    font-family:
        "Roboto",
        Arial,
        sans-serif;

    font-size: 12px;
    font-weight: 800;

    line-height: 1.2;

    letter-spacing: 0.03em;

    text-align: center;

    text-transform: uppercase;

    transition:
        color 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease;
}


/* =========================================================
   PRIMARY BUTTON
   SAME VISUAL LANGUAGE AS WEBARTY GLOBAL CTA
   ========================================================= */

.wa-placeholder__button--primary,
.wa-placeholder__button--primary:visited {
    border:
        1px solid
        #00a78e;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #00a78e 0%,
            #24bf8a 100%
        );

    box-shadow:
        0
        14px
        28px
        -16px
        rgba(0, 167, 142, 0.85);
}

.wa-placeholder__button--primary svg {
    flex: 0 0 18px;

    color: #ffffff;

    transition:
        transform 0.22s ease;
}

.wa-placeholder__button--primary:hover,
.wa-placeholder__button--primary:focus-visible {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #009c86 0%,
            #36c88a 100%
        );

    transform:
        translateY(-2px);

    box-shadow:
        0
        18px
        34px
        -18px
        rgba(0, 167, 142, 0.95);
}

.wa-placeholder__button--primary:hover svg,
.wa-placeholder__button--primary:focus-visible svg {
    transform:
        translateX(3px);
}


/* =========================================================
   SECONDARY BUTTON
   ========================================================= */

.wa-placeholder__button--secondary,
.wa-placeholder__button--secondary:visited {
    border:
        1px solid
        rgba(0, 167, 142, 0.35);

    color:
        #00a78e;

    background:
        #ffffff;
}

.wa-placeholder__button--secondary:hover,
.wa-placeholder__button--secondary:focus-visible {
    border-color:
        #00a78e;

    color:
        #ffffff;

    background:
        #00a78e;

    transform:
        translateY(-2px);
}


/* =========================================================
   FOCUS
   ========================================================= */

.wa-placeholder a:focus-visible {
    outline:
        3px solid
        rgba(0, 167, 142, 0.20);

    outline-offset: 3px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.wa-placeholder__footer {
    padding:
        14px
        24px;

    border-top:
        1px solid
        rgba(40, 53, 80, 0.08);

    color:
        #929daa;

    background:
        #f8faf9;

    font-size: 11px;
    font-weight: 400;

    line-height: 1.4;

    text-align: center;
}

.wa-placeholder__footer a,
.wa-placeholder__footer a:visited {
    color:
        #283550;

    font-weight: 700;
}

.wa-placeholder__footer a:hover,
.wa-placeholder__footer a:focus-visible {
    color:
        #00a78e;
}


/* =========================================================
   LOWER DESKTOP HEIGHT
   KEEP THE PLACEHOLDER INSIDE THE VIEWPORT
   ========================================================= */

@media (min-width: 768px) and (max-height: 650px) {

    .wa-placeholder {
        padding:
            12px;
    }

    .wa-placeholder__header {
        height: 70px;

        padding:
            0
            30px;
    }

    .wa-placeholder__logo {
        width: 176px;
    }

    .wa-placeholder__content {
        padding:
            22px
            34px
            23px;
    }

    .wa-placeholder__meta {
        margin-bottom: 14px;
    }

    .wa-placeholder__title {
        font-size:
            35px;
    }

    .wa-placeholder__description {
        margin-top:
            13px !important;

        font-size:
            14px;
    }

    .wa-placeholder__note {
        font-size:
            12px;
    }

    .wa-placeholder__actions {
        margin-top:
            17px;
    }

    .wa-placeholder__button {
        min-height: 44px;

        padding:
            11px
            19px;
    }

    .wa-placeholder__footer {
        padding:
            11px
            22px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .wa-placeholder {
        min-height: 100svh;

        align-items: flex-start;

        padding:
            20px;
    }

    .wa-placeholder__card {
        margin:
            auto
            0;

        border-radius:
            19px;
    }


    .wa-placeholder__header {
        height: 72px;

        padding:
            0
            22px;
    }

    .wa-placeholder__header::before {
        left: 22px;
    }

    .wa-placeholder__logo {
        width: 168px;
    }

    .wa-placeholder__header-label {
        display: none;
    }


    .wa-placeholder__content {
        padding:
            25px
            22px
            27px;
    }


    .wa-placeholder__meta {
        align-items: flex-start;

        flex-direction: column;

        gap: 10px;

        margin-bottom: 17px;
    }


    .wa-placeholder__title {
        max-width: none;

        font-size:
            clamp(
                30px,
                8vw,
                36px
            );

        line-height: 1.1;
    }


    .wa-placeholder__description {
        margin-top:
            15px !important;

        font-size:
            14.5px;
    }

    .wa-placeholder__note {
        font-size:
            12px;
    }


    .wa-placeholder__actions {
        display: grid;

        grid-template-columns: 1fr;

        gap: 9px;

        width: 100%;

        margin-top:
            20px;
    }

    .wa-placeholder__button {
        width: 100%;

        min-height: 48px;
    }


    .wa-placeholder__footer {
        padding:
            13px
            18px;

        font-size:
            10.5px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 390px) {

    .wa-placeholder {
        padding:
            14px;
    }

    .wa-placeholder__header {
        height: 67px;
    }

    .wa-placeholder__logo {
        width: 157px;
    }

    .wa-placeholder__content {
        padding:
            22px
            19px
            23px;
    }

    .wa-placeholder__title {
        font-size:
            29px;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .wa-placeholder *,
    .wa-placeholder *::before,
    .wa-placeholder *::after {
        transition: none !important;
    }
}