@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
    --background: #07111f;
    --card-background: rgba(12, 27, 47, 0.78);
    --card-border: rgba(255, 255, 255, 0.1);

    --primary: #e8840a;
    --primary-light: #dc7c2e;
    --accent: #c06214;

    --heading: #ffffff;
    --body-text: #b9c6d6;
    --muted-text: #8191a5;

    --button-text: #ffffff;
    --success: #3449d3;

    --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    font-family: "Manrope", sans-serif;
    color: var(--body-text);

    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(64, 141, 196, 0.17),
            transparent 35%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(192, 98, 20, 0.12),
            transparent 35%
        ),
        var(--background);
}

a {
    color: inherit;
    text-decoration: none;
}

.background-decoration {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(8px);
    opacity: 0.45;
}

.decoration-one {
    width: 320px;
    height: 320px;
    top: -130px;
    right: -100px;
    background: rgba(64, 141, 196, 0.22);
}

.decoration-two {
    width: 260px;
    height: 260px;
    bottom: -110px;
    left: -90px;
    background: rgba(192, 98, 20, 0.16);
}

.coming-soon-page {
    width: 100%;
    min-height: calc(100vh - 110px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px 30px;
}

.coming-soon-card {
    width: 100%;
    max-width: 820px;
    padding: 55px;
    text-align: center;
    border: 1px solid var(--card-border);
    border-radius: 30px;
    background: var(--card-background);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    animation: cardEntrance 0.9s ease both;
}

.status-badge {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 auto 32px;
    padding: 9px 15px;
    border: 1px solid rgba(242, 247, 245, 0.22);
    border-radius: 100px;
    color: #fafafa;
    background: rgba(52, 211, 153, 0.08);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 rgba(52, 211, 153, 0.5);
    animation: pulse 2s infinite;
}

.logo-container {
    min-height: 95px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.business-logo {
    display: block;
    max-width: 210px;
    max-height: 95px;
    object-fit: contain;
}

.eyebrow {
    margin-bottom: 13px;
    color: var(--primary-light);
    font-size: 0.83rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

h1 {
    max-width: 670px;
    margin: 0 auto 22px;
    color: var(--heading);
    font-size: clamp(2.5rem, 7vw, 5.2rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

h1 span {
    display: block;
    color: var(--primary-light);
}

.description {
    max-width: 650px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.85;
}

.progress-section {
    max-width: 600px;
    margin: 38px auto 0;
}

.progress-information {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 11px;
    color: var(--body-text);
    font-size: 0.82rem;
    font-weight: 700;
}

.progress-track {
    width: 100%;
    height: 9px;
    overflow: hidden;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.08);
}

.progress-bar {
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(
        90deg,
        var(--primary),
        var(--primary-light)
    );
    box-shadow: 0 0 25px rgba(64, 141, 196, 0.45);
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-section {
    margin-top: 42px;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-heading {
    margin-bottom: 7px;
    color: var(--heading);
    font-size: 1.05rem;
    font-weight: 800;
}

.contact-description {
    color: var(--muted-text);
    font-size: 0.9rem;
}

.contact-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.contact-button {
    min-height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 13px 21px;
    border: 1px solid transparent;
    border-radius: 13px;
    font-size: 0.87rem;
    font-weight: 800;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.contact-button:hover {
    transform: translateY(-3px);
}

.primary-button {
    color: var(--button-text);
    background: var(--primary);
}

.primary-button:hover {
    background: #347daf;
}

.secondary-button {
    color: var(--heading);
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
}

.secondary-button:hover {
    border-color: rgba(116, 184, 232, 0.35);
    background: rgba(116, 184, 232, 0.1);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 11px;
    margin-top: 31px;
}

.social-links a {
    width: 41px;
    height: 41px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--body-text);
    background: rgba(255, 255, 255, 0.04);
    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.social-links a:hover {
    color: var(--heading);
    background: var(--primary);
    transform: translateY(-3px);
}

.site-footer {
    width: 100%;
    padding: 0 20px 28px;
    text-align: center;
    color: var(--muted-text);
    font-size: 0.76rem;
    line-height: 1.8;
}

.developer-credit a {
    color: var(--primary-light);
    font-weight: 800;
}

.developer-credit a:hover {
    text-decoration: underline;
}

@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translateY(25px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5);
    }

    70% {
        box-shadow: 0 0 0 9px rgba(52, 211, 153, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0);
    }
}

@media (max-width: 700px) {
    .coming-soon-page {
        padding-top: 25px;
    }

    .coming-soon-card {
        padding: 38px 22px;
        border-radius: 22px;
    }

    .status-badge {
        font-size: 0.68rem;
    }

    .business-logo {
        max-width: 175px;
    }

    .description {
        font-size: 0.92rem;
    }

    .contact-links {
        flex-direction: column;
    }

    .contact-button {
        width: 100%;
    }
}

@media (max-width: 420px) {
    h1 {
        font-size: 2.5rem;
    }

    .coming-soon-card {
        padding: 32px 18px;
    }
}
