* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --page-bg: #20008a;
    --text: #ffffff;
    --accent: #ffc21a;
    --card-width: min(90vw, 1128px);
    --card-ratio: 1 / 0.667;
}

body {
    min-height: 100vh;
    font-family: 'Poppins', Arial, sans-serif;
    background: var(--page-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
}

.page-shell {
    width: 100%;
    min-height: 100vh;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.construction-card {
    position: relative;
    width: var(--card-width);
    aspect-ratio: var(--card-ratio);
    background-image: url('images/under-construction-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.editable-layer {
    position: absolute;
    inset: 0;
    padding: 6.2% 0 0 5.7%;
    pointer-events: none;
}

.brand,
.hero-copy,
.button {
    pointer-events: auto;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    text-decoration: none;
    font-weight: 800;
    font-size: clamp(12px, 1.35vw, 16px);
    line-height: 1;
}

.brand-mark {
    width: clamp(12px, 1.25vw, 16px);
    height: clamp(12px, 1.25vw, 16px);
    background: var(--text);
    display: inline-block;
}

.hero-copy {
    width: 30%;
    margin-top: 17.8%;
}

.hero-copy h1 {
    font-size: clamp(22px, 2.9vw, 34px);
    line-height: 1.17;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 18px;
}

.hero-copy p {
    font-size: clamp(10px, 1.15vw, 14px);
    line-height: 1.55;
    font-weight: 400;
    max-width: 330px;
    margin-bottom: 26px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    background: var(--accent);
    color: var(--text);
    text-decoration: none;
    border-radius: 999px;
    font-size: clamp(11px, 1.1vw, 15px);
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(255, 194, 26, 0.22);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(255, 194, 26, 0.30);
}

/***/
.coming-soon{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 32px;
    background:#FFC107;
    color:#fff;
    font-weight:700;
    border-radius:999px;

    animation:pulse 2s infinite;
}

@keyframes pulse{
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.03);
    }
    100%{
        transform:scale(1);
    }
}
/***/

@media (max-width: 760px) {
    /*
    body {
        align-items: flex-start;
    }

    .page-shell {
        padding: 24px 12px;
        align-items: flex-start;
    }
    */
    body,
    .page-shell {
        min-height: 100dvh;
        display: flex;
        align-items: center;
        justify-content: center;
    }    

    /*
    .construction-card {
        width: 100%;
        aspect-ratio: 0.72;
        background-size: auto 100%;
        background-position: center bottom;
    }
    */
    .construction-card{
        width: 100%;
        aspect-ratio: 0.72;

        background-size: auto 72%;
        background-position: right bottom;

        background-repeat: no-repeat;
    }

    .coming-soon{
        padding:10px 22px;
        font-size:14px;
    }    

    .editable-layer {
        padding: 8% 8% 0;
        background: linear-gradient(
            90deg,
            rgba(78, 43, 210, 0.94) 0%,
            rgba(78, 43, 210, 0.88) 48%,
            rgba(78, 43, 210, 0.15) 100%
        );
    }

    .hero-copy {
        width: min(75%, 340px);
        margin-top: 26%;
    }

    .hero-copy h1 {
        font-size: clamp(28px, 8vw, 44px);
    }

    .hero-copy p {
        font-size: 14px;
    }
    
}
