* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #fff;
    color: #000;
    font-family: Helvetica, system-ui, Arial, sans-serif;
    min-height: 100dvh;
}

.hero {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.hero h1 {
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 600;
}

.hero p {
    color: #767676;
    font-size: clamp(0.9rem, 2vw, 1.15rem);
    margin-top: 0.5rem;
    letter-spacing: 0.05em;
    text-align: center;
}

.page {
    max-width: 42rem;
    margin: 0 auto;
    padding: 3rem 1.25rem 6rem;
    line-height: 1.6;
}

.page h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.page h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.page p {
    margin-bottom: 1rem;
}

.page ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.page li {
    margin-bottom: 0.4rem;
}

.page a {
    color: inherit;
    text-decoration: underline;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    text-align: center;
    font-size: 0.8rem;
    color: #767676;
    letter-spacing: 0.03em;
    background: #fff;
}

footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 2rem;
    background: linear-gradient(to top, #fff, rgba(255, 255, 255, 0));
    pointer-events: none;
}

footer a {
    color: inherit;
}
