@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");

/* =========================================================
   RMPL HOMEPAGE — APPROVED LIGHT VISUAL SYSTEM
   Source of truth for homepage palette + diagrams
========================================================= */

:root {
  --bg: #ffffff;
  --bg-alt: #f2f7fb;

  --navy: #0b2a45;
  --text: #55657a;
  --muted: #8592a3;

  --green: #16a673;
  --green-2: #12c47a;

  --blue: #1e7fe0;
  --cyan: #31a6ff;

  --border: #e1e9f0;
  --border-soft: #eef3f8;

  --card: #ffffff;
  --max: 1440px;

  --shadow: 0 12px 34px rgba(11, 42, 69, .06);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--navy);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

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

/* =========================================================
   NAVBAR
========================================================= */

.site-header {
  height: 116px;
  position: relative;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border);
}

.nav-shell {
  width: min(calc(100% - 76px), var(--max));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  flex: 0 0 180px;
  display: flex;
  align-items: center;
}

.brand-logo {
  width: 220px;
  height: 90px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2vw, 32px);
  white-space: nowrap;
}

.main-nav > a,
.nav-dropdown-trigger {
  position: relative;
  padding: 10px 0;
  color: var(--navy);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  background: none;
  border: 0;
  cursor: pointer;
}

.main-nav > a:hover,
.main-nav > a.active,
.nav-dropdown-trigger:hover {
  color: var(--green);
}

.main-nav > a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: var(--blue);
}

.nav-dropdown {
  position: relative;
}

.dropdown-arrow {
  display: inline-block;
  margin-left: 5px;
  transition: transform .3s ease;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown:focus-within .dropdown-arrow,
.nav-dropdown.is-open .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  width: 280px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(11,42,69,.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity .25s ease, visibility .25s ease, transform .3s ease;
}

.nav-dropdown:hover > .dropdown-menu,
.nav-dropdown:focus-within > .dropdown-menu,
.nav-dropdown.is-open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-item,
.submenu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  color: var(--navy);
  background: transparent;
  border: 0;
  border-radius: 7px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, padding-left .25s ease;
}

.dropdown-item:hover,
.submenu-item:hover {
  color: var(--green);
  background: rgba(22,166,115,.07);
  padding-left: 21px;
}

.dropdown-submenu {
  position: relative;
}

.submenu-arrow {
  font-size: 20px;
  color: var(--muted);
  transition: transform .25s ease, color .25s ease;
}

.dropdown-submenu:hover .submenu-arrow,
.dropdown-submenu:focus-within .submenu-arrow,
.dropdown-submenu.is-open .submenu-arrow {
  color: var(--green);
  transform: translateX(3px);
}

.submenu-menu {
  position: absolute;
  top: -8px;
  left: calc(100% + 8px);
  width: 310px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(11,42,69,.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-8px);
  transition: opacity .25s ease, visibility .25s ease, transform .3s ease;
}

.dropdown-submenu:hover > .submenu-menu,
.dropdown-submenu:focus-within > .submenu-menu,
.dropdown-submenu.is-open > .submenu-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px !important;
  background: var(--blue) !important;
  color: #fff !important;
  border: 1px solid var(--blue) !important;
  border-radius: 9px;
  font-weight: 700 !important;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}

.nav-cta:hover {
  background: var(--navy) !important;
  border-color: var(--navy) !important;
  transform: translateY(-1px);
}

.mobile-menu {
  display: none;
  border: 0;
  background: none;
  color: var(--navy);
  font-size: 24px;
  cursor: pointer;
}

/* =========================================================
   HERO
========================================================= */

.hero {
  padding: 0;
  overflow: hidden;
  background: var(--bg-alt);
}

.hero-shell {
  width: min(100%, var(--max));
  min-height: 545px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: stretch;
}

.hero-copy {
  padding: 55px 15px 40px 18px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 4.7vw, 5rem);
  line-height: 1.01;
  letter-spacing: -.045em;
  font-weight: 700;
  color: var(--navy);
}

.green {
  color: var(--green);
  font-weight: 700;
}

.blue {
  color: var(--blue);
  font-weight: 700;
}

.hero-rule {
  width: 40px;
  height: 2px;
  margin: 28px 0 17px;
  background: var(--green);
}

.hero-copy p {
  max-width: 520px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.7;
}

.hero-button {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 11px 18px;
  border: 1px solid var(--blue);
  border-radius: 9px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
}

.hero-button:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(11,42,69,.12);
}

.hero-button span {
  font-size: 23px;
  line-height: .7;
  font-weight: 500;
}

.hero-art {
  width: 100%;
  min-height: 545px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  position: relative;
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* =========================================================
   SHARED SECTION CARD
========================================================= */

.section-card {
  width: min(calc(100% - 36px), var(--max));
  margin: 10px auto 0;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--shadow);
}

/* =========================================================
   CONTACT FORM
========================================================= */

.contact-section {
  padding: 28px 42px 40px;
  background: linear-gradient(180deg, #f6fbff 0%, #fff 100%);
}

.contact-intro {
  max-width: 620px;
  margin: 18px auto 28px;
  text-align: center;
}

.contact-intro h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -.02em;
}

.contact-intro p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
}

.contact-form {
  max-width: 780px;
  margin: 0 auto;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-field > span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: #fff;
  color: var(--navy);
  font-family: inherit;
  font-size: 14px;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,127,224,.12);
}

.contact-field textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-submit {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  width: 100%;
  justify-content: center;
  border: 1px solid var(--blue);
  border-radius: 9px;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
}

.contact-submit:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(11,42,69,.12);
}

.contact-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

.contact-submit span {
  font-size: 18px;
  line-height: .7;
}

.form-status {
  margin: 14px 0 0;
  min-height: 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 760px) {
  .contact-section { padding: 24px 20px 30px; }
  .contact-form-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.section-heading > span {
  width: 82px;
  height: 1px;
  background: rgba(22,166,115,.45);
}

.section-heading p {
  margin: 0;
  color: var(--blue);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 1.3px;
}

/* =========================================================
   MISSION
========================================================= */

.mission {
  padding: 28px 42px 32px;
  background: linear-gradient(180deg, #f8fcfb 0%, #eef9f6 100%);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 18px;
}

.mission-item {
  min-height: 155px;
  padding: 0 22px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.mission-item:last-child {
  border-right: 0;
}

.mission-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 13px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 14px;
  background: #fff;
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}

.mission-item:hover .mission-icon {
  transform: translateY(-5px) scale(1.05);
  background: rgba(22,166,115,.07);
  box-shadow: 0 0 25px rgba(22,166,115,.16);
}

.mission-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.5;
}

.green-item .mission-icon,
.green-item h3 {
  color: var(--green);
}

.blue-item .mission-icon,
.blue-item h3 {
  color: var(--blue);
}

.mission-item h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
}

.mission-item p {
  margin: 8px 0 0;
  color: var(--navy);
  font-size: 12px;
  line-height: 1.55;
}

/* =========================================================
   VISION
========================================================= */

.vision {
  padding: 24px 42px 34px;
  text-align: center;
  background:
    radial-gradient(circle at 90% 70%, rgba(49,166,255,.08), transparent 26%),
    linear-gradient(180deg, #fff 0%, #f5fbff 100%);
}

.vision-text {
  max-width: 900px;
  margin: 11px auto 30px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.65;
}

.vision-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.vision-node {
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.node-circle {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  background: #fff;
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}

.green-node:hover .node-circle {
  transform: translateY(-5px) scale(1.05);
  background: rgba(22,166,115,.08);
  box-shadow: 0 0 25px rgba(22,166,115,.18);
}

.blue-node:hover .node-circle {
  transform: translateY(-5px) scale(1.05);
  background: rgba(30,127,224,.08);
  box-shadow: 0 0 25px rgba(30,127,224,.18);
}

.node-circle svg {
  width: 29px;
  height: 29px;
  stroke-width: 1.5;
}

.vision-node span {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.vision-node small {
  margin-top: 2px;
  color: var(--navy);
  font-size: 10px;
  line-height: 1.3;
}

.green-node {
  color: var(--green);
}

.blue-node {
  color: var(--blue);
}

.flow-line {
  width: 68px;
  height: 2px;
  flex: 0 0 auto;
}

.green-line {
  background: var(--green);
}

.blue-line {
  background: var(--blue);
}

/* =========================================================
   TWO DIVISIONS
========================================================= */

.divisions {
  padding: 24px 0 34px;
  background:
    radial-gradient(ellipse 800px 400px at 15% 0%, rgba(30,127,224,.05), transparent 70%),
    radial-gradient(ellipse 800px 400px at 85% 100%, rgba(22,166,115,.05), transparent 70%),
    #fff;
}

.divisions-header {
  text-align: center;
  padding: 0 24px 24px;
}

.divisions-eyebrow {
  color: var(--blue);
  font-size: 12px;
  letter-spacing: .2em;
  font-weight: 700;
  margin-bottom: 8px;
}

.divisions-header h2 {
  margin: 0 0 9px;
  color: var(--navy);
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -.02em;
}

.divisions-header p {
  margin: 0 auto;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.55;
}

.division-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 0 24px;
}

.division {
  --accent: var(--blue);
  --accent-soft: rgba(30,127,224,.08);
  min-width: 0;
  padding: 24px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.process-division {
  --accent: var(--blue);
  --accent-soft: rgba(30,127,224,.08);
  background: linear-gradient(180deg, #f6fbff 0%, #fff 100%);
}

.health-division {
  --accent: var(--green);
  --accent-soft: rgba(22,166,115,.08);
  background: linear-gradient(180deg, #f7fcf9 0%, #fff 100%);
}

.division-header {
  text-align: center;
  margin-bottom: 0;
  max-width: 430px;
}

.division-kicker {
  font-size: 11px;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
}

.division-header h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -.02em;
}

.division-header p {
  margin: 0;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.45;
}

/* =========================================================
   CIRCULAR DIAGRAM SYSTEM
========================================================= */

.diagram-wrap {
  position: relative;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 1 / 1;
  margin: 12px auto 0;
  overflow: visible;
}

.diagram-ring {
  position: absolute;
  width: 62%;
  height: 62%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid var(--border);
  box-shadow:
    0 0 30px rgba(30,127,224,.03),
    inset 0 0 25px rgba(30,127,224,.02);
  pointer-events: none;
}

.process-division .diagram-ring {
  border-color: rgba(30,127,224,.3);
  box-shadow:
    0 0 35px rgba(30,127,224,.06),
    inset 0 0 30px rgba(30,127,224,.02);
}

.health-division .diagram-ring {
  border-color: rgba(22,166,115,.3);
  box-shadow:
    0 0 35px rgba(22,166,115,.06),
    inset 0 0 30px rgba(22,166,115,.02);
}

.diagram-ring::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px dashed var(--border);
}

.diagram-center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 28%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f9fcff, #eef6fb 72%);
  border: 1px solid var(--accent);
  box-shadow: 0 12px 30px -8px rgba(11,42,69,.14);
  z-index: 2;
}

.diagram-center-inner {
  text-align: center;
  color: var(--navy);
  line-height: 1.2;
}

.diagram-center-inner strong {
  display: block;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: .04em;
}

.diagram-center-inner small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 7px;
  line-height: 1.35;
  letter-spacing: .12em;
  font-weight: 600;
}

.diagram-item {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 108px;
  transform:
    translate(-50%, -50%)
    rotate(var(--angle))
    translateY(-210px)
    rotate(calc(var(--angle) * -1));
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 10;
  cursor: pointer;
}

.process-diagram .diagram-item {
  width: 108px;
  transform:
    translate(-50%, -50%)
    rotate(var(--angle))
    translateY(-208px)
    rotate(calc(var(--angle) * -1));
}

.health-diagram .diagram-item {
  width: 116px;
  transform:
    translate(-50%, -50%)
    rotate(var(--angle))
    translateY(-196px)
    rotate(calc(var(--angle) * -1));
}

.diagram-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--muted);
  box-shadow: 0 8px 18px rgba(11,42,69,.08);
  transition: color .35s ease, border-color .35s ease, background .35s ease, transform .35s ease, box-shadow .35s ease;
}

.diagram-icon svg {
  width: 27px;
  height: 27px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.diagram-item:hover {
  z-index: 100;
}

.diagram-item:hover .diagram-icon {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-soft);
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 0 22px -4px var(--accent);
}

.diagram-item > span {
  display: block;
  margin-top: 9px;
  width: 120px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
  font-weight: 600;
  text-align: center;
  transition: color .35s ease, font-weight .35s ease;
}

.diagram-item:hover > span {
  color: var(--navy);
  font-weight: 700;
}

.diagram-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 15px);
  width: 255px;
  padding: 15px 17px;
  background: #0b2a45;
  border: 1px solid var(--accent);
  border-radius: 11px;
  box-shadow: 0 18px 38px -14px rgba(11,42,69,.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px) scale(.97);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  z-index: 200;
}

.diagram-item:hover .diagram-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
}

.diagram-tooltip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
}

.diagram-tooltip p {
  margin: 0;
  color: #dbe7f0;
  font-size: 11px;
  line-height: 1.55;
  text-align: center;
}

/* PTS tooltip — lighter blue background, white bold text */
.process-diagram .diagram-tooltip {
  background: var(--blue);
  border: 1px solid rgba(255,255,255,.3);
}

.process-diagram .diagram-tooltip strong {
  color: #fff;
  font-weight: 600;
}

.process-diagram .diagram-tooltip p {
  color: #fff;
}

/* HMS tooltip — logo green background, white bold text */
.health-diagram .diagram-tooltip {
  background: var(--green);
  border: 1px solid rgba(255,255,255,.3);
}

.health-diagram .diagram-tooltip strong {
  color: #fff;
  font-weight: 600;
}

.health-diagram .diagram-tooltip p {
  color: #fff;
}

/* PROCESS — 12 POSITIONS */
.process-diagram .item-1  { --angle: 0deg; }
.process-diagram .item-2  { --angle: 30deg; }
.process-diagram .item-3  { --angle: 60deg; }
.process-diagram .item-4  { --angle: 90deg; }
.process-diagram .item-5  { --angle: 120deg; }
.process-diagram .item-6  { --angle: 150deg; }
.process-diagram .item-7  { --angle: 180deg; }
.process-diagram .item-8  { --angle: 210deg; }
.process-diagram .item-9  { --angle: 240deg; }
.process-diagram .item-10 { --angle: 270deg; }
.process-diagram .item-11 { --angle: 300deg; }
.process-diagram .item-12 { --angle: 330deg; }

/* HEALTHCARE — 8 POSITIONS */
.health-diagram .item-1  { --angle: 0deg; }
.health-diagram .item-2  { --angle: 45deg; }
.health-diagram .item-3  { --angle: 90deg; }
.health-diagram .item-4  { --angle: 135deg; }
.health-diagram .item-5  { --angle: 180deg; }
.health-diagram .item-6  { --angle: 225deg; }
.health-diagram .item-7  { --angle: 270deg; }
.health-diagram .item-8  { --angle: 315deg; }

/* =========================================================
   DIVISION BUTTON
========================================================= */

.division-button {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 23px;
  border-radius: 9px;
  border: 1px solid var(--accent);
  color: #fff;
  background: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.division-button:hover {
  transform: translateY(-2px);
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 8px 20px rgba(11,42,69,.12);
}

.division-button span {
  font-size: 18px;
  line-height: 1;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  margin-top: 10px;
  padding: 35px max(30px, calc((100% - var(--max)) / 2));
  background: var(--navy);
  color: #dbe7f0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.footer-brand img {
  width: 150px;
  height: auto;
 border-radius: 2%;
  margin-bottom: 7px;
}

.footer-brand p {
  margin: 0;
  color: #b9c8d6;
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  font-size: 12px;
  font-weight: 600;
  color: #c4d4e0;
}

.footer-links a:hover {
  color: var(--green-2);
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #9fb2c2;
  font-size: 10px;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1180px) {
  .nav-shell {
    width: calc(100% - 40px);
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav > a,
  .nav-dropdown-trigger {
    font-size: 12px;
  }

  .hero-shell {
    grid-template-columns: 42% 58%;
    min-height: 500px;
  }

  .hero-art {
    min-height: 500px;
  }

  .brand {
    flex-basis: 160px;
  }

  .division-grid {
    grid-template-columns: 1fr;
  }

  .division {
    padding-bottom: 28px;
  }
}

@media (max-width: 980px) {
  .site-header {
    height: 96px;
  }

  .brand-logo {
    width: 200px;
    height: 72px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 50px 30px 30px;
  }

  .hero h1 {
    max-width: 750px;
    font-size: clamp(3rem, 7vw, 4.5rem);
  }

  .hero-art {
    height: 520px;
    min-height: 520px;
  }

  .mission-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 30px;
  }

  .mission-item:nth-child(3) {
    border-right: 0;
  }

  .vision-flow {
    flex-wrap: wrap;
    gap: 18px;
  }

  .flow-line {
    width: 40px;
  }

  .diagram-wrap {
    max-width: 510px;
  }

  .process-diagram .diagram-item {
    transform:
      translate(-50%, -50%)
      rotate(var(--angle))
      translateY(-195px)
      rotate(calc(var(--angle) * -1));
  }

  .health-diagram .diagram-item {
    transform:
      translate(-50%, -50%)
      rotate(var(--angle))
      translateY(-184px)
      rotate(calc(var(--angle) * -1));
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {
  .site-header {
    height: 82px;
  }

  .nav-shell {
    width: calc(100% - 30px);
  }

  .brand {
    flex-basis: 150px;
  }

  .brand-logo {
    width: 145px;
    height: 62px;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    padding: 10px 18px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 25px rgba(11,42,69,.08);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav > a,
  .nav-dropdown-trigger {
    padding: 13px 6px;
    border-bottom: 1px solid var(--border);
    text-align: left;
  }

  .main-nav .nav-cta {
    margin-top: 10px;
    text-align: center;
    justify-content: center;
  }

  .mobile-menu {
    display: block;
  }

  .dropdown-menu,
  .submenu-menu {
    position: static;
    width: 100%;
    margin-top: 5px;
    transform: none;
    box-shadow: none;
  }

  .nav-dropdown:hover > .dropdown-menu,
  .nav-dropdown:focus-within > .dropdown-menu,
  .nav-dropdown.is-open > .dropdown-menu {
    transform: none;
  }

  .submenu-menu {
    margin-left: 0;
    padding-left: 16px;
  }

  .section-card {
    width: min(calc(100% - 20px), var(--max));
    border-radius: 12px;
  }

  .hero-copy {
    padding: 42px 22px 26px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 11vw, 4rem);
  }

  .hero-copy p {
    font-size: 14px;
  }

  .hero-art {
    min-height: 360px;
    height: 360px;
  }

  .mission,
  .vision {
    padding-left: 18px;
    padding-right: 18px;
  }

  .mission-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mission-item {
    padding: 0 12px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .mission-item:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .mission-item:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .mission-item:last-child {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .vision-text {
    font-size: 14px;
  }

  .vision-flow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 10px;
  }

  .flow-line {
    display: none;
  }

  .vision-node {
    min-width: 0;
  }

  .divisions {
    padding-bottom: 24px;
  }

  .division-grid {
    padding: 0 12px;
  }

  .division {
    padding: 20px 8px 24px;
  }

  .diagram-wrap {
    max-width: 350px;
  }

  .process-diagram .diagram-item {
    width: 67px;
    transform:
      translate(-50%, -50%)
      rotate(var(--angle))
      translateY(-132px)
      rotate(calc(var(--angle) * -1));
  }

  .health-diagram .diagram-item {
    width: 74px;
    transform:
      translate(-50%, -50%)
      rotate(var(--angle))
      translateY(-128px)
      rotate(calc(var(--angle) * -1));
  }

  .diagram-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
  }

  .diagram-icon svg {
    width: 18px;
    height: 18px;
  }

  .diagram-item > span {
    width: 75px;
    font-size: 7.5px;
    line-height: 1.3;
  }

  .diagram-center {
    width: 29%;
  }

  .diagram-center-inner strong {
    font-size: 19px;
  }

  .diagram-center-inner small {
    font-size: 5.5px;
  }

  .diagram-tooltip {
    width: 195px;
    padding: 12px 13px;
  }

  .diagram-tooltip strong {
    font-size: 10.5px;
  }

  .diagram-tooltip p {
    font-size: 9.5px;
  }

  .footer-inner,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}