@font-face {
  font-family: "Atri Sans";
  src: local("Avenir Next"), local("Figtree"), local("Inter");
  font-display: swap;
}

:root {
  --navy-950: #031d2c;
  --navy-900: #062c43;
  --navy-800: #0a405c;
  --blue-500: #00a8c8;
  --blue-600: #006f85;
  --blue-300: #75d6e5;
  --green-500: #69b93b;
  --orange-500: #f39c2e;
  --ink: #0b2838;
  --ink-soft: #506774;
  --surface: #ffffff;
  --surface-soft: #f1f7f9;
  --line: #c9d9df;
  --shadow-sm: 0 8px 24px rgba(5, 44, 66, 0.08);
  --shadow-lg: 0 36px 90px rgba(5, 44, 66, 0.2);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 88px;
  --space-10: 120px;
  --motion-fast: 120ms;
  --motion-ui: 180ms;
  --motion-layout: 280ms;
  --motion-story: 500ms;
  --motion-entry: 900ms;
  --motion-entry-slow: 1450ms;
  --motion-ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-ease-sharp: cubic-bezier(0.4, 0, 0.2, 1);
  --shell: min(1320px, calc(100vw - 64px));
  --header-height: 84px;
  color-scheme: light;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background: var(--surface);
  font-family: "Atri Sans", "Avenir Next", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

body[data-page-type="home"] {
  background: var(--navy-950);
}

body.menu-open,
body:has(.search-dialog[open]) {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  touch-action: manipulation;
}

:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.visually-hidden {
  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;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 12px 18px;
  color: white;
  background: var(--navy-950);
  transform: translateY(-150%);
  transition: transform 180ms ease-out;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-height);
  color: var(--navy-900);
  background: color-mix(in srgb, white 92%, transparent);
  border-bottom: 1px solid rgba(6, 44, 67, 0.12);
  backdrop-filter: blur(18px) saturate(140%);
}

body[data-page-type="home"] .site-header {
  position: fixed;
  inset: 0 0 auto;
  color: white;
  background: linear-gradient(180deg, rgba(3, 29, 44, 0.9), rgba(3, 29, 44, 0.2) 72%, transparent);
  border-color: rgba(255, 255, 255, 0.12);
  transition: color 220ms ease-out, background 220ms ease-out, border-color 220ms ease-out, box-shadow 220ms ease-out;
}

body[data-page-type="home"] .site-header.is-solid {
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(6, 44, 67, 0.12);
  box-shadow: 0 8px 30px rgba(3, 29, 44, 0.08);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 70px);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 48px;
}

.brand img {
  width: 164px;
  height: auto;
  filter: brightness(0) saturate(100%) invert(14%) sepia(36%) saturate(1450%) hue-rotate(158deg) brightness(88%) contrast(102%);
}

body[data-page-type="home"] .brand img {
  filter: brightness(0) invert(1);
}

body[data-page-type="home"] .site-header.is-solid .brand img {
  filter: brightness(0) saturate(100%) invert(14%) sepia(36%) saturate(1450%) hue-rotate(158deg) brightness(88%) contrast(102%);
}

.primary-nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(10px, 1.65vw, 30px);
  margin-left: auto;
  height: 100%;
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-decoration: none;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 18px;
  height: 2px;
  background: var(--blue-500);
  transition: right 220ms ease-out;
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button,
.menu-button {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  min-height: 48px;
  color: inherit;
  background: transparent;
  border: 1px solid color-mix(in srgb, currentColor 20%, transparent);
  border-radius: 50%;
  cursor: pointer;
  transition: background 180ms ease-out, color 180ms ease-out, transform 180ms ease-out;
}

.icon-button:hover,
.menu-button:hover {
  color: white;
  background: var(--blue-500);
  border-color: var(--blue-500);
}

.icon-button:active,
.menu-button:active {
  transform: scale(0.96);
}

.icon-button svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.menu-button {
  display: none;
  width: auto;
  padding-inline: 18px;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
}

.breadcrumbs {
  padding-block: 22px 8px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 600;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  opacity: 0.45;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--blue-600);
}

.page-hero,
.product-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  align-items: center;
  gap: clamp(48px, 7vw, 104px);
  min-height: clamp(500px, 64vh, 720px);
  padding-block: 64px 96px;
}

.page-hero::before,
.product-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 42%;
  top: 9%;
  width: 45vw;
  height: 45vw;
  max-width: 720px;
  max-height: 720px;
  border: 1px solid rgba(0, 168, 200, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(0, 168, 200, 0.025), 0 0 0 160px rgba(105, 185, 59, 0.02);
}

.page-hero-legal {
  grid-template-columns: minmax(0, 840px);
  min-height: auto;
  padding-block: 88px 70px;
  border-bottom: 1px solid var(--line);
}

.page-hero--banner {
  grid-template-columns: minmax(0, 1fr);
  gap: 42px;
  min-height: auto;
  padding-block: 56px 84px;
}

.page-hero--banner .hero-copy {
  max-width: 900px;
}

.page-hero--copy-only {
  grid-template-columns: minmax(0, 880px);
  min-height: auto;
  padding-block: 72px 88px;
  border-bottom: 1px solid var(--line);
}

.page-hero--copy-only::before,
.page-hero--banner::before,
.page-hero-legal::before {
  display: none;
}

.hero-copy,
.product-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-600);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  color: var(--navy-900);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

h1 {
  max-width: 17ch;
  margin: 0;
  font-size: clamp(2.8rem, 5.2vw, 5.2rem);
}

.product-hero h1 {
  font-size: clamp(2.7rem, 4.6vw, 4.7rem);
}

.page-hero-legal h1 {
  max-width: 20ch;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.hero-summary {
  max-width: 58ch;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  line-height: 1.6;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 32px;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease-out, box-shadow 180ms ease-out, background 180ms ease-out;
}

.button-primary {
  color: var(--navy-950);
  background: var(--orange-500);
  box-shadow: 0 12px 28px rgba(243, 156, 46, 0.28);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(6, 44, 67, 0.2);
}

.hero-media {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
  isolation: isolate;
  perspective: 1100px;
  transform-style: preserve-3d;
}

.hero-media > img {
  position: relative;
  z-index: 3;
  width: min(100%, var(--source-display-width, 850px));
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 34px 38px rgba(6, 44, 67, 0.2));
  transform: rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateZ(28px);
  transition: transform 160ms ease-out;
}

.hero-media--banner {
  min-height: 0;
  width: 100%;
  aspect-ratio: var(--hero-image-ratio, 3.35 / 1);
  overflow: hidden;
  background: var(--surface-soft);
  border-radius: var(--radius-md);
}

.hero-media--banner > img {
  width: min(100%, var(--source-display-width, 100%));
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  filter: none;
  transform: none;
}

.orbital {
  position: absolute;
  z-index: 1;
  width: min(88%, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(0, 168, 200, 0.3);
  border-radius: 50%;
  transform: rotateX(70deg) rotateZ(-16deg) translateZ(-50px);
}

.orbital::before,
.orbital::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.orbital::before {
  inset: 10%;
  border: 1px dashed rgba(105, 185, 59, 0.28);
}

.orbital::after {
  left: 16%;
  top: 2%;
  width: 9px;
  height: 9px;
  background: var(--blue-500);
  box-shadow: 0 0 22px var(--blue-500);
}

.orbital-b {
  width: min(64%, 440px);
  transform: rotateX(68deg) rotateZ(34deg) translateZ(20px);
}

.hero-media-abstract {
  overflow: hidden;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 168, 200, 0.14), rgba(0, 168, 200, 0.02) 54%, transparent 72%);
}

.heart-field {
  position: relative;
  width: 340px;
  aspect-ratio: 1;
  border: 1px solid rgba(0, 168, 200, 0.3);
  border-radius: 50%;
  transform: rotateX(62deg) rotateZ(18deg);
  transform-style: preserve-3d;
}

.heart-field span {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(105, 185, 59, 0.35);
  border-radius: 50%;
  transform: translateZ(70px);
}

.heart-field span:nth-child(2) {
  inset: 26%;
  transform: translateZ(130px);
}

.heart-field span:nth-child(3) {
  inset: 40%;
  background: var(--orange-500);
  border: 0;
  box-shadow: 0 0 50px rgba(243, 156, 46, 0.55);
  transform: translateZ(190px);
}

.product-studio {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
  overflow: hidden;
  perspective: 1200px;
  transform-style: preserve-3d;
  border: 1px solid rgba(6, 44, 67, 0.12);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 50% 38%, #fff 0, #f4fafb 40%, #dfedf1 100%);
  box-shadow: var(--shadow-lg);
}

.studio-grid {
  position: absolute;
  inset: 46% -25% -40%;
  background-image: linear-gradient(rgba(0, 168, 200, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 168, 200, 0.12) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: rotateX(64deg) translateZ(-80px);
  transform-origin: center top;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

.studio-rings {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  transform-style: preserve-3d;
}

.studio-rings i {
  position: absolute;
  width: 60%;
  aspect-ratio: 1;
  border: 1px solid rgba(0, 168, 200, 0.28);
  border-radius: 50%;
  transform: rotateX(68deg) rotateZ(12deg) translateZ(-10px);
}

.studio-rings i:nth-child(2) {
  width: 44%;
  border-color: rgba(105, 185, 59, 0.35);
  transform: rotateX(72deg) rotateZ(-38deg) translateZ(20px);
}

.studio-rings i:nth-child(3) {
  width: 30%;
  border-style: dashed;
  transform: rotateX(60deg) rotateZ(70deg) translateZ(44px);
}

.product-main-image {
  position: relative;
  z-index: 3;
  width: min(88%, var(--product-source-cap, 88%));
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 34px 26px rgba(6, 44, 67, 0.22));
  transform: rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateZ(80px);
  transition: opacity 160ms ease-out, transform 180ms ease-out;
}

.gallery-thumbs {
  position: absolute;
  z-index: 5;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  justify-content: center;
  gap: 9px;
}

.gallery-thumb {
  width: 58px;
  height: 58px;
  padding: 5px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(6, 44, 67, 0.14);
  border-radius: 10px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: border 180ms ease-out, transform 180ms ease-out, box-shadow 180ms ease-out;
}

.gallery-thumb:hover,
.gallery-thumb.is-active {
  border-color: var(--blue-500);
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(6, 44, 67, 0.16);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.reading-progress {
  position: fixed;
  z-index: 210;
  left: 0;
  top: var(--header-height);
  width: 100%;
  height: 2px;
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue-500), var(--green-500));
  transform: scaleX(0);
  transform-origin: left;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 800px) minmax(240px, 360px);
  justify-content: space-between;
  align-items: start;
  gap: clamp(56px, 9vw, 140px);
  padding-block: 100px 140px;
}

.prose {
  min-width: 0;
  color: #294655;
}

.prose h1:first-child {
  display: none;
}

.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6 {
  scroll-margin-top: 110px;
}

.prose h2 {
  margin: 2.6em 0 0.7em;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
}

.prose h2:first-child,
.prose > p:first-child + h2 {
  margin-top: 0;
}

.prose h3 {
  margin: 2.2em 0 0.6em;
  font-size: clamp(1.55rem, 2.2vw, 2.3rem);
  line-height: 1.2;
}

.prose h4,
.prose h5,
.prose h6 {
  margin: 2em 0 0.5em;
  color: var(--navy-800);
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.prose p {
  max-width: 74ch;
  margin: 0 0 1.25em;
}

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

.prose blockquote {
  margin: 2.5em 0;
  padding: 24px 28px;
  color: var(--navy-900);
  background: var(--surface-soft);
  border-left: 4px solid var(--green-500);
}

.content-list {
  display: grid;
  gap: 12px;
  margin: 0 0 1.7em;
  padding: 0;
  list-style: none;
}

.content-list li {
  position: relative;
  padding-left: 28px;
}

.content-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--green-500);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(105, 185, 59, 0.12);
}

.content-action a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 10px 18px;
  color: var(--navy-900);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
}

.content-aside {
  position: sticky;
  top: calc(var(--header-height) + 44px);
  display: grid;
  gap: 18px;
}

.aside-card {
  padding: 28px;
  background: var(--navy-900);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.aside-card a {
  color: white;
  font-weight: 700;
}

.media-stack img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.source-layout {
  padding-block: clamp(72px, 8vw, 118px) clamp(100px, 11vw, 160px);
}

.content-layout--source {
  grid-template-columns: minmax(0, 940px) minmax(240px, 320px);
}

.source-content {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  color: #294655;
}

.source-content a,
.source-content figcaption {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.content-component {
  min-width: 0;
  padding-block: clamp(42px, 5.5vw, 78px);
  border-top: 1px solid var(--line);
}

.content-component:first-child {
  padding-top: 0;
  border-top: 0;
}

.content-component:last-child {
  padding-bottom: 0;
}

.source-content--audience > .content-component--tabs {
  padding-bottom: clamp(60px, 7vw, 96px);
}

.source-content--audience > .content-component--cards {
  padding-block: clamp(64px, 7vw, 96px);
}

.source-content--audience .content-component--cards .semantic-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
}

.landing-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-block: clamp(64px, 7vw, 96px);
  border-top: 1px solid var(--line);
}

.landing-proof-grid > .content-component {
  display: grid;
  align-content: start;
  min-height: 100%;
  padding: clamp(28px, 3.5vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
}

.landing-proof-grid > .content-component:nth-child(2) {
  color: rgba(255, 255, 255, 0.86);
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.landing-proof-grid > .content-component:nth-child(2) h2,
.landing-proof-grid > .content-component:nth-child(2) h3,
.landing-proof-grid > .content-component:nth-child(2) h4,
.landing-proof-grid > .content-component:nth-child(2) a {
  color: white;
}

.landing-proof-grid > .content-component:nth-child(2) .semantic-action a,
.landing-proof-grid > .content-component:nth-child(2) .semantic-actions a,
.landing-feature-band .semantic-action a,
.landing-feature-band .semantic-actions a {
  color: var(--navy-900);
}

.landing-feature-band {
  margin-top: clamp(64px, 7vw, 96px);
  padding: clamp(30px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.88);
  background: var(--navy-900);
  border-radius: var(--radius-lg);
}

.landing-feature-band .content-component {
  padding: 0;
  border: 0;
}

.landing-feature-band h2,
.landing-feature-band h3,
.landing-feature-band h4,
.landing-feature-band a {
  color: white;
}

.regulatory-review-code {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.regulatory-review-code .content-component {
  padding: 0;
  border: 0;
}

.regulatory-review-code p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}

.therapy-index-composition {
  gap: 26px;
}

.therapy-index {
  padding: clamp(22px, 3.5vw, 42px);
  color: white;
  background:
    radial-gradient(circle at 100% 0, rgba(55, 190, 202, 0.18), transparent 38%),
    var(--navy-950);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(3, 29, 44, 0.16);
}

.therapy-index-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.therapy-index-card {
  min-width: 0;
  min-height: 230px;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 18px;
  align-items: start;
  gap: 14px;
  padding: clamp(24px, 3vw, 34px);
  color: white;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  text-decoration: none;
  overflow-wrap: normal;
  word-break: normal;
  transition: background 180ms ease-out, border-color 180ms ease-out, transform 180ms ease-out;
}

.therapy-index-card:hover,
.therapy-index-card:focus-visible {
  color: white;
  background: rgba(255, 255, 255, 0.105);
  border-color: rgba(117, 214, 229, 0.55);
  transform: translateY(-3px);
}

.therapy-index-number {
  padding-top: 3px;
  color: #9fc5d2;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.source-content .therapy-index-card h2 {
  max-width: 22ch;
  margin: 0;
  color: white;
  font-size: clamp(1.25rem, 1.8vw, 1.72rem);
  line-height: 1.16;
  letter-spacing: -0.025em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.source-content .therapy-index-card p {
  max-width: 48ch;
  margin: 18px 0 0;
  color: #c7dbe3;
  font-size: 0.94rem;
  font-weight: 450;
  line-height: 1.58;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: pretty;
}

.therapy-index-card i {
  color: #75d6e5;
  font-style: normal;
}

body[data-archetype="audience-landing"] .source-layout {
  padding-top: 36px;
}

.semantic-bundle {
  min-width: 0;
  display: grid;
  gap: clamp(24px, 3vw, 42px);
}

.semantic-bundle--split {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
}

.semantic-copy {
  min-width: 0;
  max-width: 76ch;
}

.semantic-copy > :first-child {
  margin-top: 0;
}

.semantic-copy > :last-child {
  margin-bottom: 0;
}

.semantic-content h2,
.semantic-content h3,
.semantic-content h4 {
  max-width: 34ch;
  overflow-wrap: anywhere;
}

.semantic-content h2 {
  margin: 0 0 0.65em;
  font-size: clamp(2rem, 3.4vw, 3.8rem);
  line-height: 1.06;
}

.semantic-content h3 {
  margin: 1.8em 0 0.65em;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.16;
}

.semantic-content h4 {
  margin: 1.6em 0 0.55em;
  font-size: clamp(1.14rem, 1.5vw, 1.45rem);
  line-height: 1.25;
}

.semantic-content p,
.semantic-content li {
  max-width: 74ch;
  font-size: clamp(1rem, 1.12vw, 1.1rem);
  line-height: 1.72;
}

.semantic-content ul,
.semantic-content ol {
  display: grid;
  gap: 9px;
  max-width: 74ch;
  margin: 0 0 1.6em;
  padding-left: 1.35em;
}

.semantic-action a,
.semantic-actions a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 10px 18px;
  color: var(--navy-900);
  background: white;
  border: 1px solid #b9cbd3;
  border-radius: 999px;
  text-decoration: none;
}

.semantic-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.semantic-caption,
.semantic-media figcaption {
  color: var(--ink-soft);
  font-size: 0.78rem !important;
  line-height: 1.45 !important;
}

.semantic-media {
  min-width: 0;
  display: grid;
  gap: 18px;
}

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

.semantic-media figure {
  min-width: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  margin: 0;
  padding: clamp(14px, 2vw, 24px);
  overflow: hidden;
  background: #f6fafb;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.semantic-media img {
  display: block;
  width: min(100%, var(--source-display-width, 100%)) !important;
  height: auto;
  max-height: 680px;
  object-fit: contain;
}

.semantic-card .semantic-media img,
.semantic-asset-card img {
  width: min(100%, var(--source-display-width, 100%)) !important;
}

.content-component--gallery .semantic-media {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

.content-component--gallery .semantic-media figure {
  min-height: 250px;
}

.content-component--timeline,
.content-component--references,
.content-component--table,
.content-component--documents {
  padding-inline: clamp(20px, 3.5vw, 48px);
  background: #f7fafb;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.content-component--timeline .semantic-bundle--split {
  grid-template-columns: 1fr;
}

.content-component--timeline .semantic-media {
  width: 100%;
}

.content-component--timeline .semantic-media img {
  width: min(100%, 1000px) !important;
  max-height: none;
}

.timeline-mobile-hint {
  display: none;
}

.semantic-videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: 20px;
}

.source-video-context {
  display: grid;
  gap: 8px;
  margin-bottom: clamp(24px, 3vw, 38px);
}

.source-video-context h2 {
  max-width: 20ch;
  margin: 0;
}

.semantic-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 18px;
}

.semantic-card-grid:has(> .semantic-card:nth-child(4):last-child) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-page-type="news"] .content-component--cards .semantic-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-component--cards > .semantic-bundle + .semantic-card-grid {
  margin-top: 30px;
}

.semantic-card {
  min-width: 0;
  display: grid;
  padding: clamp(24px, 3vw, 36px);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: border-color 180ms ease-out, box-shadow 180ms ease-out, transform 180ms ease-out;
}

.semantic-card:hover {
  border-color: rgba(0, 132, 158, 0.34);
  box-shadow: 0 18px 42px rgba(3, 29, 44, 0.1);
  transform: translateY(-3px);
}

.semantic-card .semantic-bundle--split {
  grid-template-columns: 1fr;
}

.semantic-card .semantic-bundle,
.semantic-card .semantic-copy {
  height: 100%;
}

.semantic-card .semantic-copy {
  display: flex;
  flex-direction: column;
}

.source-content .semantic-card .semantic-card-title {
  max-width: 24ch;
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(1.3rem, 1.55vw, 1.62rem);
  line-height: 1.14;
  letter-spacing: -0.025em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.source-content .semantic-card .semantic-card-description {
  max-width: 52ch;
  margin: clamp(18px, 2vw, 26px) 0 0;
  color: var(--ink-soft);
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  font-weight: 450;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: pretty;
}

.semantic-card .semantic-action,
.semantic-card .semantic-actions {
  margin-top: auto;
  padding-top: clamp(24px, 3vw, 36px);
}

body[data-page-type="news"] .semantic-card .semantic-bundle--split .semantic-media {
  grid-row: 1;
}

body[data-page-type="news"] .semantic-card .semantic-bundle--split .semantic-copy {
  grid-row: 2;
}

body[data-page-type="news"] .semantic-card .semantic-media figure {
  height: 180px;
  min-height: 0;
  padding: 16px;
}

body[data-page-type="news"] .semantic-card .semantic-media img {
  width: auto !important;
  max-width: 100%;
  max-height: 146px;
}

body[data-page-type="news"] .semantic-card .semantic-card-title {
  order: 2;
  margin-top: 10px;
}

body[data-page-type="news"] .semantic-card .semantic-card-description {
  order: 1;
  margin-top: 0;
  color: var(--blue-600);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-page-type="news"] .semantic-card .semantic-copy > p:not(.semantic-card-description, .semantic-action) {
  order: 3;
}

body[data-page-type="news"] .semantic-card .semantic-action,
body[data-page-type="news"] .semantic-card .semantic-actions {
  order: 4;
}

.semantic-tabs {
  margin-top: 30px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.semantic-tablist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  padding: 8px;
  background: #edf4f6;
  border-bottom: 1px solid var(--line);
}

.semantic-tablist button {
  min-height: 54px;
  padding: 12px 18px;
  color: var(--navy-800);
  background: transparent;
  border: 0;
  border-radius: calc(var(--radius-sm) - 2px);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.semantic-tablist button[aria-selected="true"] {
  color: white;
  background: var(--navy-900);
}

.semantic-tabpanel {
  padding: clamp(26px, 4vw, 54px);
}

.semantic-tabpanel[hidden] {
  display: none;
}

.semantic-tabpanel .semantic-bundle--split {
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
}

.semantic-tabpanel .semantic-media {
  grid-column: 1;
  grid-row: 1;
}

.semantic-tabpanel .semantic-copy {
  grid-column: 2;
}

.semantic-accordion {
  display: grid;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.semantic-accordion-category {
  margin: 42px 0 12px !important;
  color: var(--blue-600);
  font-size: 0.78rem !important;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.semantic-accordion-item {
  border-bottom: 1px solid var(--line);
}

.source-content .semantic-accordion-item > h2 {
  max-width: none;
  margin: 0;
  font-size: 0;
  line-height: 0;
}

.semantic-accordion-item button {
  width: 100%;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 2px;
  color: var(--navy-900);
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  font-weight: 750;
  line-height: 1.25;
  text-align: left;
}

.semantic-accordion-label {
  display: grid;
  gap: 3px;
}

.semantic-accordion-label small {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.semantic-accordion-item button i {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.semantic-accordion-item button i::before,
.semantic-accordion-item button i::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 10px;
  width: 16px;
  height: 2px;
  background: currentColor;
}

.semantic-accordion-item button i::after {
  transform: rotate(90deg);
  transition: transform 180ms ease-out;
}

.semantic-accordion-item button[aria-expanded="true"] i::after {
  transform: rotate(0);
}

.semantic-accordion-panel {
  padding: 0 0 30px;
}

.semantic-accordion-panel[hidden] {
  display: none;
}

.semantic-documents {
  display: grid;
  border-top: 1px solid var(--line);
}

.semantic-document {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 64px;
  padding: 14px 2px;
  color: var(--navy-900) !important;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.semantic-document span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.semantic-document strong {
  color: var(--blue-600);
  font-size: 0.76rem;
  white-space: nowrap;
}

.semantic-asset-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  gap: 16px;
}

.semantic-asset-card {
  min-width: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.semantic-asset-card figure {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 14px;
  margin: 0;
  padding: 18px;
}

.semantic-asset-card img {
  width: min(100%, var(--source-display-width, 100%));
  height: auto;
  max-height: 210px;
  object-fit: contain;
}

.semantic-asset-card figcaption {
  width: 100%;
  color: var(--navy-800);
  font-size: 0.82rem;
  line-height: 1.4;
}

.semantic-asset-card > a {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  color: white;
  background: var(--navy-900);
  text-decoration: none;
}

.semantic-tables {
  display: grid;
  gap: 28px;
}

.semantic-table-scroll {
  max-width: 100%;
  overflow: auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.semantic-table-scroll table {
  display: table;
  width: 100%;
  min-width: 640px;
}

.semantic-form fieldset {
  min-width: 0;
  margin: 30px 0 0;
  padding: clamp(22px, 3vw, 38px);
  background: #f7fafb;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.semantic-form legend {
  padding-inline: 8px;
  color: var(--navy-900);
  font-size: 1rem;
  font-weight: 800;
}

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

.semantic-form-grid label {
  align-self: end;
  color: var(--navy-800);
  font-size: 0.78rem;
  font-weight: 800;
}

.semantic-form-grid label span {
  color: #965400;
  font-size: 0.68rem;
}

.semantic-form-grid input,
.semantic-form-grid select,
.semantic-form-grid textarea {
  margin-bottom: 10px;
}

.semantic-form .button {
  margin-top: 22px;
}

.semantic-form-status {
  margin: 16px 0 0 !important;
  font-size: 0.88rem !important;
}

.semantic-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.semantic-stat {
  min-height: 210px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(28px, 4vw, 48px);
  background: white;
}

.semantic-stat strong {
  color: var(--navy-900);
  font-size: clamp(2.5rem, 4.4vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.semantic-stat span {
  max-width: 24ch;
  color: var(--ink-soft);
  font-weight: 750;
  line-height: 1.35;
}

body[data-archetype="product-detail"] .semantic-content h2 {
  font-size: clamp(1.9rem, 2.6vw, 3rem);
}

.history-content {
  max-width: 1120px;
  margin-inline: auto;
}

.history-list {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.history-list::before {
  content: "";
  position: absolute;
  left: 104px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: var(--line);
}

.history-entry {
  position: relative;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  min-width: 0;
  padding-block: clamp(30px, 4vw, 54px);
  overflow-wrap: normal;
}

.history-entry::before {
  content: "";
  position: absolute;
  left: 98px;
  top: clamp(43px, calc(4vw + 12px), 67px);
  width: 13px;
  height: 13px;
  background: white;
  border: 3px solid var(--blue-500);
  border-radius: 50%;
}

.history-entry time {
  padding-right: 28px;
  color: var(--navy-900);
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.history-entry-body {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: clamp(28px, 5vw, 70px);
  padding-left: clamp(34px, 5vw, 64px);
}

.history-entry .semantic-bundle {
  gap: 16px;
}

.history-entry .semantic-copy {
  max-width: 70ch;
}

.history-entry .semantic-copy ul {
  gap: 10px;
  margin: 0;
}

.history-entry-media {
  width: 180px;
  display: grid;
  justify-items: center;
  gap: 8px;
  margin: 0;
  padding: 14px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.history-entry-media img {
  width: min(100%, var(--source-display-width, 100%));
  height: auto;
}

.history-entry-media figcaption {
  color: var(--ink-soft);
  font-size: 0.7rem;
  line-height: 1.35;
}

.leadership-directory {
  display: grid;
  gap: clamp(46px, 6vw, 76px);
}

.leadership-intro {
  max-width: 800px;
}

.leadership-intro p {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(1.45rem, 2.5vw, 2.35rem);
  font-weight: 650;
  line-height: 1.28;
  letter-spacing: -0.03em;
}

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

.leader-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  gap: clamp(22px, 3vw, 36px);
  padding: clamp(22px, 3vw, 34px);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.leader-card figure {
  min-height: 190px;
  display: grid;
  place-items: center;
  margin: 0;
}

.leader-card img {
  width: min(100%, var(--source-display-width, 100%)) !important;
  height: auto;
  border-radius: 4px;
}

.leader-card h2 {
  margin: 0 0 10px;
  font-size: clamp(1.3rem, 1.8vw, 1.75rem);
  line-height: 1.14;
}

.leader-card h2 a {
  color: var(--navy-900);
  text-decoration-color: var(--blue-500);
}

.leader-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.5;
}

.leader-card-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--blue-600);
  font-size: 0.82rem;
  font-weight: 800;
}

.about-composition {
  display: grid;
  gap: 0;
}

.about-composition > section {
  padding-block: clamp(64px, 8vw, 108px);
  border-top: 1px solid var(--line);
}

.about-composition > section:first-child {
  padding-top: 0;
  border-top: 0;
}

.about-lead .semantic-bundle--split,
.about-quality .semantic-bundle--split {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.about-values-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(42px, 7vw, 96px);
}

.about-values-figure {
  position: sticky;
  top: 138px;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: clamp(22px, 3vw, 40px);
  background: linear-gradient(145deg, #f1f8fa, #ffffff 64%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.about-values-figure img {
  display: block;
  width: min(100%, var(--source-display-width, 100%)) !important;
  height: auto;
  margin-inline: auto;
}

.about-values-figure figcaption {
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.45;
}

.about-values-list {
  border-top: 1px solid var(--line);
}

.about-value-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: start;
  gap: clamp(18px, 3vw, 36px);
  padding-block: clamp(30px, 4vw, 52px);
  border-bottom: 1px solid var(--line);
}

.about-value-card > span {
  padding-top: 8px;
  color: var(--blue-600);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.about-value-card h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  line-height: 1.05;
}

.about-value-card p {
  min-width: 0;
  max-width: 56ch;
  margin: 0;
  grid-column: 2;
  line-height: 1.72;
}

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

.about-purpose-grid article {
  min-height: 320px;
  display: grid;
  align-content: end;
  padding: clamp(32px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.88);
  background: var(--navy-900);
  border-radius: var(--radius-md);
}

.about-purpose-grid article:nth-child(2) {
  color: var(--ink);
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.about-purpose-grid article:first-child h4,
.about-purpose-grid article:first-child p {
  color: white;
}

.about-purpose-grid h4,
.about-facts h4,
.about-quality h4,
.about-awards h4 {
  margin-top: 0;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-purpose-grid p {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2.3vw, 2.2rem);
  font-weight: 650;
  line-height: 1.28;
  letter-spacing: -0.03em;
}

.about-facts {
  padding-inline: clamp(24px, 4vw, 52px);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.about-facts .semantic-copy {
  max-width: none;
}

.about-facts ul {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 32px 0 0;
  padding: 0;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  list-style: none;
}

.about-facts li {
  min-height: 132px;
  display: flex;
  align-items: center;
  padding: 24px;
  background: white;
  font-weight: 700;
  line-height: 1.4;
}

.about-quality .semantic-media figure,
.about-awards .semantic-media figure {
  background: white;
}

.about-awards .semantic-bundle--split {
  grid-template-columns: minmax(0, 0.7fr) minmax(360px, 1.3fr);
}

.about-careers {
  padding-inline: clamp(28px, 5vw, 64px);
  color: white;
  background: var(--navy-900);
  border-radius: var(--radius-lg);
}

.about-careers .semantic-copy {
  max-width: 780px;
}

.about-careers p {
  color: white;
  font-size: clamp(1.5rem, 2.7vw, 2.6rem);
  font-weight: 650;
  line-height: 1.25;
}

.about-careers .semantic-action a {
  color: var(--navy-900);
  background: white;
}

.careers-composition,
.events-composition {
  display: grid;
  gap: 0;
}

.careers-composition > section {
  padding-block: clamp(64px, 8vw, 110px);
  border-top: 1px solid var(--line);
}

.careers-composition > section:first-child {
  padding-top: 0;
  border-top: 0;
}

.career-opening {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.career-opening h2,
.career-section-heading h2,
.career-community h2,
.career-team h2,
.career-legal h2,
.career-ready h2,
.event-index-heading h2 {
  max-width: 20ch;
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.5rem);
}

.career-opening-actions,
.career-ready > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.career-opening-actions a,
.career-ready a,
.event-card-actions a,
.event-filters a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 10px 18px;
  color: var(--navy-900);
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.career-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  align-items: end;
  gap: clamp(36px, 7vw, 96px);
  margin-bottom: clamp(40px, 6vw, 72px);
}

.career-section-heading p {
  margin: 0;
}

.career-feature-grid,
.career-value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.career-feature-grid article,
.career-value-grid article {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(24px, 3vw, 36px);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.career-feature-grid img,
.career-value-grid img {
  width: min(100%, var(--source-display-width, 100%)) !important;
  height: auto;
}

.career-feature-grid h3,
.career-value-grid h3,
.career-benefit-grid h3 {
  margin: 0;
  font-size: clamp(1.25rem, 1.7vw, 1.7rem);
}

.career-feature-grid p,
.career-value-grid p,
.career-benefit-grid p {
  margin: 0;
}

.career-benefits,
.career-values {
  padding-inline: clamp(24px, 4vw, 52px);
  background: var(--surface-soft);
  border-radius: var(--radius-lg);
}

.career-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.career-benefit-grid article {
  min-height: 220px;
  padding: clamp(24px, 3vw, 36px);
  background: white;
}

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

.career-community {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: clamp(40px, 7vw, 92px);
}

.career-community ul {
  margin-top: 28px;
}

.career-community figure {
  margin: 0;
  padding: 18px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.career-community img {
  width: min(100%, var(--source-display-width, 100%)) !important;
  height: auto;
}

.career-team .semantic-videos {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.career-legal {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(40px, 7vw, 90px);
}

.career-ready {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-inline: clamp(30px, 5vw, 64px);
  color: white;
  background: var(--navy-900);
  border-radius: var(--radius-lg);
}

.career-ready h2,
.career-ready p {
  color: white;
}

.event-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 56px;
}

.event-index-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.event-index-heading p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.event-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.event-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.event-card--no-media {
  border-top: 5px solid var(--blue-500);
}

.event-card figure {
  min-height: 190px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 20px;
  background: var(--surface-soft);
}

.event-card figure img {
  width: min(100%, var(--source-display-width, 100%)) !important;
  height: auto;
  max-height: 170px;
}

.event-card > div {
  display: grid;
  align-content: start;
  padding: clamp(24px, 3vw, 34px);
}

.event-card h3 {
  margin: 0 0 24px;
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
  line-height: 1.17;
}

.event-card h3 a {
  color: var(--navy-900);
  text-decoration-color: var(--blue-500);
}

.event-card p {
  margin: 0 0 7px;
  color: var(--ink-soft);
}

.event-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.source-module {
  min-width: 0;
  isolation: isolate;
}

.source-module > :first-child,
.source-module > :first-child > :first-child {
  margin-top: 0;
}

.source-content .container,
.source-content .container-fluid,
.source-content [class*="col-"] {
  min-width: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.source-content .row {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  align-items: stretch;
  gap: clamp(22px, 3vw, 42px);
  margin: 0;
}

.source-content .row + .row,
.source-content section + section,
.source-content hr + * {
  margin-top: clamp(34px, 5vw, 72px);
}

.source-content h2,
.source-content h3,
.source-content h4,
.source-content h5,
.source-content h6 {
  max-width: 28ch;
  margin: 1.8em 0 0.65em;
  overflow-wrap: break-word;
  scroll-margin-top: calc(var(--header-height) + 30px);
}

.source-content h2 {
  font-size: clamp(2.15rem, 4.2vw, 4.6rem);
  line-height: 1.02;
}

.source-content h3 {
  font-size: clamp(1.65rem, 2.6vw, 2.85rem);
  line-height: 1.12;
}

.source-content h4 {
  font-size: clamp(1.35rem, 2vw, 2.05rem);
  line-height: 1.18;
}

.source-content h5,
.source-content h6 {
  font-size: clamp(1.08rem, 1.4vw, 1.35rem);
  line-height: 1.28;
}

.source-content p,
.source-content li,
.source-content dd,
.source-content dt {
  max-width: 76ch;
  overflow-wrap: break-word;
}

.source-content p {
  margin: 0 0 1.25em;
}

.source-content ul,
.source-content ol {
  display: grid;
  gap: 10px;
  max-width: 76ch;
  margin: 0 0 1.7em;
  padding-left: 1.35em;
  padding-right: 0;
}

.source-content li {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.source-content a {
  color: var(--blue-600);
  font-weight: 700;
}

.source-content .semantic-copy a {
  padding-block: 1px;
}

.source-content img,
.source-content picture,
.source-content video,
.source-content iframe {
  max-width: 100%;
}

.source-content img {
  width: min(100%, var(--source-display-width, 100%));
  height: auto;
  object-fit: contain;
}

.source-content figure,
.source-content p:has(> img:only-child) {
  margin: 0;
}

.source-content figure > img,
.source-content p > img:only-child,
.source-module--media > div > div > div > img,
.source-module--timeline img {
  width: 100%;
}

.semantic-content figure > img,
.semantic-content p > img:only-child {
  width: min(100%, var(--source-display-width, 100%)) !important;
}

.legal-prose,
.legal-prose p,
.legal-prose li,
.legal-prose a {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.source-content .clip-box,
.source-content .bgbrightGrey,
.source-content .card,
.source-content blockquote {
  min-width: 0;
  padding: clamp(24px, 3vw, 42px);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.source-content .clip-box h3 {
  margin-top: 0;
}

.source-content .text-align-center,
.source-content .text-center {
  text-align: center;
}

.source-content .text-align-center img,
.source-content .text-center img {
  margin-inline: auto;
}

.source-content .team-img img,
.source-content .views-field-field-image img {
  margin-inline: auto;
}

.source-module--media,
.source-module--timeline {
  padding: clamp(24px, 4vw, 56px);
  background: #f7fafb;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.source-module--media img,
.source-module--timeline img {
  max-height: none;
  border-radius: var(--radius-sm);
}

.source-media-open {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  margin-top: 24px;
  padding: 10px 18px;
  color: var(--navy-900) !important;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
}

body[data-archetype="professional-resource"] .page-hero--copy-only {
  padding-block: clamp(52px, 5vw, 70px) clamp(48px, 5vw, 68px);
}

body[data-archetype="professional-resource"] .source-layout {
  padding-top: clamp(44px, 5vw, 72px);
}

.source-content [data-video-src],
.source-content iframe,
.source-content video {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  background: var(--navy-900);
  border: 0;
  border-radius: var(--radius-md);
}

.source-content [data-video-src] {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  place-items: center;
  padding: 24px;
  text-align: center;
}

.source-video-button {
  display: inline-flex;
  align-items: center;
  align-self: center;
  justify-content: center;
  justify-self: center;
  min-height: 52px;
  margin: auto;
  padding: 12px 22px;
  color: var(--navy-950);
  background: var(--blue-500);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}

.source-video-status {
  position: absolute;
  right: 18px;
  bottom: 14px;
  left: 18px;
  max-width: 44ch;
  margin: 0 auto;
  color: #d9e7ec;
  font-size: 0.88rem;
  text-align: center;
}

.source-content table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border-spacing: 0;
  border-collapse: collapse;
}

.source-content th,
.source-content td {
  min-width: 150px;
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  border: 1px solid var(--line);
}

.source-content input:not([type="checkbox"]):not([type="radio"]),
.source-content select,
.source-content textarea {
  width: 100%;
  min-height: 50px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.source-module--references {
  padding: clamp(24px, 3vw, 38px);
  color: var(--ink-soft);
  background: #f7fafb;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

.directory-panel {
  margin-bottom: clamp(72px, 9vw, 120px);
  padding: clamp(28px, 5vw, 64px);
  background: var(--navy-950);
  border-radius: var(--radius-lg);
}

.directory-panel .section-heading {
  margin-bottom: 36px;
  padding-bottom: 26px;
  border-color: rgba(255, 255, 255, 0.16);
}

.directory-panel h2 {
  color: white;
}

.directory-panel .eyebrow,
.practice-heading .eyebrow,
.therapy-world-heading .eyebrow,
.aside-card .eyebrow,
.contact-panel .eyebrow {
  color: var(--blue-300);
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.directory-grid a {
  min-width: 0;
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  color: white;
  background: var(--navy-900);
  text-decoration: none;
  transition: background 180ms ease-out;
}

.directory-grid a:hover {
  background: var(--navy-800);
}

.directory-grid strong {
  font-size: 1.05rem;
}

.directory-grid span {
  color: #abc2cc;
  font-size: 0.74rem;
}

.job-directory {
  padding-block: clamp(72px, 8vw, 118px) 30px;
}

.job-directory .section-heading > p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.job-filters {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 18px;
  margin-top: 32px;
}

.job-filters label {
  display: grid;
  gap: 8px;
  color: var(--navy-900);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.job-filters input,
.job-filters select {
  width: 100%;
  min-height: 54px;
  padding: 10px 14px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  letter-spacing: normal;
  text-transform: none;
}

.job-status {
  margin: 22px 0 12px;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.job-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.job-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.45fr);
  align-items: center;
  gap: 30px;
  padding: 26px 4px;
  border-bottom: 1px solid var(--line);
}

.job-card[hidden] {
  display: none;
}

.job-card p,
.job-card h3 {
  margin: 0;
}

.job-card p {
  color: var(--blue-600);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.job-card h3 {
  margin-top: 6px;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.job-card a {
  text-decoration: none;
}

.job-card > div:last-child {
  display: grid;
  gap: 4px;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.job-card small {
  color: var(--ink-soft);
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 62px;
  padding: 22px 24px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.job-meta p,
.job-meta span {
  margin: 0;
}

.job-meta p {
  flex: 1 1 100%;
  color: var(--navy-900);
  font-weight: 700;
}

.job-meta span {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.job-meta .button {
  margin-left: auto;
}

body[data-page-type="news"] .source-content .card {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  background: white;
  box-shadow: var(--shadow-sm);
}

body[data-page-type="news"] .source-content .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

body[data-page-type="news"] .source-content .card-title {
  margin-top: 0;
}

body[data-page-type="news"] .source-content .card-img-top {
  width: 100%;
  max-width: none;
}

.compliance-portal {
  max-width: 900px;
  padding: clamp(34px, 6vw, 76px);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.compliance-portal h2 {
  max-width: 16ch;
  margin-top: 0;
  font-size: clamp(2rem, 4vw, 4rem);
}

.compliance-portal p:not(.eyebrow) {
  max-width: 62ch;
  overflow-wrap: anywhere;
}

.contextual-media {
  display: grid;
  gap: clamp(26px, 4vw, 44px);
  min-width: 0;
  padding: clamp(26px, 4vw, 48px);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.contextual-media-heading h2 {
  max-width: 18ch;
  margin: 0;
}

.contextual-media-grid {
  display: grid;
  gap: 20px;
}

.contextual-media-card {
  min-width: 0;
  padding: clamp(22px, 3vw, 36px);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.contextual-media-card--video {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  background: white;
}

.contextual-media-card h2,
.contextual-media-card h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2.2vw, 2.2rem);
  line-height: 1.12;
}

.contextual-media--stories .contextual-media-grid,
.contextual-media--updates .contextual-media-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contextual-media--stories .contextual-media-card--video {
  grid-template-columns: 1fr;
  align-content: start;
}

.contextual-media-card--external {
  min-height: 220px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-content: stretch;
  background: white;
}

.contextual-media-card--external a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-900);
  font-weight: 800;
  text-underline-offset: 4px;
}

.contextual-media-card--external a span {
  font-size: 1.1em;
}

.patient-composition {
  gap: clamp(64px, 8vw, 112px);
}

.patient-composition > section,
.patient-composition > details {
  min-width: 0;
}

.patient-composition h2 {
  max-width: 26ch;
  font-size: clamp(1.8rem, 2.65vw, 2.75rem);
  line-height: 1.08;
  text-wrap: balance;
}

.patient-composition h3 {
  margin-top: 0;
  font-size: clamp(1.2rem, 1.65vw, 1.55rem);
}

.patient-lead {
  max-width: 820px;
}

.patient-lead p {
  color: var(--navy-800);
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  line-height: 1.68;
}

.patient-section-heading .semantic-bundle {
  gap: 0;
}

.patient-stat-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.6fr);
  gap: clamp(30px, 4vw, 54px);
  padding: clamp(34px, 5vw, 62px);
  color: white;
  background:
    radial-gradient(circle at 96% 4%, rgba(64, 202, 210, 0.2), transparent 38%),
    var(--navy-950);
  border-radius: var(--radius-lg);
  box-shadow: 0 26px 68px rgba(3, 29, 44, 0.16);
}

.patient-stat-story .patient-section-heading {
  grid-column: 1 / -1;
}

.patient-stat-story h2 {
  margin: 0;
  color: white;
}

.patient-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
}

.patient-stat-grid article {
  min-height: 190px;
  display: grid;
  align-content: center;
  padding: clamp(22px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.06);
}

.patient-stat-grid p {
  margin: 0;
  color: #d7e8ed;
  font-size: 0.93rem;
  line-height: 1.5;
}

.patient-stat-grid strong {
  display: inline-block;
  margin-bottom: 10px;
  color: white;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.patient-stat-figure {
  min-width: 0;
  display: grid;
  align-content: center;
  margin: 0;
  padding: 22px;
  background: white;
  border-radius: var(--radius-md);
}

.patient-stat-figure img {
  width: 100% !important;
  height: auto;
}

.patient-narrative,
.patient-treatment-path,
.patient-cryo-procedures,
.patient-cryo-pain,
.patient-cryo-safety,
.patient-featured-story,
.patient-more-stories {
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.patient-narrative--soft,
.patient-cryo-procedures,
.patient-more-stories {
  background: var(--surface-soft);
}

.patient-stages {
  display: grid;
  gap: 28px;
}

.patient-stage-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1.4fr);
  gap: 18px;
}

.patient-stage-card,
.patient-stage-advanced {
  min-width: 0;
  padding: clamp(24px, 3vw, 34px);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.patient-stage-card figure {
  height: 126px;
  display: grid;
  place-items: center;
  margin: 12px 0 22px;
}

.patient-stage-card figure img {
  width: min(100%, var(--source-display-width, 100%)) !important;
  max-width: 100%;
  max-height: 126px;
}

.patient-stage-card h3 {
  color: var(--navy-900);
}

.patient-stage-card p,
.patient-stage-symptoms {
  font-size: 0.96rem;
  line-height: 1.62;
}

.patient-stage-label {
  display: inline-flex;
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.patient-stage-advanced {
  display: grid;
  align-content: start;
  gap: 18px;
  background: var(--navy-950);
  border-color: var(--navy-950);
}

.patient-stage-advanced .patient-stage-label {
  color: #75d6e5;
}

.patient-stage-advanced-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.patient-stage-advanced-grid .patient-stage-card {
  box-shadow: none;
}

.patient-stage-symptoms {
  max-width: none !important;
  margin: 0;
  padding: 20px;
  color: #d7e8ed;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
}

.patient-impact-story .semantic-bundle--split,
.patient-cryo-overview,
.patient-cryo-how {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: clamp(34px, 5vw, 70px);
}

.patient-impact-story .semantic-media figure {
  padding: 20px;
}

.patient-treatment-path {
  color: white;
  background: var(--navy-950);
  border-color: var(--navy-950);
}

.patient-treatment-path h2,
.patient-treatment-path p {
  color: white;
}

.patient-treatment-path p a {
  color: #75d6e5;
}

.patient-treatment-path .semantic-action a,
.patient-treatment-path .semantic-actions a {
  color: var(--navy-950);
}

.patient-safety-link,
.patient-specialist {
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-md);
}

.patient-safety-link {
  background: #eef6f8;
  border-left: 5px solid var(--blue-500);
}

.patient-specialist {
  color: white;
  background: linear-gradient(135deg, #006f83, var(--navy-950));
}

.patient-specialist h2,
.patient-specialist p {
  color: white;
}

.patient-cryo-overview,
.patient-cryo-how {
  padding: clamp(32px, 5vw, 58px);
  border-radius: var(--radius-lg);
}

.patient-cryo-overview {
  background: var(--surface-soft);
}

.patient-cryo-how {
  color: white;
  background: var(--navy-950);
}

.patient-cryo-how h2,
.patient-cryo-how p {
  color: white;
}

.patient-animation {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(157, 189, 201, 0.6);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 46px rgba(3, 29, 44, 0.12);
}

.source-content .patient-animation video {
  display: block;
  width: 100%;
  background: white;
  border-radius: 0;
}

.patient-animation-toggle {
  position: absolute;
  right: 12px;
  bottom: 12px;
  min-height: 42px;
  padding: 9px 14px;
  color: white;
  background: rgba(3, 42, 61, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.patient-cryo-procedures .semantic-copy > ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  max-width: none;
  margin-top: 24px;
}

.patient-cryo-pain-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  align-items: start;
  gap: 24px;
  margin-top: 28px;
}

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

.patient-cryo-pain-grid > .patient-video-grid {
  grid-template-columns: 1fr;
}

.patient-featured-video-grid > .patient-video-grid {
  display: contents;
}

.patient-video-card {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(20px, 2.8vw, 28px);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.patient-video-card h3 {
  min-height: 2.4em;
  margin: 0;
  font-size: clamp(1.08rem, 1.4vw, 1.32rem);
  line-height: 1.2;
}

.patient-video-card .source-video-placeholder {
  margin-top: auto;
}

.patient-cryo-safety {
  border-left: 6px solid #d39a00;
}

.patient-cryo-safety-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.patient-cryo-safety-grid article {
  min-width: 0;
  padding: 22px;
  background: #fffaf0;
  border: 1px solid #ecdba8;
  border-radius: var(--radius-sm);
}

.patient-cryo-safety-grid p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.58;
}

.patient-featured-story,
.patient-more-stories {
  display: grid;
  gap: 28px;
}

.patient-references {
  padding: 0 clamp(22px, 3vw, 34px);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.patient-references summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--navy-900);
  font-weight: 850;
}

.patient-references[open] summary {
  border-bottom: 1px solid var(--line);
}

.patient-references > .semantic-bundle {
  padding-block: 26px;
}

.patient-references p,
.patient-references li {
  font-size: 0.82rem;
  line-height: 1.58;
}

.destination-gateway,
.specialist-gateway {
  min-width: 0;
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.destination-gateway {
  display: grid;
  gap: 28px;
  background: var(--surface-soft);
}

.destination-gateway p {
  max-width: 74ch;
  margin: 0;
  color: var(--navy-800);
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.68;
}

.destination-gateway-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.destination-gateway-actions a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  color: white;
  background: var(--navy-900);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.specialist-gateway {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(30px, 5vw, 64px);
  color: white;
  background:
    radial-gradient(circle at 0 0, rgba(55, 190, 202, 0.22), transparent 40%),
    var(--navy-950);
  border-color: var(--navy-950);
}

.specialist-gateway h2 {
  max-width: 18ch;
  margin: 0 0 28px;
  color: white;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
}

.specialist-disclosures {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
}

.specialist-disclosures p {
  margin: 0;
  color: #d7e8ed;
  font-size: 0.9rem;
  line-height: 1.58;
}

.specialist-disclosures .specialist-review-code {
  color: #9fc5d2;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.05em;
}

@media (max-width: 1120px) {
  body[data-page-type="news"] .content-component--cards .semantic-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body[data-page-type="news"] .content-component--cards .semantic-card-grid {
    grid-template-columns: 1fr;
  }

  body[data-page-type="news"] .semantic-card {
    padding: 20px;
  }

  body[data-page-type="news"] .semantic-card .semantic-bundle {
    gap: 18px;
  }

  body[data-page-type="news"] .semantic-card .semantic-media figure {
    height: 128px;
    padding: 10px;
  }

  body[data-page-type="news"] .semantic-card .semantic-media img {
    max-height: 106px;
  }

  body[data-page-type="news"] .semantic-card .semantic-copy > p:not(.semantic-card-description, .semantic-action) {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .source-content--audience .content-component--cards .semantic-card-grid,
  .semantic-card-grid:has(> .semantic-card:nth-child(4):last-child),
  .therapy-index-grid {
    grid-template-columns: 1fr;
  }

  .semantic-card {
    padding: 24px;
  }

  .therapy-index {
    padding: 14px;
  }

  .therapy-index-card {
    min-height: 0;
    grid-template-columns: 26px minmax(0, 1fr) 16px;
    gap: 12px;
    padding: 24px 20px;
  }

  .semantic-tabs .semantic-tablist {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
    scroll-snap-type: none;
  }

  .semantic-tabs .semantic-tablist button {
    width: 100%;
    min-height: 48px;
    flex: none;
    padding: 10px 14px;
    text-align: left;
  }

  .contextual-media-card--video,
  .contextual-media--stories .contextual-media-grid,
  .contextual-media--updates .contextual-media-grid {
    grid-template-columns: 1fr;
  }

  .contextual-media {
    padding: 20px;
  }

  .patient-composition {
    gap: 54px;
  }

  .patient-stat-story,
  .patient-stage-layout,
  .patient-impact-story .semantic-bundle--split,
  .patient-cryo-overview,
  .patient-cryo-how,
  .patient-cryo-pain-grid {
    grid-template-columns: 1fr;
  }

  .patient-stat-story {
    padding: 28px 22px;
  }

  .patient-stat-grid,
  .patient-stage-advanced-grid,
  .patient-video-grid,
  .patient-featured-video-grid,
  .patient-cryo-safety-grid {
    grid-template-columns: 1fr;
  }

  .patient-stat-grid article {
    min-height: 0;
    padding: 24px;
  }

  .patient-stat-figure {
    padding: 16px;
  }

  .patient-narrative,
  .patient-treatment-path,
  .patient-cryo-overview,
  .patient-cryo-how,
  .patient-cryo-procedures,
  .patient-cryo-pain,
  .patient-cryo-safety,
  .patient-featured-story,
  .patient-more-stories {
    padding: 26px 22px;
  }

  .patient-stage-card,
  .patient-stage-advanced {
    padding: 22px;
  }

  .patient-cryo-procedures .semantic-copy > ul {
    grid-template-columns: 1fr;
  }

  .specialist-gateway {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .destination-gateway {
    padding: 28px 22px;
  }

  .patient-video-card h3 {
    min-height: 0;
  }
}

.contact-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 120px;
  padding: clamp(32px, 5vw, 72px);
  overflow: hidden;
  color: white;
  background: var(--navy-900);
  border-radius: var(--radius-lg);
}

.contact-panel::after {
  content: "";
  position: absolute;
  right: -12%;
  top: -80%;
  width: 420px;
  aspect-ratio: 1;
  border: 1px solid rgba(117, 214, 229, 0.4);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(117, 214, 229, 0.07), 0 0 0 140px rgba(117, 214, 229, 0.04);
}

.contact-panel > * {
  position: relative;
  z-index: 2;
}

.contact-panel h2 {
  margin: 0;
  color: white;
  font-size: clamp(2rem, 4vw, 4rem);
}

.contact-panel .button {
  margin: 0;
  white-space: nowrap;
}

.related {
  padding-bottom: 140px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.related-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 120px;
  padding: 28px;
  color: white;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  border-radius: var(--radius-md);
  font-weight: 700;
  text-decoration: none;
  transition: transform 200ms ease-out, box-shadow 200ms ease-out;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.related-card svg,
.product-card svg {
  width: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.legal-page {
  background: #fbfcfc;
}

.legal-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 850px);
  align-items: start;
  justify-content: space-between;
  gap: 80px;
  padding-block: 88px 140px;
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  max-height: calc(100dvh - var(--header-height) - 56px);
  overflow: auto;
  padding: 22px 20px 22px 0;
  border-right: 1px solid var(--line);
  scrollbar-width: thin;
}

.legal-toc nav {
  display: grid;
  gap: 10px;
}

.legal-toc a {
  color: var(--ink-soft);
  font-size: 0.79rem;
  line-height: 1.35;
  text-decoration: none;
}

.legal-toc a:hover {
  color: var(--blue-600);
}

.legal-prose {
  color: #1f3a48;
}

.legal-revision {
  display: inline-flex;
  margin: 0 0 34px !important;
  padding: 9px 14px;
  color: var(--navy-900);
  background: #eaf5f7;
  border: 1px solid #c7e3e8;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.legal-prose h2 {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: clamp(1.7rem, 2.6vw, 2.7rem);
}

/* Home story */
.home-entry-stage {
  display: none;
}

html.motion-entry-ok body[data-page-type="home"] .home-entry-stage {
  position: fixed;
  z-index: 260;
  inset: 0;
  display: block;
  overflow: hidden;
  pointer-events: none;
  animation: atricure-entry-stage-exit 180ms var(--motion-ease-sharp) 1480ms both;
}

.home-entry-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: calc(50% + 1px);
  background:
    radial-gradient(circle at 50% 42%, rgba(0, 168, 200, 0.16), transparent 42%),
    linear-gradient(180deg, #052b40 0%, var(--navy-950) 58%, #021722 100%);
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.18);
  will-change: transform;
}

.home-entry-panel--left {
  left: 0;
  animation: atricure-entry-panel-left 1100ms var(--motion-ease-smooth) 340ms both;
}

.home-entry-panel--right {
  right: 0;
  animation: atricure-entry-panel-right 1100ms var(--motion-ease-smooth) 340ms both;
}

.home-entry-emblem {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: clamp(180px, 22vw, 292px);
  transform: translate3d(-50%, -58%, 0);
  animation: atricure-entry-emblem 780ms var(--motion-ease-smooth) 70ms both;
}

.home-entry-emblem img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.home-entry-axis {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: calc(50% + clamp(42px, 5vw, 68px));
  width: min(460px, 66vw);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-300) 22%, var(--blue-500) 52%, var(--green-500) 78%, transparent);
  transform-origin: center;
  animation: atricure-entry-axis 700ms var(--motion-ease-smooth) 160ms both;
}

html.motion-entry-ok body[data-page-type="home"] .site-header {
  animation: atricure-entry-header 720ms var(--motion-ease-smooth) 560ms both;
}

html.motion-entry-ok body[data-page-type="home"] .site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-500), var(--green-500));
  transform-origin: left center;
  animation: atricure-entry-header-rule 920ms var(--motion-ease-smooth) 660ms both;
  pointer-events: none;
}

html.motion-entry-ok body[data-page-type="home"] .primary-nav a,
html.motion-entry-ok body[data-page-type="home"] .header-actions {
  animation: atricure-entry-nav-item 500ms var(--motion-ease-smooth) both;
}

html.motion-entry-ok body[data-page-type="home"] .primary-nav a:nth-child(1) { animation-delay: 720ms; }
html.motion-entry-ok body[data-page-type="home"] .primary-nav a:nth-child(2) { animation-delay: 760ms; }
html.motion-entry-ok body[data-page-type="home"] .primary-nav a:nth-child(3) { animation-delay: 800ms; }
html.motion-entry-ok body[data-page-type="home"] .primary-nav a:nth-child(4) { animation-delay: 840ms; }
html.motion-entry-ok body[data-page-type="home"] .primary-nav a:nth-child(5) { animation-delay: 880ms; }
html.motion-entry-ok body[data-page-type="home"] .primary-nav a:nth-child(6) { animation-delay: 920ms; }
html.motion-entry-ok body[data-page-type="home"] .header-actions { animation-delay: 940ms; }

html.motion-entry-ok body[data-page-type="home"] .home-intro-media img {
  animation: atricure-entry-image var(--motion-entry-slow) var(--motion-ease-smooth) 240ms both;
  will-change: transform, opacity;
}

html.motion-entry-ok body[data-page-type="home"] .home-market {
  animation: atricure-entry-copy 580ms var(--motion-ease-smooth) 780ms both;
}

html.motion-entry-ok body[data-page-type="home"] .home-intro h1 {
  animation: atricure-entry-title 780ms var(--motion-ease-smooth) 860ms both;
}

html.motion-entry-ok body[data-page-type="home"] .home-intro-scroll {
  animation: atricure-entry-copy 500ms var(--motion-ease-smooth) 1050ms both;
}

html.motion-entry-ok body[data-page-type="home"] .home-intro-media figcaption {
  animation: atricure-entry-caption 450ms var(--motion-ease-smooth) 1100ms both;
}

html.motion-entry-ok .cookie-banner:not([hidden]) {
  animation: atricure-entry-cookie 350ms var(--motion-ease-smooth) 1580ms both;
}

html.motion-entry-cancelled .home-entry-stage {
  display: none !important;
}

html.motion-entry-cancelled body[data-page-type="home"] .site-header,
html.motion-entry-cancelled body[data-page-type="home"] .site-header::after,
html.motion-entry-cancelled body[data-page-type="home"] .primary-nav a,
html.motion-entry-cancelled body[data-page-type="home"] .header-actions,
html.motion-entry-cancelled body[data-page-type="home"] .home-intro-media img,
html.motion-entry-cancelled body[data-page-type="home"] .home-market,
html.motion-entry-cancelled body[data-page-type="home"] .home-intro h1,
html.motion-entry-cancelled body[data-page-type="home"] .home-intro-scroll,
html.motion-entry-cancelled body[data-page-type="home"] .home-intro-media figcaption,
html.motion-entry-cancelled .cookie-banner:not([hidden]) {
  animation: none !important;
  opacity: 1;
  transform: none;
}

@keyframes atricure-entry-stage-exit {
  from { opacity: 1; }
  to { opacity: 0; visibility: hidden; }
}

@keyframes atricure-entry-panel-left {
  0%, 18% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-101%, 0, 0); }
}

@keyframes atricure-entry-panel-right {
  0%, 18% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(101%, 0, 0); }
}

@keyframes atricure-entry-emblem {
  0% { opacity: 0; transform: translate3d(-50%, -52%, 0) scale(0.975); }
  28%, 68% { opacity: 1; transform: translate3d(-50%, -58%, 0) scale(1); }
  100% { opacity: 0; transform: translate3d(-50%, -61%, 0) scale(1.012); }
}

@keyframes atricure-entry-axis {
  0% { opacity: 0; transform: translateX(-50%) scaleX(0); }
  35%, 68% { opacity: 0.92; transform: translateX(-50%) scaleX(1); }
  100% { opacity: 0; transform: translateX(-50%) scaleX(1); }
}

@keyframes atricure-entry-header {
  from { opacity: 0; transform: translate3d(0, -18px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes atricure-entry-header-rule {
  0% { opacity: 0; transform: scaleX(0); }
  58% { opacity: 0.9; transform: scaleX(1); }
  100% { opacity: 0; transform: scaleX(1); }
}

@keyframes atricure-entry-nav-item {
  from { opacity: 0; transform: translate3d(0, -8px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes atricure-entry-image {
  from { opacity: 0.62; transform: scale(1.055); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes atricure-entry-copy {
  from { opacity: 0; transform: translate3d(0, 14px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes atricure-entry-title {
  from { opacity: 0; transform: translate3d(0, 22px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes atricure-entry-caption {
  from { opacity: 0; transform: translate3d(0, 8px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes atricure-entry-cookie {
  from { opacity: 0; transform: translate3d(0, 12px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.home-intro {
  position: relative;
  min-height: max(680px, 100svh);
  overflow: clip;
  isolation: isolate;
  color: white;
  background: var(--navy-950);
}

.home-intro-media,
.home-intro-media picture,
.home-intro-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-intro-media {
  z-index: -2;
  margin: 0;
  overflow: hidden;
  background: #064fa9;
}

.home-intro-media::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 29, 44, 0.88) 0%, rgba(3, 29, 44, 0.62) 34%, rgba(3, 29, 44, 0.08) 66%, rgba(3, 29, 44, 0.18) 100%),
    linear-gradient(180deg, rgba(3, 29, 44, 0.36), transparent 34%, rgba(3, 29, 44, 0.5));
  pointer-events: none;
}

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

.home-intro-media figcaption {
  position: absolute;
  z-index: 2;
  right: max(32px, calc((100vw - min(1380px, calc(100vw - 64px))) / 2));
  bottom: 28px;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 3px;
  max-width: min(460px, 42vw);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.68rem;
  line-height: 1.4;
  text-align: right;
  text-shadow: 0 2px 14px rgba(3, 29, 44, 0.84);
}

.home-intro-media figcaption a {
  color: white;
  font-weight: 800;
}

.home-intro-content {
  position: relative;
  z-index: 2;
  min-height: max(680px, 100svh);
  display: flex;
  align-items: flex-start;
  padding-top: clamp(150px, 18vh, 220px);
  padding-bottom: 104px;
}

.home-intro-copy {
  max-width: min(690px, 54vw);
}

.home-market {
  margin: 0 0 24px;
  color: #d5f4f8;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(3, 29, 44, 0.92);
}

.home-intro h1 {
  max-width: 19ch;
  color: white;
  font-weight: 600;
  font-size: clamp(2.7rem, 4.45vw, 4.55rem);
  line-height: 1.03;
  letter-spacing: -0.048em;
  text-wrap: balance;
  text-shadow: 0 5px 30px rgba(3, 29, 44, 0.88);
}

.home-intro-scroll {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(3, 29, 44, 0.9);
  padding-right: 4px;
}

.home-intro-scroll i {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.home-identity {
  position: relative;
  z-index: 3;
  padding: clamp(70px, 8vw, 112px) 0;
  color: white;
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.home-identity-grid {
  display: grid;
  grid-template-columns: minmax(140px, 0.34fr) minmax(0, 1.66fr);
  gap: clamp(38px, 7vw, 110px);
  align-items: start;
}

.home-identity h2 {
  max-width: 9ch;
  margin: 0;
  color: white;
  font-size: clamp(2.5rem, 4.4vw, 4.8rem);
  line-height: 1.02;
  text-wrap: balance;
}

.home-identity-statement {
  max-width: 72ch;
  margin: 0;
  color: #d2e3e9;
  font-size: clamp(1.08rem, 1.55vw, 1.45rem);
  line-height: 1.58;
}

.home-identity nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.home-identity nav a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 11px 18px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease-out, background 180ms ease-out, border-color 180ms ease-out;
}

.home-identity nav a:hover {
  color: var(--navy-950);
  background: white;
  border-color: white;
}

.purpose-section {
  position: relative;
  z-index: 3;
  padding: clamp(100px, 11vw, 164px) 0;
  color: var(--ink);
  background: #f6fafb;
}

.purpose-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(64px, 10vw, 150px);
  align-items: start;
}

.purpose-intro {
  position: sticky;
  top: calc(var(--header-height) + 42px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.purpose-intro h2 {
  max-width: 17ch;
  margin: 0;
  font-size: clamp(2.6rem, 4.4vw, 4.8rem);
  line-height: 1.04;
  text-wrap: balance;
}

.purpose-values {
  border-top: 1px solid var(--line);
}

.purpose-values article {
  min-width: 0;
  padding: clamp(36px, 5vw, 64px) 0;
  border-bottom: 1px solid var(--line);
  transform: translateY(14px);
  opacity: 0;
  transition: transform 320ms ease-out, opacity 320ms ease-out;
}

.purpose-values article.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.purpose-values header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.purpose-values header > span {
  color: var(--blue-600);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.purpose-values header img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.purpose-values h3 {
  margin: 22px 0 16px;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.purpose-values p {
  max-width: 55ch;
  margin: 0;
  color: #345260;
  font-size: clamp(0.98rem, 1.08vw, 1.1rem);
  line-height: 1.68;
}

.purpose-values article > a,
.practice-chapter > a {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.leadership-quote {
  position: relative;
  z-index: 3;
  padding: clamp(88px, 10vw, 144px) 0;
  color: white;
  background: #087f98;
}

.leadership-quote-grid {
  display: grid;
  grid-template-columns: minmax(140px, 0.34fr) minmax(0, 1.66fr);
  gap: clamp(38px, 7vw, 110px);
}

.leadership-quote .eyebrow {
  color: white;
}

.leadership-quote blockquote {
  max-width: 950px;
  margin: 0;
}

.leadership-quote blockquote > p {
  margin: 0;
  color: white;
  font-size: clamp(2.05rem, 4.1vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.leadership-quote footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-top: clamp(38px, 5vw, 66px);
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.leadership-quote cite {
  display: grid;
  gap: 5px;
  font-style: normal;
}

.leadership-quote cite a,
.leadership-quote footer > a {
  color: white;
  font-weight: 800;
  text-underline-offset: 4px;
}

.leadership-quote cite span {
  color: white;
  font-size: 0.8rem;
}

.practice-section {
  position: relative;
  z-index: 3;
  padding: clamp(100px, 11vw, 164px) 0;
  color: white;
  background: var(--navy-900);
}

.practice-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1.55fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
  padding-bottom: clamp(82px, 10vw, 140px);
}

.practice-heading h2 {
  max-width: 34ch;
  margin: 0;
  color: white;
  font-size: clamp(2.35rem, 4.2vw, 4.6rem);
  line-height: 1.05;
  text-wrap: balance;
}

.practice-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(64px, 10vw, 150px);
  align-items: start;
}

.practice-media-rail {
  position: sticky;
  top: calc(var(--header-height) + 42px);
  width: min(100%, 360px);
  aspect-ratio: 1;
}

.practice-media {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  background: #0b405b;
  opacity: 0;
  transform: scale(0.975);
  transition: opacity 340ms ease-out, transform 420ms ease-out;
}

.practice-media.is-active {
  z-index: 2;
  opacity: 1;
  transform: scale(1);
}

.practice-media img,
.practice-mobile-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.practice-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.practice-media figcaption {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  color: white;
  background: linear-gradient(180deg, transparent, rgba(3, 29, 44, 0.88));
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.practice-chapters {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.practice-chapter {
  min-height: min(560px, 66vh);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 7vw, 92px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  opacity: 1;
  transition: opacity 220ms ease-out;
}

.practice-chapter.is-active,
.practice-chapter:focus-within,
.practice-chapter:hover {
  opacity: 1;
}

.practice-story.is-static .practice-chapter {
  opacity: 1;
}

.practice-chapter > span {
  color: var(--blue-300);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.practice-chapter h3 {
  margin: 18px 0;
  color: white;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 1.02;
}

.practice-chapter p {
  max-width: 58ch;
  margin: 0;
  color: #c7dce4;
  font-size: clamp(0.98rem, 1.12vw, 1.12rem);
  line-height: 1.68;
}

.practice-chapter > a {
  color: white;
}

.practice-mobile-media {
  display: none;
}

.therapy-world-intro {
  position: relative;
  z-index: 4;
  padding: clamp(100px, 11vw, 164px) 0;
  color: white;
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.therapy-world-intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(64px, 10vw, 150px);
}

.therapy-world-heading {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.therapy-world-intro h2 {
  max-width: 11ch;
  margin: 0;
  color: white;
  font-size: clamp(2.9rem, 5vw, 5.5rem);
  line-height: 1.02;
  text-wrap: balance;
}

.therapy-world-heading > p:last-child {
  max-width: 36ch;
  margin: 28px 0 0;
  color: #bad2dc;
  line-height: 1.62;
}

.therapy-directory {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.therapy-directory > a {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 24px;
  gap: 18px;
  align-items: start;
  min-height: 154px;
  padding: 30px 0;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  text-decoration: none;
  transition: color 180ms ease-out, padding-left 180ms ease-out;
}

.therapy-directory > a:hover {
  padding-left: 8px;
  color: var(--blue-300);
}

.therapy-directory > a > span {
  min-height: clamp(1.539rem, 2.28vw, 2.28rem);
  display: flex;
  align-items: center;
  color: #8fb3c1;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: 0.12em;
}

.therapy-directory h3 {
  margin: 0 0 10px;
  color: currentColor;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.14;
}

.therapy-directory p {
  max-width: 64ch;
  margin: 0;
  color: #bcd2dc;
  font-size: 0.9rem;
  line-height: 1.58;
}

.therapy-directory i {
  font-style: normal;
}

.therapy-directory > a > .link-arrow {
  margin-top: calc((clamp(1.539rem, 2.28vw, 2.28rem) - 18px) / 2);
}

/* Scroll World shell. The fixed visual layers activate only while this section is in view. */
.world-shell {
  position: relative;
  min-height: 100dvh;
  color: white;
  background: var(--navy-950);
}

.world-mobile-fallback {
  display: none;
}

@media (max-width: 860px) {
  .world-shell {
    display: none;
  }

  .world-mobile-fallback {
    display: grid;
    gap: 18px;
    padding-block: 36px 88px;
    color: white;
    background: var(--navy-950);
    box-shadow: 0 0 0 100vmax var(--navy-950);
    clip-path: inset(0 -100vmax);
  }

  .world-mobile-fallback article {
    min-width: 0;
    display: grid;
    gap: 22px;
    padding: 24px;
    background: #082f46;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius-md);
  }

  .world-mobile-index {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .world-mobile-index span,
  .world-mobile-index p {
    margin: 0;
    color: #a9c4d0;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .world-mobile-fallback figure {
    min-width: 0;
    display: grid;
    place-items: center;
    min-height: 210px;
    margin: 0;
    padding: 16px;
    overflow: hidden;
    background: white;
    border-radius: calc(var(--radius-md) - 6px);
  }

  .world-mobile-fallback img {
    display: block;
    width: min(100%, var(--source-display-width, 100%)) !important;
    height: auto;
    max-height: 240px;
    object-fit: contain;
  }

  .world-mobile-fallback h2 {
    margin: 0;
    color: white;
    font-size: clamp(1.65rem, 8vw, 2.35rem);
    line-height: 1.04;
  }

  .world-mobile-fallback article > div:last-child > p {
    color: #c6d9e1;
    line-height: 1.65;
  }

  .world-mobile-fallback article > div:last-child > a {
    display: inline-flex;
    width: fit-content;
    min-height: 46px;
    align-items: center;
    margin-top: 6px;
    padding: 10px 18px;
    color: var(--navy-950);
    background: white;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
  }
}

#scroll-world.sw-root {
  --sw-bg: var(--navy-950);
  --sw-ink: #ffffff;
  --sw-ink-soft: #c5d9e2;
  --sw-accent: var(--blue-500);
  --sw-font-display: "Atri Sans", "Avenir Next", Arial, sans-serif;
  --sw-font-body: "Atri Sans", "Avenir Next", Arial, sans-serif;
}

#scroll-world:not(.is-active) .sw-sky,
#scroll-world:not(.is-active) .sw-scrollbar,
#scroll-world:not(.is-active) .sw-topbar,
#scroll-world:not(.is-active) .sw-stage,
#scroll-world:not(.is-active) .sw-copylayer,
#scroll-world:not(.is-active) .sw-route,
#scroll-world:not(.is-active) .sw-hint {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

#scroll-world .sw-sky,
#scroll-world .sw-stage,
#scroll-world .sw-copylayer,
#scroll-world .sw-hint {
  transition: opacity 180ms ease-out;
}

#scroll-world .sw-topbar,
#scroll-world .sw-route {
  display: none;
}

#scroll-world .sw-particles {
  display: none;
}

#scroll-world .sw-sky {
  background: radial-gradient(circle at 76% 46%, color-mix(in srgb, var(--sw-accent) 17%, transparent), transparent 34%), linear-gradient(145deg, #031d2c, #062c43 58%, #031d2c);
}

#scroll-world .sw-sky__grad {
  background: linear-gradient(125deg, rgba(3, 29, 44, 0.96), rgba(3, 29, 44, 0.52) 48%, rgba(6, 44, 67, 0.78));
}

#scroll-world .sw-stage::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -8vw;
  bottom: -30vh;
  width: 76vw;
  height: 56vh;
  border-top: 1px solid color-mix(in srgb, var(--sw-accent) 24%, transparent);
  background: radial-gradient(ellipse at 55% 0%, color-mix(in srgb, var(--sw-accent) 10%, transparent), transparent 62%);
  transform: perspective(1200px) rotateX(66deg);
  transform-origin: 50% 100%;
}

#scroll-world .sw-scene::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 29, 44, 0.99) 0%, rgba(3, 29, 44, 0.94) 31%, rgba(3, 29, 44, 0.48) 45%, rgba(3, 29, 44, 0.08) 64%, transparent);
  pointer-events: none;
}

#scroll-world .sw-scene__still,
#scroll-world .sw-scene__video {
  z-index: 1;
  filter: saturate(1.02) contrast(1.03);
  transform-origin: center;
}

#scroll-world .sw-scene--therapy-banner .sw-scene__still,
#scroll-world .sw-scene--therapy-banner .sw-scene__video {
  inset: 0 0 0 auto;
  width: min(76vw, 1500px);
  height: 100dvh;
  object-fit: contain;
  object-position: center;
  background: #082b48;
  transform: translate3d(0, 0, 0);
}

#scroll-world .sw-scene--therapy-studio .sw-scene__still,
#scroll-world .sw-scene--therapy-studio .sw-scene__video {
  inset: 0 0 0 auto;
  width: min(68vw, 1260px);
  height: 100dvh;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  box-shadow: -70px 0 130px rgba(2, 23, 35, 0.28);
  filter: saturate(1.01) contrast(1.015);
  transform: translate3d(0, 0, 0);
}

#scroll-world .sw-copylayer::before {
  width: min(62vw, 980px);
  background: linear-gradient(90deg, var(--navy-950) 8%, color-mix(in srgb, var(--navy-950) 87%, transparent) 42%, transparent 100%);
}

#scroll-world .sw-copy {
  left: max(32px, calc((100vw - min(1380px, calc(100vw - 64px))) / 2));
  top: calc(50% + var(--header-height) / 2);
  width: min(39vw, 540px);
  max-height: none;
  transform: translateY(calc(-50% + var(--sw-copy-shift, 0vh)));
}

#scroll-world .sw-copy__num {
  color: #a8c4d0;
}

#scroll-world .sw-copy__eyebrow {
  color: var(--sw-accent);
}

#scroll-world .sw-copy__title {
  max-width: 14ch;
  color: white;
  font-size: clamp(2.35rem, min(4.8vw, 7.1vh), 5.2rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  overflow-wrap: anywhere;
  text-wrap: balance;
  text-shadow: 0 8px 34px rgba(3, 29, 44, 0.72);
}

#scroll-world .sw-copy__body {
  max-width: 48ch;
  color: #d5e5eb;
  font-size: clamp(1rem, min(1.3vw, 2.2vh), 1.28rem);
  line-height: 1.48;
  text-shadow: 0 3px 18px var(--navy-950);
}

#scroll-world .sw-copy__cta {
  margin-top: clamp(16px, 2.2vh, 26px);
}

#scroll-world .sw-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
}

#scroll-world .sw-btn--primary {
  color: var(--navy-950);
  background: white;
}

#scroll-world .sw-hint {
  color: #c4d8e1;
}

.world-skip {
  position: fixed;
  z-index: 150;
  right: 28px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 18px;
  color: white;
  background: rgba(3, 29, 44, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease-out, background 180ms ease-out;
}

.world-skip.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.world-skip.is-visible.is-exiting {
  opacity: 0;
  pointer-events: none;
}

.product-atlas {
  padding-block: 130px 150px;
  color: var(--ink);
  background: white;
  box-shadow: 0 0 0 100vmax white;
  clip-path: inset(0 -100vmax);
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 6rem);
}

.section-heading > a {
  color: var(--blue-600);
  font-weight: 800;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: #f3f8fa;
  border: 1px solid rgba(6, 44, 67, 0.1);
  border-radius: var(--radius-md);
  text-decoration: none;
  transform: translateY(16px);
  opacity: 0;
  transition: transform 320ms ease-out, opacity 320ms ease-out, box-shadow 220ms ease-out, border 220ms ease-out;
}

.product-card.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.product-card:hover {
  border-color: rgba(0, 168, 200, 0.5);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.product-card-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 40%, white 0, #edf5f7 72%);
}

.product-card-media::after {
  content: "";
  position: absolute;
  width: 74%;
  aspect-ratio: 1;
  border: 1px solid rgba(0, 168, 200, 0.2);
  border-radius: 50%;
  transform: rotateX(70deg) translateY(60%);
}

.product-card-media img {
  position: relative;
  z-index: 2;
  width: min(88%, 350px);
  height: 230px;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(6, 44, 67, 0.16));
  transition: transform 280ms ease-out;
}

.product-card:hover .product-card-media img {
  transform: scale(1.045) translateY(-4px);
}

.product-card-copy {
  min-height: 190px;
  padding: 26px 28px 30px;
}

.product-card-copy > p {
  margin: 0 0 9px;
  color: var(--blue-600);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card-copy h3 {
  margin: 0 0 28px;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.15;
}

.product-card-copy span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-800);
  font-size: 0.82rem;
  font-weight: 800;
}

.pathways {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding-bottom: 140px;
}

.company-pathways {
  padding-block: clamp(90px, 10vw, 150px);
  color: var(--ink);
  background: white;
  box-shadow: 0 0 0 100vmax white;
  clip-path: inset(0 -100vmax);
}

.company-pathways-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  background: var(--line);
  border: 1px solid var(--line);
}

.company-pathways-grid a {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 3vw, 38px);
  color: var(--navy-900);
  background: white;
  text-decoration: none;
  transition: color 180ms ease-out, background 180ms ease-out;
}

.company-pathways-grid a:hover {
  color: white;
  background: var(--navy-900);
}

.company-pathways-grid span {
  color: var(--blue-600);
  font-size: 0.7rem;
  font-weight: 800;
}

.company-pathways-grid strong {
  max-width: 20ch;
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  line-height: 1.15;
}

.pathways a {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(32px, 5vw, 68px);
  overflow: hidden;
  color: white;
  background: linear-gradient(145deg, var(--navy-900), var(--navy-800));
  text-decoration: none;
}

.pathways a:nth-child(2) {
  background: linear-gradient(145deg, #087f98, var(--blue-500));
}

.pathways h2 {
  margin: 0;
  color: white;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
}

.pathways .eyebrow {
  color: var(--blue-300);
}

.pathways a:nth-child(2) .eyebrow {
  color: white;
}

.site-footer {
  position: relative;
  z-index: 5;
  padding: 80px 0 24px;
  color: #d9e7ec;
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(5, minmax(120px, 1fr));
  gap: clamp(28px, 3.4vw, 58px);
}

.footer-grid > div p {
  max-width: 32ch;
  color: #abc2cc;
  font-size: 0.9rem;
}

.footer-grid img {
  width: 122px;
  height: auto;
  object-fit: contain;
}

.footer-grid nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid h2 {
  margin: 0 0 10px;
  color: white;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid a {
  color: #b9ced7;
  font-size: 0.82rem;
  text-decoration: none;
}

.footer-grid a:hover {
  color: white;
}

.footer-cookie-button {
  justify-self: start;
  padding: 0;
  color: #b9ced7;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.82rem;
  text-align: left;
}

.footer-cookie-button:hover {
  color: white;
}

.cookie-banner {
  position: fixed;
  z-index: 500;
  left: max(16px, env(safe-area-inset-left));
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  width: min(1120px, calc(100vw - 32px));
  margin-inline: auto;
  padding: clamp(22px, 3vw, 34px);
  color: white;
  background: rgba(3, 29, 44, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 80px rgba(3, 29, 44, 0.42);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner h2 {
  margin: 0 0 6px;
  color: white;
  font-size: 1.2rem;
}

.cookie-banner p {
  max-width: 74ch;
  margin: 0;
  color: #d9e7ec;
  font-size: 0.88rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.button-secondary {
  color: white;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.44);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 64px;
  padding-top: 22px;
  color: #8eabb7;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.76rem;
}

.footer-bottom p {
  margin: 0;
}

.search-dialog {
  width: min(780px, calc(100vw - 32px));
  max-height: min(82dvh, 820px);
  padding: 0;
  color: var(--ink);
  background: white;
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: 0 32px 100px rgba(3, 29, 44, 0.45);
}

.search-dialog::backdrop {
  background: rgba(3, 29, 44, 0.76);
  backdrop-filter: blur(8px);
}

.search-panel {
  padding: clamp(24px, 5vw, 56px);
}

.search-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.search-topline h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
}

.search-panel label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 800;
}

.search-panel input {
  width: 100%;
  min-height: 56px;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
}

.search-status {
  min-height: 1.4em;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.search-results {
  display: grid;
  max-height: 48dvh;
  overflow: auto;
}

.search-result {
  display: grid;
  gap: 2px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.search-result span {
  color: var(--blue-600);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-result strong {
  color: var(--navy-900);
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 40px, 1120px);
  }

  .primary-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    color: var(--navy-900);
    background: white;
    opacity: 0;
    transition: max-height 300ms ease-out, opacity 200ms ease-out;
  }

  .mobile-nav.is-open {
    max-height: calc(100dvh - var(--header-height));
    opacity: 1;
    box-shadow: 0 30px 70px rgba(3, 29, 44, 0.24);
  }

  .mobile-nav a {
    min-height: 62px;
    display: flex;
    align-items: center;
    width: var(--shell);
    margin-inline: auto;
    border-bottom: 1px solid var(--line);
    font-weight: 700;
    text-decoration: none;
  }

  .page-hero,
  .product-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 40px;
  }

  .practice-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
    gap: 58px;
  }

  .content-layout {
    grid-template-columns: minmax(0, 720px) 280px;
    gap: 56px;
  }

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

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

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 32px, 760px);
    --header-height: 72px;
  }

  body {
    font-size: 16px;
  }

  .brand img {
    width: 138px;
  }

  .home-intro {
    min-height: max(680px, 100svh);
  }

  .home-intro-media::before {
    background:
      linear-gradient(180deg, rgba(3, 29, 44, 0.38) 0%, rgba(3, 29, 44, 0.04) 34%, rgba(3, 29, 44, 0.18) 48%, rgba(3, 29, 44, 0.96) 78%, var(--navy-950) 100%),
      linear-gradient(90deg, rgba(3, 29, 44, 0.26), transparent 70%);
  }

  .home-intro-media img {
    object-position: center top;
  }

  .home-intro-media figcaption {
    display: none;
  }

  .home-intro-content {
    min-height: max(680px, 100svh);
    align-items: flex-end;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 44px;
  }

  .home-intro-copy {
    max-width: 100%;
  }

  .home-intro h1 {
    max-width: 22ch;
    font-size: clamp(2.05rem, 7.8vw, 3.5rem);
    line-height: 1.07;
  }

  .home-market {
    margin-bottom: 16px;
  }

  .home-intro-scroll {
    display: none;
  }

  .purpose-section,
  .practice-section {
    padding-block: 96px;
  }

  .purpose-intro,
  .practice-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .purpose-intro h2,
  .practice-grid h2 {
    max-width: 19ch;
  }

  .purpose-values {
    grid-template-columns: 1fr;
    margin-top: 72px;
  }

  .purpose-values article,
  .purpose-values article + article {
    padding: 28px 0 38px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .practice-grid nav {
    margin-top: 20px;
  }

  .therapy-world-intro {
    padding-block: 90px;
  }

  .therapy-world-intro-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .therapy-world-intro h2 {
    font-size: clamp(3rem, 13vw, 5.2rem);
  }

  .page-hero,
  .product-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 54px 72px;
  }

  .page-hero--banner {
    gap: 30px;
    padding-block: 46px 64px;
  }

  .page-hero--copy-only {
    padding-block: 52px 64px;
  }

  .page-hero::before,
  .product-hero::before {
    left: 20%;
    top: 40%;
    width: 78vw;
    height: 78vw;
  }

  h1,
  .product-hero h1 {
    max-width: 18ch;
    font-size: clamp(2.35rem, 10vw, 3.75rem);
  }

.hero-media--banner {
  min-height: 0;
    aspect-ratio: var(--hero-image-ratio, 1.7 / 1);
  }

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

  .product-studio {
    min-height: 500px;
  }

  .content-layout {
    grid-template-columns: 1fr;
    padding-block: 72px 100px;
  }

  .directory-grid,
  .job-filters,
  .job-card,
  .company-pathways-grid {
    grid-template-columns: 1fr;
  }

  .job-card {
    gap: 12px;
  }

  .job-meta .button {
    width: 100%;
    justify-content: center;
    margin: 10px 0 0;
  }

  .source-content table {
    display: table;
    table-layout: fixed;
    overflow: visible;
  }

  .source-content th,
  .source-content td {
    min-width: 0;
    padding: 8px;
    overflow-wrap: anywhere;
  }

  .source-content td img {
    width: 100%;
    max-width: 100%;
  }

  .content-aside {
    position: static;
    order: -1;
  }

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

  .contact-panel {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .legal-toc {
    position: static;
    max-height: none;
    padding: 20px;
    background: var(--surface-soft);
    border: 0;
    border-radius: var(--radius-sm);
  }

  #scroll-world .sw-copylayer::before {
    width: 100%;
    height: auto;
    top: calc(var(--header-height) + min(36dvh, 300px) - 42px);
    bottom: 0;
    background: linear-gradient(180deg, transparent 0, var(--navy-950) 42px, var(--navy-950) 100%);
  }

  #scroll-world .sw-copy {
    left: 20px;
    right: 52px;
    top: auto;
    bottom: calc(48px + env(safe-area-inset-bottom));
    width: auto;
    max-height: calc(100dvh - var(--header-height) - 72px);
    transform: translateY(var(--sw-copy-shift, 0vh));
  }

  #scroll-world .sw-copy__title {
    max-width: 15ch;
    margin-top: 8px;
    font-size: clamp(2.1rem, min(10.4vw, 6.4dvh), 3.8rem);
  }

  #scroll-world .sw-copy__body {
    margin-top: 12px;
    font-size: 1rem;
    line-height: 1.42;
  }

  #scroll-world .sw-copy__eyebrow {
    margin-top: 10px;
  }

  #scroll-world .sw-copy__cta {
    margin-top: 14px;
  }

  #scroll-world .sw-hint {
    left: auto;
    right: 22px;
    bottom: calc(18px + env(safe-area-inset-bottom));
    gap: 0;
    font-size: 0;
    transform: none;
  }

  #scroll-world .sw-scene::before {
    background: linear-gradient(0deg, rgba(3, 29, 44, 0.92) 0%, rgba(3, 29, 44, 0.28) 70%, rgba(3, 29, 44, 0.18));
  }

  #scroll-world .sw-scene--therapy-banner .sw-scene__still,
  #scroll-world .sw-scene--therapy-banner .sw-scene__video,
  #scroll-world .sw-scene--therapy-studio .sw-scene__still,
  #scroll-world .sw-scene--therapy-studio .sw-scene__video {
    inset: var(--header-height) auto auto 0;
    width: 100%;
    height: min(36dvh, 300px);
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
    background: #ffffff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    filter: saturate(1.01) contrast(1.015);
    transform: translate3d(0, 0, 0);
  }

  #scroll-world .sw-stage::after {
    display: none;
  }

  .world-skip {
    display: none;
  }

  .product-atlas {
    padding-block: 90px 110px;
  }

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

  .pathways a {
    min-height: 280px;
  }
}

.hero-media.hero-media--banner {
  min-height: 0;
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  .menu-button {
    min-height: 44px;
    padding-inline: 15px;
  }

  .home-market {
    margin-bottom: 17px;
  }

  .home-intro h1 {
    max-width: none;
    font-size: clamp(1.85rem, 8.5vw, 2.65rem);
  }

  .purpose-intro h2 {
    font-size: clamp(2.55rem, 12vw, 4.2rem);
  }

  .practice-grid h2 {
    font-size: clamp(2.35rem, 11vw, 3.8rem);
  }

  .practice-grid nav a {
    grid-template-columns: 30px minmax(0, 1fr);
    min-height: 88px;
  }

  .practice-grid nav small {
    grid-column: 2;
    margin-top: -12px;
    padding-bottom: 14px;
  }

  .therapy-world-intro nav {
    grid-template-columns: 1fr;
  }

  .breadcrumbs {
    overflow: visible;
  }

  .breadcrumbs ol {
    flex-wrap: wrap;
    overflow: visible;
    row-gap: 6px;
    padding-bottom: 0;
  }

  .breadcrumbs li {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .hero-media {
    min-height: 280px;
  }

  .product-studio {
    min-height: 430px;
  }

  .gallery-thumbs {
    left: 12px;
    right: 12px;
    bottom: 14px;
    justify-content: flex-start;
    overflow-x: auto;
    padding-block: 4px;
  }

  .gallery-thumb {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
  }

  .media-stack,
  .product-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-card-media {
    min-height: 240px;
  }

  .product-card-copy {
    min-height: auto;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 860px) and (max-height: 700px) {
  #scroll-world .sw-copy {
    bottom: calc(24px + env(safe-area-inset-bottom));
    max-height: calc(100dvh - var(--header-height) - 36px);
  }

  #scroll-world .sw-copy__num,
  #scroll-world .sw-copy__eyebrow {
    font-size: 0.65rem;
  }

  #scroll-world .sw-copy__eyebrow {
    margin-top: 6px;
  }

  #scroll-world .sw-copy__title {
    margin-top: 5px;
    font-size: clamp(1.65rem, min(8.8vw, 7.2dvh), 2.55rem);
  }

  #scroll-world .sw-copy__body {
    margin-top: 8px;
    font-size: 0.86rem;
    line-height: 1.34;
  }

  #scroll-world .sw-copy__cta {
    margin-top: 9px;
  }

  #scroll-world .sw-btn {
    min-height: 44px;
    padding: 9px 16px;
    font-size: 0.84rem;
  }
}

@media (max-width: 860px) and (orientation: landscape) {
  #scroll-world .sw-copy {
    left: 20px;
    right: auto;
    top: calc(var(--header-height) + 10px);
    bottom: auto;
    width: min(48vw, 440px);
    max-height: calc(100dvh - var(--header-height) - 18px);
    transform: translateY(var(--sw-copy-shift, 0vh));
  }

  #scroll-world .sw-copy__title {
    max-width: 16ch;
    font-size: clamp(1.45rem, min(4vw, 7dvh), 2.35rem);
  }

  #scroll-world .sw-copy__body {
    font-size: 0.8rem;
  }

  #scroll-world .sw-scene--therapy-banner .sw-scene__still,
  #scroll-world .sw-scene--therapy-banner .sw-scene__video,
  #scroll-world .sw-scene--therapy-studio .sw-scene__still,
  #scroll-world .sw-scene--therapy-studio .sw-scene__video {
    inset: var(--header-height) 12px auto auto;
    width: min(42vw, 350px);
    height: calc(100dvh - var(--header-height));
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
    background: #ffffff;
    border: 0;
    border-radius: 0;
    transform: translate3d(0, 0, 0);
  }

  #scroll-world .sw-hint {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .product-card {
    transform: none;
    opacity: 1;
  }

  .hero-media > img,
  .product-main-image {
    transform: none !important;
  }
}

@media (max-width: 860px) {
  .semantic-bundle--split,
  .semantic-tabpanel .semantic-bundle--split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .semantic-tabpanel .semantic-copy,
  .semantic-tabpanel .semantic-media {
    grid-column: 1;
    grid-row: auto;
  }

  .semantic-tabpanel .semantic-media {
    grid-row: 1;
  }

  .semantic-tablist {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .semantic-tablist button {
    flex: 1 0 min(76vw, 240px);
    scroll-snap-align: start;
  }

  .semantic-media--grid,
  .semantic-form-grid {
    grid-template-columns: 1fr;
  }

  .semantic-media figure {
    min-height: 0;
  }

  .content-component--timeline .semantic-media {
    display: block;
    width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    scrollbar-color: var(--blue-500) rgba(6, 44, 67, 0.12);
    scrollbar-width: thin;
    touch-action: pan-x pan-y;
  }

  .content-component--timeline .semantic-media figure {
    width: 1000px;
    max-width: none;
    justify-items: stretch;
    overflow: visible;
    scroll-snap-align: start;
  }

  .content-component--timeline .semantic-media img {
    width: 952px !important;
    max-width: none;
  }

  .content-component--timeline .semantic-media figcaption {
    width: min(100vw - 96px, 280px);
    position: sticky;
    left: 18px;
  }

  .timeline-mobile-hint {
    display: block;
    margin: 18px 0 0;
    color: var(--blue-600);
    font-size: 0.78rem !important;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.45 !important;
    text-transform: uppercase;
  }

  body[data-archetype="professional-resource"] .page-hero--copy-only {
    padding-block: 42px 46px;
  }

  body[data-archetype="professional-resource"] .source-layout {
    padding-top: 42px;
  }

  .semantic-document {
    grid-template-columns: minmax(0, 1fr);
    gap: 5px;
  }

  .semantic-document strong {
    white-space: normal;
  }

  .landing-proof-grid {
    grid-template-columns: 1fr;
  }

  .semantic-stat-grid,
  .leader-grid {
    grid-template-columns: 1fr;
  }

  .semantic-stat {
    min-height: 160px;
  }

  .history-list::before {
    left: 12px;
  }

  .history-entry {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-left: 40px;
  }

  .history-entry::before {
    left: 6px;
    top: 38px;
  }

  .history-entry time {
    padding-right: 0;
  }

  .history-entry-body {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-left: 0;
  }

  .history-entry-media {
    width: 180px;
  }

  .leader-card {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 20px;
  }

  .leader-card figure {
    min-height: 168px;
  }

  .about-purpose-grid,
  .about-lead .semantic-bundle--split,
  .about-value-chapters .semantic-bundle--split,
  .about-quality .semantic-bundle--split,
  .about-awards .semantic-bundle--split {
    grid-template-columns: 1fr;
  }

  .about-purpose-grid article {
    min-height: 260px;
  }

  .about-facts ul {
    grid-template-columns: 1fr;
  }

  .about-values-layout {
    grid-template-columns: 1fr;
  }

  .about-values-figure {
    position: static;
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .about-value-card {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .about-facts li {
    min-height: 96px;
  }

  .career-opening,
  .career-ready,
  .event-index-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .career-section-heading,
  .career-community,
  .career-legal {
    grid-template-columns: 1fr;
  }

  .career-feature-grid,
  .career-benefit-grid,
  .career-value-grid,
  .event-card-grid {
    grid-template-columns: 1fr;
  }

  .career-team .semantic-videos {
    grid-template-columns: 1fr;
  }

  .career-feature-grid article,
  .career-value-grid article,
  .career-benefit-grid article {
    min-height: 0;
  }
}

@media (max-width: 430px) {
  .leader-card {
    grid-template-columns: 96px minmax(0, 1fr);
    padding: 18px;
  }

  .leader-card figure {
    min-height: 150px;
  }

  .leader-card h2 {
    font-size: 1.2rem;
  }

  .leader-card p {
    font-size: 0.9rem;
  }
}

.laam-composition {
  gap: clamp(72px, 8vw, 118px);
}

.laam-composition > section + section,
.laam-feature-list section + section {
  margin-top: 0;
}

.laam-introduction,
.laam-feature-comparison {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(34px, 5.5vw, 76px);
}

.laam-introduction > div:first-child {
  padding-top: clamp(8px, 2vw, 28px);
}

.laam-introduction h2,
.laam-feature-comparison h2,
.laam-device-group h2,
.laam-guideline h2 {
  margin-top: 0;
}

.laam-feature-comparison {
  padding: clamp(28px, 4vw, 56px);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.laam-feature-list {
  display: grid;
  gap: 24px;
}

.laam-feature-list section {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.laam-feature-list h3 {
  margin: 0 0 12px;
  font-size: clamp(1.1rem, 1.45vw, 1.35rem);
}

.laam-feature-list ul {
  margin-bottom: 0;
}

.laam-type-comparison {
  min-width: 0;
  display: grid;
  align-content: start;
  justify-items: center;
  padding: clamp(24px, 3vw, 38px);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.laam-type-comparison h2 {
  width: 100%;
  text-align: center;
  font-size: clamp(1.7rem, 2.6vw, 2.65rem);
}

.laam-type-comparison figure {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin: 0;
}

.laam-type-comparison img {
  display: block;
  width: min(100%, 700px) !important;
  height: auto;
  object-fit: contain;
}

.laam-type-comparison figcaption {
  max-width: 38ch;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-style: italic;
  line-height: 1.5;
  text-align: center;
}

.laam-device-group {
  display: grid;
  gap: 32px;
}

.laam-device-group-heading {
  display: flex;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.laam-device-group-heading h2 {
  max-width: 22ch;
  font-size: clamp(1.75rem, 2.7vw, 2.75rem);
}

.laam-device-grid {
  display: grid;
  gap: 18px;
}

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

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

.laam-device-card {
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(220px, 1fr) auto auto;
  align-items: end;
  gap: 18px;
  padding: clamp(18px, 2vw, 26px);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.laam-device-card figure {
  min-width: 0;
  display: grid;
  place-items: center;
  align-self: stretch;
  margin: 0;
  padding: 10px;
  background: #f7fafb;
  border-radius: calc(var(--radius-md) - 8px);
}

.laam-device-card img {
  display: block;
  width: min(100%, var(--source-display-width, 100%)) !important;
  max-height: 230px;
  object-fit: contain;
}

.laam-device-card h3 {
  min-height: 2.4em;
  margin: 0;
  font-size: clamp(1.04rem, 1.25vw, 1.24rem);
  line-height: 1.2;
}

.laam-device-card a,
.laam-guideline a {
  width: fit-content;
  color: var(--navy-900);
  font-weight: 800;
  text-underline-offset: 4px;
}

.laam-delivery-note,
.laam-guideline {
  max-width: 90ch;
  padding: clamp(28px, 4vw, 52px);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.laam-guideline {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  color: white;
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.laam-guideline h2,
.laam-guideline p,
.laam-guideline a {
  color: white;
}

.laam-evidence-story {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  padding: clamp(28px, 4vw, 56px);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.laam-evidence-story h2,
.laam-guideline-evidence h3 {
  margin: 0;
}

.laam-guideline-evidence {
  min-width: 0;
  padding: clamp(20px, 3vw, 30px);
  color: var(--ink);
  background: white;
  border-radius: var(--radius-md);
}

.laam-guideline-evidence h3,
.laam-guideline-evidence p {
  color: var(--ink);
}

.laam-guideline-evidence h3 {
  margin-bottom: 20px;
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
}

.laam-evidence-code {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

@media (max-width: 980px) {
  .home-identity-grid,
  .purpose-layout,
  .leadership-quote-grid,
  .practice-heading,
  .therapy-world-intro-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .purpose-intro,
  .therapy-world-heading {
    position: static;
  }

  .purpose-intro h2 {
    max-width: 22ch;
  }

  .leadership-quote blockquote {
    max-width: none;
  }

  .practice-heading {
    padding-bottom: 72px;
  }

  .therapy-world-intro h2 {
    max-width: 14ch;
    font-size: clamp(2.75rem, 8vw, 4.8rem);
  }
}

@media (max-width: 860px) {
  .purpose-values {
    margin-top: 0;
  }

  .practice-story {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .practice-media-rail {
    display: none;
  }

  .practice-mobile-media {
    display: block;
    width: min(100%, 360px);
    aspect-ratio: 1;
    margin: 0 0 34px;
    overflow: hidden;
    background: #0b405b;
  }

  .practice-chapter {
    min-height: 0;
    padding: 56px 0 64px;
    opacity: 1;
  }
}

@media (max-width: 620px) {
  .home-identity,
  .purpose-section,
  .leadership-quote,
  .practice-section,
  .therapy-world-intro {
    padding-block: 76px;
  }

  .home-identity h2 {
    font-size: clamp(2.25rem, 10vw, 3.1rem);
  }

  .home-identity-statement {
    font-size: 1.05rem;
  }

  .home-identity nav {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-identity nav a {
    width: 100%;
    justify-content: center;
  }

  .purpose-intro h2 {
    font-size: clamp(2.05rem, 9vw, 3rem);
  }

  .purpose-values h3 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  .leadership-quote blockquote > p {
    font-size: clamp(1.85rem, 9.2vw, 3rem);
  }

  .leadership-quote footer {
    align-items: start;
    flex-direction: column;
  }

  .practice-heading h2 {
    font-size: clamp(2.05rem, 9.8vw, 3.25rem);
  }

  .practice-chapter h3 {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  .therapy-world-intro h2 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .therapy-directory > a {
    grid-template-columns: 30px minmax(0, 1fr) 18px;
    gap: 12px;
    min-height: 0;
    padding: 28px 0;
  }

  .therapy-directory h3,
  .therapy-directory p {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 760px) {
  .cookie-banner {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 20px;
    max-height: calc(100dvh - 32px - env(safe-area-inset-bottom));
    padding: 22px;
    overflow-y: auto;
  }

  .cookie-banner p {
    max-width: none;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .cookie-actions .button {
    width: 100%;
    min-width: 0;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 960px) {
  .laam-device-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .laam-composition {
    gap: 64px;
  }

  .laam-introduction,
  .laam-feature-comparison,
  .laam-evidence-story,
  .laam-guideline {
    grid-template-columns: 1fr;
  }

  .laam-feature-comparison {
    padding: 22px;
  }

  .laam-guideline-copy,
  .laam-guideline-evidence {
    width: calc(100% - 2px);
    max-width: calc(100% - 2px);
    min-width: 0;
  }

  .laam-device-grid--3,
  .laam-device-grid--4 {
    grid-template-columns: 1fr;
  }

  .laam-device-card {
    grid-template-rows: minmax(190px, auto) auto auto;
  }

  .laam-device-card h3 {
    min-height: 0;
  }

}

@media (max-width: 520px) {
  .about-value-card {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
  }

  .about-value-card p {
    grid-column: 1 / -1;
  }
}

.link-arrow {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.therapy-index-card .link-arrow,
.therapy-directory .link-arrow {
  color: var(--blue-300);
}

@media (max-width: 620px) {
  .home-page .mobile-snap-rail {
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .home-page .mobile-snap-rail::-webkit-scrollbar {
    display: none;
  }

  .home-identity {
    padding-block: 64px 70px;
    background:
      radial-gradient(circle at 100% 0, rgba(0, 168, 200, 0.15), transparent 42%),
      var(--navy-950);
  }

  .home-identity-grid {
    gap: 26px;
  }

  .home-identity h2 {
    max-width: 12ch;
    font-size: 2.45rem;
  }

  .home-identity-statement {
    font-size: 1rem;
    line-height: 1.58;
    text-wrap: pretty;
  }

  .home-identity nav {
    gap: 10px;
    margin-top: 26px;
  }

  .home-identity nav a {
    position: relative;
    min-height: 52px;
    justify-content: flex-start;
    padding: 13px 46px 13px 18px;
    border-radius: 12px;
    font-size: 0.76rem;
    text-align: left;
  }

  .home-identity nav a::after {
    content: "";
    position: absolute;
    right: 18px;
    width: 8px;
    height: 8px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
  }

  .home-identity nav a:first-child {
    color: var(--navy-950);
    background: white;
    border-color: white;
  }

  .purpose-section {
    padding-block: 68px 76px;
    background: #f4f8f9;
  }

  .purpose-layout {
    gap: 34px;
  }

  .purpose-intro {
    padding-top: 18px;
  }

  .purpose-intro h2 {
    max-width: none;
    font-size: 2.4rem;
    line-height: 1.03;
  }

  .purpose-values {
    display: grid;
    gap: 12px;
    margin-top: 0;
    border-top: 0;
  }

  .purpose-values article,
  .purpose-values article + article {
    padding: 22px;
    background: white;
    border: 1px solid rgba(6, 44, 67, 0.11);
    border-radius: 16px;
    box-shadow: 0 12px 34px rgba(3, 29, 44, 0.055);
  }

  .purpose-values header img {
    width: 32px;
    height: 32px;
    padding: 6px;
    background: #eaf5f7;
    border-radius: 50%;
  }

  .purpose-values h3 {
    margin: 16px 0 10px;
    font-size: 1.85rem;
  }

  .purpose-values p {
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .purpose-values article > a,
  .practice-chapter > a {
    gap: 9px;
    margin-top: 18px;
  }

  .leadership-quote {
    padding-block: 68px 74px;
    background:
      radial-gradient(circle at 92% 8%, rgba(255, 255, 255, 0.14), transparent 34%),
      #087f98;
  }

  .leadership-quote-grid {
    gap: 32px;
  }

  .leadership-quote blockquote > p {
    font-size: 2rem;
    line-height: 1.08;
  }

  .leadership-quote footer {
    margin-top: 32px;
  }

  .practice-section {
    padding-block: 72px 78px;
  }

  .practice-heading {
    gap: 22px;
    padding-bottom: 38px;
  }

  .practice-heading h2 {
    font-size: 2.35rem;
    line-height: 1.04;
  }

  .practice-story {
    display: block;
  }

  .practice-chapters {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 2px 2px 18px;
    border-top: 0;
    scroll-padding-inline: 2px;
    scroll-snap-type: x mandatory;
  }

  .practice-chapter {
    flex: 0 0 calc(100% - 28px);
    min-height: 0;
    justify-content: flex-start;
    padding: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    scroll-snap-align: start;
  }

  .practice-mobile-media {
    width: 100%;
    aspect-ratio: 4 / 3;
    margin: 0 0 22px;
    border-radius: 11px;
  }

  .practice-chapter h3 {
    margin: 14px 0 10px;
    font-size: 2rem;
  }

  .practice-chapter p {
    font-size: 0.92rem;
    line-height: 1.56;
  }

  .therapy-world-intro {
    padding-block: 72px 78px;
  }

  .therapy-world-intro-grid {
    gap: 34px;
  }

  .therapy-world-intro h2 {
    max-width: 12ch;
    font-size: 2.7rem;
  }

  .therapy-directory {
    display: grid;
    gap: 10px;
    border-top: 0;
  }

  .therapy-world-intro .therapy-directory > a {
    grid-template-columns: 26px minmax(0, 1fr) 18px;
    gap: 10px;
    min-height: 0;
    padding: 20px 18px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 13px;
  }

  .therapy-directory > a > .link-arrow {
    margin-top: 3px;
  }

  .therapy-directory > a > span {
    min-height: 23px;
    display: flex;
    align-items: center;
    font-variant-numeric: tabular-nums;
    line-height: 1;
  }

  .therapy-directory h3 {
    margin-bottom: 8px;
    font-size: 1.28rem;
  }

  .therapy-directory p {
    font-size: 0.86rem;
    line-height: 1.52;
  }

  .therapy-directory > a.therapy-directory-all {
    align-items: start;
    background: rgba(117, 214, 229, 0.1);
  }

  .therapy-directory-all h3 {
    margin: 0;
  }

  .world-mobile-fallback {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-block: 30px 72px;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
  }

  .world-mobile-fallback article {
    flex: 0 0 calc(100% - 24px);
    align-content: start;
    gap: 18px;
    padding: 18px;
    border-radius: 16px;
    scroll-snap-align: start;
  }

  .world-mobile-fallback figure {
    min-height: 0;
    aspect-ratio: 4 / 3;
    padding: 12px;
    border-radius: 11px;
  }

  .world-mobile-fallback figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .world-mobile-fallback h2 {
    font-size: 1.75rem;
  }

  .company-pathways {
    padding-block: 72px 82px;
  }

  .company-pathways .section-heading {
    gap: 18px;
    margin-bottom: 28px;
  }

  .company-pathways .section-heading h2 {
    font-size: 2.65rem;
  }

  .company-pathways-grid {
    gap: 0;
    margin-top: 0;
    overflow: hidden;
    background: white;
    border-radius: 16px;
    box-shadow: 0 16px 42px rgba(3, 29, 44, 0.07);
  }

  .company-pathways-grid a {
    min-height: 72px;
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 12px;
    padding: 17px 18px;
    border-bottom: 1px solid var(--line);
  }

  .company-pathways-grid a:last-child {
    border-bottom: 0;
  }

  .company-pathways-grid strong {
    font-size: 1rem;
  }

  .company-pathways-grid .link-arrow {
    color: var(--blue-600);
  }

  .product-atlas {
    padding-block: 72px 88px;
  }

  .product-atlas .section-heading {
    gap: 16px;
    margin-bottom: 30px;
  }

  .product-atlas .section-heading h2 {
    font-size: 2.8rem;
  }

  .product-grid.product-rail {
    display: grid;
    grid-auto-columns: min(82vw, 308px);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    padding: 2px 2px 20px;
    scroll-padding-inline: 2px;
    scroll-snap-type: x mandatory;
  }

  .product-rail .product-card {
    min-width: 0;
    scroll-snap-align: start;
  }

  .product-rail .product-card-media {
    min-height: 190px;
  }

  .product-rail .product-card-media img {
    height: 160px;
  }

  .product-rail .product-card-copy {
    padding: 20px 20px 23px;
  }

  .product-rail .product-card-copy h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
  }

  .pathways {
    gap: 12px;
    padding-bottom: 82px;
  }

  .pathways a {
    position: relative;
    min-height: 190px;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 18px 46px rgba(3, 29, 44, 0.14);
  }

  .pathways a::after {
    content: "";
    position: absolute;
    top: 26px;
    right: 27px;
    width: 9px;
    height: 9px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
  }

  .pathways h2 {
    max-width: 12ch;
    font-size: 2rem;
  }
}

@media (max-width: 860px) and (max-height: 600px) and (orientation: landscape) {
  .home-intro,
  .home-intro-content {
    min-height: 100svh;
  }

  .home-intro-media::before {
    background:
      linear-gradient(90deg, rgba(3, 29, 44, 0.82) 0%, rgba(3, 29, 44, 0.46) 48%, rgba(3, 29, 44, 0.06) 78%),
      linear-gradient(180deg, rgba(3, 29, 44, 0.18), transparent 42%, rgba(3, 29, 44, 0.58));
  }

  .home-intro-media img {
    object-position: center 42%;
  }

  .home-intro-content {
    align-items: flex-end;
    padding-top: calc(var(--header-height) + 18px);
    padding-bottom: 22px;
  }

  .home-intro-copy {
    max-width: min(49%, 420px);
  }

  .home-market {
    margin-bottom: 9px;
    font-size: 0.58rem;
  }

  .home-intro h1 {
    max-width: 19ch;
    margin: 0;
    font-size: clamp(1.55rem, 3.7vw, 2.15rem);
    line-height: 1.02;
  }
}

.investor-page {
  background:
    radial-gradient(circle at 92% 16%, rgba(0, 168, 200, 0.08), transparent 28rem),
    linear-gradient(180deg, #f7fbfc 0, white 34rem);
}

.investor-subnav {
  position: sticky;
  z-index: 20;
  top: calc(var(--header-height) + 12px);
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  scrollbar-width: none;
  backdrop-filter: blur(16px);
}

.investor-subnav::-webkit-scrollbar {
  display: none;
}

.investor-subnav a {
  flex: 0 0 auto;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
  color: var(--ink-soft);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 780;
  text-decoration: none;
}

.investor-subnav a:hover,
.investor-subnav a[aria-current="page"] {
  color: white;
  background: var(--navy-900);
}

.investor-overview,
.investor-archive {
  padding-block: clamp(64px, 8vw, 110px) clamp(96px, 11vw, 150px);
}

.investor-overview-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(300px, 1.22fr);
  align-items: end;
  gap: 20px clamp(40px, 8vw, 120px);
  margin-bottom: clamp(38px, 5vw, 64px);
}

.investor-overview-lead .eyebrow {
  grid-column: 1 / -1;
}

.investor-overview-lead h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 5rem);
}

.investor-overview-lead > p:last-child {
  max-width: 58ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.investor-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.investor-overview-grid a {
  min-width: 0;
  min-height: 190px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 24px;
  align-items: start;
  gap: 20px;
  padding: clamp(26px, 4vw, 42px);
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 44px rgba(3, 29, 44, 0.06);
  text-decoration: none;
  transition: transform var(--motion-layout) var(--motion-ease-smooth), border-color var(--motion-ui) ease;
}

.investor-overview-grid a:first-child {
  grid-column: 1 / -1;
  color: white;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  border-color: var(--navy-950);
}

.investor-overview-grid a:hover {
  transform: translateY(-4px);
  border-color: var(--blue-500);
}

.investor-overview-grid a > span {
  color: var(--blue-600);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.investor-overview-grid a:first-child > span,
.investor-overview-grid a:first-child p {
  color: #b7d7df;
}

.investor-overview-grid h3 {
  margin: 0 0 10px;
  color: inherit;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.investor-overview-grid p {
  max-width: 54ch;
  margin: 0;
  color: var(--ink-soft);
}

.investor-overview-grid .link-arrow,
.official-record-link .link-arrow,
.governance-document-grid .link-arrow {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.investor-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.investor-section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.9rem);
}

.investor-section-heading > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 750;
}

.release-list,
.investor-event-list {
  display: grid;
  gap: 12px;
}

.release-card,
.investor-event-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(130px, 0.24fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 70px);
  padding: clamp(26px, 4vw, 42px);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.release-card time,
.investor-event-date {
  margin: 0;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.release-card h3,
.investor-event-card h3 {
  max-width: 34ch;
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.5vw, 2.25rem);
  line-height: 1.16;
}

.release-card p {
  max-width: 76ch;
  margin: 0 0 20px;
  color: var(--ink-soft);
}

.official-record-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-600);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.investor-upcoming {
  margin-bottom: clamp(56px, 8vw, 100px);
  padding: clamp(32px, 6vw, 70px);
  color: white;
  background: linear-gradient(135deg, var(--navy-950), #075c73);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.investor-upcoming .eyebrow {
  color: var(--blue-300);
}

.investor-upcoming h2 {
  max-width: 22ch;
  margin: 0;
  color: white;
  font-size: clamp(2rem, 4.5vw, 4.6rem);
}

.investor-materials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.investor-materials span {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: var(--ink-soft);
  background: var(--surface-soft);
  border-radius: 999px;
  font-size: 0.76rem;
}

.investor-materials strong {
  overflow-wrap: anywhere;
}

.investor-materials small {
  flex: 0 0 auto;
  color: var(--blue-600);
}

.quarterly-years,
.filing-years {
  display: grid;
  gap: 14px;
}

.quarterly-year,
.filing-year {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.quarterly-year > summary,
.filing-year > summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 26px;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.65rem;
  font-weight: 850;
  list-style: none;
}

.quarterly-year > summary::-webkit-details-marker,
.filing-year > summary::-webkit-details-marker {
  display: none;
}

.quarterly-year > summary::after,
.filing-year > summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--navy-900);
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1;
}

.quarterly-year[open] > summary::after,
.filing-year[open] > summary::after {
  content: "−";
}

.quarterly-year > summary small,
.filing-year > summary small {
  margin-left: auto;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.quarterly-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.quarter-card {
  min-width: 0;
  padding: clamp(24px, 3vw, 34px);
  background: white;
}

.quarter-card h3 {
  margin: 0 0 18px;
  font-size: 1.3rem;
}

.quarter-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quarter-card li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 9px;
  color: var(--ink-soft);
  border-bottom: 1px solid #e6eef1;
  font-size: 0.86rem;
}

.quarter-card li:last-child {
  border-bottom: 0;
}

.quarter-card small {
  flex: 0 0 auto;
  color: var(--blue-600);
}

.investor-source-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  padding: 24px;
  background: var(--surface-soft);
  border-radius: var(--radius-sm);
}

.investor-source-note p,
.investor-archive-intro {
  max-width: 72ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.investor-archive-intro {
  margin: -8px 0 28px;
}

.filing-table-wrap,
.committee-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-top: 1px solid var(--line);
}

.filing-table-wrap table,
.committee-table-wrap table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}

.filing-table-wrap th,
.filing-table-wrap td,
.committee-table-wrap th,
.committee-table-wrap td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #e2ecef;
  font-size: 0.82rem;
}

.filing-table-wrap thead,
.committee-table-wrap thead {
  color: white;
  background: var(--navy-900);
}

.filing-table-wrap tbody tr:nth-child(even),
.committee-table-wrap tbody tr:nth-child(even) {
  background: #f7fafb;
}

.filing-table-wrap td:last-child {
  display: grid;
  gap: 6px;
  min-width: 150px;
}

.filing-table-wrap a {
  color: var(--blue-600);
  font-weight: 750;
}

.governance-page {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(64px, 9vw, 110px);
}

.governance-library,
.committee-composition {
  min-width: 0;
  max-width: 100%;
}

.governance-intro {
  max-width: 30ch;
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(1.6rem, 3.3vw, 3.2rem);
  font-weight: 720;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.governance-document-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.governance-document-grid a {
  min-width: 0;
  min-height: 138px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22px;
  align-items: start;
  gap: 22px;
  padding: 26px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-decoration: none;
}

.governance-document-grid a:hover {
  border-color: var(--blue-500);
}

.governance-document-grid h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
}

.governance-document-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.committee-composition > p {
  max-width: 76ch;
  margin: -8px 0 28px;
  color: var(--ink-soft);
}

.committee-table-wrap {
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.committee-table-wrap table {
  min-width: 1120px;
}

.committee-table-wrap th:first-child {
  position: sticky;
  left: 0;
  min-width: 190px;
  background: inherit;
}

.committee-member {
  display: inline-flex;
  padding: 5px 8px;
  color: var(--navy-900);
  background: #dff4f7;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
}

.committee-legend {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

@media (max-width: 900px) {
  .investor-subnav {
    top: calc(var(--header-height) + 8px);
    width: calc(100vw - 28px);
    margin-inline: 14px;
  }

  .investor-overview-lead,
  .release-card,
  .investor-event-card {
    grid-template-columns: 1fr;
  }

  .investor-overview-grid,
  .quarterly-grid,
  .governance-document-grid {
    grid-template-columns: 1fr;
  }

  .investor-overview-grid a:first-child {
    grid-column: auto;
  }

  .release-card,
  .investor-event-card {
    gap: 12px;
  }
}

@media (max-width: 620px) {
  .investor-subnav {
    border-radius: 14px;
  }

  .investor-subnav a {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 0.76rem;
  }

  .investor-overview,
  .investor-archive {
    padding-block: 52px 86px;
  }

  .investor-overview-lead {
    margin-bottom: 30px;
  }

  .investor-overview-grid a {
    min-height: 0;
    grid-template-columns: 28px minmax(0, 1fr) 18px;
    gap: 14px;
    padding: 22px;
  }

  .investor-section-heading {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .release-card,
  .investor-event-card,
  .investor-upcoming {
    padding: 24px;
    border-radius: 16px;
  }

  .release-card h3,
  .investor-event-card h3 {
    font-size: 1.35rem;
  }

  .investor-materials {
    align-items: stretch;
    flex-direction: column;
  }

  .investor-materials span {
    width: 100%;
    justify-content: space-between;
    border-radius: 10px;
  }

  .quarterly-year > summary,
  .filing-year > summary {
    min-height: 68px;
    padding: 16px 18px;
    font-size: 1.35rem;
  }

  .quarterly-year > summary small,
  .filing-year > summary small {
    display: none;
  }

  .investor-source-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .filing-table-wrap table {
    min-width: 760px;
  }

  .governance-document-grid a {
    min-height: 0;
    padding: 22px;
  }
}

@media print {
  .site-header,
  .site-footer,
  .breadcrumbs,
  .reading-progress,
  .legal-toc,
  .search-dialog {
    display: none !important;
  }

  .legal-layout,
  .content-layout {
    display: block;
    width: 100%;
    padding: 0;
  }

  body {
    color: black;
    background: white;
    font-size: 11pt;
  }

  h1,
  h2,
  h3,
  h4 {
    color: black;
  }

  a {
    color: black;
    text-decoration: underline;
  }
}
