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

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

body {
    background: #050505;
    color: white;
    font-family: "Manrope", sans-serif;
}

.container {
    width: min(720px, 90%);
    margin: 0 auto;
    padding: 100px 0;
}

h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 800;
    letter-spacing: -.07em;
    line-height: .95;
}

.subtitle {
    margin-top: 30px;
    color: #b8b8b8;
    font-size: 1.2rem;
    line-height: 1.7;
}

.section {
    margin-top: 55px;
}

h2 {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

p {
    color: #a5a5a5;
    line-height: 1.8;
    margin-bottom: 18px;
}

a {
    color: white;
    text-decoration: none;
    font-weight: 700;
}

.footer {
    margin-top: 70px;
    color: #666;
}

.back {
    display: inline-block;
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: #8f8f8f;
}

.back:hover {
    color: white;
}