


html { line-height: 1.15; -webkit-text-size-adjust: 100%; }
body { margin: 0; }
main { display: block; }
h1 { font-size: 2em; margin: 0.67em 0; }
hr { box-sizing: content-box; height: 0; overflow: visible; }
pre { font-family: monospace, monospace; font-size: 1em; }
a { background-color: transparent; }
abbr[title] { border-bottom: none; text-decoration: underline dotted; }
b, strong { font-weight: bolder; }
small { font-size: 80%; }
img { border-style: none; }
button, input, optgroup, select, textarea { font-family: inherit; font-size: 100%; line-height: 1.15; margin: 0; }
button, input { overflow: visible; }
button, select { text-transform: none; }
button, [type="button"], [type="submit"] { -webkit-appearance: button; }
fieldset { padding: 0.35em 0.75em 0.625em; }
legend { box-sizing: border-box; color: inherit; display: table; max-width: 100%; padding: 0; white-space: normal; }
textarea { overflow: auto; }
[type="checkbox"] { box-sizing: border-box; padding: 0; }
details { display: block; }
summary { display: list-item; }
template, [hidden] { display: none; }


*, *::before, *::after { box-sizing: border-box; }


:root {
  --paper: #ffffff;
  --pearl: #faf5ff;
  --lilac: #f3e8ff;
  --lilac-glow: #8b5cf6;
  --ivory: #f9f6f1;
  --plum: #4d1f45;
  --plum-deep: #2b1226;
  --plum-soft: #6b2e60;
  --silverblue: #5f6b85;
  --ink: #3a1733;
  --hairline: #e5ddea;
  --halo: rgba(139, 92, 246, 0.22);
}


body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--plum);
}
h1 { font-size: 48px; font-weight: 900; line-height: 1.15; letter-spacing: -0.01em; margin: 0 0 16px; }
h2 { font-size: 32px; font-weight: 700; line-height: 1.2; margin: 0 0 16px; }
h3 { font-size: 22px; font-weight: 700; line-height: 1.3; margin: 0 0 8px; }
h4 { font-size: 18px; font-weight: 700; margin: 0 0 8px; }
p { font-size: 16px; line-height: 1.5; font-weight: 400; margin-bottom: 8px; margin-top: 0; }

a { color: var(--plum-soft); text-decoration: none; }
a:hover { color: var(--plum); text-decoration: underline; }

ul, ol { margin: 0 0 16px; padding-left: 20px; }
li { line-height: 1.5; margin-bottom: 8px; }

img { max-width: 100%; height: auto; }

table { border-collapse: collapse; width: 100%; font-size: 15px; }
th, td { text-align: left; padding: 8px 16px; border-bottom: 1px solid var(--hairline); vertical-align: top; }
th { width: 42%; color: var(--plum); font-weight: 700; }

blockquote { margin: 0 0 16px; padding-left: 16px; border-left: 3px solid var(--lilac); color: var(--silverblue); }

::selection { background: var(--lilac); color: var(--plum); }
:focus-visible { outline: 2px solid var(--lilac-glow); outline-offset: 2px; }
