/* This idea's own stylesheet — the design belongs entirely to the idea.
 *
 * The scaffold ships a deliberately quiet starting point. Replace freely; the
 * only convention worth keeping is the :root tokens below, because the lead
 * form widget (rendered by /site.js into [data-lead-form]) themes itself from
 * them — set --accent and the form matches the page with no other wiring. */

:root {
    --ink: #14181f;
    --ink-soft: #5b6472;
    --ink-faint: #66707f;
    --surface: #ffffff;
    --surface-alt: #f5f7f9;
    --line: #e3e8ed;
    --accent: #1f6feb;
    --accent-ink: #ffffff;
    --accent-soft: #eaf1fe;
    --danger: #b42318;
    --body-font: system-ui, -apple-system, "Segoe UI", sans-serif;
    --radius: 10px;
    --radius-lg: 16px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--body-font);
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--ink);
    background: var(--surface);
}

.wrap {
    max-width: 44rem;
    margin: 0 auto;
    padding: 0 1.25rem;
}

header.site {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--line);
}

header.site .wrap {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
}

header.site img {
    width: 1.5rem;
    height: 1.5rem;
}

main section {
    padding: 3rem 0;
}

h1 {
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    line-height: 1.15;
    margin: 0 0 1rem;
}

h2 {
    font-size: 1.4rem;
    margin: 0 0 1rem;
}

p {
    margin: 0 0 1rem;
    color: var(--ink-soft);
}

.lead-section {
    background: var(--surface-alt);
    border-top: 3px solid var(--accent);
    border-bottom: 1px solid var(--line);
}

footer.site {
    padding: 2rem 0;
    border-top: 1px solid var(--line);
    font-size: 0.9rem;
    color: var(--ink-faint);
}

footer.site a {
    color: var(--ink-soft);
}
