/* 21 Counts — shared web styles */

:root {
    --bg: #0b0d12;
    --surface: #14171f;
    --border: rgba(255, 255, 255, 0.08);
    --text: #f5f6fa;
    --text-muted: rgba(245, 246, 250, 0.66);
    --text-dim: rgba(245, 246, 250, 0.45);
    --indigo: #6366f1;
    --indigo-soft: rgba(99, 102, 241, 0.16);
    --accent: #f59e0b;
    --max: 720px;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main {
    max-width: var(--max);
    margin: 0 auto;
    padding: 56px 24px 96px;
}

header.site-header {
    max-width: var(--max);
    margin: 0 auto;
    padding: 24px 24px 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

header.site-header img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
    background: var(--indigo-soft);
}

header.site-header a.brand {
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.01em;
}

header.site-header nav {
    margin-left: auto;
    display: flex;
    gap: 16px;
    font-size: 14px;
}

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

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

h1 {
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 800;
    margin: 0 0 12px;
}

h2 {
    font-size: 22px;
    letter-spacing: -0.01em;
    font-weight: 700;
    margin: 32px 0 10px;
}

h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 20px 0 6px;
}

p {
    margin: 0 0 14px;
    color: var(--text-muted);
}

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

ul, ol {
    color: var(--text-muted);
    padding-left: 20px;
    margin: 0 0 16px;
}

li {
    margin-bottom: 6px;
}

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

a:hover {
    text-decoration: underline;
}

.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--indigo);
    background: var(--indigo-soft);
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.muted {
    color: var(--text-dim);
    font-size: 14px;
}

.legal-meta {
    color: var(--text-dim);
    font-size: 14px;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.callout {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 18px;
    margin: 24px 0;
    font-size: 15px;
}

.hero {
    text-align: center;
    padding: 56px 0 12px;
}

.hero img {
    width: 220px;
    max-width: 60vw;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 16px 60px rgba(99, 102, 241, 0.18);
}

.hero h1 {
    margin-top: 28px;
    font-size: 48px;
}

.hero p.tagline {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
}

.cta-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 28px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--indigo);
    color: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.12s ease;
}

.btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.btn.secondary {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
}

footer {
    border-top: 1px solid var(--border);
    color: var(--text-dim);
    font-size: 13px;
    padding: 28px 24px 56px;
    text-align: center;
}

footer a {
    color: var(--text-muted);
    margin: 0 10px;
}

@media (max-width: 600px) {
    h1 { font-size: 32px; }
    .hero h1 { font-size: 36px; }
    main { padding: 40px 20px 64px; }
}
