:root {
  --navy: #071c2c;
  --navy-soft: #102d41;
  --ink: #152331;
  --slate: #5d6b75;
  --teal: #08a7a1;
  --teal-deep: #087d7a;
  --aqua: #dff7f4;
  --cream: #f5f2ea;
  --line: #d9e1e3;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Aptos, "Aptos Display", "Segoe UI", Arial, sans-serif;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(217, 225, 227, 0.85);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-logo {
  display: block;
  width: 138px;
  height: auto;
  background: var(--white);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  color: #344754;
  font-size: 14px;
  font-weight: 650;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--teal-deep);
}

.market-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-cta,
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background: var(--teal);
  color: var(--white);
  font-weight: 750;
  transition: transform 160ms ease, background 160ms ease;
}

.nav-cta {
  padding: 12px 17px;
}

.button-primary {
  min-height: 50px;
  padding: 0 22px;
}

.nav-cta:hover,
.button-primary:hover {
  background: var(--teal-deep);
  color: var(--white);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 28%, rgba(8, 167, 161, 0.22), transparent 24%),
    linear-gradient(120deg, var(--navy) 0%, #0a2638 66%, #123a46 100%);
  color: var(--white);
}

.hero::after {
  position: absolute;
  right: -9%;
  bottom: -48%;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(255, 255, 255, 0.025),
    0 0 0 160px rgba(255, 255, 255, 0.02);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 610px;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  align-items: center;
  gap: 72px;
  padding: 86px 0;
}

.eyebrow {
  margin: 0 0 22px;
  color: #69d5cf;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(45px, 5.4vw, 76px);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 0.99;
}

.hero-copy {
  max-width: 770px;
  margin: 28px 0 0;
  color: #d6e0e5;
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.text-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  padding: 4px 0;
  color: var(--white);
  font-weight: 700;
}

.outcome-panel {
  border-top: 4px solid var(--teal);
  background: rgba(255, 255, 255, 0.97);
  padding: 32px;
  color: var(--ink);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.outcome-panel .section-label {
  margin-bottom: 11px;
}

.outcome-panel h2 {
  margin: 0 0 22px;
  font-size: 24px;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.checks,
.plain-list,
.scope-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.checks li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  border-top: 1px solid var(--line);
  padding: 13px 0;
  color: #42525e;
  font-size: 14px;
  line-height: 1.45;
}

.checks li::before {
  color: var(--teal);
  content: "✓";
  font-weight: 900;
}

.principles {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.principle {
  border-right: 1px solid var(--line);
  padding: 25px 26px;
}

.principle:first-child {
  border-left: 1px solid var(--line);
}

.principle strong,
.principle span {
  display: block;
}

.principle strong {
  color: var(--navy);
  font-size: 14px;
}

.principle span {
  margin-top: 4px;
  color: var(--slate);
  font-size: 13px;
}

.section {
  padding: 94px 0;
}

.section-soft {
  background: var(--cream);
}

.section-label {
  margin: 0 0 14px;
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-title {
  max-width: 800px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.section-intro {
  max-width: 800px;
  margin: 21px 0 0;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.7;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.service-card,
.content-card {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 30px;
}

.service-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  border-top: 4px solid var(--teal);
}

.number {
  color: var(--teal-deep);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.service-card h3,
.content-card h3 {
  margin: 20px 0 12px;
  color: var(--navy);
  font-size: 24px;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.service-card p,
.content-card p {
  color: var(--slate);
  line-height: 1.65;
}

.plain-list {
  margin-top: 15px;
}

.plain-list li {
  position: relative;
  margin: 9px 0;
  padding-left: 17px;
  color: #44545f;
  font-size: 14px;
  line-height: 1.45;
}

.plain-list li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  content: "•";
  font-weight: 900;
}

.card-link {
  margin-top: auto;
  padding-top: 24px;
  color: var(--teal-deep);
  font-weight: 800;
}

.pathway {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: center;
}

.pathway-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--navy);
  font-size: clamp(17px, 2.2vw, 26px);
  font-weight: 800;
}

.pathway-line span {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pathway-line span:not(:last-child)::after {
  color: var(--teal);
  content: "→";
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 44px;
  background: rgba(255, 255, 255, 0.17);
}

.proof {
  min-height: 178px;
  background: rgba(255, 255, 255, 0.07);
  padding: 28px;
}

.proof strong {
  display: block;
  color: #6be0d8;
  font-size: 36px;
  letter-spacing: -0.035em;
}

.proof span {
  display: block;
  margin-top: 10px;
  color: #d7e3e8;
  font-size: 14px;
  line-height: 1.5;
}

.dark-section {
  background: var(--navy);
  color: var(--white);
}

.dark-section .section-title {
  color: var(--white);
}

.dark-section .section-intro {
  color: #c9d5dc;
}

.inner-hero .hero-grid {
  min-height: 505px;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  padding: 72px 0;
}

.inner-hero h1 {
  max-width: 920px;
  font-size: clamp(43px, 5vw, 68px);
}

.deliverables {
  display: grid;
  gap: 12px;
}

.deliverable {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  color: #40515d;
  line-height: 1.45;
}

.deliverable::before {
  color: var(--teal);
  content: "✓";
  font-weight: 900;
}

.scope-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 78px;
  align-items: start;
}

.scope-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.scope-list li {
  border-bottom: 1px solid var(--line);
  padding: 16px 12px 16px 0;
  color: #40515d;
  line-height: 1.45;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 46px;
  background: var(--line);
  border: 1px solid var(--line);
}

.step {
  min-height: 250px;
  background: var(--white);
  padding: 28px;
}

.step h3 {
  margin: 28px 0 12px;
  color: var(--navy);
  font-size: 22px;
}

.step p {
  color: var(--slate);
  line-height: 1.6;
}

.alliance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 38px;
}

.alliance-card {
  border-top: 4px solid var(--teal);
  background: var(--white);
  padding: 30px;
}

.alliance-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 80px;
  align-items: start;
}

.profile-card {
  border-top: 4px solid var(--teal);
  background: var(--navy);
  padding: 38px;
  color: var(--white);
}

.profile-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 4px solid rgba(255, 255, 255, 0.18);
  object-fit: cover;
  object-position: 62% 42%;
}

.profile-card h2 {
  margin: 27px 0 3px;
  font-size: 31px;
  letter-spacing: -0.03em;
}

.profile-card p {
  color: #cedbe1;
  line-height: 1.65;
}

.profile-role {
  margin-top: 0 !important;
  color: #69d5cf !important;
  font-weight: 750;
}

.profile-link {
  display: inline-block;
  margin-top: 8px;
  border-bottom: 1px solid #69d5cf;
  color: #69d5cf;
  font-weight: 750;
}

.cta-section {
  background: var(--teal);
  color: var(--white);
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 64px 0;
}

.cta-row .section-label {
  color: #e2fffc;
}

.cta-row h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.cta-button {
  display: inline-flex;
  min-height: 50px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: var(--white);
  padding: 0 22px;
  color: var(--navy);
  font-weight: 800;
}

.footer {
  background: #04141f;
  color: #b8c6cf;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding: 46px 0;
}

.footer .brand-name {
  color: var(--white);
}

.footer .brand-logo {
  width: 150px;
}

.footer-copy {
  margin: 18px 0 0;
  color: #9eb0bc;
  font-size: 14px;
}

.legal {
  max-width: 560px;
  text-align: right;
  font-size: 12px;
  line-height: 1.7;
}

.legal a {
  color: #69d5cf;
}

@media (max-width: 1020px) {
  .nav a:not(.nav-cta) {
    display: none;
  }

  .hero-grid,
  .inner-hero .hero-grid,
  .pathway,
  .scope-layout,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 44px;
  }

  .card-grid,
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-name,
  .market-pill {
    display: none;
  }

  .nav {
    gap: 10px;
  }

  .nav-cta {
    padding: 10px 13px;
    font-size: 12px;
  }

  .hero-grid,
  .inner-hero .hero-grid {
    min-height: auto;
    padding: 64px 0;
  }

  .hero h1,
  .inner-hero h1 {
    font-size: 43px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .principle-grid,
  .card-grid,
  .proof-grid,
  .steps,
  .alliance-grid,
  .scope-list {
    grid-template-columns: 1fr;
  }

  .principle {
    border-left: 1px solid var(--line);
  }

  .section {
    padding: 70px 0;
  }

  .service-card {
    min-height: 0;
  }

  .pathway-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .pathway-line span:not(:last-child)::after {
    content: "↓";
  }

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

  .cta-row {
    display: flex;
  }

  .footer-inner {
    display: flex;
  }

  .legal {
    text-align: left;
  }
}

.why-hhs-page {
  padding: 82px 0 96px;
  background: #f3f6f8;
}

.why-hhs-layout {
  display: grid;
  grid-template-columns: 1fr 0.98fr;
  gap: 54px;
  align-items: start;
}

.why-hhs-copy {
  padding-top: 5px;
}

.why-hhs-copy h1 {
  max-width: 650px;
  margin: 0;
  color: #071f35;
  font-size: clamp(45px, 5vw, 66px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.why-hhs-intro {
  max-width: 650px;
  margin: 20px 0 36px;
  color: #526477;
  font-size: 18px;
  line-height: 1.55;
}

.why-hhs-lead {
  max-width: 650px;
  margin: 0 0 20px;
  color: #071f35;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.55;
}

.why-hhs-reasons {
  display: grid;
  gap: 17px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-hhs-reasons li {
  position: relative;
  padding-left: 32px;
  color: #172e40;
  font-size: 16px;
  line-height: 1.55;
}

.why-hhs-reasons li::before {
  position: absolute;
  top: -1px;
  left: 0;
  color: #19736e;
  font-size: 21px;
  font-weight: 800;
  content: "✓";
}

.practitioner-card {
  display: grid;
  grid-template-columns: 184px 1fr;
  gap: 28px;
  padding: 29px;
  border: 1px solid #cddbe4;
  border-radius: 18px;
  background: white;
  box-shadow: 0 12px 32px #1532470a;
}

.practitioner-card img {
  width: 184px;
  height: 235px;
  border: 5px solid #e8f0ef;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 8px 18px #17374c16;
}

.practitioner-copy h2 {
  margin: 0 0 14px;
  color: #071f35;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.practitioner-role {
  margin: 0 0 26px !important;
  color: #53677c !important;
  font-weight: 800;
}

.practitioner-copy > p {
  margin: 0 0 24px;
  color: #526477;
  font-size: 16px;
  line-height: 1.55;
}

.profile-button {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 1px solid #071f35;
  border-radius: 24px;
  color: #071f35;
  font-size: 14px;
  font-weight: 800;
}

.profile-button:hover {
  background: #071f35;
  color: white;
}

@media (max-width: 980px) {
  .why-hhs-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .practitioner-card {
    max-width: 720px;
  }
}

@media (max-width: 620px) {
  .why-hhs-page {
    padding: 55px 0 70px;
  }

  .why-hhs-copy h1 {
    font-size: 42px;
  }

  .practitioner-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .practitioner-card img {
    width: 100%;
    height: auto;
    max-height: 430px;
  }

  .profile-button {
    white-space: normal;
    text-align: center;
  }
}
