
body { background-color: #fafaf7; }
.dark body { background-color: #0c0b0a; }
:root {
  --s-bg: #fafaf7;
  --s-bg-alt: #f1eee5;
  --s-fg: #161513;
  --s-muted: #5f5d5b;
  --s-border: #e5e2dc;
  --s-card: #ffffff;
  --s-card-soft: rgba(232, 106, 51, 0.08);
  --s-primary: #e86a33;
  --s-primary-fg: #ffffff;
  --s-primary-hover: #d35d2a;
  --s-radius: 0.5rem;
  --s-radius-lg: 0.75rem;
  --s-font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.dark {
  --s-bg: #0c0b0a;
  --s-bg-alt: #16140f;
  --s-fg: #f5f4f1;
  --s-muted: #b3b0aa;
  --s-border: #2a2620;
  --s-card: #131210;
  --s-card-soft: rgba(232, 106, 51, 0.14);
}
.s-page { background: var(--s-bg); color: var(--s-fg); font-family: var(--s-font-sans); }
.s-container { max-width: 72rem; margin: 0 auto; padding: 0 1.25rem; }
.s-narrow { max-width: 48rem; margin: 0 auto; }
.s-mid { max-width: 56rem; margin: 0 auto; }
.s-wide { max-width: 64rem; margin: 0 auto; }
.s-section { padding: 3rem 0; }
@media (min-width: 768px) { .s-section { padding: 4rem 0; } }
.s-section--alt { background: var(--s-bg-alt); }
.s-section--hero { border-bottom: 1px solid var(--s-border); padding: 3rem 0 3.5rem; }
@media (min-width: 768px) { .s-section--hero { padding: 4rem 0 4.5rem; } }
.s-h1 { font-size: clamp(2rem, 1.4rem + 2.4vw, 2.75rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; color: var(--s-fg); margin: 0 0 1rem; }
.s-h2 { font-size: clamp(1.5rem, 1.2rem + 1vw, 1.875rem); font-weight: 700; letter-spacing: -0.01em; line-height: 1.25; color: var(--s-fg); margin: 0 0 1rem; }
.s-h3 { font-size: 1.125rem; font-weight: 600; color: var(--s-fg); margin: 0 0 0.5rem; }
.s-lead { font-size: 1.0625rem; line-height: 1.6; color: var(--s-muted); margin: 0 0 1.25rem; }
.s-text { color: var(--s-fg); line-height: 1.7; margin: 0 0 1rem; }
.s-muted { color: var(--s-muted); }
.s-meta { font-size: 0.875rem; color: var(--s-muted); }
.s-text-center { text-align: center; }
.s-link { color: var(--s-primary); text-decoration: underline; text-underline-offset: 2px; }
.s-link:hover { text-decoration: none; }
.s-btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; height: 2.75rem; padding: 0 1.25rem; font-size: 0.9375rem; font-weight: 600; border-radius: 9999px; border: 1px solid transparent; cursor: pointer; text-decoration: none; transition: background 120ms ease, color 120ms ease, border-color 120ms ease; }
.s-btn--primary { background: var(--s-primary); color: var(--s-primary-fg); }
.s-btn--primary:hover { background: var(--s-primary-hover); }
.s-btn--outline { background: transparent; color: var(--s-fg); border-color: var(--s-border); }
.s-btn--outline:hover { border-color: var(--s-fg); }
.s-btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
@media (max-width: 640px) { .s-btn-row { flex-direction: column; align-items: stretch; } .s-btn { width: 100%; } }
.s-grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 64rem; margin: 0 auto; }
@media (min-width: 768px) { .s-grid-3 { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } }
.s-grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .s-grid-2 { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
.s-feature { display: flex; gap: 1rem; align-items: flex-start; }
.s-feature--center { display: block; text-align: center; }
.s-feature--center .s-icon-circle { margin: 0 auto 0.875rem; }
.s-icon-circle, .s-icon-square { display: inline-flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; background: var(--s-card-soft); color: var(--s-primary); flex-shrink: 0; }
.s-icon-circle { border-radius: 999px; }
.s-icon-square { border-radius: var(--s-radius); }
.s-icon-circle svg, .s-icon-square svg { width: 1.25rem; height: 1.25rem; }
.s-callout { background: var(--s-bg-alt); border: 1px solid var(--s-border); border-radius: var(--s-radius); padding: 1rem 1.125rem; margin: 1rem 0; color: var(--s-muted); }
.s-callout p { margin: 0 0 0.25rem; }
.s-callout p:last-child { margin: 0; }
.s-prose section { margin-bottom: 2.25rem; }
.s-prose section:last-child { margin-bottom: 0; }
.s-prose h2 { font-size: 1.125rem; font-weight: 600; margin: 0 0 0.75rem; color: var(--s-fg); }
.s-prose p { color: var(--s-muted); line-height: 1.7; margin: 0 0 0.75rem; }
.s-prose ul { color: var(--s-muted); padding-left: 1.25rem; margin: 0 0 0.75rem; list-style: disc; }
.s-prose ul li { margin-bottom: 0.4rem; line-height: 1.65; }
.s-prose strong { color: var(--s-fg); font-weight: 600; }
.s-prose a { color: var(--s-primary); text-decoration: underline; text-underline-offset: 2px; }
.s-prose a:hover { text-decoration: none; }
.s-table-wrap { border: 1px solid var(--s-border); border-radius: var(--s-radius); overflow: hidden; background: var(--s-card); }
.s-table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; }
.s-table th { text-align: left; font-weight: 500; padding: 0.75rem 1rem; background: var(--s-bg-alt); color: var(--s-muted); border-bottom: 1px solid var(--s-border); }
.s-table td { padding: 0.85rem 1rem; border-bottom: 1px solid var(--s-border); color: var(--s-fg); vertical-align: top; }
.s-table tbody tr:last-child td { border-bottom: 0; }
.s-table .s-td-muted { color: var(--s-muted); }
.s-faq-nav { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin: 0 0 2.5rem; padding: 0; list-style: none; }
.s-faq-pill { display: inline-flex; align-items: center; padding: 0.4rem 0.875rem; border-radius: 999px; background: var(--s-bg-alt); color: var(--s-muted); font-size: 0.875rem; font-weight: 500; text-decoration: none; transition: background 120ms ease, color 120ms ease; }
.s-faq-pill:hover { background: var(--s-card-soft); color: var(--s-primary); }
.s-faq-group { margin-bottom: 3rem; scroll-margin-top: 6rem; }
.s-faq-group:last-child { margin-bottom: 0; }
.s-faq-group h2 { font-size: 1.375rem; font-weight: 700; margin: 0 0 1rem; color: var(--s-fg); }
.s-faq-item { border: 1px solid var(--s-border); border-radius: var(--s-radius); background: var(--s-card); margin-bottom: 0.5rem; }
.s-faq-item summary { list-style: none; cursor: pointer; padding: 0.85rem 1.125rem; font-weight: 600; color: var(--s-fg); display: flex; justify-content: space-between; align-items: center; gap: 0.75rem; }
.s-faq-item summary::-webkit-details-marker { display: none; }
.s-faq-item summary::after { content: "+"; font-size: 1.25rem; color: var(--s-muted); font-weight: 400; line-height: 1; }
.s-faq-item[open] summary::after { content: "−"; }
.s-faq-answer { padding: 0 1.125rem 1rem; color: var(--s-muted); line-height: 1.65; }
.s-mt-1 { margin-top: 0.25rem; }
.s-mt-2 { margin-top: 0.5rem; }
.s-mt-4 { margin-top: 1rem; }
.s-mt-6 { margin-top: 1.5rem; }
.s-mb-2 { margin-bottom: 0.5rem; }
.s-mb-4 { margin-bottom: 1rem; }
.s-mb-6 { margin-bottom: 1.5rem; }
.s-mb-8 { margin-bottom: 2rem; }
.s-mb-12 { margin-bottom: 3rem; }
