:root {
    --bg:#071827;
    --fg: #d2d3d4;
    --muted: #a1a1aa;
    --accent: #f57e20;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: var(--bg);
    color: var(--fg);
}

.navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.logo {
    font-weight: bold;
}

.nav-links {
    display: flex;
    flex-direction: row;
    gap: 28px;
}

.wrap {
    max-width: 720px;
    margin: 16vh auto;
    padding: 0 20px;
    line-height: 1.6;
}

h1 {
    font-size: clamp(28px, 6vw, 48px);
    margin: 0 0 12px;
}

.lead {
    color: var(--muted);
    margin: 0 0 20px;
}

.subhead {
    color: var(--accent);
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.cta {
    max-width: 30%;
    text-align: center;
    background: var(--accent);
    color: var(--bg);
    padding: 10px 16px;
    font-weight: bold;
    border-radius: 8px;
}

.cta > a {
    color: var(--bg);
    text-decoration: none;
}

.cta:hover {
    background: var(--fg);
    color: var(--accent);
}