/* So Delighted LLC — shared styles for the business/KYC site. No JS, no
   external fonts/CDNs (self-contained so it renders identically offline and
   passes a strict CSP later). */
:root {
  --ink: #1a1a2e;
  --muted: #55566b;
  --accent: #4f46e5;
  --accent-dark: #3730a3;
  --line: #e6e6ef;
  --bg: #ffffff;
  --bg-soft: #f7f7fb;
  --max: 720px;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 2px; }

header.site {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
header.site .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { font-weight: 700; font-size: 1.15rem; color: var(--ink); letter-spacing: -0.01em; }
.brand:hover { text-decoration: none; }
nav.top a { color: var(--muted); font-size: 0.95rem; margin-left: 20px; }
nav.top a:first-child { margin-left: 0; }

main { padding: 56px 0 40px; }
.hero { padding-bottom: 8px; }
h1 { font-size: 2.1rem; line-height: 1.2; letter-spacing: -0.02em; margin: 0 0 16px; }
h2 { font-size: 1.3rem; margin: 40px 0 10px; letter-spacing: -0.01em; }
h3 { font-size: 1.05rem; margin: 28px 0 6px; }
p, li { color: var(--ink); }
.lead { font-size: 1.2rem; color: var(--muted); }
.muted { color: var(--muted); }
small, .fineprint { color: var(--muted); font-size: 0.9rem; }

.card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  margin: 28px 0;
}
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 11px 20px;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 8px;
}
.btn:hover { background: var(--accent-dark); text-decoration: none; }

dl.meta { margin: 0; }
dl.meta dt { font-weight: 600; margin-top: 14px; }
dl.meta dd { margin: 2px 0 0; color: var(--muted); }

footer.site {
  border-top: 1px solid var(--line);
  margin-top: 56px;
  padding: 28px 0 48px;
  color: var(--muted);
  font-size: 0.92rem;
}
footer.site .wrap { display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; }
footer.site a { color: var(--muted); }
footer.site nav a { margin-right: 16px; }

.legal h1 { font-size: 1.7rem; }
.legal p, .legal li { color: #33334a; }
.updated { color: var(--muted); font-size: 0.92rem; margin-top: -6px; }

@media (max-width: 520px) {
  header.site .wrap { height: auto; flex-direction: column; align-items: flex-start; gap: 6px; padding-top: 12px; padding-bottom: 12px; }
  nav.top a { margin-left: 0; margin-right: 16px; }
  h1 { font-size: 1.7rem; }
  main { padding-top: 36px; }
}
