* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    min-height: 100%;
    background: #0b0b0d;
    color: #f5f5f5;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    min-height: 100vh;
}

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

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 0;
    border-bottom: 1px solid #29292e;
}

.logo {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: .16em;
}

nav {
    display: flex;
    gap: 24px;
}

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

nav a {
    color: #99999f;
}

nav a:hover {
    color: #fff;
}

.hero, .page {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 0;
}

.eyebrow {
    color: #85858c;
    font-size: 12px;
    letter-spacing: .2em;
}

h1 {
    margin: 12px 0 24px;
    font-size: clamp(48px, 8vw, 100px);
    line-height: .95;
    letter-spacing: -.05em;
}

.description {
    max-width: 590px;
    color: #aaaab0;
    font-size: 18px;
    line-height: 1.6;
}

.button {
    width: fit-content;
    margin-top: 22px;
    padding: 13px 20px;
    border: 1px solid #34343a;
    border-radius: 8px;
}

.button:hover {
    border-color: #77777f;
}

footer {
    display: flex;
    justify-content: space-between;
    padding: 24px 0 32px;
    border-top: 1px solid #29292e;
    color: #66666c;
    font-size: 12px;
}

@media (max-width: 600px) {
    nav {
        gap: 12px;
        font-size: 13px;
    }
}
