
  :root { --font-heading: "Sora", system-ui, sans-serif; --font-body: "Outfit", system-ui, sans-serif; }
  body { margin: 0; text-wrap: pretty; background: var(--color-bg); color: var(--color-text); font-family: var(--font-body); font-weight: 300; }
  a { color: var(--color-text); text-decoration: none; }
  a:hover { color: #079FFC; }
  ::selection { background: var(--color-text); color: var(--color-bg); }
  :focus-visible { outline: 2px solid #079FFC; outline-offset: 3px; }
  @keyframes riseIn { from { opacity: 0; transform: translateY(0.4em); } to { opacity: 1; transform: none; } }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  [data-rise] { display: inline-block; opacity: 0; animation: riseIn 1000ms cubic-bezier(.22,.61,.36,1) forwards; }
  [data-fade] { opacity: 0; animation: fadeIn 950ms ease forwards; }
  [data-cta] { transition: background 250ms ease, color 250ms ease, border-color 250ms ease; }
  [data-cta]:hover { background: var(--color-text) !important; color: var(--color-bg) !important; border-color: var(--color-text) !important; }
  [data-quiet] [data-mark] { transition: transform 360ms cubic-bezier(.22,.61,.36,1); }
  [data-quiet]:hover [data-mark] { transform: translateX(6px); }
  [data-jump] { transition: color 240ms ease, border-color 240ms ease; }
  [data-jump]:hover { color: #079FFC; border-color: #079FFC; }
  [data-clause] [data-bar] { transform: scaleX(0); transform-origin: left; transition: transform 900ms cubic-bezier(.22,.61,.36,1) 100ms; }
  [data-clause][data-shown] [data-bar] { transform: scaleX(1); }
  [data-footcta] [data-footmark] { transition: transform 380ms cubic-bezier(.22,.61,.36,1); }
  [data-footcta]:hover [data-footmark] { transform: translateX(6px); }
  @media (prefers-reduced-motion: reduce) { [data-rise], [data-fade] { animation: none !important; opacity: 1 !important; transform: none !important; } }
  @media (max-width: 1200px) { [data-tagline] { display: none !important; } }
  @media (max-width: 980px) {
    [data-legal] { grid-template-columns: minmax(0, 1fr) !important; }
    [data-toc] { position: static !important; border-bottom: 2px solid var(--color-divider); padding-bottom: 24px; margin-bottom: 8px; }
  }
  @media (max-width: 1240px) { [data-foot] { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; } }
  @media (max-width: 860px) { [data-foot] { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; } }
  @media (max-width: 560px) { [data-foot] { grid-template-columns: minmax(0, 1fr) !important; } }
  footer a:hover { color: #f3f2f2 !important; }
