:root {
    --bg: #0f0b08;
    --bg-soft: #130d09;
    --text: #f3f0ed;
    --muted: #c9c1b9;
    --button-bg: #f2efec;
    --button-text: #1b1714;
    --focus: #d9b780;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    position: relative;
    background: radial-gradient(
        140% 130% at 100% 0%,
        var(--bg-soft) 0%,
        var(--bg) 56%
    );
    color: var(--text);
    font-family: "Crimson Pro", Georgia, serif;
}

.page {
    width: min(1400px, 100%);
    height: 100svh;
    margin: 0 auto;
    padding: clamp(1.2rem, 4vw, 3.75rem) clamp(1.2rem, 5vw, 5rem)
        clamp(5rem, 9vh, 7rem);
    display: grid;
    grid-template-columns: minmax(290px, 470px) 1fr;
    align-items: center;
    gap: clamp(1rem, 3vw, 3rem);
}

.content {
    z-index: 3;
    max-width: 420px;
}

.wordmark {
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 500;
    font-size: clamp(4.9rem, 7.5vw, 7.6rem);
    line-height: 0.84;
    letter-spacing: 0.01em;
    text-transform: lowercase;
}

.subtitle {
    margin: clamp(0.95rem, 1.8vw, 1.6rem) 0 0;
    padding-left: 1rem;
    border-left: 2px solid rgba(255, 255, 255, 0.92);
    font-family: "Crimson Pro", serif;
    font-weight: 400;
    font-size: clamp(2rem, 2.35vw, 3.2rem);
    line-height: 1.08;
    max-width: none;
    white-space: nowrap;
}

.cta {
    display: inline-block;
    margin-top: clamp(1.25rem, 2.5vw, 2rem);
    padding: 0.72rem 1.42rem;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 0;
    background: var(--button-bg);
    color: var(--button-text);
    text-decoration: none;
    font-family: "Crimson Pro", serif;
    font-weight: 500;
    font-size: clamp(1.35rem, 1.35vw, 1.9rem);
    transition:
        transform 140ms ease,
        filter 140ms ease;
}

.cta:hover {
    transform: translateY(-1px);
    filter: brightness(0.98);
}

.cta:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
}

.first-launch {
    margin: 0.72rem 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 0.95vw, 1.1rem);
}

.hero {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 2;
}

.hero-image {
    width: min(57vw, 860px);
    max-height: 87vh;
    height: auto;
    object-fit: contain;
    object-position: center;
    transform: translate(7%, 7%);
}

.footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 1.2rem;
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    font-family: "Crimson Pro", serif;
    font-size: 0.96rem;
    color: rgba(243, 240, 237, 0.58);
}

.footer a {
    color: rgba(243, 240, 237, 0.7);
    text-decoration: underline;
    text-underline-offset: 0.12em;
}

.dot {
    width: 0.22rem;
    height: 0.22rem;
    border-radius: 999px;
    background: rgba(243, 240, 237, 0.42);
}

.bottom-gradient {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 6px;
    background: url("assets/gradient.png");
    background-size: auto;
    pointer-events: none;
    z-index: 5;
    background-size: contain;
}

@media (max-width: 860px) {
    .page {
        grid-template-columns: 1fr;
        align-content: start;
        justify-items: center;
        padding: clamp(2rem, 6vw, 3.2rem) 1.2rem 5.3rem;
        gap: 0;
    }

    .content {
        width: 100%;
        max-width: none;
        text-align: center;
        z-index: 4;
    }

    .wordmark {
        font-size: clamp(4rem, 17vw, 5.8rem);
        line-height: 0.84;
        text-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    }

    .subtitle {
        margin: 0.95rem auto 0;
        max-width: none;
        border-left: 0;
        padding-left: 0;
        white-space: nowrap;
        font-size: clamp(1.7rem, 6.8vw, 2.45rem);
        line-height: 1.06;
        text-shadow: 0 5px 16px rgba(0, 0, 0, 0.3);
    }

    .cta {
        margin-top: 1.35rem;
        font-size: clamp(1.55rem, 5.2vw, 2rem);
        padding: 0.72rem 1.5rem;
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
    }

    .first-launch {
        font-size: clamp(0.95rem, 2.8vw, 1.1rem);
        margin-top: 0.72rem;
        text-shadow: 0 3px 12px rgba(0, 0, 0, 0.28);
    }

    .hero {
        position: absolute;
        left: 50%;
        bottom: -8%;
        transform: translateX(-50%);
        width: 100%;
        justify-content: center;
        z-index: 1;
    }

    .hero-image {
        width: min(138vw, 920px);
        max-height: none;
        transform: none;
    }

    .footer {
        font-size: 0.88rem;
        bottom: 0.9rem;
    }
}
