  :root {
    --ink: #172033;
    --ink-soft: #354156;
    --muted: #667286;
    --line: #dfe5ee;
    --line-strong: #c6d0df;
    --bg: #ffffff;
    --band: #f5f8fb;
    --panel: #ffffff;
    --navy: #183b6b;
    --teal: #0f766e;
    --teal-dark: #115e59;
    --gold: #a16207;
    --rose: #9f1239;
  }
  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
  }
  a { color: var(--teal-dark); text-decoration: none; }
  a:hover { text-decoration: underline; }
  .wrap {
    width: min(1040px, calc(100% - 40px));
    margin: 0 auto;
    min-width: 0;
  }
  header {
    border-bottom: 1px solid var(--line);
    background: #ffffff;
  }
  .brand-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    min-height: 76px;
  }
  .brand img {
    display: block;
    height: 43px;
    width: auto;
    max-width: 100%;
  }
  nav.top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    flex-wrap: wrap;
  }
  nav.top a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 7px 10px;
    border-radius: 6px;
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
    white-space: nowrap;
  }
  nav.top a:hover {
    background: var(--band);
    color: var(--teal-dark);
  }
  nav.top a.nav-contact {
    border: 1px solid var(--line);
    color: var(--teal-dark);
  }
  main { overflow: hidden; }
  .hero {
    padding: 56px 0 42px;
    border-bottom: 1px solid var(--line);
  }
  .eyebrow {
    margin: 0 0 12px;
    color: var(--teal-dark);
    font-size: 13px;
    font-weight: 780;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  h1 {
    margin: 0;
    max-width: 850px;
    color: var(--navy);
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.05;
    font-weight: 780;
    letter-spacing: 0;
    overflow-wrap: anywhere;
  }
  .lede {
    max-width: 760px;
    margin: 18px 0 0;
    color: var(--ink-soft);
    font-size: 20px;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }
  .hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
  }
  .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 1px solid var(--teal);
    border-radius: 6px;
    padding: 10px 15px;
    background: var(--teal);
    color: #ffffff;
    font-size: 14px;
    font-weight: 760;
    text-decoration: none;
    white-space: nowrap;
  }
  .button:hover {
    background: var(--teal-dark);
    color: #ffffff;
    text-decoration: none;
  }
  .button.secondary {
    border-color: var(--line-strong);
    background: #ffffff;
    color: var(--ink-soft);
  }
  .button.secondary:hover {
    border-color: var(--teal);
    color: var(--teal-dark);
    background: #f4fbfa;
  }
  section {
    padding: 50px 0;
    border-bottom: 1px solid var(--line);
  }
  section:last-of-type { border-bottom: 0; }
  .band { background: var(--band); }
  .section-head {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
    margin-bottom: 24px;
  }
  h2 {
    margin: 0;
    color: var(--navy);
    font-size: 29px;
    line-height: 1.18;
    letter-spacing: 0;
  }
  .section-head p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
  }
  .grid-4,
  .grid-3,
  .grid-2 {
    display: grid;
    gap: 14px;
  }
  .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 20px;
    background: var(--panel);
    min-width: 0;
  }
  .panel h3 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 17px;
    line-height: 1.3;
  }
  .panel p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
  }
  .panel p + p { margin-top: 10px; }
  .panel-link {
    display: inline-flex;
    margin-top: 13px;
    color: var(--teal-dark);
    font-size: 13px;
    font-weight: 760;
  }
  .list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .list li {
    border-bottom: 1px solid var(--line);
    padding: 0 0 10px;
    color: var(--ink-soft);
    font-size: 15px;
  }
  .list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 36px;
    align-items: start;
  }
  .proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
  .proof-item {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px;
    background: #ffffff;
  }
  .proof-item strong {
    display: block;
    color: var(--navy);
    font-size: 26px;
    line-height: 1.1;
  }
  .proof-item span {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
  }
  footer {
    border-top: 1px solid var(--line);
    padding: 26px 0 44px;
    color: var(--muted);
    font-size: 13px;
  }
  footer .wrap {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }
  footer a {
    color: var(--muted);
    text-decoration: underline;
  }
  @media (max-width: 920px) {
    .section-head,
    .split {
      grid-template-columns: 1fr;
    }
    .grid-4,
    .proof-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  @media (max-width: 720px) {
    .wrap {
      width: min(100% - 28px, 1040px);
    }
    .brand-row {
      display: block;
      padding: 16px 0;
    }
    nav.top {
      justify-content: flex-start;
      margin-top: 12px;
    }
    .grid-4,
    .grid-3,
    .grid-2,
    .proof-grid {
      grid-template-columns: 1fr;
    }
  }
  @media (max-width: 560px) {
    h1 {
      font-size: 30px;
      line-height: 1.16;
      width: 100%;
      max-width: calc(100vw - 28px);
    }
    .lede {
      width: 100%;
      max-width: calc(100vw - 28px);
      font-size: 18px;
    }
    .panel {
      max-width: calc(100vw - 28px);
    }
    .hero-actions .button {
      flex: 1 0 100%;
      width: 100%;
      white-space: normal;
      text-align: center;
    }
    nav.top a.nav-hide-mobile {
      display: none;
    }
    nav.top a.nav-contact {
      display: none;
    }
    nav.top a {
      flex: 0 1 auto;
      min-width: 0;
      padding: 6px 8px;
      font-size: 12px;
      white-space: normal;
    }
  }
