:root {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color-scheme: dark;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem;
    background: #101318;
    color: #f4f6f8;
}

main {
    width: min(760px, 100%);
}

section {
    padding: clamp(2rem, 6vw, 4rem);
    border: 1px solid #343a44;
    border-radius: 1rem;
    background: #191e26;
}

.eyebrow {
    margin: 0 0 1rem;
    letter-spacing: 0.18em;
    font-weight: 700;
}

h1 {
    margin: 0 0 1.5rem;
    font-size: clamp(2rem, 6vw, 4rem);
    line-height: 1.05;
}

p {
    line-height: 1.7;
}

dl {
    margin-top: 2rem;
}

dl div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0;
    border-top: 1px solid #343a44;
}

dt {
    color: #aeb6c2;
}

dd {
    margin: 0;
    text-align: right;
}
