:root {
  color-scheme: light;
  --ink: #1f2a2e;
  --muted: #5e6c72;
  --line: #d9e1e5;
  --paper: #ffffff;
  --soft: #edf3f5;
  --blue: #1f5b8f;
  --green: #2f8c6d;
  --gold: #b88746;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: #f7fafb;
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 6vw;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 15px;
}

nav a:hover {
  color: var(--blue);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  min-height: calc(100vh - 78px);
  align-items: center;
  gap: 48px;
  padding: 54px 6vw 42px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: 30px;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}

.button.primary {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.button.secondary {
  color: var(--blue);
  background: #fff;
}

.hero-media {
  margin: 0;
}

.hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(31, 42, 46, 0.16);
}

.section {
  padding: 76px 6vw;
}

.band {
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  min-height: 190px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.card p,
.service-list p,
.contact p {
  color: var(--muted);
}

.compact {
  min-height: 150px;
}

.status {
  display: inline-flex;
  margin-top: 12px;
  padding: 4px 10px;
  color: var(--gold);
  background: #fff8ed;
  border: 1px solid #edd5af;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.link-status:hover,
.text-link:hover {
  color: var(--blue);
  border-color: rgba(31, 91, 143, 0.36);
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 700;
}

.service-list {
  display: grid;
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-list > div {
  padding: 24px;
}

.service-list > div + div {
  border-top: 1px solid var(--line);
}

.contact {
  background: var(--paper);
}

.contact > div {
  max-width: 760px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 6vw;
  color: var(--muted);
  background: #1f2a2e;
}

.site-footer a {
  color: #d7edf5;
}

.footer-filings {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
}

.module-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 36px;
  align-items: center;
  padding: 62px 6vw 56px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.module-hero-copy {
  max-width: 860px;
}

.module-facts {
  display: grid;
  gap: 12px;
}

.module-facts div {
  padding: 20px;
  background: #f7fafb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.module-facts strong,
.module-facts span {
  display: block;
}

.module-facts strong {
  color: var(--blue);
  font-size: 30px;
  line-height: 1.15;
}

.module-facts span {
  margin-top: 6px;
  color: var(--muted);
}

.module-notice,
.module-disclaimer {
  background: var(--paper);
}

.module-notice > div,
.module-disclaimer > div {
  max-width: 920px;
}

.table-wrap {
  overflow-x: auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.matrix-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.matrix-table th,
.matrix-table td {
  padding: 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.matrix-table th {
  width: 18%;
  color: var(--ink);
  background: #edf3f5;
}

.matrix-table thead th {
  color: #fff;
  background: var(--blue);
}

.matrix-table tr:last-child th,
.matrix-table tr:last-child td {
  border-bottom: 0;
}

.workflow-grid,
.portal-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.workflow-grid article {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.workflow-grid ol {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.workflow-grid li + li {
  margin-top: 8px;
}

.portal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portal-grid a {
  display: block;
  min-height: 150px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.portal-grid a:hover {
  border-color: rgba(31, 91, 143, 0.42);
  box-shadow: 0 16px 42px rgba(31, 42, 46, 0.09);
}

.portal-grid strong,
.portal-grid span {
  display: block;
}

.portal-grid strong {
  color: var(--blue);
  font-size: 18px;
}

.portal-grid span {
  margin-top: 10px;
  color: var(--muted);
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .module-hero,
  .grid.three,
  .grid.four,
  .grid.five,
  .grid.two,
  .workflow-grid,
  .portal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .section,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  h1 {
    font-size: 38px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    justify-content: center;
  }
}

.home-page {
  --home-ink: #162024;
  --home-muted: #5d696d;
  --home-line: #d6dcda;
  --home-paper: #f6f8f7;
  --home-graphite: #111a1d;
  --home-green: #4f806d;
  --home-amber: #c29b5f;
  background: var(--home-paper);
  font-size: 16px;
}

.home-page .site-header {
  min-height: 72px;
  padding-top: 12px;
  padding-bottom: 12px;
  color: #f4f7f6;
  background: rgba(17, 26, 29, 0.97);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.home-page .brand-mark {
  width: 38px;
  height: 38px;
  color: #f4f7f6;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 6px;
}

.home-page .brand small {
  color: #9fabad;
  font-size: 13px;
}

.home-page nav {
  gap: 24px;
  color: #c0c8c9;
  font-size: 15px;
}

.home-page nav a:hover,
.home-page nav a:focus-visible {
  color: #ffffff;
}

.home-masthead {
  position: relative;
  display: flex;
  min-height: clamp(560px, calc(100svh - 185px), 720px);
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: var(--home-graphite);
}

.home-masthead-media,
.home-masthead-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-masthead-media {
  object-fit: cover;
  object-position: center;
}

.home-masthead-shade {
  background: rgba(8, 13, 15, 0.2);
}

.home-masthead-copy {
  position: relative;
  z-index: 1;
  width: min(760px, 62%);
  margin-left: 6vw;
  padding: 56px 0 88px;
}

.home-masthead-kicker,
.home-section-kicker {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-masthead-kicker {
  color: #9cc1b2;
}

.home-masthead h1 {
  margin-bottom: 14px;
  font-size: 64px;
  line-height: 1.04;
  letter-spacing: 0;
}

.home-masthead-statement {
  max-width: 640px;
  margin-bottom: 16px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.35;
}

.home-masthead-lead {
  max-width: 600px;
  margin-bottom: 0;
  color: #c8d0d0;
  font-size: 17px;
}

.home-masthead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.home-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.home-action-primary {
  color: #111a1d;
  background: #f3f6f5;
  border-color: #f3f6f5;
}

.home-action-primary:hover,
.home-action-primary:focus-visible {
  background: #ffffff;
}

.home-action-secondary {
  color: #f3f6f5;
  background: rgba(17, 26, 29, 0.44);
  border-color: rgba(255, 255, 255, 0.42);
}

.home-action-secondary:hover,
.home-action-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.72);
}

.home-masthead-index {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 6vw;
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 28px;
  color: #bcc7c7;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 15px;
}

.home-masthead-index span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.home-masthead-index span::before {
  width: 5px;
  height: 5px;
  background: var(--home-amber);
  content: "";
}

.home-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0 6vw;
  background: #ffffff;
  border-bottom: 1px solid var(--home-line);
}

.home-principles > div {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  min-height: 112px;
  align-content: center;
  column-gap: 14px;
  padding: 16px 28px 16px 0;
}

.home-principles > div + div {
  padding-left: 28px;
  border-left: 1px solid var(--home-line);
}

.home-principle-index {
  grid-row: 1 / 3;
  color: var(--home-green);
  font-size: 14px;
  font-weight: 700;
}

.home-principles strong {
  font-size: 18px;
}

.home-principles p {
  margin: 2px 0 0;
  color: var(--home-muted);
  font-size: 15px;
}

.home-workbench,
.home-research {
  padding: 84px 6vw;
}

.home-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 42px;
}

.home-section-kicker {
  color: var(--home-green);
}

.home-section-heading h2,
.home-framework h2,
.home-collaboration h2 {
  margin-bottom: 0;
  font-size: 34px;
  line-height: 1.25;
}

.home-section-heading > p {
  max-width: 440px;
  margin-bottom: 4px;
  color: var(--home-muted);
}

.home-workbench-list {
  border-top: 1px solid var(--home-ink);
}

.home-workbench-item {
  display: grid;
  grid-template-columns: 48px minmax(220px, 0.72fr) minmax(280px, 1fr) 24px;
  min-height: 108px;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--home-line);
  transition: background 160ms ease;
}

.home-workbench-item:hover,
.home-workbench-item:focus-visible {
  background: #ffffff;
}

.home-workbench-number {
  color: var(--home-green);
  font-size: 13px;
  font-weight: 700;
}

.home-workbench-title {
  display: grid;
  gap: 3px;
}

.home-workbench-title small,
.home-research-list small {
  color: var(--home-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.home-workbench-title strong {
  font-size: 20px;
}

.home-workbench-detail {
  color: var(--home-muted);
  font-size: 15px;
}

.home-workbench-arrow {
  color: var(--home-green);
  font-size: 20px;
  transition: transform 160ms ease;
}

.home-workbench-item:hover .home-workbench-arrow,
.home-workbench-item:focus-visible .home-workbench-arrow,
.home-research-list a:hover .home-workbench-arrow,
.home-research-list a:focus-visible .home-workbench-arrow {
  transform: translateX(4px);
}

.home-framework {
  padding: 92px 6vw 96px;
  color: #eef2f1;
  background: var(--home-graphite);
}

.home-framework-heading {
  max-width: 720px;
  margin-bottom: 52px;
}

.home-framework .home-section-kicker {
  color: #8eb4a5;
}

.home-framework-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.home-framework-grid article {
  min-height: 232px;
  padding: 28px 32px 12px 0;
}

.home-framework-grid article + article {
  padding-left: 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.home-framework-grid span {
  color: var(--home-amber);
  font-size: 13px;
  font-weight: 700;
}

.home-framework-grid h3 {
  margin-top: 42px;
  font-size: 26px;
}

.home-framework-grid p {
  max-width: 320px;
  margin-bottom: 0;
  color: #aeb8b9;
  font-size: 16px;
}

.home-research {
  background: #ffffff;
}

.home-inline-link {
  color: var(--home-green);
  font-size: 15px;
  font-weight: 700;
}

.home-inline-link::after {
  margin-left: 8px;
  content: "→";
}

.home-research-list {
  border-top: 1px solid var(--home-ink);
}

.home-research-list > a {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 24px;
  min-height: 114px;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--home-line);
}

.home-research-list img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 4px;
}

.home-research-list a > span:nth-child(2) {
  display: grid;
  gap: 5px;
}

.home-research-list strong {
  max-width: 900px;
  font-size: 18px;
  line-height: 1.45;
}

.home-collaboration {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.8fr) auto;
  align-items: center;
  gap: 48px;
  padding: 64px 6vw;
  background: #dfe7e3;
}

.home-collaboration p {
  margin-bottom: 0;
  color: #475357;
}

.home-action-dark {
  color: #ffffff;
  background: var(--home-graphite);
  border-color: var(--home-graphite);
}

.home-action-dark:hover,
.home-action-dark:focus-visible {
  color: var(--home-graphite);
  background: transparent;
}

.home-page .site-footer {
  color: #95a0a2;
  background: #0b1113;
}

.home-page .site-footer a {
  color: #c7d0d0;
}

@media (max-width: 920px) {
  .home-page .site-header {
    min-height: 68px;
    align-items: center;
    flex-direction: row;
  }

  .home-page nav {
    gap: 16px;
  }

  .home-page .nav-secondary {
    display: none;
  }

  .home-masthead {
    min-height: min(700px, calc(100svh - 104px));
  }

  .home-masthead-copy {
    width: min(680px, 78%);
    padding-bottom: 104px;
  }

  .home-masthead h1 {
    font-size: 56px;
  }

  .home-masthead-statement {
    font-size: 29px;
  }

  .home-workbench-item {
    grid-template-columns: 42px minmax(190px, 0.75fr) minmax(220px, 1fr) 20px;
    gap: 18px;
  }

  .home-collaboration {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .home-collaboration .home-action {
    justify-self: start;
  }
}

@media (max-width: 700px) {
  .home-page .site-header {
    padding-left: 20px;
    padding-right: 20px;
  }

  .home-page .brand small,
  .home-page nav a:not(:first-child):not(:last-child) {
    display: none;
  }

  .home-page nav {
    gap: 14px;
    font-size: 14px;
  }

  .home-masthead {
    min-height: min(680px, calc(100svh - 84px));
  }

  .home-masthead-media {
    object-position: 56% center;
  }

  .home-masthead-shade {
    background: rgba(8, 13, 15, 0.42);
  }

  .home-masthead-copy {
    width: calc(100% - 40px);
    margin-left: 20px;
    padding: 54px 0 108px;
  }

  .home-masthead h1 {
    font-size: 44px;
  }

  .home-masthead-statement {
    max-width: 480px;
    font-size: 25px;
  }

  .home-masthead-lead {
    max-width: 460px;
    font-size: 16px;
  }

  .home-masthead-index {
    left: 20px;
    gap: 18px;
    font-size: 13px;
  }

  .home-principles {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .home-principles > div,
  .home-principles > div + div {
    min-height: 92px;
    padding: 18px 0;
    border-left: 0;
  }

  .home-principles > div + div {
    border-top: 1px solid var(--home-line);
  }

  .home-workbench,
  .home-research,
  .home-framework {
    padding: 72px 20px;
  }

  .home-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
  }

  .home-section-heading h2,
  .home-framework h2,
  .home-collaboration h2 {
    font-size: 30px;
  }

  .home-section-heading > p {
    margin-bottom: 0;
  }

  .home-workbench-item {
    grid-template-columns: 32px minmax(0, 1fr) 20px;
    min-height: 116px;
    gap: 12px;
    padding: 16px 0;
  }

  .home-workbench-title {
    grid-column: 2;
  }

  .home-workbench-detail {
    grid-column: 2 / 4;
  }

  .home-workbench-arrow {
    grid-column: 3;
    grid-row: 1;
  }

  .home-framework-heading {
    margin-bottom: 34px;
  }

  .home-framework-grid {
    grid-template-columns: 1fr;
  }

  .home-framework-grid article,
  .home-framework-grid article + article {
    min-height: 0;
    padding: 26px 0 30px;
    border-left: 0;
  }

  .home-framework-grid article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .home-framework-grid h3 {
    margin-top: 24px;
  }

  .home-research-list > a {
    grid-template-columns: 66px minmax(0, 1fr) 18px;
    min-height: 108px;
    gap: 14px;
  }

  .home-research-list img {
    width: 58px;
    height: 58px;
  }

  .home-research-list strong {
    font-size: 16px;
  }

  .home-collaboration {
    grid-template-columns: 1fr;
    padding: 58px 20px;
  }
}

@media (max-width: 430px) {
  .home-page .brand strong {
    font-size: 16px;
  }

  .home-page .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .home-page nav a:first-child {
    display: none;
  }

  .home-masthead {
    min-height: 660px;
  }

  .home-masthead-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 236px;
  }

  .home-masthead-index span::before {
    display: none;
  }
}
