:root {
  --fig: #5B2A6E;
  --fig-deep: #421e51;
  --amber: #E8A23E;
  --cream: #F4EFE6;
  --ink: #1A1414;
  --muted: #6b5f5a;
  --line: rgba(26,20,20,.12);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}
.mono { font-family: "JetBrains Mono", ui-monospace, monospace; }
.wrap { max-width: 760px; margin: 0 auto; padding: 0 32px; }
.wrap.wide { max-width: 1180px; }

.wordmark {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--fig);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
}
.wordmark .dotless-i { position: relative; display: inline-block; }
.wordmark .dotless-i::after {
  content: ""; position: absolute; left: 50%;
  transform: translateX(-50%);
  background: var(--amber); border-radius: 50%;
  width: .26em; height: .26em; top: -.32em;
}
.wordmark.cream { color: var(--cream); }

nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244,239,230,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
nav .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; padding-bottom: 18px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 30px; height: 33px; }
.brand .wordmark { font-size: 22px; }
nav ul { display: flex; gap: 28px; list-style: none; padding: 0; margin: 0; }
nav ul a { color: var(--ink); text-decoration: none; font-weight: 500; font-size: 15px; opacity: .75; }
nav ul a:hover { opacity: 1; }
@media (max-width: 720px) { nav ul { display: none; } }

article.legal { padding: 72px 0 80px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--fig); background: rgba(91,42,110,.08);
  padding: 6px 12px; border-radius: 999px; font-weight: 600;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); }
h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05; letter-spacing: -.03em;
  margin: 22px 0 10px; font-weight: 800;
}
.meta {
  color: var(--muted); font-size: 13px;
  margin: 0 0 36px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: .04em;
}
h2 {
  font-size: 22px; font-weight: 700;
  letter-spacing: -.01em;
  margin: 44px 0 12px;
}
h3 { font-size: 17px; font-weight: 700; margin: 26px 0 8px; }
p, li { font-size: 16px; color: var(--ink); }
p { margin: 0 0 16px; }
ul, ol { padding-left: 20px; margin: 0 0 18px; }
li { margin-bottom: 6px; }
a { color: var(--fig); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--fig-deep); }
hr { border: 0; border-top: 1px solid var(--line); margin: 40px 0; }
.muted { color: var(--muted); }
.callout {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--amber);
  border-radius: 14px;
  padding: 18px 22px;
  margin: 24px 0;
}
.callout p:last-child { margin-bottom: 0; }
table.policy {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 24px;
  font-size: 15px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
table.policy th, table.policy td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
table.policy th { background: rgba(91,42,110,.05); font-weight: 700; color: var(--fig); font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }
table.policy tr:last-child td { border-bottom: 0; }

footer { background: var(--ink); color: var(--cream); padding: 64px 0 28px; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(244,239,230,.12);
}
footer h4 {
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--amber); margin: 0 0 18px; font-weight: 600;
}
footer ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
footer a { color: var(--cream); text-decoration: none; font-size: 14px; opacity: .7; }
footer a:hover { opacity: 1; color: var(--amber); }
.foot-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.foot-brand img { width: 32px; height: 35px; }
.foot-brand .wordmark { font-size: 22px; color: var(--cream); }
.foot-tag { font-size: 14px; opacity: .6; max-width: 280px; line-height: 1.6; }
.foot-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  font-size: 12px; opacity: .5;
  font-family: "JetBrains Mono", monospace;
}
@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; gap: 32px; } }
