:root { --cream:#FBF6EE; --paper:#F3EEE6; --ink:#1F1A2E; --muted:#5E5670; --line:#E7DFD2; --violet:#5B3FD6; --violet-soft:#EFEAFF; --gold:#FFB23F; --night:#17123A; }
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: "Figtree", system-ui, sans-serif; color: var(--ink); background: var(--cream); line-height: 1.6; }
a { color: var(--violet); }
a:hover { color: #4527B8; }
.wrap { max-width: 880px; margin: 0 auto; padding: 0 20px; }
header.site { padding: 18px 0; }
header.site .wrap { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.logo { display: inline-flex; align-items: center; gap: 8px; font-family: "Fraunces", Georgia, serif; font-weight: 700; font-size: 20px; color: var(--ink); text-decoration: none; white-space: nowrap; }
nav.top a { margin-left: 16px; font-weight: 600; font-size: 15px; text-decoration: none; color: var(--muted); }
nav.top a:hover { color: var(--violet); }
h1, h2, h3 { font-family: "Fraunces", Georgia, serif; line-height: 1.2; }
.hero { background: var(--night); color: #fff; padding: 56px 0 64px; }
.hero .wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: center; }
.hero h1 { font-size: clamp(34px, 6vw, 52px); margin: 12px 0 14px; }
.hero p { color: #D9D2FF; font-size: 18px; margin: 0 0 20px; }
.badge { display: inline-block; padding: 6px 12px; border-radius: 999px; background: #241D52; color: #FFE2B0; font-weight: 700; font-size: 14px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 24px; padding: 0; list-style: none; }
.chips li { padding: 6px 12px; border-radius: 999px; background: #241D52; color: #E4DEFF; font-size: 14px; font-weight: 600; }
.art { max-width: 380px; margin: 0 auto; }
.art svg { display: block; width: 100%; height: auto; border-radius: 50%; box-shadow: 0 0 0 10px #241D52, 0 20px 50px rgba(0,0,0,.4); }
.cta { display: inline-block; padding: 14px 22px; border-radius: 14px; background: var(--gold); color: var(--ink); font-weight: 800; text-decoration: none; }
.cta:hover { color: var(--ink); filter: brightness(1.05); }
.note { font-size: 14px; color: #BFB6E8; margin-top: 12px; }
section.features { padding: 48px 0; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { background: #fff; border-radius: 18px; padding: 18px; box-shadow: 0 2px 10px rgba(31,26,46,.06); }
.card h3 { margin: 0 0 6px; font-size: 19px; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }
.doc { padding: 24px 0 56px; }
.doc h1 { font-size: 34px; margin: 8px 0 4px; }
.doc .updated { color: var(--muted); font-size: 14px; margin: 0 0 24px; }
.doc h2 { font-size: 22px; margin: 32px 0 8px; }
.doc h3 { font-size: 17px; margin: 20px 0 6px; font-family: "Figtree", system-ui, sans-serif; }
.doc table { width: 100%; border-collapse: collapse; font-size: 15px; margin: 8px 0 16px; }
.doc th, .doc td { text-align: left; vertical-align: top; padding: 10px; border-bottom: 1px solid var(--line); }
.doc th { background: var(--paper); }
.callout { background: var(--violet-soft); border-radius: 14px; padding: 14px 16px; margin: 16px 0; }
footer.site { border-top: 1px solid var(--line); padding: 24px 0 40px; font-size: 14px; color: var(--muted); }
footer.site a { margin-right: 16px; }
@media (max-width: 720px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .art { max-width: 340px; margin: 0 auto; width: 100%; }
  .grid { grid-template-columns: 1fr; }
  nav.top a { margin-left: 10px; font-size: 14px; }
  .doc table, .doc thead, .doc tbody, .doc tr, .doc th, .doc td { display: block; }
  .doc thead { display: none; }
  .doc td { border: 0; padding: 4px 0; }
  .doc tr { border-bottom: 1px solid var(--line); padding: 8px 0; }
}
