    :root {
      color-scheme: light dark;
      --bg: #ffffff;
      --surface: #ffffff;
      --text: #1d1d1f;
      --muted: #6e6e73;
      --line: rgba(0, 0, 0, 0.08);
      --accent: #0a84ff;
      --accent-soft: rgba(10, 132, 255, 0.12);
      --shadow-soft: 0 18px 40px rgba(15, 15, 20, 0.08);
      --shadow-card: 0 10px 24px rgba(15, 15, 20, 0.04);
      --section-surface: rgba(255, 255, 255, 0.84);
      --section-surface-alt: rgba(250, 250, 252, 0.8);
      --section-surface-dark: rgba(11, 11, 12, 0.72);
    }
    @media (prefers-color-scheme: dark) {
      :root {
        --bg: #1c1c1e;
        --surface: #2c2c2e;
        --text: #f5f5f7;
        --muted: #a1a1a6;
        --line: rgba(255, 255, 255, 0.12);
        --accent: #0a84ff;
        --accent-soft: rgba(10, 132, 255, 0.2);
        --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.35);
        --shadow-card: 0 10px 24px rgba(0, 0, 0, 0.3);
        --section-surface: rgba(28, 28, 30, 0.78);
        --section-surface-alt: rgba(34, 34, 36, 0.74);
        --section-surface-dark: rgba(11, 11, 12, 0.64);
      }
    }
    body.hero-theme {
      --bg: #0b0b0c;
      --surface: rgba(15, 15, 20, 0.6);
      --text: #f5f5f7;
      --muted: rgba(245, 245, 247, 0.72);
      --line: rgba(255, 255, 255, 0.12);
      --accent: #0a84ff;
      --accent-soft: rgba(10, 132, 255, 0.2);
      --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.35);
      --shadow-card: 0 10px 24px rgba(0, 0, 0, 0.3);
      --section-surface: rgba(11, 11, 12, 0.72);
      --section-surface-alt: rgba(11, 11, 12, 0.72);
      --section-surface-dark: rgba(11, 11, 12, 0.72);
    }
    body.hero-theme .section.dark {
      background: transparent;
      border-top: none;
    }
    body.hero-theme .section.page-hero {
      border-top: none;
    }
    body.hero-theme .section {
      border-top: none;
    }
    * {
      box-sizing: border-box;
    }
    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
      font-size: 16px;
      line-height: 1.6;
      background: #0b0b0c;
      color: var(--text);
    }
    a {
      color: inherit;
      text-decoration: none;
    }
    .page {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      position: relative;
      background: #0b0b0c;
    }
    .page::before {
      content: "";
      position: fixed;
      inset: 0;
      background-image: var(--page-bg-image);
      background-size: cover;
      background-position: center;
      opacity: 0.16;
      filter: brightness(0.85) saturate(0.95);
      pointer-events: none;
      z-index: 0;
    }
    .page::after {
      content: "";
      position: fixed;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(11, 11, 12, 0.62), rgba(11, 11, 12, 0.62)),
        radial-gradient(120% 120% at 10% 0%, rgba(10, 132, 255, 0.12), transparent 60%);
      pointer-events: none;
      z-index: 0;
    }
    .page > * {
      position: relative;
      z-index: 1;
    }
    .nav {
      padding: 14px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 16px auto 0;
      width: calc(100% - 32px);
      position: sticky;
      top: 16px;
      z-index: 10;
      color: #f5f5f7;
      background: rgba(12, 12, 16, 0.45);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 999px;
      backdrop-filter: blur(16px) saturate(1.1);
      -webkit-backdrop-filter: blur(16px) saturate(1.1);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    }
    .brand {
      font-weight: 600;
      letter-spacing: 0.02em;
    }
    .nav-links {
      display: flex;
      gap: 20px;
      font-size: 14px;
      color: rgba(245, 245, 247, 0.72);
      flex-wrap: wrap;
    }
    .nav-link {
      padding: 6px 12px;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      color: rgba(245, 245, 247, 0.86);
      background: rgba(255, 255, 255, 0.04);
      transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    }
    .nav-link--icon {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .nav-icon {
      width: 16px;
      height: 16px;
    }
    body[data-design-system="homepage"] .nav-icon {
      display: inline-flex;
    }
    .nav-icon img {
      width: 16px;
      height: 16px;
      display: block;
      filter: brightness(0) invert(1);
      opacity: 0.9;
    }
    .nav-link:hover {
      color: #fff;
      border-color: rgba(255, 255, 255, 0.32);
      background: rgba(255, 255, 255, 0.08);
    }
    .page-content {
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .section {
      width: 100%;
      padding: 120px 24px;
      border-top: 1px solid var(--line);
      background: var(--section-surface);
    }
    .section.alt {
      background: var(--section-surface-alt);
    }
    .section.dark {
      background: var(--section-surface-dark);
      color: #f5f5f7;
      border-top: none;
    }
    .section.dark .lead {
      color: rgba(245, 245, 247, 0.78);
    }
    .section.dark .eyebrow {
      color: var(--accent);
    }
    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      position: relative;
      z-index: 1;
    }
    .button {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 22px;
      border-radius: 14px;
      font-weight: 600;
      border: 1px solid transparent;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .button.primary {
      background: linear-gradient(180deg, #1a90ff 0%, #0a84ff 100%);
      color: #fff;
      box-shadow: 0 18px 36px rgba(10, 132, 255, 0.3);
    }
    .button.secondary {
      background: rgba(255, 255, 255, 0.08);
      color: #f5f5f7;
      border-color: rgba(255, 255, 255, 0.18);
    }
    .button:hover {
      transform: translateY(-1px);
    }
    .footer {
      width: 100%;
      margin-top: 32px;
      padding-top: 24px;
      color: var(--muted);
      font-size: 14px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
      border-top: 1px solid var(--line);
    }
    .footer.footer--links-only {
      justify-content: flex-start;
    }
    .footer a {
      color: inherit;
    }
    @media (max-width: 600px) {
      .nav {
        padding: 12px 16px;
        top: 12px;
        margin: 12px auto 0;
        background: rgba(12, 12, 16, 0.75);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
      }
      .nav-link--icon {
        padding: 8px 10px;
      }
      body[data-design-system="homepage"] .nav-link--icon .nav-label {
        display: none;
      }
      body[data-design-system="homepage"] .nav-link--icon .nav-icon {
        display: inline-flex;
      }
      .page::before,
      .page::after {
        position: absolute;
      }
      .page::before {
        filter: none;
      }
    }
