/* Pregap site: dark, neutral, one accent (burn amber), per BRANDING.md. */
:root {
    --bg: #101013;
    --panel: #17171c;
    --line: #26262e;
    --text: #e8e8ec;
    --muted: #9a9aa6;
    --accent: #e0a24a;
    --radius: 12px;
}
@media (prefers-color-scheme: light) {
    :root {
        --bg: #f7f7f8; --panel: #fff; --line: #e3e3e7;
        --text: #16161a; --muted: #62626e; --accent: #a9701d;
    }
}
* { box-sizing: border-box; }
body {
    margin: 0;
    padding: 0 16px 96px;
    background: var(--bg);
    color: var(--text);
    font: 16px/1.65 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 680px; margin: 0 auto; }
header { padding: 48px 0 40px; border-bottom: 1px solid var(--line); margin-bottom: 40px; }
header img { width: 140px; height: 140px; display: block; margin-bottom: 24px; border-radius: 30px; }
h1 { font-size: 34px; line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 8px; }
h2 { font-size: 20px; letter-spacing: -0.01em; margin: 40px 0 12px; }
h3 { font-size: 16px; margin: 28px 0 6px; }
.tagline { color: var(--muted); font-size: 18px; margin: 0; }
a { color: var(--accent); text-underline-offset: 3px; }
ul { padding-left: 20px; }
li { margin: 6px 0; }
.card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 24px 0;
}
.card p:first-child { margin-top: 0; }
.card p:last-child { margin-bottom: 0; }
.meta { color: var(--muted); font-size: 14px; }
code { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 0.92em; }
footer {
    margin-top: 56px; padding-top: 24px;
    border-top: 1px solid var(--line);
    color: var(--muted); font-size: 14px;
}
footer a { margin-right: 18px; }

/* Menu: one line, on every page. */
.nav {
    max-width: 680px; margin: 0 auto; padding: 22px 0;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 15px; border-bottom: 1px solid var(--line);
}
.nav a { color: var(--muted); text-decoration: none; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--text); }
.nav .brand { color: var(--text); font-weight: 600; letter-spacing: -0.01em; }
.nav div { display: flex; gap: 22px; }
.home .nav { max-width: 760px; border-bottom: 0; }
.home .nav .brand { visibility: hidden; }   /* the page is the wordmark */

/* Home, stark: the name, one line, three points. */
body.home { padding-bottom: 64px; }
.home .wrap { max-width: 760px; }
.hero { padding: 12vh 0 56px; }
.hero img { width: 176px; height: 176px; border-radius: 38px; display: block; margin-bottom: 40px; }
.hero h1 { font-size: clamp(56px, 12vw, 104px); letter-spacing: -0.045em; line-height: 0.95; margin: 0 0 28px; }
.lede { font-size: clamp(22px, 3.4vw, 30px); line-height: 1.25; letter-spacing: -0.015em; margin: 0 0 20px; max-width: 18em; }
.where { color: var(--muted); font-size: 17px; margin: 0; max-width: 32em; }
.where strong { color: var(--text); font-weight: 600; }
.points { border-top: 1px solid var(--text); display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; padding-top: 28px; }
.points h2 { font-size: 16px; margin: 0 0 8px; letter-spacing: 0; }
.points p { color: var(--muted); font-size: 15px; line-height: 1.55; margin: 0; }
.shot { margin: 0 0 56px; }
.points + .shot { margin: 64px 0 0; }
.shot img { display: block; width: 100%; height: auto; border-radius: 14px; background: #111114; }
.soon { margin: 72px 0 0; font-size: 15px; }
.soon::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); margin-right: 10px; vertical-align: 1px; }
.home footer { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.home footer a { margin: 0; color: var(--text); text-decoration: none; }
.home footer a:hover { color: var(--accent); }
.home footer span { margin-left: auto; }
@media (max-width: 640px) {
    .hero { padding-top: 40px; }
    .hero img { width: 128px; height: 128px; border-radius: 28px; }
    header img { width: 112px; height: 112px; border-radius: 24px; }
    .points { grid-template-columns: 1fr; gap: 22px; }
}
