:root {
  --ink: #1c1814;
  --ink-soft: #4b4239;
  --muted: #756a5d;
  --faint: #9b9082;
  --paper: #faf8f3;
  --paper-2: #f4f0e7;
  --sunk: #efe9dc;
  --panel: #ffffff;
  --line: #e7e1d4;
  --line-soft: #f0ebe0;
  --accent: #0f6b5e;
  --accent-deep: #0a4f45;
  --accent-soft: #e3f0ec;
  --warm: #b8462e;
  --warm-soft: #f8eae3;
  --gold: #b6822b;
  --code-bg: #1b2420;
  --code-ink: #e9efe7;
  --code-line: #2c3b34;
  --code-fg: #e9efe7;
  --code-keyword: #d9a8e0;
  --code-string: #97d892;
  --code-comment: #859289;
  --code-function: #88c4ee;
  --code-number: #ecae78;
  --code-punctuation: #c1ccc6;
  --ring: #0f6b5e;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --field-bg: #ffffff;
  --field-line: #d9d2c4;
  --field-line-strong: #c4baa8;
  --control-shadow: 0 1px 2px rgba(28,24,20,.06);
  --control-shadow-hover: 0 6px 18px -8px rgba(28,24,20,.45);
  --accent-press: #094339;
  --on-accent: #ffffff;
}
@media (prefers-color-scheme: dark) {
:root:not([data-theme="light"]) {
  --ink: #ece6db;
  --ink-soft: #c3bbab;
  --muted: #9a9081;
  --faint: #6f6657;
  --paper: #14110d;
  --paper-2: #1a1612;
  --sunk: #221d17;
  --panel: #1e1913;
  --line: #2f281f;
  --line-soft: #261f18;
  --accent: #5ccab4;
  --accent-deep: #8fe0cf;
  --accent-soft: #16302a;
  --warm: #e88a6f;
  --warm-soft: #2c1f18;
  --gold: #d6a24e;
  --code-bg: #100d0a;
  --code-ink: #e4ebe2;
  --code-line: #2a231b;
  --code-fg: #e4ebe2;
  --code-keyword: #e2b9e8;
  --code-string: #a6e0a1;
  --code-comment: #7c8983;
  --code-function: #9bd0f4;
  --code-number: #f2bb8a;
  --code-punctuation: #b6c2bc;
  --ring: #5ccab4;
  --field-bg: #1a1612;
  --field-line: #38301f;
  --field-line-strong: #4a3f2c;
  --control-shadow: 0 1px 2px rgba(0,0,0,.4);
  --control-shadow-hover: 0 8px 22px -10px rgba(0,0,0,.7);
  --accent-press: #b6ecdc;
  --on-accent: #0c1310;
  --box-sizing: border-box;
}
}
:root[data-theme="dark"] {
  --ink: #ece6db;
  --ink-soft: #c3bbab;
  --muted: #9a9081;
  --faint: #6f6657;
  --paper: #14110d;
  --paper-2: #1a1612;
  --sunk: #221d17;
  --panel: #1e1913;
  --line: #2f281f;
  --line-soft: #261f18;
  --accent: #5ccab4;
  --accent-deep: #8fe0cf;
  --accent-soft: #16302a;
  --warm: #e88a6f;
  --warm-soft: #2c1f18;
  --gold: #d6a24e;
  --code-bg: #100d0a;
  --code-ink: #e4ebe2;
  --code-line: #2a231b;
  --code-fg: #e4ebe2;
  --code-keyword: #e2b9e8;
  --code-string: #a6e0a1;
  --code-comment: #7c8983;
  --code-function: #9bd0f4;
  --code-number: #f2bb8a;
  --code-punctuation: #b6c2bc;
  --ring: #5ccab4;
  --field-bg: #1a1612;
  --field-line: #38301f;
  --field-line-strong: #4a3f2c;
  --control-shadow: 0 1px 2px rgba(0,0,0,.4);
  --control-shadow-hover: 0 8px 22px -10px rgba(0,0,0,.7);
  --accent-press: #b6ecdc;
  --on-accent: #0c1310;
  --box-sizing: border-box;
}
body { margin: 0; }
body { font-family: ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, Cambria, serif; }
body { font-size: 18px; }
body { line-height: 1.65; }
body { color: var(--ink); }
body { background: var(--paper); }
body { -webkit-font-smoothing: antialiased; }
body { text-rendering: optimizeLegibility; }
::selection { background: var(--accent-soft); }
::selection { color: var(--accent-deep); }
h1, h2, h3, h4 { line-height: 1.1; }
h1, h2, h3, h4 { letter-spacing: -.012em; }
h1, h2, h3, h4 { color: var(--ink); }
h1, h2, h3, h4 { font-weight: 600; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h1 { letter-spacing: -.025em; }
h1 { margin: .2em 0 .35em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h2 { margin: 2.4em 0 .6em; }
h3 { font-size: 1.3rem; }
h3 { margin: 1.8em 0 .4em; }
p { margin: 1em 0; }
p { max-width: 68ch; }
a { color: var(--accent); }
a { text-underline-offset: 2px; }
a { text-decoration-thickness: 1px; }
a:hover { color: var(--accent-deep); }
strong { font-weight: 650; }
strong { color: var(--ink); }
hr { border: 0; }
hr { border-top: 1px solid var(--line); }
hr { margin: 3rem 0; }
small, .small { font-size: .82rem; }
small, .small { color: var(--muted); }
.topnav, .btn, .eyebrow, .pill, .tag, .badge, .kbd, .sitefooter, .source-reveal summary { font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
main { max-width: 940px; }
main { margin: 0 auto; }
main { padding: 0 1.5rem 5rem; }
.wide { max-width: 1140px; }
.eyebrow { display: inline-block; }
.eyebrow { text-transform: uppercase; }
.eyebrow { letter-spacing: .14em; }
.eyebrow { font-size: .74rem; }
.eyebrow { font-weight: 600; }
.eyebrow { color: var(--accent); }
.eyebrow { margin: 0 0 .35rem; }
.btn, button, button[data-wd-action], button[data-wd-actions], [type=submit], [type=button], [type=reset] { display: inline-flex; }
.btn, button, button[data-wd-action], button[data-wd-actions], [type=submit], [type=button], [type=reset] { align-items: center; }
.btn, button, button[data-wd-action], button[data-wd-actions], [type=submit], [type=button], [type=reset] { justify-content: center; }
.btn, button, button[data-wd-action], button[data-wd-actions], [type=submit], [type=button], [type=reset] { gap: .5rem; }
.btn, button, button[data-wd-action], button[data-wd-actions], [type=submit], [type=button], [type=reset] { margin: .4rem .5rem .4rem 0; }
.btn, button, button[data-wd-action], button[data-wd-actions], [type=submit], [type=button], [type=reset] { padding: .62rem 1.15rem; }
.btn, button, button[data-wd-action], button[data-wd-actions], [type=submit], [type=button], [type=reset] { font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
.btn, button, button[data-wd-action], button[data-wd-actions], [type=submit], [type=button], [type=reset] { font-size: .94rem; }
.btn, button, button[data-wd-action], button[data-wd-actions], [type=submit], [type=button], [type=reset] { font-weight: 560; }
.btn, button, button[data-wd-action], button[data-wd-actions], [type=submit], [type=button], [type=reset] { line-height: 1.15; }
.btn, button, button[data-wd-action], button[data-wd-actions], [type=submit], [type=button], [type=reset] { letter-spacing: -.005em; }
.btn, button, button[data-wd-action], button[data-wd-actions], [type=submit], [type=button], [type=reset] { color: var(--ink); }
.btn, button, button[data-wd-action], button[data-wd-actions], [type=submit], [type=button], [type=reset] { background: var(--panel); }
.btn, button, button[data-wd-action], button[data-wd-actions], [type=submit], [type=button], [type=reset] { border: 1px solid var(--line); }
.btn, button, button[data-wd-action], button[data-wd-actions], [type=submit], [type=button], [type=reset] { border-radius: 999px; }
.btn, button, button[data-wd-action], button[data-wd-actions], [type=submit], [type=button], [type=reset] { text-decoration: none; }
.btn, button, button[data-wd-action], button[data-wd-actions], [type=submit], [type=button], [type=reset] { cursor: pointer; }
.btn, button, button[data-wd-action], button[data-wd-actions], [type=submit], [type=button], [type=reset] { -webkit-appearance: none; }
.btn, button, button[data-wd-action], button[data-wd-actions], [type=submit], [type=button], [type=reset] { appearance: none; }
.btn, button, button[data-wd-action], button[data-wd-actions], [type=submit], [type=button], [type=reset] { transition: transform .14s cubic-bezier(.2,.7,.3,1), box-shadow .14s ease, background .14s ease, border-color .14s ease, color .14s ease; }
button, button[data-wd-action], button[data-wd-actions], [type=submit], .btn.primary { background: var(--accent); }
button, button[data-wd-action], button[data-wd-actions], [type=submit], .btn.primary { color: var(--on-accent); }
button, button[data-wd-action], button[data-wd-actions], [type=submit], .btn.primary { border-color: var(--accent); }
button, button[data-wd-action], button[data-wd-actions], [type=submit], .btn.primary { box-shadow: var(--control-shadow); }
button:hover, button[data-wd-action]:hover, button[data-wd-actions]:hover, [type=submit]:hover, .btn.primary:hover { background: var(--accent-deep); }
button:hover, button[data-wd-action]:hover, button[data-wd-actions]:hover, [type=submit]:hover, .btn.primary:hover { border-color: var(--accent-deep); }
button:hover, button[data-wd-action]:hover, button[data-wd-actions]:hover, [type=submit]:hover, .btn.primary:hover { color: var(--on-accent); }
button:hover, button[data-wd-action]:hover, button[data-wd-actions]:hover, [type=submit]:hover, .btn.primary:hover { transform: translateY(-1px); }
button:hover, button[data-wd-action]:hover, button[data-wd-actions]:hover, [type=submit]:hover, .btn.primary:hover { box-shadow: var(--control-shadow-hover); }
button:active, button[data-wd-action]:active, button[data-wd-actions]:active, [type=submit]:active, .btn.primary:active { background: var(--accent-press); }
button:active, button[data-wd-action]:active, button[data-wd-actions]:active, [type=submit]:active, .btn.primary:active { border-color: var(--accent-press); }
button:active, button[data-wd-action]:active, button[data-wd-actions]:active, [type=submit]:active, .btn.primary:active { transform: translateY(0); }
button:active, button[data-wd-action]:active, button[data-wd-actions]:active, [type=submit]:active, .btn.primary:active { box-shadow: var(--control-shadow); }
.btn:focus-visible, button:focus-visible, [type=submit]:focus-visible, [type=button]:focus-visible, [type=reset]:focus-visible { outline: 2px solid var(--ring); }
.btn:focus-visible, button:focus-visible, [type=submit]:focus-visible, [type=button]:focus-visible, [type=reset]:focus-visible { outline-offset: 2px; }
.wd-skip-link:focus { background: var(--accent); }
.wd-skip-link:focus { color: var(--on-accent); }
.wd-skip-link:focus { border-radius: 0 0 var(--radius-sm) 0; }
.wd-skip-link:focus { outline: 2px solid var(--ring); }
.wd-skip-link:focus { outline-offset: 2px; }
button:disabled, [type=submit]:disabled, .btn[aria-disabled=true], [type=button]:disabled { opacity: .5; }
button:disabled, [type=submit]:disabled, .btn[aria-disabled=true], [type=button]:disabled { cursor: not-allowed; }
button:disabled, [type=submit]:disabled, .btn[aria-disabled=true], [type=button]:disabled { box-shadow: none; }
button:disabled, [type=submit]:disabled, .btn[aria-disabled=true], [type=button]:disabled { transform: none; }
.btn, button.secondary, button.ghost, .btn.secondary, .btn.ghost { background: var(--panel); }
.btn, button.secondary, button.ghost, .btn.secondary, .btn.ghost { color: var(--ink); }
.btn, button.secondary, button.ghost, .btn.secondary, .btn.ghost { border-color: var(--line); }
.btn:hover { transform: translateY(-1px); }
.btn:hover { box-shadow: var(--control-shadow-hover); }
button.secondary:hover, .btn.secondary:hover { background: var(--sunk); }
button.secondary:hover, .btn.secondary:hover { border-color: var(--line); }
button.secondary:hover, .btn.secondary:hover { color: var(--ink); }
button.secondary:hover, .btn.secondary:hover { transform: translateY(-1px); }
button.secondary:hover, .btn.secondary:hover { box-shadow: var(--control-shadow-hover); }
button.ghost, .btn.ghost { background: transparent; }
button.ghost, .btn.ghost { border-color: transparent; }
button.ghost, .btn.ghost { box-shadow: none; }
button.ghost:hover, .btn.ghost:hover { background: var(--sunk); }
button.ghost:hover, .btn.ghost:hover { box-shadow: none; }
button.ghost:hover, .btn.ghost:hover { transform: none; }
.btn.warm { background: var(--warm); }
.btn.warm { color: #fff; }
.btn.warm { border-color: var(--warm); }
.btn.warm:hover { background: var(--warm); }
.btn.warm:hover { color: #fff; }
input, textarea, select { font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
input, textarea, select { font-size: .95rem; }
input, textarea, select { line-height: 1.4; }
input, textarea, select { color: var(--ink); }
input, textarea, select { background: var(--field-bg); }
input, textarea, select { border: 1px solid var(--field-line); }
input, textarea, select { border-radius: var(--radius-sm); }
input, textarea, select { padding: .58rem .8rem; }
input, textarea, select { margin: .35rem 0; }
input, textarea, select { width: 100%; }
input, textarea, select { max-width: 28rem; }
input, textarea, select { -webkit-appearance: none; }
input, textarea, select { appearance: none; }
input, textarea, select { transition: border-color .14s ease, box-shadow .14s ease, background .14s ease; }
input::placeholder, textarea::placeholder { color: var(--faint); }
input:hover, textarea:hover, select:hover { border-color: var(--field-line-strong); }
input:focus-visible, textarea:focus-visible, select:focus-visible { outline: none; }
input:focus-visible, textarea:focus-visible, select:focus-visible { border-color: var(--accent); }
input:focus-visible, textarea:focus-visible, select:focus-visible { box-shadow: 0 0 0 3px var(--accent-soft); }
input:disabled, textarea:disabled, select:disabled { opacity: .55; }
input:disabled, textarea:disabled, select:disabled { cursor: not-allowed; }
input:disabled, textarea:disabled, select:disabled { background: var(--sunk); }
textarea { min-height: 6.5rem; }
textarea { resize: vertical; }
select { background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23756a5d' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); }
select { background-repeat: no-repeat; }
select { background-position: right .75rem center; }
select { padding-right: 2.25rem; }
select { cursor: pointer; }
.wd-checkboxes, .wd-radios { display: flex; }
.wd-checkboxes, .wd-radios { flex-direction: column; }
.wd-checkboxes, .wd-radios { gap: .55rem; }
.wd-checkboxes, .wd-radios { margin: .5rem 0; }
.wd-checkboxes label, .wd-radios label { display: flex; }
.wd-checkboxes label, .wd-radios label { align-items: center; }
.wd-checkboxes label, .wd-radios label { gap: .55rem; }
.wd-checkboxes label, .wd-radios label { cursor: pointer; }
[type=checkbox], [type=radio] { width: 1.1rem; }
[type=checkbox], [type=radio] { height: 1.1rem; }
[type=checkbox], [type=radio] { min-width: 1.1rem; }
[type=checkbox], [type=radio] { margin: 0; }
[type=checkbox], [type=radio] { max-width: none; }
[type=checkbox], [type=radio] { padding: 0; }
[type=checkbox], [type=radio] { accent-color: var(--accent); }
[type=checkbox], [type=radio] { cursor: pointer; }
[type=checkbox]:focus-visible, [type=radio]:focus-visible { outline: 2px solid var(--ring); }
[type=checkbox]:focus-visible, [type=radio]:focus-visible { outline-offset: 2px; }
label { font-size: .95rem; }
label { color: var(--ink-soft); }
[type=range] { accent-color: var(--accent); }
[type=range] { cursor: pointer; }
[type=range] { padding: 0; }
.wd-carousel-prev, .wd-carousel-next { width: 2.25rem; }
.wd-carousel-prev, .wd-carousel-next { height: 2.25rem; }
.wd-carousel-prev, .wd-carousel-next { padding: 0; }
.wd-carousel-prev, .wd-carousel-next { margin: 0; }
.wd-carousel-prev, .wd-carousel-next { background: var(--panel); }
.wd-carousel-prev, .wd-carousel-next { color: var(--ink); }
.wd-carousel-prev, .wd-carousel-next { border: 1px solid var(--line); }
.wd-carousel-prev, .wd-carousel-next { border-radius: 999px; }
.wd-carousel-prev, .wd-carousel-next { box-shadow: var(--control-shadow); }
.wd-carousel-prev:hover, .wd-carousel-next:hover { background: var(--panel); }
.wd-carousel-prev:hover, .wd-carousel-next:hover { border-color: var(--accent); }
.wd-carousel-prev:hover, .wd-carousel-next:hover { color: var(--accent); }
.wd-carousel-prev:hover, .wd-carousel-next:hover { transform: none; }
.wd-carousel-prev:hover, .wd-carousel-next:hover { box-shadow: var(--control-shadow-hover); }
.wd-carousel-dot { width: .6rem; }
.wd-carousel-dot { height: .6rem; }
.wd-carousel-dot { padding: 0; }
.wd-carousel-dot { margin: 0; }
.wd-carousel-dot { border: 0; }
.wd-carousel-dot { border-radius: 999px; }
.wd-carousel-dot { background: var(--line); }
.wd-carousel-dot { box-shadow: none; }
.wd-carousel-dot:hover { background: var(--faint); }
.wd-carousel-dot:hover { transform: none; }
.wd-carousel-dot:hover { box-shadow: none; }
.wd-carousel-dot[aria-current=true] { background: var(--accent); }
.card { background: var(--panel); }
.card { border: 1px solid var(--line); }
.card { border-radius: var(--radius); }
.card { padding: 1.4rem; }
.card { box-shadow: 0 1px 2px rgba(28,24,20,.04); }
.grid { display: grid; }
.grid { gap: 1.1rem; }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.auto { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
@media (max-width: 760px) { .grid.cols-2, .grid.cols-3 { grid-template-columns: 1fr; } }
.pill, .tag { display: inline-flex; }
.pill, .tag { align-items: center; }
.pill, .tag { gap: .35rem; }
.pill, .tag { font-size: .72rem; }
.pill, .tag { font-weight: 600; }
.pill, .tag { text-transform: uppercase; }
.pill, .tag { letter-spacing: .06em; }
.pill, .tag { padding: .28rem .6rem; }
.pill, .tag { border-radius: 999px; }
.pill { background: var(--accent-soft); }
.pill { color: var(--accent-deep); }
.tag { background: var(--sunk); }
.tag { color: var(--muted); }
.kbd { font-family: ui-monospace, "SF Mono", Menlo, monospace; }
.kbd { font-size: .8rem; }
.kbd { padding: .15rem .4rem; }
.kbd { border-radius: 6px; }
.kbd { background: var(--panel); }
.kbd { border: 1px solid var(--line); }
.kbd { color: var(--ink-soft); }
.note, .callout { margin: 1.6rem 0; }
.note, .callout { padding: 1rem 1.25rem; }
.note, .callout { border: 1px solid var(--line); }
.note, .callout { border-left: 3px solid var(--accent); }
.note, .callout { background: var(--panel); }
.note, .callout { border-radius: var(--radius-sm); }
.note, .callout { color: var(--ink-soft); }
.note, .callout { font-size: .96rem; }
code { font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; }
code { font-size: .88em; }
code { background: var(--sunk); }
code { color: var(--accent-deep); }
code { padding: .12rem .36rem; }
code { border-radius: 6px; }
h1 code, h2 code, h3 code { font-size: .82em; }
pre { background: var(--code-bg); }
pre { color: var(--code-ink); }
pre { padding: 1.2rem 1.35rem; }
pre { margin: 1.5rem 0; }
pre { border-radius: var(--radius); }
pre { overflow-x: auto; }
pre { line-height: 1.62; }
pre { font-size: .87rem; }
pre { box-shadow: inset 0 0 0 1px var(--code-line); }
pre code { background: transparent; }
pre code { color: inherit; }
pre code { padding: 0; }
pre code { font-size: 1em; }
table { border-collapse: collapse; }
table { width: 100%; }
table { margin: 1.5rem 0; }
table { font-size: .95rem; }
th { text-align: left; }
th { padding: .6rem .9rem; }
th { border-bottom: 2px solid var(--line); }
th { color: var(--muted); }
th { font-weight: 600; }
th { font-size: .82rem; }
th { text-transform: uppercase; }
th { letter-spacing: .04em; }
td { padding: .6rem .9rem; }
td { border-bottom: 1px solid var(--line-soft); }
blockquote { margin: 1.6rem 0; }
blockquote { padding: .6rem 1.3rem; }
blockquote { border-left: 3px solid var(--accent); }
blockquote { color: var(--ink-soft); }
blockquote { font-style: italic; }
.source-reveal { margin: 1.5rem 0; }
.source-reveal { border: 1px solid var(--line); }
.source-reveal { border-radius: var(--radius); }
.source-reveal { background: var(--panel); }
.source-reveal { overflow: hidden; }
.source-reveal summary { cursor: pointer; }
.source-reveal summary { padding: .85rem 1.1rem; }
.source-reveal summary { font-size: .9rem; }
.source-reveal summary { font-weight: 600; }
.source-reveal summary { color: var(--accent-deep); }
.source-reveal summary { list-style: none; }
.source-reveal summary { display: flex; }
.source-reveal summary { align-items: center; }
.source-reveal summary { gap: .5rem; }
.source-reveal summary::-webkit-details-marker { display: none; }
.source-reveal summary::before { content: "›"; }
.source-reveal summary::before { font-size: 1.1rem; }
.source-reveal summary::before { transition: transform .15s ease; }
.source-reveal[open] summary::before { transform: rotate(90deg); }
.source-reveal pre { margin: 0; }
.source-reveal pre { border-radius: 0; }
@media (prefers-reduced-motion: reduce) { .btn, button, [type=submit], [type=button], input, textarea, select { transition: none; } }
@media (prefers-reduced-motion: reduce) { .btn:hover, button:hover, [type=submit]:hover { transform: none; } }
.sitefooter { border-top: 1px solid var(--line); }
.sitefooter { margin-top: 4rem; }
.sitefooter { padding: 2.5rem 1.5rem; }
.sitefooter { color: var(--muted); }
.sitefooter { font-size: .9rem; }
.sitefooter .foot-inner { max-width: 940px; }
.sitefooter .foot-inner { margin: 0 auto; }
.sitefooter .foot-inner { display: flex; }
.sitefooter .foot-inner { flex-wrap: wrap; }
.sitefooter .foot-inner { gap: 1rem 2rem; }
.sitefooter .foot-inner { align-items: center; }
.sitefooter .foot-inner { justify-content: space-between; }
.sitefooter a { color: var(--muted); }
.sitefooter a { text-decoration: none; }
.sitefooter a { margin-right: 1.1rem; }
.sitefooter a:hover { color: var(--accent); }