:root {
  color-scheme: light;
  --bg: #f4f4f6;
  --panel: #ffffff;
  --panel-muted: #f8f8fa;
  --text: #111111;
  --muted: #676970;
  --line: #dedfe4;
  --shadow: 0 18px 50px rgba(17, 17, 17, 0.08);
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: "Poppins", sans-serif; }
.shell { max-width: 1120px; margin: 0 auto; padding: 28px 18px 80px; }
.shell-wide { max-width: 1200px; }
.hero, .card, .stat { background: var(--panel); border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); }
.hero { padding: 28px; margin-bottom: 18px; }
.eyebrow { font-size: 12px; font-weight: 700; color: var(--muted); margin-bottom: 6px; }
h1, h2, h3, p { margin: 0; }
h1 { font-size: clamp(34px, 5vw, 56px); line-height: 0.95; letter-spacing: -0.045em; margin-bottom: 10px; max-width: 840px; }
.subtitle, .card-copy, .supporting { font-size: 15px; line-height: 1.75; color: var(--muted); }
.hero-actions, .chip-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 18px; border-radius: 16px; text-decoration: none; font-weight: 700; }
.button.primary { background: #111111; color: #ffffff; }
.button.secondary { background: var(--panel-muted); color: var(--text); border: 1px solid var(--line); }
.grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr); gap: 18px; }
.stack { display: grid; gap: 16px; }
.card { padding: 24px; }
.meta { font-size: 12px; font-weight: 600; color: var(--muted); margin-bottom: 10px; }
.answer { font-size: clamp(24px, 4vw, 34px); line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 12px; }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 12px; margin-top: 18px; }
.stat { padding: 18px; border-radius: 22px; }
.stat-label { font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 8px; }
.stat-value { font-size: 28px; font-weight: 700; line-height: 1; margin-bottom: 6px; }
.stat-copy, .notice { font-size: 12px; color: var(--muted); line-height: 1.7; }
.notice-cta { margin-top: 10px; }
.list { display: grid; gap: 12px; margin-top: 16px; }
.list-item { padding: 16px; border-radius: 18px; background: var(--panel-muted); border: 1px solid var(--line); }
.list-item h3 { font-size: 14px; margin-bottom: 6px; }
.list-item p { font-size: 13px; line-height: 1.7; color: var(--muted); }
.chip { display: inline-flex; align-items: center; min-height: 42px; padding: 0 14px; border-radius: 14px; background: var(--panel-muted); border: 1px solid var(--line); color: var(--text); text-decoration: none; font-size: 13px; font-weight: 600; }
.section-divider { height: 1px; background: var(--line); margin: 18px 0 16px; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.card-title { font-size: 22px; line-height: 1.1; margin-bottom: 10px; }
@media (max-width: 860px) { .grid { grid-template-columns: 1fr; } }
