:root {
      --black: #07090c;
      --ink: #111111;
      --muted: #575757;
      --surface: #f7f7f4;
      --paper: #ffffff;
      --green: #111111;
      --green-dark: #111111;
      --gold: #fff200;
      --lime: #fff200;
      --cream: #ffffff;
      --line: rgba(17, 17, 17, 0.16);
      --white: #ffffff;
      --shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
      --radius: 8px;
      --max: 980px;
      --header-h: 76px;
      --header-peek: 0px;
      --font: Aptos, "Aptos Display", "Segoe UI", Arial, sans-serif;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--cream);
      font-family: var(--font);
      line-height: 1.68;
    }

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

    p, h1, h2, h3 { margin-top: 0; }

    p { margin-bottom: 1rem; }

    .container {
      width: min(var(--max), calc(100% - 48px));
      margin-inline: auto;
    }

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      min-height: var(--header-h);
      border-bottom: 0;
      background: transparent;
      backdrop-filter: none;
      box-shadow: none;
      transition: transform 0.32s ease;
    }

    .site-header.hide {
      transform: translateY(calc(-100% + var(--header-peek)));
    }

    .site-header.show {
      transform: translateY(0);
    }

    .header-trigger {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 110px;
      z-index: 900;
      background: transparent;
      pointer-events: auto;
    }

    .site-header .container {
      width: min(1440px, calc(100% - 48px));
    }

    .nav {
      min-height: var(--header-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--ink);
      font-weight: 900;
      letter-spacing: 0;
      text-shadow: none;
      transition: transform 0.18s ease;
    }

    .brand:hover {
      transform: translateY(-1px);
    }

    .header-brand-logo {
      gap: 0;
      padding: 3px 5px;
      border-radius: var(--radius);
      background: transparent;
      text-shadow: none;
      line-height: 0;
    }

    .header-logo-img {
      width: clamp(132px, 13vw, 192px);
      height: auto;
      filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.16));
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      min-height: 36px;
      margin-left: 8px;
      padding: 7px 13px;
      color: var(--ink);
      border: 1px solid currentColor;
      background: transparent;
      font-size: 0.95rem;
      line-height: 1;
      text-shadow: none;
      transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
    }

    .nav-cta:hover {
      color: var(--white);
      background: var(--black);
      transform: translateY(-1px);
    }

    main {
      padding: calc(var(--header-h) + 4px) 0 96px;
    }

    .legal-page-block {
      scroll-margin-top: 96px;
      margin-bottom: 42px;
      padding: 18px 0 42px;
      border-bottom: 1px solid var(--line);
    }

    .legal-page-block:last-child {
      margin-bottom: 0;
      border-bottom: 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 18px;
      color: var(--green);
      font-size: 0.78rem;
      font-weight: 850;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 42px;
      height: 2px;
      background: currentColor;
    }

    h1 {
      max-width: 820px;
      margin-bottom: 16px;
      font-size: clamp(1.7rem, 3.1vw, 2.65rem);
      line-height: 1.14;
    }

    .lead {
      max-width: 760px;
      color: var(--muted);
      font-size: 1.1rem;
    }

    .provider-summary {
      max-width: 820px;
      margin: 28px 0 30px;
      padding: 24px 26px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
    }

    .provider-summary h2 {
      margin-bottom: 16px;
      color: var(--green-dark);
      font-size: 1.25rem;
      line-height: 1.25;
    }

    .provider-list {
      display: grid;
      gap: 0;
      margin: 0;
    }

    .provider-list div {
      display: grid;
      grid-template-columns: minmax(160px, 0.34fr) minmax(0, 1fr);
      gap: 14px;
      padding: 10px 0;
      border-bottom: 1px solid var(--line);
    }

    .provider-list div:last-child {
      border-bottom: 0;
    }

    .provider-list dt {
      color: var(--ink);
      font-weight: 800;
    }

    .provider-list dd {
      margin: 0;
      color: var(--ink);
    }

    .legal-grid {
      display: grid;
      gap: 18px;
      margin-top: 32px;
    }

    .legal-flow {
      max-width: 820px;
      margin-top: 30px;
      padding: 0;
      color: var(--ink);
      font-size: 1.03rem;
    }

    .legal-flow h2 {
      margin: 28px 0 10px;
      color: var(--green-dark);
      font-size: 1.28rem;
      line-height: 1.25;
    }

    .legal-flow p {
      margin-bottom: 1.05rem;
    }

    .legal-section {
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
    }

    .legal-section h2 {
      margin-bottom: 14px;
      color: var(--green-dark);
      font-size: 1.35rem;
      line-height: 1.25;
    }

    .legal-list {
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .legal-list li {
      display: grid;
      grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1fr);
      gap: 14px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--line);
    }

    .legal-list li:last-child {
      padding-bottom: 0;
      border-bottom: 0;
    }

    .legal-list strong {
      color: var(--ink);
    }

    .legal-link,
    main a {
      color: var(--green-dark);
      font-weight: 800;
      border-bottom: 1px solid rgba(17, 17, 17, 0.32);
    }

@media (max-width: 720px) {
  .legal-section { padding: 22px; }
  .legal-list li { grid-template-columns: 1fr; }
  .provider-list div { grid-template-columns: 1fr; }
}

main a.legal-link {
  font-weight: 400;
}

/* v34: deploy header normalization */
.site-header,
.site-header.show,
.site-header.on-dark,
body.normal-scroll-mode .site-header,
body.normal-scroll-mode .site-header.show,
body.normal-scroll-mode .site-header.on-dark {
    background: transparent !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.site-header .nav,
.site-header .container.nav {
    width: min(1440px, calc(100% - 48px));
    height: var(--header-h);
    min-height: var(--header-h);
    margin-inline: auto;
    padding-inline: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(20px, 2.5vw, 34px);
}

.site-header .brand,
.site-header .header-brand-logo {
    width: clamp(132px, 13vw, 192px);
    min-width: clamp(132px, 13vw, 192px);
    margin: 0;
    padding: 0;
    background: transparent !important;
    border: 0;
    line-height: 0;
}

.site-header .brand img,
.site-header .header-logo-img {
    width: 100%;
    height: auto;
}

.site-header .contact-cta,
.site-header .nav-cta {
    flex: 0 0 auto;
    margin: 0;
}

@media (max-width: 640px) {
    .site-header .nav,
    .site-header .container.nav {
        width: min(100% - 28px, 1440px);
        gap: 16px;
    }

    .site-header .brand,
    .site-header .header-brand-logo {
        width: clamp(112px, 36vw, 150px);
        min-width: clamp(112px, 36vw, 150px);
    }
}



.legal-page-block h1 {
  margin-top: 0;
}
