/*
 * bcsuperagents.com — shared stylesheet.
 *
 * Palette + typography reused from bc-activation-server-bcoa's
 * admin dashboard so the BC Solutions properties share visual
 * vocabulary. Dark, minimal, content-first; Bundle 33 may layer
 * accent imagery / hero sections on top without changing the
 * palette tokens.
 */

:root {
    --bg: #0f1117;
    --surface: #1a1d2e;
    --surface-alt: #202336;
    --border: #2d3155;
    --text: #e1e4ed;
    --text-muted: #9ca3af;
    --text-dim: #6b7280;
    --accent: #4f8ef7;
    --accent-hover: #3b7ae0;
    --warn-bg: #5d3a1f;
    --warn-text: #fcd9a5;
    --warn-border: #d4a017;
}

* {
    box-sizing: border-box;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    line-height: 1.55;
    font-size: 16px;
}

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

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

/* ── Layout chrome ──────────────────────────────────────────── */

header.site {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header.site .brand {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text);
}

header.site nav a {
    margin-left: 1.25rem;
    color: var(--text-muted);
    font-size: 0.92rem;
}

header.site nav a:hover {
    color: var(--text);
    text-decoration: none;
}

main {
    max-width: 760px;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
}

main h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

main h2 {
    font-size: 1.25rem;
    margin-top: 2.25rem;
    margin-bottom: 0.6rem;
    color: var(--text);
}

main p {
    color: var(--text);
    margin: 0.85rem 0;
}

main p.lead {
    font-size: 1.08rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    margin-bottom: 1.5rem;
}

main ul, main ol {
    padding-left: 1.5rem;
    color: var(--text);
}

main li {
    margin: 0.4rem 0;
}

footer.site {
    border-top: 1px solid var(--border);
    padding: 1.5rem 2rem;
    color: var(--text-dim);
    font-size: 0.85rem;
    text-align: center;
}

footer.site a {
    color: var(--text-muted);
    margin: 0 0.75rem;
}

/* ── DRAFT banner for placeholder legal pages ───────────────── */

.draft-banner {
    background: var(--warn-bg);
    color: var(--warn-text);
    border-left: 4px solid var(--warn-border);
    padding: 0.85rem 1rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    font-size: 0.93rem;
}

.draft-banner strong {
    color: #fff;
}

/* ── Cards / panels for landing-page sections ──────────────── */

.product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.25rem;
}

.product-card h2 {
    margin-top: 0;
}

.product-card .meta {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-top: 0.5rem;
}
