:root {
  --bg: #faf7f0; --panel: #ffffff; --ink: #1d1f1c; --muted: #676a62; --line: #e6e1d4;
  --green: #1e8a4c; --orange: #d97a06; --link: #1a7a43;
  color-scheme: light dark;
}
@media (prefers-color-scheme: dark) {
  :root { --bg: #16181b; --panel: #1f2226; --ink: #ecece7; --muted: #a3a59d; --line: #2e3237;
          --green: #3fc47a; --orange: #f5a33b; --link: #56d18d; }
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--ink);
       font: 17px/1.55 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
       padding-inline: 20px; }
main, header.site, footer { max-width: 680px; margin: 0 auto; }
header.site { display: flex; align-items: center; gap: 12px; padding-block: 22px 8px; }
header.site a { color: inherit; text-decoration: none; font-weight: 700; font-size: 18px; }
header.site img { width: 32px; height: 32px; border-radius: 8px; }
nav { margin-left: auto; display: flex; gap: 18px; font-size: 15px; }
nav a { color: var(--muted); font-weight: 500; }
h1 { font-size: 34px; line-height: 1.15; margin: 32px 0 10px; text-wrap: balance; }
h2 { font-size: 20px; margin: 34px 0 6px; }
p, li { max-width: 62ch; }
a { color: var(--link); }
.lede { font-size: 20px; color: var(--muted); margin: 0 0 24px; }
.hero { display: flex; align-items: center; gap: 22px; margin-top: 36px; }
.hero img { width: 112px; height: 112px; border-radius: 26px; box-shadow: 0 8px 24px rgba(0,0,0,.12); flex: none; }
.hero h1 { margin: 0 0 6px; }
.pill { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
        color: var(--orange); background: color-mix(in srgb, var(--orange) 14%, transparent); border-radius: 99px; padding: 2px 9px; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px; margin: 20px 0; }
.points { display: grid; gap: 14px; padding: 0; list-style: none; }
.points li { padding-left: 28px; position: relative; }
.points li::before { content: ""; position: absolute; left: 4px; top: .55em; width: 12px; height: 12px; border-radius: 50%; background: var(--green); }
.points li:nth-child(2)::before { background: var(--orange); }
.points li:nth-child(3)::before { background: #9ea2aa; }
.contact { font-size: 20px; font-weight: 600; }
footer { color: var(--muted); font-size: 14px; border-top: 1px solid var(--line); margin-top: 48px; padding-block: 18px 36px; }
footer a { color: var(--muted); }
@media (max-width: 520px) { .hero { flex-direction: column; align-items: flex-start; } h1 { font-size: 28px; } }
