    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --oz-green: #87C745;
      --oz-darker-green: #68A396;
      --oz-darkest-green: #186570;
      --brand: #0965d0;;
      --brand-dark: #005ecb;
      --okta-blue: #186570;
      --surface: #ffffff;
      --surface-2: #f7f8fc;
      --surface-3: #eef0f8;
      --border: #dde1ee;
      --text: #111827;
      --text-2: #4b5563;
      --text-3: #6b7280;
      --green: #16a34a;
      --red: #c32a2a;;
      --amber: #bc5211;
      --amber-bg: #fffbeb;
      --amber-border: #fde68a;
      --blue-bg: #eff6ff;
      --blue-border: #bfdbfe;
      --radius: 8px;
      --radius-lg: 12px;
      --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .05);
      --shadow: 0 4px 12px rgba(0, 0, 0, .08);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
      font-size: 16px;
      line-height: 1.5;
      color: var(--text);
      background: var(--surface-2);
    }

    /* ── Layout ── */
    .page-wrap {
      display: flex;
      min-height: 100vh;
    }

    /* ── Sidebar ── */
    .sidebar {
      width: 260px;
      flex-shrink: 0;
      background-color: #181919;
      color: #c8d4f0;
      position: sticky;
      top: 0;
      height: 100vh;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
    }

    .sidebar-brand {
      padding: 28px 24px 20px;
      border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .sidebar-brand img {
      width: 130px;
      display: block;
    }

    .sidebar-brand p {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .45);
      margin-top: 10px;
    }

    .sidebar nav {
      padding: 20px 0 28px;
      flex: 1;
    }

    .sidebar nav a {
      display: block;
      padding: 7px 24px;
      font-size: 13px;
      color: #c8d4f0;
      text-decoration: none;
      border-left: 2px solid transparent;
      transition: background .15s, border-color .15s, color .15s;
    }

    .sidebar nav a:hover {
      background: rgba(255, 255, 255, .06);
      color: #fff;
    }

    .sidebar nav a.active {
      border-left-color: var(--oz-green);
      color: #fff;
      background: rgba(255, 255, 255, .08);
    }

    .sidebar nav .nav-section {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .3);
      padding: 16px 24px 4px;
    }

    .sidebar nav .nav-sub {
      padding-left: 36px;
      font-size: 12.5px;
      color: rgba(200, 212, 240, .8);
    }

    /* ── Main content ── */
    .main {
      flex: 1;
      min-width: 0;
      padding: 48px 56px 80px;
      max-width: 900px;
    }

    /* ── Page header ── */
    .page-header {
      margin-bottom: 48px;
    }

    .page-header .eyebrow {
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .page-header h1 {
      font-size: 28px;
      font-weight: 500;
      color: var(--oz-darker-green);
      line-height: 1.2;
      margin-bottom: 12px;
    }

    .page-header h1 span {
      font-weight: 400;
      color: var(--text-2);
    }

    .page-header .subtitle {
      font-size: 15px;
      color: var(--text-2);
      max-width: 580px;
    }

    .meta-pills {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 20px;
    }

    .meta-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--surface-3);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 4px 12px;
      font-size: 12px;
      font-weight: 500;
      color: var(--text-2);
    }

    .meta-pill .label {
      color: var(--text-3);
      font-weight: 400;
    }

    /* ── Section headings ── */
    .section {
      margin-bottom: 56px;
    }

    .section-heading {
      display: flex;
      align-items: baseline;
      gap: 10px;
      margin-bottom: 24px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--border);
    }

    .section-num {
      /* font-size: 14px; */
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--oz-darkest-green);
      white-space: nowrap;
    }

    .section-heading h2 {
      font-size: 22px;
      font-weight: 700;
      color: var(--oz-darker-green);
    }

    h3 {
      font-size: 15px;
      font-weight: 650;
      color: var(--text);
      margin: 28px 0 10px;
    }

    p {
      margin-bottom: 12px;
      color: var(--text-2);
    }

    p:last-child {
      margin-bottom: 0;
    }

    ul,
    ol {
      padding-left: 20px;
      color: var(--text-2);
      margin-bottom: 12px;
    }

    li {
      margin-bottom: 6px;
    }

    li:last-child {
      margin-bottom: 0;
    }

    a {
      color: unset;
    }

    /* ── Callout boxes ── */
    .callout {
      border-radius: var(--radius);
      padding: 14px 18px;
      margin: 16px 0;
      font-size: 14px;
      line-height: 1.6;
    }

    .callout-title {
      font-weight: 700;
      font-size: 12px;
      letter-spacing: .06em;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    .callout.warning {
      background: var(--amber-bg);
      border: 1px solid var(--amber-border);
      color: var(--amber);
    }
    
    .callout.warning .callout-title {
      color: var(--amber);
    }

    .callout.info {
      background: var(--blue-bg);
      border: 1px solid var(--blue-border);
      color: var(--brand);
    }

    .callout.info .callout-title {
      color: var(--brand);
    }

    .callout.danger {
      background: #fef2f2;
      border: 1px solid #fecaca;
      color: var(--red);
    }

    .callout.danger .callout-title {
      color: var(--red);
    }

    /* ── Supported features table ── */
    .features-grid {
      display: grid;
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }

    .feature-row {
      display: grid;
      grid-template-columns: 36px 1fr auto;
      align-items: center;
      gap: 14px;
      padding: 13px 18px;
      background: var(--surface);
    }

    .feature-row:first-child {
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

    .feature-row:last-child {
      border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

    .feature-icon {
      font-size: 18px;
      text-align: center;
      line-height: 1;
    }

    .feature-name {
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
    }

    .feature-desc {
      font-size: 12.5px;
      color: var(--text-3);
      margin-top: 1px;
    }

    .feature-badge {
      font-size: 11px;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 20px;
      white-space: nowrap;
    }

    .badge-yes {
      background: #dcfce7;
      color: #15803d;
    }

    .badge-no {
      background: #f1f5f9;
      color: #64748b;
    }

    .badge-link {
      background: #eff6ff;
      color: #1d4ed8;
    }

    /* ── Steps ── */
    .steps {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .step {
      display: grid;
      grid-template-columns: 40px 1fr;
      gap: 0 20px;
      position: relative;
    }

    .step:not(:last-child) .step-line {
      position: absolute;
      left: 19px;
      top: 40px;
      bottom: 0;
      width: 2px;
      background: var(--border);
    }

    .step-num {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--okta-blue);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
    }

    .step-body {
      padding: 8px 0 32px;
    }

    .step-title {
      font-size: 15px;
      font-weight: 650;
      color: var(--text);
      margin-bottom: 8px;
      line-height: 1.3;
    }

    /* ── Config value blocks ── */
    .config-block {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      margin: 12px 0;
      box-shadow: var(--shadow-sm);
    }

    .config-row {
      display: grid;
      grid-template-columns: 220px 1fr;
      border-bottom: 1px solid var(--border);
    }

    .config-row:last-child {
      border-bottom: none;
    }

    .config-label {
      padding: 10px 14px;
      font-size: 12px;
      font-weight: 600;
      color: var(--text-3);
      background: var(--surface-2);
      border-right: 1px solid var(--border);
      display: flex;
      align-items: center;
    }

    .config-value {
      padding: 10px 14px;
      font-size: 13px;
      font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
      color: var(--text);
      word-break: break-all;
      display: flex;
      align-items: center;
    }

    /* ── Tables ── */
    .table-wrap {
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      margin: 16px 0;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      font-size: 13px;
    }

    thead {
      background: var(--surface-3);
    }

    th {
      text-align: left;
      padding: 10px 14px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--text-3);
      border-bottom: 1px solid var(--border);
    }

    td {
      padding: 10px 14px;
      border-bottom: 1px solid var(--border);
      color: var(--text-2);
      vertical-align: top;
    }

    tr:last-child td {
      border-bottom: none;
    }

    tr:nth-child(even) td {
      background: var(--surface-2);
    }

    code {
      font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
      font-size: .95em;
      background: var(--surface-3);
      border: 1px solid var(--border);
      padding: 1px 5px;
      border-radius: 4px;
      /* color: var(--okta-blue); */
    }

    .required-badge {
      font-size: 12px;
      font-weight: 500;
      padding: 2px 6px;
      border-radius: 4px;
      background: #fef3c7;
      color: #92400e;
      border: 1px solid #fde68a;
    }

    /* ── Sub-section divider ── */
    .sub-divider {
      border: none;
      border-top: 1px dashed var(--border);
      margin: 36px 0;
    }

    /* ── Troubleshoot entries ── */
    .trouble-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .trouble-item {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 16px 20px;
      box-shadow: var(--shadow-sm);
    }

    .trouble-q {
      font-size: 15px;
      font-weight: 650;
      color: var(--text);
      margin-bottom: 6px;
    }

    .trouble-a {
      font-size: 15px;
      color: var(--text-2);
      line-height: 1.6;
    }

    /* ── Responsive ── */
    @media (max-width: 768px) {
      .sidebar {
        display: none;
      }

      .main {
        padding: 28px 20px 60px;
      }

      .config-row {
        grid-template-columns: 1fr;
      }

      .config-label {
        border-right: none;
        border-bottom: 1px solid var(--border);
      }
    }