
    :root {
      --accent: #6A1B9A;
      --accent-fg: #fff;
      --bg: #fafaf6;
      --fg: #1c1c1c;
      --muted: #5a5a5a;
      --border: #e5e3dc;
    }
    * { box-sizing: border-box; }
    body {
      margin: 0;
      font-family: 'Lora', Georgia, serif;
      background: var(--bg);
      color: var(--fg);
      line-height: 1.65;
      font-size: 17px;
    }
    .topbar {
      border-bottom: 1px solid var(--border);
      padding: 14px 0;
      background: #fff;
    }
    .topbar .wrap {
      max-width: 920px; margin: 0 auto; padding: 0 20px;
      display: flex; align-items: center; justify-content: space-between;
      font-family: 'Inter', sans-serif;
    }
    .topbar .brand {
      font-weight: 700; font-size: 1.15rem; color: var(--fg);
      text-decoration: none; letter-spacing: -0.01em;
    }
    .topbar nav a {
      color: var(--muted); text-decoration: none; margin-left: 22px;
      font-size: 0.92rem; font-weight: 500;
    }
    .topbar nav a:hover { color: var(--accent); }
    article {
      max-width: 720px; margin: 0 auto; padding: 60px 20px 80px;
    }
    article h1 {
      font-size: 2.6rem; line-height: 1.15; margin: 0 0 18px;
      font-weight: 700; letter-spacing: -0.02em;
    }
    article .lead {
      font-size: 1.18rem; color: var(--muted); margin: 0 0 38px;
      font-style: italic;
    }
    article h2 {
      font-size: 1.6rem; line-height: 1.25; margin: 44px 0 16px;
      font-weight: 600; letter-spacing: -0.01em;
    }
    article h3 {
      font-size: 1.25rem; margin: 32px 0 12px; font-weight: 600;
    }
    article p { margin: 0 0 18px; }
    article a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; }
    article a:hover { text-decoration-thickness: 2px; }
    article ul, article ol { margin: 0 0 22px; padding-left: 28px; }
    article li { margin-bottom: 6px; }
    article table {
      width: 100%; border-collapse: collapse; margin: 22px 0;
      font-family: 'Inter', sans-serif; font-size: 0.95rem;
    }
    article th, article td {
      padding: 10px 14px; border-bottom: 1px solid var(--border);
      text-align: left;
    }
    article th { background: #f3f1ea; font-weight: 600; }

    .cta {
      background: var(--accent); color: var(--accent-fg);
      padding: 22px 28px; border-radius: 4px; margin: 32px 0;
      font-family: 'Inter', sans-serif;
    }
    .cta strong { font-size: 1.1rem; display: block; margin-bottom: 6px; }
    .cta-button {
      display: inline-block; background: #fff; color: var(--accent);
      padding: 10px 24px; border-radius: 3px; text-decoration: none;
      font-weight: 600; margin-top: 12px;
    }
    footer {
      max-width: 920px; margin: 0 auto; padding: 30px 20px;
      border-top: 1px solid var(--border);
      font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--muted);
    }
    footer .legal a { color: var(--muted); margin-right: 16px; text-decoration: none; }
    footer .legal a:hover { color: var(--accent); }
    @media (max-width: 600px) {
      article h1 { font-size: 2rem; }
      article { padding: 40px 18px 60px; }
    }
  