/* ─── Tokens ─── */
:root {
    --bg: #f5f5f5;
    --bg-raised: #ffffff;
    --bg-hover: #ebebeb;
    --border: #e0e0e0;
    --text: #111111;
    --text-dim: #888888;
    --text-muted: #bbbbbb;
    --accent: #000000;
    --radius: 10px;
    --radius-lg: 14px;
    --glass-bg: rgba(255, 255, 255, 0.62);
    --glass-border: rgba(0, 0, 0, 0.08);
    --wrap: 860px;
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

h1, h2, h3 { font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; }
h1 { font-size: clamp(32px, 5.4vw, 52px); }
h2 { font-size: clamp(24px, 3.4vw, 32px); }
h3 { font-size: 19px; }

p { color: var(--text-dim); }
strong { color: var(--text); font-weight: 600; }

a { color: inherit; }

/* ─── Utilities ─── */
.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 24px;
}

.eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ─── Pills ─── */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg-raised);
    color: var(--text);
    padding: 11px 20px;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s, transform 0.18s;
}
.pill:hover { background: var(--bg-hover); border-color: var(--text-muted); transform: translateY(-1px); }
.pill:active { transform: translateY(0); }
.pill:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.pill-solid {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.pill-solid:hover { background: #2a2a2a; border-color: #2a2a2a; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { transition: none !important; animation: none !important; }
}
