/* ── Variables ──────────────────────────────────────────── */
:root {
    --background: #f5f5f5;
    --surface: #ffffff;
    --surface-strong: #f7f3ff;
    --text: #202124;
    --muted: #5f6368;
    --accent: #673ab7;
    --accent-soft: #ede7f6;
    --stroke: rgba(0, 0, 0, 0.08);
    --shadow: 0 1px 3px rgba(60, 64, 67, 0.08);
    --shadow-lg: 0 4px 16px rgba(60, 64, 67, 0.12);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Public Sans", "Google Sans", Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; }

h1, h2, h3 {
    margin: 0;
    font-family: "Public Sans", "Google Sans", sans-serif;
    font-weight: 600;
}

/* ── Shared button base (used by public forms / analytics) ── */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}
.button--primary { background: var(--accent); color: #fff; }
.button--ghost   { background: var(--accent-soft); border-color: rgba(103,58,183,.18); color: var(--accent); }

.eyebrow {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .72rem;
    font-weight: 700;
    color: var(--accent);
}
