:root {
      color-scheme: light dark;
      --bg: #f6f7fb;
      --text: #111322;
      --muted: #4e536a;
      --line: rgba(17, 19, 34, 0.15);
    }

    @media (prefers-color-scheme: dark) {
      :root {
        --bg: #050714;
        --text: #f5f5ff;
        --muted: #a0a4c2;
        --line: rgba(255, 255, 255, 0.15);
      }
    }

    body {
      margin: 0;
      font-family: "Inter", "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.7;
    }

    .page {
      max-width: 880px;
      margin: 0 auto;
      padding: 64px 24px 80px;
    }

    header {
      border-bottom: 1px solid var(--line);
      margin-bottom: 32px;
      padding-bottom: 24px;
    }

    header a {
      color: inherit;
      text-decoration: none;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      line-height: 0;
    }

    .logo-img {
      height: 26px;
      width: auto;
      display: block;
    }

    .logo-img--dark {
      display: none;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    @media (prefers-color-scheme: dark) {
      .logo-img--light {
        display: none;
      }

      .logo-img--dark {
        display: block;
      }
    }

    h1 {
      margin: 24px 0 12px;
      font-size: 2.4rem;
    }

    section {
      margin-bottom: 32px;
    }

    h2 {
      margin-bottom: 12px;
      font-size: 1.3rem;
    }

    p {
      color: var(--muted);
      margin-top: 0;
    }

    ul {
      color: var(--muted);
      padding-left: 20px;
    }
