/* =========================
Reset
========================= */

{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* =========================
Base
========================= */

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    color: #111827;
    background: #ffffff;
}

/* =========================
Page
========================= */

.page {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    overflow: hidden;

}

    /* =========================
Top-right Pattern
========================= */

    .page::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 520px;
        height: 520px;
        background-image: url("#");
        background-repeat: no-repeat;
        background-position: top right;
        background-size: contain;
        opacity: 0.7;
        pointer-events: none;
        z-index: 0;
    }

/* =========================
Header
========================= */

.header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 32px 50px;
}

/* =========================
Logo
========================= */

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
}

    /*
IMPORTANT:
This controls the actual PNG size.
Change 150px if you want it larger/smaller.
*/

    .logo img {
        display: block;
        width: 50px;
        height: auto;
        max-width: 100%;
    }

/* =========================
Hero
========================= */

.hero {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px 100px;
}

.hero-content {
    width: 100%;
    max-width: 560px;
}

/* =========================
Typography
========================= */

h1 {
    margin-bottom: 22px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.045em;
    color: #111827;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(30px, 4.2vw, 52px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #111827;
}

/* =========================
Hero Paragraph
========================= */

.hero p {
    max-width: 600px;
    margin: 0 auto;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.6;
    font-weight: 400;
    color: #667085;
}

/* =========================
Coming Soon
========================= */

.coming-soon {
    display: inline-block;
    margin-top: 38px;
    padding: 11px 20px;
    border: 1px solid #d0d5dd;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #475467;
    background: rgba(255, 255, 255, 0.7);
}

/* =========================
Footer
========================= */

footer {
    position: relative;
    z-index: 2;
    padding: 30px 50px 36px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #98a2b3;
    text-align: center;
}

/* =========================
Mobile
========================= */

@media (max-width: 640px) {

    /* Pattern */

    .page::after {
        width: 300px;
        height: 300px;
        opacity: 0.5;
    }


    /* Header */

    .header {
        padding: 24px;
    }


    /* Logo */

    .logo img {
        width: 50px;
    }


    /* Hero */

    .hero {
        padding: 40px 24px 80px;
    }


    /* Heading */

    h1 {
        font-size: clamp(40px, 12vw, 56px);
    }

    h2 {
        font-size: clamp(36px, 9vw, 44px);
    }


    /* Paragraph */

    .hero p {
        font-size: 17px;
        line-height: 1.55;
    }


    /* Coming Soon */

    .coming-soon {
        margin-top: 30px;
    }


    /* Footer */

    footer {
        padding: 24px;
        font-size: 11px;
    }
}
