:root {
  --navy: #0b2d4d;
  --blue: #145d8f;
  --blue-2: #2e7fac;
  --sky: #eaf5fa;
  --mint: #dff4ec;
  --green: #19856d;
  --ink: #183447;
  --muted: #5f7482;
  --line: #dce7ec;
  --white: #ffffff;
  --off-white: #f7fafb;
  --shadow: 0 22px 60px rgba(12, 51, 75, 0.11);
  --radius: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(46, 127, 172, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 72px 0;
}

.section-soft {
  background: var(--off-white);
}

.section-blue {
  background: var(--sky);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  content: "";
  background: var(--green);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-weight: 750;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 3.6vw, 3.3rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.24rem;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.07rem, 2vw, 1.28rem);
  line-height: 1.72;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 52px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 25px rgba(20, 93, 143, 0.22);
}

.btn-primary:hover {
  background: var(--navy);
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--blue-2);
}

.btn-light {
  color: var(--navy);
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-weight: 750;
}

.text-link::after {
  content: "\2192";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(220, 231, 236, 0.8);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.brand-logo {
  display: block;
  width: 196px;
  height: auto;
}

.brand-logo-reversed {
  width: 205px;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  overflow: hidden;
  background: var(--navy);
  border-radius: 9px;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
}

.brand-mark::before {
  top: 15px;
  left: 5px;
  width: 24px;
  height: 4px;
  background: var(--white);
  clip-path: polygon(0 35%, 24% 35%, 33% 0, 45% 100%, 57% 38%, 100% 38%, 100% 63%, 62% 63%, 45% 100%, 32% 36%, 28% 63%, 0 63%);
}

.brand-mark::after {
  right: 0;
  bottom: 0;
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 8px 0 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links > a,
.nav-dropdown > button,
.nav-dropdown-label {
  padding: 10px 11px;
  color: #345366;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 650;
}

.nav-links > a:hover,
.nav-links > a.active,
.nav-dropdown > button:hover,
.nav-dropdown-label:hover {
  color: var(--blue);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button::after,
.nav-dropdown-label::after {
  display: inline-block;
  margin-left: 6px;
  content: "\2304";
  transform: translateY(-2px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  display: grid;
  width: 265px;
  max-height: min(70vh, 390px);
  padding: 10px;
  overflow-y: auto;
  visibility: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translate(-50%, -8px);
  transition: 160ms ease;
}

.dropdown-menu a {
  padding: 11px 13px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 650;
}

.dropdown-menu a:hover {
  color: var(--blue);
  background: var(--sky);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.nav-cta {
  margin-left: 8px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 9px;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  content: "";
  background: var(--navy);
  transition: 180ms ease;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before {
  position: absolute;
  top: -6px;
}

.menu-toggle span::after {
  position: absolute;
  top: 6px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 106px;
  background:
    radial-gradient(circle at 80% 10%, rgba(67, 165, 173, 0.18), transparent 28%),
    linear-gradient(150deg, #f8fbfc 10%, #edf7fa 100%);
}

.hero::after {
  position: absolute;
  right: -80px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(20, 93, 143, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(20, 93, 143, 0.025), 0 0 0 140px rgba(20, 93, 143, 0.018);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 64px;
}

.hero-copy h1 {
  max-width: 720px;
}

.hero-copy .lead {
  max-width: 680px;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
  color: #496674;
  font-size: 0.86rem;
  font-weight: 700;
}

.trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-line span::before {
  width: 7px;
  height: 7px;
  content: "";
  background: var(--green);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.dashboard {
  position: absolute;
  top: 22px;
  right: 0;
  width: min(100%, 500px);
  padding: 20px;
  background: var(--white);
  border: 1px solid rgba(220, 231, 236, 0.9);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.dashboard-title {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 800;
}

.status-pill {
  padding: 5px 9px;
  color: var(--green);
  background: var(--mint);
  border-radius: 99px;
  font-size: 0.67rem;
  font-weight: 800;
  text-transform: uppercase;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.metric {
  padding: 13px;
  background: var(--off-white);
  border-radius: 11px;
}

.metric small {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.66rem;
}

.metric strong {
  color: var(--navy);
  font-size: 1.2rem;
}

.metric em {
  display: block;
  color: var(--green);
  font-size: 0.66rem;
  font-style: normal;
}

.chart {
  position: relative;
  height: 145px;
  margin-top: 16px;
  overflow: hidden;
  background: linear-gradient(#f7fafb 1px, transparent 1px);
  background-size: 100% 36px;
  border-radius: 10px;
}

.chart svg {
  position: absolute;
  inset: 10px 0 0;
  width: 100%;
  height: 125px;
}

.patient-card {
  position: absolute;
  right: 325px;
  bottom: 20px;
  width: 220px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(12, 51, 75, 0.14);
}

.patient-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--blue);
  background: var(--sky);
  border-radius: 50%;
  font-size: 0.74rem;
  font-weight: 800;
}

.patient-card strong {
  display: block;
  color: var(--navy);
  font-size: 0.78rem;
}

.patient-card small {
  color: var(--muted);
  font-size: 0.65rem;
}

.risk-bar {
  height: 6px;
  margin: 12px 0 7px;
  overflow: hidden;
  background: #e8eef1;
  border-radius: 99px;
}

.risk-bar span {
  display: block;
  width: 76%;
  height: 100%;
  background: #e39c54;
}

.risk-label {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 700;
}

.logo-strip {
  padding: 24px 0;
  border-block: 1px solid var(--line);
}

.logo-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wordmarks {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  color: #71838e;
  font-weight: 800;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover {
  border-color: #bed4df;
  box-shadow: 0 16px 38px rgba(12, 51, 75, 0.08);
  transform: translateY(-4px);
}

.icon-box {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--blue);
  background: var(--sky);
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 850;
}

.card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.steps::before {
  position: absolute;
  top: 29px;
  right: 9%;
  left: 9%;
  height: 1px;
  content: "";
  background: #bfd8e2;
}

.step {
  position: relative;
  text-align: center;
}

.step-num {
  position: relative;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border: 7px solid var(--sky);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 850;
}

.step:nth-child(4) .step-num,
.step:nth-child(5) .step-num {
  background: var(--green);
}

.step h3 {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.step p {
  color: var(--muted);
  font-size: 0.82rem;
}

.split {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
}

.feature-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 13px;
}

.check {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--green);
  background: var(--mint);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.feature-item strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy);
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.journey {
  position: relative;
  padding: 38px;
  overflow: hidden;
  background: var(--navy);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.journey::before {
  position: absolute;
  top: -90px;
  right: -60px;
  width: 240px;
  height: 240px;
  content: "";
  background: rgba(75, 180, 174, 0.16);
  border-radius: 50%;
}

.journey h3 {
  color: var(--white);
}

.journey > p {
  color: #bdd0da;
  font-size: 0.9rem;
}

.journey-track {
  position: relative;
  display: grid;
  gap: 13px;
  margin-top: 28px;
}

.journey-event {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
}

.journey-event.active {
  background: var(--white);
}

.journey-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  background: #72c1b2;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.journey-event strong {
  display: block;
  color: var(--white);
  font-size: 0.84rem;
}

.journey-event small {
  color: #a9c0cc;
  font-size: 0.67rem;
}

.journey-event.active strong {
  color: var(--navy);
}

.journey-event.active small {
  color: var(--muted);
}

.sdoh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.sdoh-chip {
  padding: 17px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--navy);
  font-size: 0.87rem;
  font-weight: 750;
}

.sdoh-chip span {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.72rem;
}

.outcomes-wrap {
  padding: 28px;
  background: #f0f6f8;
  border: 1px solid var(--line);
  border-radius: 24px;
}

.outcomes-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.outcomes-top h3 {
  margin: 0;
}

.outcome-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.panel {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.bar-chart {
  display: flex;
  height: 190px;
  align-items: end;
  justify-content: space-around;
  gap: 14px;
  padding-top: 25px;
  border-bottom: 1px solid var(--line);
}

.bar {
  position: relative;
  width: 44px;
  background: var(--blue-2);
  border-radius: 6px 6px 0 0;
}

.bar:nth-child(even) {
  background: #63ae9f;
}

.bar span {
  position: absolute;
  bottom: -24px;
  left: 50%;
  color: var(--muted);
  font-size: 0.63rem;
  transform: translateX(-50%);
}

.donut {
  display: grid;
  width: 138px;
  height: 138px;
  margin: 20px auto;
  place-items: center;
  background: conic-gradient(var(--green) 0 78%, #dce9ed 78%);
  border-radius: 50%;
}

.donut::before {
  display: grid;
  width: 94px;
  height: 94px;
  place-items: center;
  content: "78%";
  color: var(--navy);
  background: var(--white);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 850;
}

.security {
  color: var(--white);
  background: var(--navy);
}

.security h2,
.security h3 {
  color: var(--white);
}

.security .lead,
.security .card p {
  color: #b8ccd7;
}

.security .card {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.12);
}

.security .icon-box {
  color: #9ee1d3;
  background: rgba(76, 178, 160, 0.15);
}

.integration-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.integration {
  display: grid;
  min-height: 92px;
  place-items: center;
  padding: 16px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 68px;
  color: var(--white);
  background: linear-gradient(125deg, var(--blue), #0f7580);
  border-radius: 26px;
}

.cta-band::after {
  position: absolute;
  top: -100px;
  right: -70px;
  width: 300px;
  height: 300px;
  content: "";
  border: 55px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.cta-band h2 {
  max-width: 720px;
  color: var(--white);
}

.cta-band p {
  max-width: 700px;
  color: #d8edf0;
  font-size: 1.08rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(45, 139, 150, 0.14), transparent 28%),
    var(--off-white);
}

.page-hero .lead {
  max-width: 780px;
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(2.5rem, 5vw, 4.3rem);
}

.breadcrumb {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--blue);
}

.breadcrumb span {
  margin: 0 8px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.stat {
  padding: 34px;
  background: var(--white);
}

.stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 2rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.89rem;
}

.content-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
}

.sticky-intro {
  position: sticky;
  top: 110px;
  align-self: start;
}

.capability-list {
  display: grid;
  gap: 16px;
}

.capability {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 15px;
}

.capability-num {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 850;
}

.capability p {
  margin-bottom: 0;
  color: var(--muted);
}

.condition-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.condition {
  padding: 26px;
  background: var(--white);
  border-top: 4px solid var(--blue);
  border-radius: 0 0 14px 14px;
  box-shadow: 0 12px 30px rgba(12, 51, 75, 0.07);
}

.condition p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.quote {
  padding: 38px;
  background: var(--sky);
  border-left: 4px solid var(--blue);
  border-radius: 0 16px 16px 0;
}

.quote p {
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 650;
  line-height: 1.55;
}

.quote small {
  color: var(--muted);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin: 28px 0;
}

.contact-detail .icon-box {
  width: 40px;
  height: 40px;
  margin: 0;
}

.contact-detail p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-card {
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cad9e0;
  border-radius: 9px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-2);
  outline: 3px solid rgba(46, 127, 172, 0.12);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.74rem;
}

.form-success {
  display: none;
  padding: 20px;
  color: #126652;
  background: var(--mint);
  border-radius: 10px;
  font-weight: 700;
}

.form-success.visible {
  display: block;
}

.form-error {
  display: none;
  padding: 18px;
  color: #7a1f1f;
  background: #fff1f1;
  border: 1px solid #edcaca;
  border-radius: 12px;
}

.form-error.visible {
  display: block;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.post-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.post-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.post-art {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--blue-2));
}

.post-art::before,
.post-art::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.post-art::before {
  top: -45px;
  right: -15px;
  width: 170px;
  height: 170px;
}

.post-art::after {
  right: 55px;
  bottom: -65px;
  width: 190px;
  height: 190px;
}

.post-art.green {
  background: linear-gradient(135deg, #126652, #4aa98f);
}

.post-art.light {
  background: linear-gradient(135deg, #36749a, #85bcc9);
}

.post-icon {
  position: absolute;
  bottom: 25px;
  left: 25px;
  color: var(--white);
  font-size: 2rem;
  font-weight: 850;
}

.post-body {
  padding: 25px;
}

.post-meta {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.post-card h2,
.post-card h3 {
  font-size: 1.18rem;
}

.post-card p {
  color: var(--muted);
  font-size: 0.89rem;
}

.site-footer {
  padding: 70px 0 28px;
  color: #b8cbd5;
  background: #09273f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 56px;
}

.site-footer .brand {
  color: var(--white);
}

.footer-about {
  max-width: 360px;
  margin-top: 20px;
  font-size: 0.88rem;
}

.footer-heading {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 11px;
}

.footer-links a {
  font-size: 0.86rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 550ms ease, transform 550ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1040px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    height: calc(100vh - 78px);
    align-content: start;
    padding: 26px 20px 40px;
    overflow-y: auto;
    background: var(--white);
    border-top: 1px solid var(--line);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links > a,
  .nav-dropdown > button,
  .nav-dropdown-label {
    width: 100%;
    padding: 12px 4px;
    text-align: left;
  }

  .nav-dropdown > button {
    display: none;
  }

  .nav-dropdown-label {
    display: block;
    color: var(--navy);
  }

  .dropdown-menu {
    position: static;
    width: auto;
    padding: 0;
    visibility: visible;
    border: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }

  .dropdown-menu a {
    padding: 12px 4px;
  }

  .nav-cta {
    margin: 10px 0 0;
  }

  .nav-cta.btn {
    width: 100%;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-visual {
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .patient-card {
    right: auto;
    left: 0;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 40px;
  }

  .steps::before {
    display: none;
  }

  .integration-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .condition-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .section {
    padding: 72px 0;
  }

  .section-sm {
    padding: 56px 0;
  }

  .hero {
    padding: 68px 0 78px;
  }

  .hero-grid,
  .split,
  .content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-visual {
    min-height: 450px;
  }

  .dashboard {
    width: 95%;
  }

  .patient-card {
    bottom: 0;
  }

  .logo-strip-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .wordmarks {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .grid-3,
  .blog-grid,
  .about-values {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .sdoh-grid {
    grid-template-columns: 1fr 1fr;
  }

  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 42px 28px;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .sticky-intro {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field.full {
    grid-column: auto;
  }
}

@media (max-width: 500px) {
  h1 {
    font-size: 2.45rem;
  }

  .metric-grid {
    grid-template-columns: 1fr 1fr;
  }

  .metric:last-child {
    display: none;
  }

  .hero-visual {
    min-height: 410px;
  }

  .dashboard {
    padding: 14px;
  }

  .patient-card {
    width: 190px;
  }

  .grid-4,
  .steps,
  .sdoh-grid,
  .integration-list,
  .condition-grid {
    grid-template-columns: 1fr;
  }

  .step {
    display: grid;
    grid-template-columns: 52px 1fr;
    column-gap: 15px;
    text-align: left;
  }

  .step-num {
    width: 50px;
    height: 50px;
    margin: 0;
    grid-row: 1 / 3;
  }

  .form-card {
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-logo {
    width: 170px;
  }
}

/* Blue-focused operational UI */
.status-pill {
  color: #007f99;
  background: #e2f2f5;
}

.metric em {
  color: var(--blue);
}

.check {
  color: var(--blue);
  background: var(--sky);
}

.journey-dot {
  background: #35b8cf;
}

.bar:nth-child(even) {
  background: #6bc9d8;
}

.donut {
  background: conic-gradient(var(--blue) 0 78%, #dbe9ec 78%);
}

.security .icon-box {
  color: #71d5e4;
  background: rgba(0, 167, 196, 0.15);
}

.risk-bar span {
  background: var(--green);
}

.post-art.green,
.post-art.light {
  background: linear-gradient(135deg, #20384d, #35b8cf);
}

.form-success {
  color: #20384d;
  background: #e2f2f5;
}

/* Compact navigation and clearer content rhythm */
.nav {
  min-height: 68px;
  gap: 18px;
}

.brand-logo {
  width: 168px;
}

.brand-logo-reversed {
  width: 178px;
}

.nav-links {
  gap: 2px;
}

.nav-links > a,
.nav-dropdown > button {
  padding: 8px 9px;
  font-size: 0.86rem;
}

.nav-cta {
  min-height: 42px;
  padding: 9px 17px;
}

.hero {
  padding: 50px 0 64px;
}

.hero-grid {
  gap: 46px;
}

.hero-detail {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.hero-photo,
.hero-photo img {
  min-height: 560px;
  height: 560px;
}

.section {
  padding: 82px 0;
}

.section-sm {
  padding: 56px 0;
}

.section-heading {
  margin-bottom: 40px;
}

.card {
  padding: 26px;
}

@media (max-width: 1040px) {
  .nav-links {
    top: 100%;
    height: calc(100vh - 68px);
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 42px 0 58px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    gap: 34px;
  }

  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .container,
  .hero-grid,
  .split,
  .content-grid,
  .contact-grid,
  .editorial-grid,
  .photo-band-grid,
  .hero-copy,
  .hero-photo,
  .hero-visual {
    min-width: 0;
  }

  .hero-copy,
  .hero-photo,
  .hero-visual {
    width: 100%;
  }

  .hero-copy h1,
  .page-hero h1,
  .section h2,
  .section-sm h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-photo {
    min-height: 0;
    height: auto;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border-radius: 72px 8px 8px 8px;
  }

  .hero-photo img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-position: 58% center;
    border-radius: inherit;
  }

  .hero-proof {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
    max-width: none;
    padding: 18px;
  }

  .hero-proof strong {
    font-size: 1rem;
  }

  .editorial-photo,
  .editorial-photo.tall {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-radius: 8px 56px 8px 8px;
  }

  .editorial-photo img,
  .editorial-photo.tall img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
  }

  .photo-caption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }

  .photo-band-grid {
    min-height: 0;
  }

  .photo-band-image {
    aspect-ratio: 4 / 3;
  }

  .photo-band-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-position: center;
  }

  .image-card img {
    height: auto;
    aspect-ratio: 16 / 10;
    object-position: center;
  }

  .section {
    padding: 64px 0;
  }

  .section-sm {
    padding: 46px 0;
  }
}

@media (max-width: 500px) {
  .brand-logo {
    width: 150px;
  }

  .hero-photo,
  .hero-photo img {
    min-height: 0;
    height: auto;
  }
}

/* Mobile layout authority: keep this block last. */
@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .container,
  .hero-grid,
  .split,
  .content-grid,
  .contact-grid,
  .editorial-grid,
  .photo-band-grid {
    min-width: 0;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    gap: 38px;
  }

  .hero-copy,
  .hero-photo,
  .hero-visual {
    width: 100%;
    min-width: 0;
  }

  .hero-copy h1,
  .page-hero h1,
  .section h2,
  .section-sm h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-photo {
    min-height: 0;
    height: auto;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border-radius: 72px 8px 8px 8px;
  }

  .hero-photo img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-position: 58% center;
    border-radius: inherit;
  }

  .hero-proof {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
    max-width: none;
    padding: 18px;
  }

  .hero-proof strong {
    font-size: 1rem;
  }

  .editorial-photo,
  .editorial-photo.tall {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-radius: 8px 56px 8px 8px;
  }

  .editorial-photo img,
  .editorial-photo.tall img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
  }

  .photo-caption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }

  .photo-band-grid {
    min-height: 0;
  }

  .photo-band-image {
    aspect-ratio: 4 / 3;
  }

  .photo-band-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-position: center;
  }

  .image-card img {
    height: auto;
    aspect-ratio: 16 / 10;
    object-position: center;
  }
}

/* Final mobile image alignment */
@media (max-width: 760px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    gap: 38px;
  }

  .hero-copy,
  .hero-photo,
  .hero-visual {
    width: 100%;
    min-width: 0;
  }

  .hero-photo {
    min-height: 0;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border-radius: 72px 8px 8px 8px;
  }

  .hero-photo img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-position: 58% center;
    border-radius: inherit;
  }

  .hero-proof {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
    max-width: none;
    padding: 18px;
  }

  .hero-proof strong {
    font-size: 1rem;
  }

  .editorial-photo,
  .editorial-photo.tall {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-radius: 8px 56px 8px 8px;
  }

  .editorial-photo img,
  .editorial-photo.tall img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
  }

  .photo-caption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }

  .photo-band-grid {
    min-height: 0;
  }

  .photo-band-image {
    aspect-ratio: 4 / 3;
  }

  .photo-band-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
  }

  .image-card img {
    height: auto;
    aspect-ratio: 16 / 10;
    object-position: center;
  }
}

@media (max-width: 500px) {
  .hero-photo,
  .hero-photo img {
    min-height: 0;
    height: auto;
  }

  .hero-photo {
    aspect-ratio: 4 / 5;
  }
}

.editorial-photo {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 10px 100px 10px 10px;
  box-shadow: var(--shadow);
}

.editorial-photo img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.editorial-photo.tall,
.editorial-photo.tall img {
  min-height: 590px;
}

.editorial-photo.reverse {
  border-radius: 100px 10px 10px 10px;
}

.photo-caption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  max-width: 390px;
  padding: 18px 20px;
  color: #fff;
  background: rgba(32, 56, 77, 0.94);
  border-radius: 6px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.08rem;
  line-height: 1.4;
}

.photo-band {
  overflow: hidden;
  background: var(--navy);
}

.photo-band-grid {
  display: grid;
  min-height: 600px;
  grid-template-columns: 1.05fr 0.95fr;
}

.photo-band-image img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
}

.photo-band-copy {
  display: flex;
  align-items: center;
  padding: clamp(48px, 7vw, 100px);
}

.photo-band-copy h2 {
  color: #ffffff;
}

.photo-band-copy .lead {
  color: #d4e9ed;
}

.photo-band-copy .eyebrow {
  color: #61d1e0;
}

.image-card {
  overflow: hidden;
  padding: 0;
}

.image-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.image-card-body {
  padding: 26px;
}

.post-art.photo-art {
  height: 220px;
  background: none;
}

.post-art.photo-art::before,
.post-art.photo-art::after {
  display: none;
}

.post-art.photo-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 760px) {
  .photo-band-grid {
    grid-template-columns: 1fr;
  }

  .photo-band-image img {
    min-height: 430px;
  }

  .photo-band-copy {
    padding: 58px 28px;
  }

  .editorial-photo,
  .editorial-photo img,
  .editorial-photo.tall,
  .editorial-photo.tall img {
    min-height: 420px;
  }
}

/* 2026 editorial healthcare theme */
:root {
  --navy: #20384d;
  --blue: #00a7c4;
  --blue-2: #35b8cf;
  --sky: #e8f6f8;
  --mint: #e2f2f5;
  --green: #f05a67;
  --ink: #20384d;
  --muted: #667b89;
  --line: #d8e0e5;
  --white: #ffffff;
  --off-white: #f2f5f7;
  --shadow: 0 24px 70px rgba(32, 56, 77, 0.12);
  --radius: 10px;
  --max: 1240px;
}

body {
  background: #ffffff;
}

h1,
h2 {
  color: var(--navy);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 720;
  letter-spacing: -0.045em;
}

h3 {
  color: var(--navy);
  letter-spacing: -0.02em;
}

.site-header {
  border-color: rgba(32, 56, 77, 0.12);
  background: rgba(255, 255, 255, 0.96);
}

.brand-mark {
  background: var(--navy);
  border-radius: 50%;
}

.brand-mark::after {
  background: var(--green);
  border-radius: 50% 0 0;
}

.nav {
  min-height: 84px;
}

.nav-links > a,
.nav-dropdown > button,
.nav-dropdown-label {
  color: #465f72;
}

.btn {
  border-radius: 99px;
}

.btn-primary {
  background: var(--navy);
  box-shadow: none;
}

.btn-primary:hover {
  background: #007f99;
}

.eyebrow {
  color: var(--blue);
  letter-spacing: 0.14em;
}

.eyebrow::before {
  background: var(--green);
}

.hero {
  padding: 64px 0 82px;
  background: #f2f5f7;
}

.hero::after {
  display: none;
}

.hero-grid {
  grid-template-columns: 0.94fr 1.06fr;
  gap: 56px;
}

.hero-copy h1 {
  max-width: 680px;
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 1.02;
}

.hero-copy .lead {
  max-width: 610px;
}

.hero-photo {
  position: relative;
  min-height: 650px;
  overflow: visible;
}

.hero-photo img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: center;
  border-radius: 160px 10px 10px 10px;
  box-shadow: var(--shadow);
}

.hero-proof {
  position: absolute;
  right: -20px;
  bottom: 34px;
  width: min(370px, 82%);
  padding: 24px 26px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(32, 56, 77, 0.24);
}

.hero-proof strong {
  display: block;
  margin-top: 6px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.35;
}

.proof-kicker {
  color: #bcebf1;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-line {
  color: #536d7d;
}

.trust-line span::before {
  background: var(--green);
}

.logo-strip {
  background: #ffffff;
}

.editorial-problem {
  color: #e4f3f5;
  background: var(--navy);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 100px;
}

.editorial-problem h2 {
  max-width: 720px;
  color: #ffffff;
  font-size: clamp(1.95rem, 3.2vw, 3.15rem);
}

.editorial-problem .lead {
  color: #ffffff;
}

.editorial-problem p:not(.eyebrow):not(.lead) {
  color: #bfd8de;
}

.editorial-problem .text-link {
  margin-top: 16px;
  color: #5ed2e4;
}

.section-blue {
  background: #e8f6f8;
}

.section-soft {
  background: #f2f5f7;
}

.card {
  border-radius: 10px;
}

.pathway-card {
  min-height: 310px;
  padding: 38px 32px;
  border: 0;
  border-top: 1px solid var(--navy);
  background: transparent;
  border-radius: 0;
}

.pathway-card:hover {
  box-shadow: none;
  transform: none;
}

.pathway-card .icon-box {
  color: var(--green);
  background: transparent;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.4rem;
}

.icon-box {
  color: var(--blue);
  background: var(--sky);
  border-radius: 50%;
}

.step-num {
  background: var(--navy);
  border-color: var(--sky);
}

.step:nth-child(4) .step-num,
.step:nth-child(5) .step-num {
  background: var(--blue);
}

.journey {
  background: var(--navy);
  border-radius: 10px 100px 10px 10px;
}

.outcomes-wrap {
  background: #edf5f6;
  border-radius: 10px 80px 10px 10px;
}

.security {
  background: #172936;
}

.cta-band {
  background: linear-gradient(125deg, #20384d, #00a7c4);
  border-radius: 8px 90px 8px 8px;
}

.cta-band p {
  color: #daf1f4;
}

.page-hero {
  padding: 110px 0;
  background: #f2f5f7;
}

.page-hero h1 {
  max-width: 1020px;
  font-size: clamp(2.15rem, 3.7vw, 3.55rem);
  line-height: 1.05;
}

.quote {
  background: #eaf4fb;
  border-left-color: var(--green);
}

.form-card {
  border-radius: 10px 70px 10px 10px;
}

.site-footer {
  background: #172936;
}

@media (max-width: 1040px) {
  .nav-links {
    top: 100%;
    height: calc(100vh - 84px);
    background: #ffffff;
  }

  .hero-photo {
    width: min(100%, 760px);
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 54px;
  }

  .hero-copy h1 {
    font-size: clamp(2.25rem, 9vw, 3.05rem);
  }

  .hero-photo {
    min-height: 500px;
  }

  .hero-photo img {
    height: 500px;
    border-radius: 80px 8px 8px 8px;
  }

  .hero-proof {
    right: -2px;
    bottom: 22px;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 500px) {
  .hero-copy h1 {
    font-size: 2.3rem;
  }

  .hero-photo,
  .hero-photo img {
    min-height: 430px;
    height: 430px;
  }

  .hero-proof {
    width: 90%;
    padding: 18px;
  }
}

/* Final compact layout layer */
.nav {
  min-height: 68px;
  justify-content: flex-start;
  gap: 18px;
}

.brand {
  margin-right: clamp(28px, 3.5vw, 48px);
}

.nav-links {
  margin-left: 0;
  flex: 0 1 auto;
  justify-content: flex-start;
}

.brand-logo {
  width: 168px;
}

.brand-logo-reversed {
  width: 178px;
}

.nav-links {
  gap: 2px;
}

.nav-links > a,
.nav-dropdown > button,
.nav-dropdown-label {
  padding: 8px 9px;
  font-size: 0.86rem;
}

.nav-cta {
  min-height: 42px;
  padding: 9px 17px;
}

.hero {
  padding: 50px 0 64px;
}

.hero-grid {
  gap: 46px;
}

.hero-photo,
.hero-photo img {
  min-height: 560px;
  height: 560px;
}

.section {
  padding: 82px 0;
}

.section-sm {
  padding: 56px 0;
}

.section-heading {
  margin-bottom: 40px;
}

.card {
  padding: 26px;
}

@media (max-width: 1040px) {
  .nav-links {
    height: calc(100vh - 68px);
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 42px 0 58px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    gap: 34px;
  }

  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .container,
  .hero-grid,
  .split,
  .content-grid,
  .contact-grid,
  .editorial-grid,
  .photo-band-grid,
  .hero-copy,
  .hero-photo,
  .hero-visual {
    min-width: 0;
  }

  .hero-copy,
  .hero-photo,
  .hero-visual {
    width: 100%;
  }

  .hero-copy h1,
  .page-hero h1,
  .section h2,
  .section-sm h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-photo {
    min-height: 0;
    height: auto;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border-radius: 72px 8px 8px 8px;
  }

  .hero-photo img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-position: 58% center;
    border-radius: inherit;
  }

  .hero-proof {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
    max-width: none;
    padding: 18px;
  }

  .hero-proof strong {
    font-size: 1rem;
  }

  .editorial-photo,
  .editorial-photo.tall {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-radius: 8px 56px 8px 8px;
  }

  .editorial-photo img,
  .editorial-photo.tall img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
  }

  .photo-caption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }

  .photo-band-grid {
    min-height: 0;
  }

  .photo-band-image {
    aspect-ratio: 4 / 3;
  }

  .photo-band-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-position: center;
  }

  .image-card img {
    height: auto;
    aspect-ratio: 16 / 10;
    object-position: center;
  }

  .section {
    padding: 64px 0;
  }

  .section-sm {
    padding: 46px 0;
  }
}

@media (max-width: 500px) {
  .brand-logo {
    width: 150px;
  }

  .hero-photo,
  .hero-photo img {
    min-height: 0;
    height: auto;
  }
}


/* Sitewide density pass */
.hero {
  padding: 38px 0 46px;
}

.hero-grid {
  gap: 34px;
}

.hero-copy h1 {
  font-size: clamp(2.15rem, 3.4vw, 3.45rem);
}

.hero-copy .lead,
.page-hero .lead,
.section-heading .lead {
  margin-bottom: 14px;
}

.hero-detail {
  margin-top: 12px;
}

.trust-line {
  gap: 12px;
  margin-top: 22px;
}

.hero-photo,
.hero-photo img {
  min-height: 480px;
  height: 480px;
}

.hero-proof {
  bottom: 22px;
  width: min(340px, 82%);
  padding: 18px 20px;
}

.hero-proof strong {
  font-size: 1.08rem;
}

.section {
  padding: 58px 0;
}

.section-sm {
  padding: 42px 0;
}

.page-hero {
  padding: 58px 0;
}

.page-hero h1 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
}

.section-heading {
  margin-bottom: 26px;
}

.grid-3,
.blog-grid,
.contact-methods,
.value-grid,
.condition-grid {
  gap: 16px;
}

.grid-4 {
  gap: 14px;
}

.card,
.post-card,
.form-card,
.contact-method,
.condition-card {
  padding: 20px;
}

.pathway-card {
  min-height: 240px;
  padding: 24px 22px;
}

.icon-box {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
}

.steps {
  gap: 12px;
}

.step-num {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-width: 5px;
}

.split,
.content-grid,
.contact-grid,
.editorial-grid,
.photo-band-grid {
  gap: 44px;
}

.feature-list {
  gap: 12px;
  margin-top: 18px;
}

.journey,
.outcomes-wrap,
.quote {
  padding: 28px;
}

.journey-track {
  gap: 10px;
  margin-top: 18px;
}

.feature-item {
  gap: 10px;
}

.sdoh-grid {
  gap: 10px;
  margin-top: 20px;
}

.sdoh-chip,
.integration {
  padding: 13px;
}

.outcomes-top {
  margin-bottom: 16px;
}

.panel {
  padding: 18px;
}

.integration-list {
  gap: 8px;
}

.cta-band {
  padding: 46px;
}

.editorial-photo,
.editorial-photo.tall {
  min-height: 420px;
}

.photo-band-copy {
  padding: clamp(38px, 5vw, 68px);
}

.image-card-body {
  padding: 20px;
}

.site-footer {
  padding: 48px 0 24px;
}

.footer-grid {
  gap: 34px;
}

.footer-bottom {
  margin-top: 38px;
}

@media (max-width: 1040px) {
  .hero-grid,
  .split,
  .content-grid,
  .contact-grid,
  .editorial-grid,
  .photo-band-grid {
    gap: 34px;
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 34px 0 44px;
  }

  .hero-grid,
  .split,
  .content-grid,
  .contact-grid,
  .editorial-grid,
  .photo-band-grid {
    gap: 28px;
  }

  .hero-photo,
  .hero-photo img {
    min-height: 0;
    height: auto;
  }

  .section,
  .page-hero {
    padding: 48px 0;
  }

  .section-sm {
    padding: 36px 0;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .card,
  .post-card,
  .form-card,
  .contact-method,
  .condition-card,
  .journey,
  .outcomes-wrap,
  .quote {
    padding: 18px;
  }

  .cta-band {
    padding: 34px 24px;
  }
}



/* Sitewide density pass v2 */
.hero {
  padding: 26px 0 30px;
}

.hero-grid,
.split,
.content-grid,
.contact-grid,
.editorial-grid,
.photo-band-grid {
  gap: 26px;
}

.hero-copy h1 {
  font-size: clamp(1.95rem, 3vw, 3.05rem);
  line-height: 1.02;
}

.hero-copy .lead,
.page-hero .lead,
.section-heading .lead {
  margin-bottom: 8px;
}

.hero-detail {
  margin-top: 8px;
}

.btn-row {
  gap: 10px;
  margin-top: 18px;
}

.trust-line {
  gap: 10px;
  margin-top: 14px;
}

.hero-photo,
.hero-photo img {
  min-height: 390px;
  height: 390px;
}

.hero-proof {
  right: -8px;
  bottom: 14px;
  width: min(310px, 78%);
  padding: 14px 16px;
}

.hero-proof strong {
  font-size: 0.98rem;
}

.section,
.page-hero {
  padding: 36px 0;
}

.section-sm {
  padding: 28px 0;
}

.page-hero h1 {
  font-size: clamp(1.9rem, 2.8vw, 2.85rem);
}

.section-heading {
  margin-bottom: 18px;
}

.grid-3,
.grid-4,
.blog-grid,
.contact-methods,
.value-grid,
.condition-grid {
  gap: 12px;
}

.card,
.post-card,
.form-card,
.contact-method,
.condition-card {
  padding: 14px;
}

.pathway-card {
  min-height: 0;
  padding: 18px 16px;
}

.icon-box {
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.card p,
.step p,
.feature-item p {
  line-height: 1.45;
}

.steps {
  gap: 8px;
}

.step-num {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  border-width: 4px;
}

.step h3 {
  font-size: 0.92rem;
}

.feature-list {
  gap: 8px;
  margin-top: 12px;
}

.feature-item {
  grid-template-columns: 26px 1fr;
  gap: 8px;
}

.check {
  width: 23px;
  height: 23px;
}

.journey,
.outcomes-wrap,
.quote {
  padding: 20px;
}

.journey-track {
  gap: 7px;
  margin-top: 12px;
}

.journey-event {
  padding: 10px;
}

.sdoh-grid {
  gap: 8px;
  margin-top: 14px;
}

.sdoh-chip,
.integration {
  padding: 10px;
}

.outcome-grid {
  gap: 12px;
}

.outcomes-top {
  margin-bottom: 12px;
}

.panel {
  padding: 14px;
}

.cta-band {
  padding: 30px;
}

.editorial-photo,
.editorial-photo.tall {
  min-height: 340px;
}

.photo-band-copy {
  padding: clamp(28px, 4vw, 48px);
}

.image-card-body {
  padding: 16px;
}

.form-grid {
  gap: 12px;
}

input,
select,
textarea {
  padding: 10px 12px;
}

.site-footer {
  padding: 34px 0 18px;
}

.footer-grid {
  gap: 24px;
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 16px;
}

@media (max-width: 1040px) {
  .hero-grid,
  .split,
  .content-grid,
  .contact-grid,
  .editorial-grid,
  .photo-band-grid {
    gap: 24px;
  }
}

@media (max-width: 760px) {
  .hero,
  .section,
  .page-hero {
    padding: 30px 0;
  }

  .section-sm {
    padding: 24px 0;
  }

  .hero-grid,
  .split,
  .content-grid,
  .contact-grid,
  .editorial-grid,
  .photo-band-grid {
    gap: 22px;
  }

  .section-heading {
    margin-bottom: 16px;
  }

  .card,
  .post-card,
  .form-card,
  .contact-method,
  .condition-card,
  .journey,
  .outcomes-wrap,
  .quote {
    padding: 14px;
  }

  .cta-band {
    padding: 26px 18px;
  }
}


/* Header width and background refinement */
.site-header {
  background: #eef5f8;
  border-bottom: 1px solid #d4e5ec;
  box-shadow: 0 8px 24px rgba(12, 51, 75, 0.05);
}

.site-header .container {
  width: min(calc(100% - 64px), 1720px);
}

.nav {
  min-height: 76px;
  justify-content: flex-start;
  gap: clamp(28px, 4vw, 72px);
}

.brand {
  flex: 0 0 auto;
  margin-right: clamp(26px, 4vw, 72px);
}

.nav-links {
  flex: 1 1 auto;
  justify-content: flex-start;
  gap: clamp(6px, 0.8vw, 18px);
}

.nav-links > a,
.nav-dropdown > button,
.nav-dropdown-label {
  color: #365268;
}

.nav-cta {
  margin-left: clamp(8px, 1.8vw, 28px);
}

@media (min-width: 1280px) {
  .brand-logo {
    width: 210px;
  }
}

@media (max-width: 760px) {
  .site-header .container {
    width: min(calc(100% - 32px), 1720px);
  }

  .nav {
    min-height: 68px;
    gap: 14px;
  }

  .brand {
    margin-right: 0;
  }
}

/* Footer-inspired header, two shades lighter */
.site-header {
  background: linear-gradient(180deg, #17384d 0%, #123247 100%);
  border-bottom: 1px solid rgba(130, 199, 216, 0.32);
  box-shadow: 0 10px 28px rgba(9, 39, 63, 0.18);
}

.site-header .brand-logo {
  content: url("assets/pulsenex-logo-reversed.png?v=6");
}

.site-header .nav-links > a,
.site-header .nav-dropdown > button,
.site-header .nav-dropdown-label {
  color: #d7e8ef;
}

.site-header .nav-links > a:hover,
.site-header .nav-links > a.active,
.site-header .nav-dropdown > button:hover,
.site-header .nav-dropdown-label:hover {
  color: #5ed2e4;
}

.site-header .nav-cta {
  color: #0b2d4d;
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.site-header .nav-cta:hover {
  color: #ffffff;
  background: #00a7c4;
  border-color: #00a7c4;
}

.site-header .dropdown-menu {
  background: #ffffff;
}

.site-header .dropdown-menu a {
  color: #20384d;
}

.site-header .menu-toggle {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.site-header .menu-toggle span,
.site-header .menu-toggle span::before,
.site-header .menu-toggle span::after {
  background: #ffffff;
}
