* {
    box-sizing: border-box;
}

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

body {
    background: #0b0d10;
    color: #f5f5f5;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Helvetica, Arial, sans-serif;
}

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

.page {
    width: min(1180px, calc(100% - 48px));
    min-height: 100vh;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

nav {
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #24272c;
    font-size: 14px;
}

.brand {
    font-weight: 700;
    letter-spacing: 0.18em;
}

.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0 140px;
}

.label {
    margin-bottom: 28px;
    color: #858b93;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
}

h1 {
    max-width: 950px;
    margin: 0;
    font-size: clamp(54px, 8vw, 112px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.hero p,
.content p {
    max-width: 600px;
    margin: 42px 0 0;
    color: #a9aeb5;
    font-size: 19px;
    line-height: 1.65;
}

.button {
    width: fit-content;
    margin-top: 42px;
    padding: 14px 22px;
    border: 1px solid #3a3e44;
    border-radius: 999px;
    transition: background .2s ease;
}

.button:hover {
    background: #181b20;
}

.content {
    flex: 1;
    padding: 120px 0;
}

.content h1 {
    font-size: clamp(58px, 7vw, 96px);
}

footer {
    display: flex;
    justify-content: space-between;
    padding: 28px 0;
    border-top: 1px solid #24272c;
    color: #696f77;
    font-size: 12px;
}

@media (max-width: 600px) {
    .page {
        width: min(100% - 30px, 1180px);
    }

    nav {
        height: 74px;
    }

    .hero {
        padding: 75px 0;
    }

    h1 {
        font-size: 50px;
    }

    .hero p,
    .content p {
        font-size: 17px;
    }
}
