:root {
    --background: #f5f5f3;
    --foreground: #171717;
    --muted: #777;
    --border: #deded9;
    --accent: #171717;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    background: var(--background);
    color: var(--foreground);

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Helvetica,
        Arial,
        sans-serif;

    -webkit-font-smoothing: antialiased;
}

.page {
    min-height: 100vh;
    min-height: 100dvh;

    max-width: 1440px;
    margin: 0 auto;

    padding:
        32px
        clamp(24px, 5vw, 80px);

    display: flex;
    flex-direction: column;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid var(--border);

    padding-bottom: 22px;
}

.logo {
    color: var(--foreground);
    text-decoration: none;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.header-link {
    color: var(--foreground);
    text-decoration: none;

    font-size: 14px;
    font-weight: 500;

    border-bottom: 1px solid transparent;

    transition:
        border-color 0.2s ease,
        opacity 0.2s ease;
}

.header-link:hover {
    border-color: var(--foreground);
}

.hero {
    flex: 1;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding:
        clamp(80px, 14vh, 180px)
        0;
}

.eyebrow {
    margin-bottom: 24px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;

    color: var(--muted);
}

h1 {
    margin: 0;

    font-size: clamp(54px, 8vw, 116px);
    line-height: 0.92;
    letter-spacing: -0.055em;

    font-weight: 650;
}

.subtitle {
    margin: 42px 0 0;

    color: var(--muted);

    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.45;
    letter-spacing: -0.015em;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 26px;

    width: fit-content;

    margin-top: 48px;
    padding: 16px 22px;

    background: var(--accent);
    color: white;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    border-radius: 3px;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
    opacity: 0.88;
}

.button span {
    font-size: 18px;
    line-height: 0;
}

.footer {
    display: flex;
    gap: 10px;

    padding-top: 22px;

    border-top: 1px solid var(--border);

    color: var(--muted);

    font-size: 12px;
}

@media (max-width: 600px) {
    .page {
        padding:
            24px
            24px;
    }

    .hero {
        padding: 100px 0;
    }

    .desktop {
        display: none;
    }

    h1 {
        font-size: clamp(52px, 16vw, 82px);
    }

    .footer {
        font-size: 11px;
    }
}
