.pmd-v3_page {
  --pmd-blue-900: #152a44;
  --pmd-amber-700: #873d1b;
  --pmd-sand-500: #a17b58;
  --pmd-cream-100: #f2e6dc;
  --pmd-white: #ffffff;
  --pmd-ink-muted: #5a5853;
  --pmd-line: rgba(21, 42, 68, 0.16);
  --pmd-blue-line: rgba(255, 255, 255, 0.18);
  --pmd-gradient-start: #644734;
  --pmd-gradient-end: #ab8c6f;
  --pmd-container: 1240px;
  --pmd-wide: 1360px;
  --pmd-radius-control: 6px;
  --pmd-radius-card: 12px;
  --pmd-radius-media: 16px;
  --pmd-ease: cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  width: 100%;
  overflow-x: clip;
  color: var(--pmd-blue-900);
  background: var(--pmd-white);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.pmd-v3_page :where(h1, h2, h3, h4, p, ul, ol, figure, blockquote) {
  margin-top: 0;
}

/*
 * V3 containment boundary.
 * The legacy project assigns foreground and type values directly to bare
 * heading and paragraph tags. Keep all V3 text component-owned so those
 * project-wide rules cannot make dark-section copy navy on navy.
 */
.pmd-v3_page :where(h1, h2, h3, h4, h5, h6, p, li, blockquote, figcaption, dt, dd) {
  color: inherit;
}

.pmd-v3_page :where(p) {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.pmd-v3_page :where(a, button, summary) {
  -webkit-tap-highlight-color: transparent;
}

.pmd-v3_page :where(a, button, summary):focus-visible {
  outline: 3px solid #e5b07a;
  outline-offset: 4px;
}

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

.pmd-v3_page a {
  color: inherit;
}

.pmd-v3_skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 12px 18px;
  border-radius: var(--pmd-radius-control);
  color: var(--pmd-white);
  background: var(--pmd-blue-900);
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms var(--pmd-ease);
}

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

.pmd-v3_header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: 80px;
  border-bottom: 1px solid var(--pmd-line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.pmd-v3_header-shell {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  width: min(calc(100% - 48px), var(--pmd-wide));
  height: 100%;
  margin-inline: auto;
  gap: 28px;
}

.pmd-v3_brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 44px;
}

.pmd-v3_brand img {
  width: 172px;
  height: auto;
}

.pmd-v3_nav-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.2vw, 36px);
}

.pmd-v3_nav-desktop a,
.pmd-v3_member-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--pmd-blue-900);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.pmd-v3_nav-desktop a::after,
.pmd-v3_member-link::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms var(--pmd-ease);
}

.pmd-v3_nav-desktop a:hover::after,
.pmd-v3_member-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.pmd-v3_header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.pmd-v3_mobile-menu {
  display: none;
}

.pmd-v3_mobile-menu summary {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--pmd-blue-900);
  background: transparent;
  cursor: pointer;
  list-style: none;
}

.pmd-v3_mobile-menu summary::-webkit-details-marker {
  display: none;
}

.pmd-v3_menu-label {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.pmd-v3_menu-icon {
  position: relative;
  display: block;
  width: 28px;
  height: 18px;
}

.pmd-v3_menu-icon i {
  position: absolute;
  left: 0;
  display: block;
  width: 28px;
  height: 2px;
  background: var(--pmd-blue-900);
  transition: transform 180ms var(--pmd-ease), top 180ms var(--pmd-ease);
}

.pmd-v3_menu-icon i:first-child {
  top: 4px;
}

.pmd-v3_menu-icon i:last-child {
  top: 12px;
}

.pmd-v3_mobile-menu[open] .pmd-v3_menu-icon i:first-child {
  top: 9px;
  transform: rotate(45deg);
}

.pmd-v3_mobile-menu[open] .pmd-v3_menu-icon i:last-child {
  top: 9px;
  transform: rotate(-45deg);
}

.pmd-v3_mobile-panel {
  position: fixed;
  z-index: 999;
  top: 80px;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  padding: 28px 20px 40px;
  color: var(--pmd-blue-900);
  background: var(--pmd-cream-100);
}

html.pmd-v3_menu-open,
html.pmd-v3_menu-open body {
  overflow: hidden;
}

.pmd-v3_mobile-panel nav {
  display: grid;
  gap: 0;
}

.pmd-v3_mobile-panel nav > a:not(.pmd-v3_button) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  border-bottom: 1px solid var(--pmd-line);
  color: var(--pmd-blue-900);
  font-size: 22px;
  font-weight: 500;
  text-decoration: none;
}

.pmd-v3_mobile-meta {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--pmd-line);
  color: var(--pmd-ink-muted);
  font-size: 13px;
}

.pmd-v3_mobile-meta p {
  max-width: 36ch;
  margin-bottom: 12px;
}

.pmd-v3_mobile-meta a {
  font-weight: 700;
  text-underline-offset: 4px;
}

.pmd-v3_main {
  display: block;
}

.pmd-v3_section {
  position: relative;
  padding-block: 120px;
  scroll-margin-top: 96px;
}

.pmd-v3_section--white {
  background: var(--pmd-white);
}

.pmd-v3_section--cream {
  background: var(--pmd-cream-100);
}

.pmd-v3_section--blue {
  color: var(--pmd-white);
  background: var(--pmd-blue-900);
}

.pmd-v3_shell {
  width: min(calc(100% - 48px), var(--pmd-container));
  margin-inline: auto;
}

.pmd-v3_shell--wide {
  width: min(calc(100% - 48px), var(--pmd-wide));
  margin-inline: auto;
}

.pmd-v3_grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 32px;
}

.pmd-v3_eyebrow {
  margin-bottom: 20px;
  color: var(--pmd-amber-700);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.pmd-v3_section--blue .pmd-v3_eyebrow {
  color: #e1b083;
}

.pmd-v3_h1,
.pmd-v3_h2,
.pmd-v3_h3 {
  color: inherit;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.pmd-v3_h1 {
  max-width: 13ch;
  margin-bottom: 28px;
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 1.02;
}

.pmd-v3_h2 {
  max-width: 17ch;
  margin-bottom: 28px;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.08;
}

.pmd-v3_h3 {
  margin-bottom: 12px;
  font-size: clamp(24px, 2.1vw, 32px);
  line-height: 1.16;
}

.pmd-v3_body {
  max-width: 66ch;
  margin-bottom: 24px;
  color: var(--pmd-ink-muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.pmd-v3_body--large {
  max-width: 62ch;
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.65;
}

.pmd-v3_section--blue .pmd-v3_body {
  color: rgba(255, 255, 255, 0.78);
}

/*
 * Explicit dark-surface foregrounds. These selectors intentionally remain
 * inside the V3 page namespace and cover both current components and their
 * replacement markup.
 */
.pmd-v3_page :where(
  .pmd-v3_section--blue,
  .pmd-v3_judgment-gap,
  .pmd-v3_technology,
  .pmd-v3_complete-care,
  .pmd-v3_testimonial-featured,
  .pmd-v3_final-cta,
  .pmd-v3_footer,
  .pmd-v3_model-orbit,
  .pmd-v3_locations-map
) :where(h1, h2, h3, h4, h5, h6, p, li, blockquote, figcaption, dt, dd) {
  color: inherit;
}

.pmd-v3_editorial {
  font-family: Librecaslontext, Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.pmd-v3_actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}

.pmd-v3_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  border: 1px solid var(--pmd-amber-700);
  border-radius: var(--pmd-radius-control);
  color: var(--pmd-white);
  background: var(--pmd-amber-700);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background 180ms var(--pmd-ease), border-color 180ms var(--pmd-ease), color 180ms var(--pmd-ease), transform 180ms var(--pmd-ease);
}

.pmd-v3_button:hover {
  border-color: #6f3117;
  background: #6f3117;
  transform: translateY(-1px);
}

.pmd-v3_button-small {
  min-height: 48px;
  padding-inline: 20px;
  font-size: 13px;
}

.pmd-v3_button-wide {
  width: 100%;
  margin-bottom: 20px;
}

.pmd-v3_button--secondary {
  border-color: var(--pmd-blue-900);
  color: var(--pmd-blue-900);
  background: transparent;
}

.pmd-v3_button--secondary:hover {
  color: var(--pmd-white);
  background: var(--pmd-blue-900);
}

.pmd-v3_section--blue .pmd-v3_button,
.pmd-v3_button--light {
  border-color: var(--pmd-cream-100);
  color: var(--pmd-blue-900);
  background: var(--pmd-cream-100);
}

.pmd-v3_section--blue .pmd-v3_button:hover,
.pmd-v3_button--light:hover {
  border-color: var(--pmd-white);
  background: var(--pmd-white);
}

.pmd-v3_text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.pmd-v3_text-link::after {
  content: "↗";
  transition: transform 180ms var(--pmd-ease);
}

.pmd-v3_text-link:hover::after {
  transform: translate(2px, -2px);
}

.pmd-v3_intro {
  max-width: 840px;
  margin-bottom: 64px;
}

.pmd-v3_rule {
  border-color: var(--pmd-line);
}

.pmd-v3_section--blue .pmd-v3_rule {
  border-color: var(--pmd-blue-line);
}

@media (max-width: 1100px) {
  .pmd-v3_page .pmd-v3_header {
    isolation: isolate;
  }

  .pmd-v3_header-shell {
    grid-template-columns: auto 1fr auto;
    width: min(calc(100% - 40px), var(--pmd-wide));
  }

  .pmd-v3_nav-desktop {
    display: none;
  }

  .pmd-v3_mobile-menu {
    display: block;
    order: 4;
  }

  .pmd-v3_page .pmd-v3_mobile-menu[open] .pmd-v3_mobile-panel {
    position: fixed !important;
    z-index: 1001 !important;
    inset: 80px 0 0 !important;
    display: block !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    width: 100vw !important;
    min-width: 100vw !important;
    height: calc(100dvh - 80px) !important;
    max-width: none !important;
    max-height: none !important;
    padding: 28px 24px 40px !important;
    color: var(--pmd-blue-900) !important;
    background: var(--pmd-cream-100) !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    overscroll-behavior: contain;
  }

  .pmd-v3_page .pmd-v3_mobile-menu[open] .pmd-v3_mobile-panel nav,
  .pmd-v3_page .pmd-v3_mobile-menu[open] .pmd-v3_mobile-panel nav > * {
    display: grid !important;
    width: 100% !important;
  }

  .pmd-v3_page .pmd-v3_mobile-menu[open] .pmd-v3_mobile-panel nav a {
    display: flex !important;
    width: 100% !important;
    min-height: 58px !important;
    align-items: center !important;
    justify-content: space-between !important;
    border-bottom: 1px solid var(--pmd-line) !important;
    color: var(--pmd-blue-900) !important;
    font-size: 20px !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .pmd-v3_page .pmd-v3_mobile-menu[open] .pmd-v3_mobile-panel nav a.pmd-v3_button {
    justify-content: center !important;
    min-height: 52px !important;
    margin-bottom: 12px;
    border: 1px solid var(--pmd-amber-700) !important;
    color: var(--pmd-white) !important;
    background: var(--pmd-amber-700) !important;
    font-size: 14px !important;
  }

  .pmd-v3_header-actions {
    margin-left: auto;
  }

  .pmd-v3_member-link {
    display: none;
  }

  .pmd-v3_section {
    padding-block: 88px;
  }

  .pmd-v3_grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .pmd-v3_header {
    height: 68px;
  }

  .pmd-v3_header-shell,
  .pmd-v3_shell,
  .pmd-v3_shell--wide {
    width: min(calc(100% - 40px), var(--pmd-container));
  }

  .pmd-v3_header-shell {
    display: flex;
    gap: 12px;
  }

  .pmd-v3_brand img {
    width: 148px;
  }

  .pmd-v3_header-actions {
    display: none;
  }

  .pmd-v3_mobile-menu {
    margin-left: auto;
  }

  .pmd-v3_mobile-panel {
    top: 68px;
  }

  .pmd-v3_page .pmd-v3_mobile-menu[open] .pmd-v3_mobile-panel {
    inset: 68px 0 0 !important;
    height: calc(100dvh - 68px) !important;
    padding: 20px 20px 32px !important;
  }

  .pmd-v3_section {
    padding-block: 64px;
    scroll-margin-top: 80px;
  }

  .pmd-v3_grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }

  .pmd-v3_h1 {
    font-size: clamp(40px, 12.2vw, 56px);
  }

  .pmd-v3_h2 {
    font-size: clamp(34px, 9.7vw, 46px);
  }

  .pmd-v3_intro {
    margin-bottom: 44px;
  }

  .pmd-v3_actions {
    margin-top: 28px;
  }
}

@media (max-width: 479px) {
  .pmd-v3_button--mobile-full {
    width: 100%;
  }

  .pmd-v3_actions--hero {
    display: grid;
    width: 100%;
  }

  .pmd-v3_actions--hero .pmd-v3_button {
    width: 100%;
  }

  .pmd-v3_actions--hero .pmd-v3_text-link {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pmd-v3_page *,
  .pmd-v3_page *::before,
  .pmd-v3_page *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (forced-colors: active) {
  .pmd-v3_page :where(a, button, summary) {
    forced-color-adjust: auto;
  }
}

/* Home v3 section system */
.pmd-v3_sr-only {
  position: absolute !important;
  overflow: hidden !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  margin: -1px !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

.pmd-v3_section-header {
  max-width: 900px;
  margin-bottom: 64px;
}

.pmd-v3_section-header .pmd-v3_body:last-child {
  margin-bottom: 0;
}

.pmd-v3_button--text {
  min-height: 44px;
  padding: 8px 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  background: transparent;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.pmd-v3_button--text::after {
  margin-left: 8px;
  content: "↗";
}

.pmd-v3_button--text:hover {
  border-color: transparent;
  color: inherit;
  background: transparent;
  transform: none;
}

/* Hero */
.pmd-v3_hero {
  display: flex;
  min-height: min(900px, calc(100svh - 80px));
  align-items: center;
  padding-block: clamp(72px, 7vw, 104px);
  background:
    radial-gradient(circle at 8% 18%, rgba(242, 230, 220, 0.68), transparent 32%),
    linear-gradient(180deg, #fff 0%, #fdfbf9 100%);
}

.pmd-v3_hero-grid {
  align-items: center;
}

.pmd-v3_hero-content {
  grid-column: span 7;
  padding-right: clamp(0px, 3vw, 44px);
}

.pmd-v3_hero-body {
  max-width: 58ch;
  font-size: clamp(17px, 1.35vw, 20px);
}

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

.pmd-v3_hero-capacity {
  max-width: 52ch;
  margin: 32px 0 4px;
  color: var(--pmd-blue-900);
  font-size: 13px;
  font-weight: 700;
}

.pmd-v3_hero-markets {
  margin: 0;
  color: var(--pmd-ink-muted);
  font-size: 12px;
  font-weight: 500;
}

.pmd-v3_hero-media {
  position: relative;
  grid-column: span 5;
  min-height: 620px;
  margin: 0;
}

.pmd-v3_hero-image {
  width: 100%;
  height: 100%;
  min-height: 620px;
  border-radius: var(--pmd-radius-media);
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(0.88) contrast(0.98);
}

.pmd-v3_hero-media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--pmd-radius-media);
  content: "";
  pointer-events: none;
}

.pmd-v3_hero-callouts {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: rgba(21, 42, 68, 0.86);
  backdrop-filter: blur(12px);
}

.pmd-v3_hero-callout {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-right: 1px solid var(--pmd-blue-line);
  color: var(--pmd-white);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pmd-v3_hero-callout:nth-child(3) {
  border-right: 0;
}

.pmd-v3_hero-review-state {
  grid-column: 1 / -1;
  padding: 8px;
  border-radius: 5px;
  color: var(--pmd-blue-900);
  background: var(--pmd-cream-100);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

/* Proof ribbon */
.pmd-v3_proof-ribbon {
  padding-block: 42px;
  color: var(--pmd-white);
  background: var(--pmd-blue-900);
}

.pmd-v3_proof-grid {
  margin: 0;
}

.pmd-v3_proof-item {
  grid-column: span 3;
  min-width: 0;
  padding: 4px 28px;
  border-right: 1px solid var(--pmd-blue-line);
}

.pmd-v3_proof-item:first-child {
  padding-left: 0;
}

.pmd-v3_proof-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.pmd-v3_proof-value {
  display: block;
  margin-bottom: 7px;
  font-size: clamp(15px, 1.3vw, 19px);
  font-weight: 600;
  line-height: 1.3;
}

.pmd-v3_proof-detail {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

/* Judgment gap */
.pmd-v3_judgment-gap {
  color: var(--pmd-white);
  background: var(--pmd-blue-900);
}

.pmd-v3_judgment-grid {
  align-items: center;
}

.pmd-v3_judgment-content {
  grid-column: span 7;
  padding-right: clamp(0px, 4vw, 72px);
}

.pmd-v3_judgment-content .pmd-v3_body {
  color: rgba(255, 255, 255, 0.76);
}

.pmd-v3_judgment-emphasis {
  margin-block: 30px;
  color: var(--pmd-white);
  font-size: clamp(23px, 2vw, 30px);
  font-weight: 400;
  line-height: 1.35;
}

.pmd-v3_judgment-emphasis em {
  color: #e8c8aa;
  font-family: Librecaslontext, Georgia, serif;
  font-weight: 400;
}

.pmd-v3_judgment-diagram {
  display: grid;
  grid-column: span 5;
  justify-items: center;
  margin: 0;
  padding: clamp(26px, 4vw, 54px);
  border: 1px solid var(--pmd-blue-line);
  border-radius: var(--pmd-radius-media);
  background: rgba(255, 255, 255, 0.035);
}

.pmd-v3_judgment-inputs {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.pmd-v3_judgment-chip {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid var(--pmd-blue-line);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.pmd-v3_judgment-arrow {
  position: relative;
  width: 1px;
  height: 48px;
  margin-block: 10px;
  background: linear-gradient(var(--pmd-sand-500), #e2bd99);
}

.pmd-v3_judgment-arrow::after {
  position: absolute;
  right: -4px;
  bottom: -1px;
  width: 9px;
  height: 9px;
  border-right: 1px solid #e2bd99;
  border-bottom: 1px solid #e2bd99;
  content: "";
  transform: rotate(45deg);
}

.pmd-v3_judgment-center {
  display: flex;
  width: 178px;
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 35%, rgba(255, 255, 255, 0.18), transparent 36%),
    linear-gradient(145deg, var(--pmd-gradient-start), var(--pmd-gradient-end));
  box-shadow: 0 0 0 18px rgba(171, 140, 111, 0.07);
  text-align: center;
}

.pmd-v3_judgment-center-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.pmd-v3_judgment-center-value {
  margin-top: 4px;
  font-family: Librecaslontext, Georgia, serif;
  font-size: 31px;
  font-style: italic;
  font-weight: 400;
}

.pmd-v3_judgment-output {
  width: min(100%, 290px);
  padding: 20px;
  border-radius: 9px;
  color: var(--pmd-blue-900);
  background: var(--pmd-cream-100);
  font-size: 17px;
  font-weight: 700;
  text-align: center;
}

/* Physicians */
.pmd-v3_physicians {
  background: var(--pmd-white);
}

.pmd-v3_physicians-header {
  max-width: 900px;
}

.pmd-v3_physicians-supporting-line {
  max-width: 68ch;
  margin: 28px 0 0;
  padding-left: 18px;
  border-left: 3px solid var(--pmd-amber-700);
  color: var(--pmd-blue-900);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 600;
}

.pmd-v3_physician-grid {
  margin-bottom: 40px;
}

.pmd-v3_physician-card {
  grid-column: span 4;
  overflow: hidden;
  border: 1px solid var(--pmd-line);
  border-radius: var(--pmd-radius-card);
  background: var(--pmd-white);
  transition: transform 200ms var(--pmd-ease), box-shadow 200ms var(--pmd-ease);
}

.pmd-v3_physician-card:hover {
  box-shadow: 0 18px 40px rgba(21, 42, 68, 0.08);
  transform: translateY(-4px);
}

.pmd-v3_physician-card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.pmd-v3_physician-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.pmd-v3_physician-card-content {
  padding: 26px;
}

.pmd-v3_physician-name {
  margin-bottom: 7px;
  font-size: clamp(21px, 1.8vw, 28px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.pmd-v3_physician-role {
  margin-bottom: 22px;
  color: var(--pmd-amber-700);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pmd-v3_physician-credentials {
  min-height: 9.5em;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.pmd-v3_physician-credentials li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 16px;
  color: var(--pmd-ink-muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.pmd-v3_physician-credentials li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 1px;
  content: "";
  background: var(--pmd-amber-700);
}

.pmd-v3_physician-markets {
  display: flex;
  margin: -8px 0 16px;
  padding: 0;
  list-style: none;
}

.pmd-v3_physician-market {
  padding: 5px 9px;
  border: 1px solid var(--pmd-line);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
}

.pmd-v3_physician-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.pmd-v3_care-team {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 32px;
  margin-top: 64px;
  padding: 40px;
  border-radius: var(--pmd-radius-card);
  background: var(--pmd-cream-100);
}

.pmd-v3_care-team .pmd-v3_body {
  margin-bottom: 0;
}

.pmd-v3_care-team-copy {
  max-width: 760px;
}

.pmd-v3_care-team-roles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.pmd-v3_care-team-role {
  display: flex;
  min-height: 160px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid var(--pmd-line);
  border-radius: 9px;
  color: var(--pmd-blue-900);
  background: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

/* New four-person care-team component. */
.pmd-v3_team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.pmd-v3_team-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 230px;
  flex-direction: column;
  padding: 26px 24px 24px;
  border: 1px solid var(--pmd-line);
  border-radius: var(--pmd-radius-card);
  color: var(--pmd-blue-900);
  background: rgba(255, 255, 255, 0.82);
}

.pmd-v3_team-card::before {
  width: 40px;
  height: 3px;
  margin-bottom: 34px;
  border-radius: 999px;
  content: "";
  background: var(--pmd-amber-700);
}

.pmd-v3_team-card-role {
  margin: 0 0 12px;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.pmd-v3_team-card-kicker {
  margin: 0 0 9px;
  color: var(--pmd-amber-700);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.pmd-v3_team-card-description {
  margin: auto 0 0;
  color: var(--pmd-ink-muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.65;
}

.pmd-v3_credential-band {
  margin: 32px 0 0;
  padding: 20px;
  border-block: 1px solid var(--pmd-line);
  color: var(--pmd-blue-900);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

/* Model */
.pmd-v3_model {
  background: var(--pmd-cream-100);
}

.pmd-v3_model-header {
  max-width: 970px;
}

.pmd-v3_model-grid {
  align-items: stretch;
}

.pmd-v3_model-orbit {
  position: relative;
  grid-column: span 6;
  min-height: 760px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--pmd-radius-media);
  color: var(--pmd-white);
  background:
    radial-gradient(circle at 50% 50%, rgba(171, 140, 111, 0.24), transparent 34%),
    var(--pmd-blue-900);
}

.pmd-v3_model-orbit::before,
.pmd-v3_model-orbit::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid var(--pmd-blue-line);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.pmd-v3_model-orbit::before {
  width: 72%;
  aspect-ratio: 1;
}

.pmd-v3_model-orbit::after {
  width: 46%;
  aspect-ratio: 1;
}

.pmd-v3_model-orbit-center {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  display: flex;
  width: 118px;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--pmd-gradient-start), var(--pmd-gradient-end));
  transform: translate(-50%, -50%);
}

.pmd-v3_model-you {
  font-family: Librecaslontext, Georgia, serif;
  font-size: 27px;
  font-style: italic;
}

.pmd-v3_model-ring {
  position: absolute;
  z-index: 3;
  max-width: 235px;
  padding: 18px;
  border: 1px solid var(--pmd-blue-line);
  border-radius: 10px;
  background: rgba(21, 42, 68, 0.9);
  backdrop-filter: blur(8px);
}

.pmd-v3_model-ring--inner {
  top: 34px;
  left: 50%;
  transform: translateX(-50%);
}

.pmd-v3_model-ring--middle {
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}

.pmd-v3_model-ring--outer {
  bottom: 30px;
  left: 28px;
}

.pmd-v3_model-ring-heading {
  margin-bottom: 10px;
  color: #e5bd98;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pmd-v3_model-ring-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pmd-v3_model-ring-list li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.35;
}

.pmd-v3_model-features {
  display: flex;
  grid-column: span 6;
  flex-direction: column;
  justify-content: center;
}

.pmd-v3_model-feature {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 0 18px;
  padding: 25px 0;
  border-bottom: 1px solid var(--pmd-line);
}

.pmd-v3_model-feature:first-child {
  border-top: 1px solid var(--pmd-line);
}

.pmd-v3_model-feature-number {
  grid-row: span 2;
  color: var(--pmd-sand-500);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.pmd-v3_model-feature-heading {
  margin-bottom: 7px;
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.pmd-v3_model-feature .pmd-v3_body {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
}

.pmd-v3_model-features > .pmd-v3_button {
  align-self: flex-start;
  margin-top: 32px;
}

/* Care */
.pmd-v3_care {
  background: var(--pmd-white);
}

.pmd-v3_care-lanes {
  border-top: 1px solid var(--pmd-line);
}

.pmd-v3_care-lane {
  position: relative;
  min-height: 320px;
  align-items: center;
  padding-block: 52px;
  border-bottom: 1px solid var(--pmd-line);
}

.pmd-v3_care-lane::after {
  display: none;
}

.pmd-v3_care-lane-media {
  grid-column: 8 / -1;
  grid-row: 1;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: var(--pmd-radius-media);
  background: #e8e0d8;
}

.pmd-v3_care-lane-media img {
  width: 100%;
  height: clamp(240px, 22vw, 320px);
  object-fit: cover;
  object-position: center;
  transition: transform 500ms var(--pmd-ease);
}

.pmd-v3_care-lane:hover .pmd-v3_care-lane-media img {
  transform: scale(1.015);
}

.pmd-v3_care-lane:nth-child(even) .pmd-v3_care-lane-media {
  grid-column: 1 / 6;
  grid-row: 1;
}

.pmd-v3_care-lane-number {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  color: var(--pmd-sand-500);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.pmd-v3_care-lane-content {
  grid-column: 2 / 7;
  grid-row: 1;
}

.pmd-v3_care-lane:nth-child(even) .pmd-v3_care-lane-number {
  grid-column: 7;
  grid-row: 1;
}

.pmd-v3_care-lane:nth-child(even) .pmd-v3_care-lane-content {
  grid-column: 8 / -1;
  grid-row: 1;
}

.pmd-v3_care-lane-heading {
  margin-bottom: 14px;
  font-size: clamp(28px, 2.7vw, 40px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.pmd-v3_care-examples-heading,
.pmd-v3_journey-detail-heading {
  margin: 22px 0 9px;
  color: var(--pmd-amber-700);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pmd-v3_care-examples,
.pmd-v3_journey-details {
  margin: 0;
  padding-left: 18px;
  color: var(--pmd-ink-muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
}

.pmd-v3_care-philosophy {
  margin: 64px 0 34px;
  padding: 34px clamp(24px, 5vw, 64px);
  border-left: 4px solid var(--pmd-amber-700);
  background: var(--pmd-cream-100);
}

.pmd-v3_care-philosophy p {
  margin: 0;
  font-family: Librecaslontext, Georgia, serif;
  font-size: clamp(24px, 2.8vw, 38px);
  font-style: italic;
  line-height: 1.3;
}

/* Technology */
.pmd-v3_technology {
  color: var(--pmd-white);
  background: var(--pmd-blue-900);
}

.pmd-v3_technology-header {
  max-width: 940px;
}

.pmd-v3_technology-header .pmd-v3_body,
.pmd-v3_technology .pmd-v3_body {
  color: rgba(255, 255, 255, 0.74);
}

.pmd-v3_technology .pmd-v3_h2,
.pmd-v3_technology .pmd-v3_h3,
.pmd-v3_technology .pmd-v3_signal-heading,
.pmd-v3_technology .pmd-v3_technology-step-heading,
.pmd-v3_technology .pmd-v3_technology-device-copy,
.pmd-v3_technology .pmd-v3_technology-example {
  color: var(--pmd-white);
}

.pmd-v3_signal {
  display: grid;
  grid-template-columns: 190px minmax(0, 0.8fr) minmax(0, 1fr);
  align-items: start;
  gap: 30px;
  margin-bottom: 42px;
  padding: 28px;
  border: 1px solid var(--pmd-blue-line);
  border-radius: var(--pmd-radius-card);
  background: rgba(255, 255, 255, 0.04);
}

.pmd-v3_signal-label {
  margin: 0;
  color: #e5bd98;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.pmd-v3_signal-heading {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}

.pmd-v3_signal .pmd-v3_body {
  margin: 0;
  font-size: 13px;
}

.pmd-v3_technology-flow {
  margin: 0 0 42px;
}

.pmd-v3_technology-flow-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pmd-v3_technology-step {
  position: relative;
  grid-column: span 2;
  padding: 24px 18px;
  border: 1px solid var(--pmd-blue-line);
  border-radius: var(--pmd-radius-card);
}

.pmd-v3_technology-step:nth-child(3) {
  grid-column: span 4;
  border-color: rgba(229, 189, 152, 0.55);
  background: rgba(171, 140, 111, 0.1);
}

.pmd-v3_technology-step:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -26px;
  content: "→";
  color: #e5bd98;
  font-size: 16px;
  transform: translateY(-50%);
}

.pmd-v3_technology-step-heading {
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 600;
}

.pmd-v3_technology-step ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pmd-v3_technology-step li {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  line-height: 1.4;
}

.pmd-v3_technology-support {
  align-items: stretch;
}

.pmd-v3_technology-device-copy,
.pmd-v3_technology-example {
  grid-column: span 6;
}

.pmd-v3_technology-disclosure {
  margin: 24px 0 0;
  padding: 18px;
  border-left: 2px solid #e5bd98;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.65;
}

.pmd-v3_technology-example {
  padding: 26px;
  border: 1px solid var(--pmd-blue-line);
  border-radius: var(--pmd-radius-card);
  background: rgba(255, 255, 255, 0.04);
}

.pmd-v3_technology-example-list {
  display: grid;
  margin: 0;
  gap: 0;
}

.pmd-v3_technology-example-list > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  padding-block: 13px;
  border-bottom: 1px solid var(--pmd-blue-line);
}

.pmd-v3_technology-example-list > div:last-child {
  border-bottom: 0;
}

.pmd-v3_technology-example-list dt {
  color: #e5bd98;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pmd-v3_technology-example-list dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.pmd-v3_technology > .pmd-v3_shell > .pmd-v3_button {
  margin-top: 36px;
  border-color: var(--pmd-white);
  color: var(--pmd-white);
  background: transparent;
}

/* Journey */
.pmd-v3_journey {
  background: var(--pmd-cream-100);
}

.pmd-v3_journey-list {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pmd-v3_journey-list::before {
  display: none;
}

.pmd-v3_journey-step {
  position: relative;
  z-index: 1;
  grid-column: span 3;
  padding: 0 10px;
}

.pmd-v3_journey-step:not(:last-child)::after {
  position: absolute;
  z-index: -1;
  top: 29px;
  right: -42px;
  left: 68px;
  height: 1px;
  content: "";
  background: var(--pmd-sand-500);
}

.pmd-v3_journey-step:not(:last-child)::before {
  position: absolute;
  z-index: 2;
  top: 25px;
  right: -42px;
  width: 9px;
  height: 9px;
  border-top: 1px solid var(--pmd-sand-500);
  border-right: 1px solid var(--pmd-sand-500);
  content: "";
  transform: rotate(45deg);
}

.pmd-v3_journey-step article {
  height: 100%;
  padding-top: 0;
}

.pmd-v3_journey-number {
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border: 1px solid var(--pmd-sand-500);
  border-radius: 50%;
  color: var(--pmd-blue-900);
  background: var(--pmd-cream-100);
  font-size: 11px;
  font-weight: 700;
}

.pmd-v3_journey-step-heading {
  min-height: 2.4em;
  margin-bottom: 14px;
  font-size: clamp(21px, 1.8vw, 27px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.pmd-v3_journey-step .pmd-v3_body {
  font-size: 12px;
  line-height: 1.62;
}

.pmd-v3_journey-takeaway {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--pmd-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.48);
}

.pmd-v3_journey-takeaway h4 {
  margin-bottom: 9px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pmd-v3_journey-takeaway ul {
  margin: 0;
  padding-left: 16px;
  color: var(--pmd-ink-muted);
  font-size: 11px;
}

.pmd-v3_journey-plan-line {
  position: relative;
  margin: 48px 0 32px;
  padding: 16px 48px 16px 18px;
  border-radius: 999px;
  color: var(--pmd-white);
  background: var(--pmd-blue-900);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.pmd-v3_journey-plan-line::after {
  position: absolute;
  top: 50%;
  right: 22px;
  content: "→";
  color: #e5bd98;
  font-size: 18px;
  transform: translateY(-52%);
}

/* Incentives */
.pmd-v3_incentives {
  background: var(--pmd-white);
}

.pmd-v3_incentives-grid {
  align-items: start;
}

.pmd-v3_incentives-content {
  grid-column: span 6;
  padding-right: clamp(0px, 3vw, 48px);
}

.pmd-v3_incentives-quote {
  margin: 44px 0 0;
  padding: 30px 0 0;
  border-top: 1px solid var(--pmd-line);
}

.pmd-v3_incentives-quote p {
  max-width: 22ch;
  margin: 0;
  font-family: Librecaslontext, Georgia, serif;
  font-size: clamp(24px, 2.7vw, 38px);
  font-style: italic;
  line-height: 1.32;
}

.pmd-v3_incentives-ledger {
  grid-column: span 6;
  overflow: hidden;
  border: 1px solid var(--pmd-line);
  border-radius: var(--pmd-radius-card);
}

.pmd-v3_incentives-column {
  padding: 32px;
}

.pmd-v3_incentives-column + .pmd-v3_incentives-column {
  border-top: 1px solid var(--pmd-line);
}

.pmd-v3_incentives-column--do {
  background: var(--pmd-cream-100);
}

.pmd-v3_incentives-column h3 {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 500;
}

.pmd-v3_incentives-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pmd-v3_incentives-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  padding-block: 10px;
  border-bottom: 1px solid var(--pmd-line);
  color: var(--pmd-ink-muted);
  font-size: 13px;
  font-weight: 500;
}

.pmd-v3_incentives-list li:last-child {
  border-bottom: 0;
}

.pmd-v3_incentives-list span {
  color: var(--pmd-amber-700);
  font-weight: 700;
}

/* Complete care */
.pmd-v3_complete-care {
  color: var(--pmd-white);
  background: var(--pmd-blue-900);
}

.pmd-v3_complete-care-grid {
  align-items: start;
}

.pmd-v3_complete-care-copy {
  grid-column: span 7;
  padding-right: clamp(0px, 4vw, 64px);
}

.pmd-v3_complete-care-copy .pmd-v3_body,
.pmd-v3_complete-care-attribution {
  color: rgba(255, 255, 255, 0.75);
}

.pmd-v3_complete-care-services {
  position: relative;
  grid-column: span 5;
  padding: 36px;
  border: 1px solid var(--pmd-blue-line);
  border-radius: var(--pmd-radius-card);
  background: rgba(255, 255, 255, 0.04);
}

.pmd-v3_complete-care-services::before {
  display: block;
  width: 72px;
  height: 7px;
  margin-bottom: 28px;
  border-radius: 999px;
  content: "";
  background: var(--pmd-amber-700);
}

.pmd-v3_complete-care-list {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.pmd-v3_complete-care-list li {
  position: relative;
  padding: 14px 0 14px 24px;
  border-bottom: 1px solid var(--pmd-blue-line);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 600;
}

.pmd-v3_complete-care-list li::before {
  position: absolute;
  top: 1.65em;
  left: 2px;
  width: 8px;
  height: 8px;
  border: 1px solid #e5bd98;
  border-radius: 50%;
  content: "";
}

.pmd-v3_complete-care-attribution {
  margin: 0;
  font-size: 12px;
}

.pmd-v3_disclosure {
  margin: 0;
}

.pmd-v3_disclosure > summary {
  cursor: pointer;
  list-style: none;
}

.pmd-v3_disclosure > summary::-webkit-details-marker {
  display: none;
}

.pmd-v3_complete-care-disclosure {
  margin-top: 48px;
}

.pmd-v3_complete-care-disclosure > summary {
  width: max-content;
  max-width: 100%;
  border-color: var(--pmd-cream-100);
  color: var(--pmd-blue-900);
  background: var(--pmd-cream-100);
}

.pmd-v3_complete-care-disclosure > summary::after,
.pmd-v3_video-transcript > summary::after,
.pmd-v3_faq-question::after {
  display: inline-block;
  margin-left: 14px;
  content: "+";
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.pmd-v3_disclosure[open] > summary::after {
  content: "−";
}

.pmd-v3_disclosure-panel {
  padding-top: 28px;
}

.pmd-v3_complete-care-disclosure-title {
  margin-bottom: 22px;
  font-size: 26px;
  font-weight: 500;
}

.pmd-v3_complete-care-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: complete-care;
}

.pmd-v3_complete-care-steps li {
  position: relative;
  padding: 62px 24px 24px;
  border: 1px solid var(--pmd-blue-line);
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  counter-increment: complete-care;
}

.pmd-v3_complete-care-steps li::before {
  position: absolute;
  top: 20px;
  left: 24px;
  content: "0" counter(complete-care);
  color: #e5bd98;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.pmd-v3_complete-care-steps strong {
  display: block;
  margin-bottom: 8px;
  color: var(--pmd-white);
  font-size: 14px;
}

/* Comparison */
.pmd-v3_comparison {
  background: var(--pmd-cream-100);
}

.pmd-v3_comparison-heading {
  max-width: 950px;
  margin-bottom: 56px;
}

.pmd-v3_comparison-scroll {
  position: relative;
  overflow-x: auto;
  border: 1px solid var(--pmd-line);
  border-radius: var(--pmd-radius-card);
  background: var(--pmd-white);
  box-shadow: 0 18px 60px rgba(21, 42, 68, 0.05);
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--pmd-sand-500) rgba(21, 42, 68, 0.08);
  scrollbar-width: thin;
}

.pmd-v3_comparison-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  table-layout: fixed;
}

.pmd-v3_comparison-table caption {
  padding: 18px 22px;
  border-bottom: 1px solid var(--pmd-line);
  color: var(--pmd-ink-muted);
  font-size: 12px;
  font-weight: 600;
  text-align: left;
}

.pmd-v3_comparison-table th,
.pmd-v3_comparison-table td {
  padding: 18px 20px;
  border-right: 1px solid var(--pmd-line);
  border-bottom: 1px solid var(--pmd-line);
  vertical-align: middle;
  color: var(--pmd-ink-muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
}

.pmd-v3_comparison-table thead th {
  padding-block: 22px;
  color: var(--pmd-blue-900);
  background: #fbfaf8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.pmd-v3_comparison-table th:first-child {
  width: 31%;
  color: var(--pmd-blue-900);
  font-weight: 700;
}

.pmd-v3_comparison-table th:nth-child(2),
.pmd-v3_comparison-table td:nth-child(2) {
  width: 23%;
}

.pmd-v3_comparison-table th:nth-child(3),
.pmd-v3_comparison-table td:nth-child(3),
.pmd-v3_comparison-table th:nth-child(4),
.pmd-v3_comparison-table td:nth-child(4) {
  width: 23%;
}

.pmd-v3_comparison-table tr:last-child > * {
  border-bottom: 0;
}

.pmd-v3_comparison-table tr > *:last-child {
  border-right: 0;
}

.pmd-v3_comparison-table .pmd-v3_comparison-primarymd {
  border-color: rgba(21, 42, 68, 0.18);
  color: var(--pmd-blue-900);
  background: #f3e8df;
  font-weight: 700;
}

.pmd-v3_comparison-table thead .pmd-v3_comparison-primarymd {
  border-color: var(--pmd-blue-line);
  color: var(--pmd-white);
  background: var(--pmd-blue-900);
}

.pmd-v3_comparison-group > th,
.pmd-v3_comparison-group > td,
.pmd-v3_comparison-table .pmd-v3_comparison-group-heading {
  padding: 12px 20px;
  color: var(--pmd-amber-700);
  background: #ece3da;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pmd-v3_comparison-status {
  display: inline-flex;
  align-items: flex-start;
  gap: 9px;
  color: inherit;
  font-weight: 700;
}

.pmd-v3_comparison-status::before {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  font-size: 11px;
  line-height: 1;
}

.pmd-v3_comparison-status--included::before {
  content: "✓";
}

.pmd-v3_comparison-status--varies::before {
  content: "~";
}

.pmd-v3_comparison-status--not-typical::before {
  content: "–";
}

.pmd-v3_comparison-status--conditional::before {
  content: "•";
}

.pmd-v3_comparison-status > [aria-hidden="true"] {
  display: none;
}

.pmd-v3_comparison-scroll-hint {
  display: none;
  margin: 0 0 10px;
  color: var(--pmd-ink-muted);
  font-size: 11px;
  font-weight: 700;
}

.pmd-v3_comparison-footnote {
  max-width: 88ch;
  margin: 20px 0 0;
  color: var(--pmd-ink-muted);
  font-size: 12px;
  line-height: 1.7;
}

.pmd-v3_comparison-cta {
  margin-top: 32px;
}

/* Proof */
.pmd-v3_proof {
  background: var(--pmd-white);
}

.pmd-v3_proof-heading {
  max-width: 860px;
  margin-bottom: 58px;
}

.pmd-v3_proof-points {
  /* Unsupported internal KPI cards are intentionally suppressed in V3. */
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pmd-v3_proof-point {
  display: flex;
  grid-column: span 3;
  min-height: 230px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  border: 1px solid var(--pmd-line);
  border-radius: var(--pmd-radius-card);
  background: linear-gradient(155deg, #fff 45%, rgba(242, 230, 220, 0.66));
}

.pmd-v3_proof-point .pmd-v3_proof-value {
  margin-bottom: 14px;
  color: var(--pmd-blue-900);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.pmd-v3_proof-label {
  max-width: 24ch;
  color: var(--pmd-ink-muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.pmd-v3_proof-date:empty {
  display: none;
}

.pmd-v3_testimonials {
  align-items: stretch;
  margin-top: 56px;
}

.pmd-v3_testimonial {
  position: relative;
  display: flex;
  min-height: 340px;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  overflow: hidden;
  border-radius: var(--pmd-radius-media);
}

.pmd-v3_testimonial::before {
  position: absolute;
  top: 12px;
  right: 24px;
  content: "“";
  color: currentColor;
  font-family: Librecaslontext, Georgia, serif;
  font-size: 112px;
  font-style: italic;
  line-height: 1;
  opacity: 0.08;
  pointer-events: none;
}

.pmd-v3_testimonial blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
}

.pmd-v3_testimonial blockquote p {
  margin: 0;
  font-family: Librecaslontext, Georgia, serif;
  font-style: italic;
  line-height: 1.35;
}

.pmd-v3_testimonial-featured {
  grid-column: span 8;
  padding: clamp(34px, 5vw, 64px);
  color: var(--pmd-white);
  background: var(--pmd-blue-900);
}

.pmd-v3_testimonial-featured :where(blockquote, blockquote p, cite) {
  color: var(--pmd-white);
}

.pmd-v3_testimonial-featured blockquote p {
  max-width: 23ch;
  font-size: clamp(30px, 3.7vw, 52px);
}

.pmd-v3_testimonial-supporting {
  grid-column: span 4;
  padding: 34px;
  color: var(--pmd-blue-900);
  background: var(--pmd-cream-100);
}

.pmd-v3_testimonial-supporting :where(blockquote, blockquote p, cite) {
  color: var(--pmd-blue-900);
}

.pmd-v3_testimonial-supporting blockquote p {
  font-size: clamp(24px, 2.2vw, 32px);
}

.pmd-v3_testimonial cite {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 32px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Locations */
.pmd-v3_locations {
  background: var(--pmd-cream-100);
}

.pmd-v3_locations-heading {
  max-width: 900px;
  margin-bottom: 52px;
}

.pmd-v3_locations-supporting {
  max-width: 64ch;
  margin: 20px 0 0;
  color: var(--pmd-blue-900);
  font-size: 13px;
  font-weight: 600;
}

.pmd-v3_locations-network {
  align-items: stretch;
}

.pmd-v3_locations-list-heading {
  margin: 0 0 22px;
  color: var(--pmd-blue-900);
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.pmd-v3_locations-list {
  position: relative;
  grid-column: span 4;
  min-height: 480px;
  padding: 32px;
  border: 1px solid var(--pmd-line);
  border-radius: var(--pmd-radius-card);
  background: var(--pmd-white);
}

.pmd-v3_locations-list::before {
  display: none;
}

.pmd-v3_locations-records:empty::after {
  display: block;
  max-width: 26ch;
  content: "Verified markets, clinics, and partner access are managed from the shared location collection.";
  color: var(--pmd-ink-muted);
  font-size: 13px;
  line-height: 1.7;
}

.pmd-v3_locations-groups {
  display: grid;
  gap: 0;
}

.pmd-v3_locations-group {
  padding-block: 22px;
  border-bottom: 1px solid var(--pmd-line);
}

.pmd-v3_locations-group:first-child {
  padding-top: 0;
}

.pmd-v3_locations-group:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.pmd-v3_locations-group-heading {
  margin: 0 0 12px;
  color: var(--pmd-amber-700);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pmd-v3_locations-items {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.pmd-v3_locations-records {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.pmd-v3_locations-records li {
  position: relative;
  display: grid;
  padding-left: 18px;
  color: var(--pmd-blue-900);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.pmd-v3_locations-records li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  border: 1px solid var(--pmd-amber-700);
  border-radius: 50%;
  content: "";
}

.pmd-v3_locations-record-meta {
  color: var(--pmd-ink-muted);
  font-size: 11px;
  font-weight: 500;
}

.pmd-v3_locations-items li {
  position: relative;
  padding-left: 18px;
  color: var(--pmd-blue-900);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.pmd-v3_locations-items li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  border: 1px solid var(--pmd-amber-700);
  border-radius: 50%;
  content: "";
}

.pmd-v3_locations-map {
  position: relative;
  grid-column: span 8;
  min-height: 480px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--pmd-radius-media);
  color: var(--pmd-white);
  background: var(--pmd-blue-900);
}

.pmd-v3_locations-map::before {
  display: none;
}

.pmd-v3_locations-map::after {
  display: none;
}

.pmd-v3_locations-map-art {
  display: none;
}

.pmd-v3_locations-map-inner {
  display: grid;
  min-height: 480px;
  grid-template-rows: 1fr auto;
  padding: clamp(24px, 4vw, 48px);
}

.pmd-v3_locations-map-svg {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  overflow: visible;
}

.pmd-v3_locations-network--verified .pmd-v3_locations-map {
  display: grid;
  grid-template-rows: 1fr auto;
  padding: clamp(24px, 4vw, 48px);
}

.pmd-v3_locations-map-svg .pmd-v3_locations-land {
  fill: rgba(242, 230, 220, 0.11);
  stroke: rgba(255, 255, 255, 0.5);
  stroke-linejoin: round;
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.pmd-v3_locations-map-svg .pmd-v3_locations-state-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.pmd-v3_locations-market {
  fill: rgba(229, 167, 116, 0.18);
  stroke: #e5a774;
  stroke-width: 2;
}

.pmd-v3_locations-clinic {
  fill: var(--pmd-white);
  stroke: #e5a774;
  stroke-width: 2;
}

.pmd-v3_locations-partner {
  fill: #e5a774;
  stroke: var(--pmd-white);
  stroke-width: 1.5;
}

.pmd-v3_locations-map-svg .pmd-v3_map-land {
  fill: rgba(242, 230, 220, 0.11);
  stroke: rgba(255, 255, 255, 0.5);
  stroke-linejoin: round;
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.pmd-v3_locations-map-svg .pmd-v3_map-pin {
  color: #e5a774;
  filter: drop-shadow(0 3px 7px rgba(0, 0, 0, 0.28));
}

.pmd-v3_locations-map-svg .pmd-v3_map-pin circle {
  fill: currentColor;
  stroke: var(--pmd-white);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.pmd-v3_locations-map-svg .pmd-v3_map-pin text {
  fill: var(--pmd-white);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  paint-order: stroke;
  stroke: var(--pmd-blue-900);
  stroke-width: 4px;
  stroke-linejoin: round;
}

.pmd-v3_locations-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--pmd-blue-line);
  list-style: none;
}

.pmd-v3_locations-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 600;
}

.pmd-v3_locations-legend-item > span:first-child {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
}

.pmd-v3_locations-legend-market {
  border: 2px solid #e5a774;
  border-radius: 50%;
  background: rgba(229, 167, 116, 0.18);
}

.pmd-v3_locations-legend-clinic {
  border: 2px solid #e5a774;
  border-radius: 50%;
  background: var(--pmd-white);
}

.pmd-v3_locations-legend-partner {
  border: 1px solid var(--pmd-white);
  background: #e5a774;
  transform: rotate(45deg) scale(0.78);
}

.pmd-v3_locations-legend li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 600;
}

.pmd-v3_locations-legend-marker {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border: 1px solid var(--pmd-white);
  border-radius: 50%;
  background: #e5a774;
}

.pmd-v3_locations-cta {
  margin-top: 34px;
}

/* Origin */
.pmd-v3_origin-story {
  background: var(--pmd-white);
}

.pmd-v3_origin-story-grid {
  align-items: center;
}

.pmd-v3_origin-story-copy {
  grid-column: span 5;
  padding-right: clamp(0px, 3vw, 48px);
}

.pmd-v3_origin-story-media {
  grid-column: span 7;
}

.pmd-v3_video {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border-radius: var(--pmd-radius-media);
  background:
    radial-gradient(circle at 72% 22%, rgba(171, 140, 111, 0.45), transparent 34%),
    linear-gradient(135deg, #152a44, #263f5f);
}

.pmd-v3_video::before {
  display: none;
}

.pmd-v3_video::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 42%, rgba(15, 34, 57, 0.72) 100%);
}

.pmd-v3_video-poster {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pmd-v3_video-play {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  border-color: var(--pmd-white);
  border-radius: 8px;
  color: var(--pmd-blue-900);
  background: var(--pmd-white);
  box-shadow: 0 12px 28px rgba(15, 34, 57, 0.18);
}

.pmd-v3_video-play::before {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  border-radius: 999px;
  color: var(--pmd-white);
  background: var(--pmd-blue-900);
  content: "▶";
  font-size: 11px;
  line-height: 1;
  text-indent: 2px;
}

.pmd-v3_video-play span {
  display: inline-block !important;
  margin-right: auto;
  color: var(--pmd-blue-900) !important;
  font-size: 13px;
  font-weight: 700;
  opacity: 1 !important;
  visibility: visible !important;
}

.pmd-v3_video-play time {
  color: var(--pmd-ink-muted);
  font-size: 12px;
}

.pmd-v3_video-player {
  position: absolute;
  z-index: 4;
  inset: 0;
}

.pmd-v3_video[data-playing="true"]::after {
  display: none;
}

.pmd-v3_video-player iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.pmd-v3_video-transcript {
  margin-top: 12px;
  border-top: 1px solid var(--pmd-line);
}

.pmd-v3_video-transcript > summary {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
}

.pmd-v3_video-transcript .pmd-v3_disclosure-panel:empty::after {
  display: none;
  content: "";
}

.pmd-v3_video-transcript:has(.pmd-v3_disclosure-panel:empty),
.pmd-v3_video-transcript.is-empty {
  display: none;
}

.pmd-v3_video-fallback {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 10px;
  color: var(--pmd-blue-900);
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Insights */
.pmd-v3_insights {
  background: var(--pmd-cream-100);
}

.pmd-v3_insights-heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.pmd-v3_insights-grid {
  grid-template-rows: repeat(2, minmax(220px, auto));
}

.pmd-v3_insight-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--pmd-line);
  border-radius: var(--pmd-radius-card);
  background: var(--pmd-white);
}

.pmd-v3_insight-card::before {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 240px;
  height: 240px;
  border: 1px solid var(--pmd-line);
  border-radius: 50%;
  content: "";
}

.pmd-v3_insight-card-featured {
  grid-column: span 7;
  grid-row: span 2;
  color: var(--pmd-white);
  background:
    radial-gradient(circle at 76% 24%, rgba(171, 140, 111, 0.45), transparent 31%),
    var(--pmd-blue-900);
}

.pmd-v3_insight-card-featured::before {
  border-color: var(--pmd-blue-line);
}

.pmd-v3_insight-card-supporting {
  grid-column: span 5;
}

.pmd-v3_insight-link {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 4vw, 48px);
  color: inherit;
  text-decoration: none;
}

.pmd-v3_insight-card-featured .pmd-v3_insight-link {
  min-height: 464px;
}

.pmd-v3_insight-title {
  max-width: 22ch;
  margin: 0;
  font-size: clamp(23px, 2.7vw, 42px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.pmd-v3_insight-card-supporting .pmd-v3_insight-title {
  font-size: clamp(20px, 1.9vw, 28px);
}

.pmd-v3_insight-label {
  display: inline-flex;
  width: max-content;
  min-height: 44px;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.pmd-v3_insights-cta {
  margin-top: 34px;
}

/* FAQ */
.pmd-v3_faq {
  background: var(--pmd-white);
}

.pmd-v3_faq-title {
  margin-bottom: 48px;
}

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

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

.pmd-v3_faq-question {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 18px;
  color: var(--pmd-blue-900);
  font-size: clamp(16px, 1.5vw, 21px);
  font-weight: 600;
  line-height: 1.35;
}

.pmd-v3_faq-question::after {
  flex: 0 0 auto;
  color: var(--pmd-amber-700);
}

.pmd-v3_faq-answer {
  max-width: 780px;
  padding: 0 0 28px;
  color: var(--pmd-ink-muted);
  font-size: 14px;
  line-height: 1.75;
}

.pmd-v3_faq-answer p {
  margin: 0;
}

.pmd-v3_faq-cta {
  margin-top: 40px;
}

/* Final CTA */
.pmd-v3_final-cta {
  overflow: hidden;
  color: var(--pmd-white);
  background:
    radial-gradient(circle at 82% 40%, rgba(171, 140, 111, 0.2), transparent 28%),
    var(--pmd-blue-900);
}

.pmd-v3_final-cta::after {
  position: absolute;
  top: 50%;
  right: -6vw;
  width: 36vw;
  min-width: 360px;
  aspect-ratio: 1;
  border: 1px solid var(--pmd-blue-line);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.pmd-v3_final-cta-copy {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.pmd-v3_final-cta .pmd-v3_body {
  color: rgba(255, 255, 255, 0.76);
}

.pmd-v3_final-cta-button {
  margin-top: 18px;
  border-color: var(--pmd-cream-100);
  color: var(--pmd-blue-900);
  background: var(--pmd-cream-100);
}

.pmd-v3_final-cta-microcopy {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
}

.pmd-v3_final-cta-supporting {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

/* Footer */
.pmd-v3_footer {
  padding-block: 96px 36px;
  color: var(--pmd-white);
  background: #0f2239;
}

.pmd-v3_footer-brand {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 44px;
  align-items: end;
  padding-bottom: 58px;
  border-bottom: 1px solid var(--pmd-blue-line);
}

.pmd-v3_footer-brand-line {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.045em;
  color: var(--pmd-white);
}

.pmd-v3_footer-definition {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.7;
}

.pmd-v3_footer-columns {
  margin-top: 58px;
}

.pmd-v3_footer-column {
  grid-column: span 3;
}

.pmd-v3_footer-heading {
  margin-bottom: 18px;
  color: #e5bd98;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pmd-v3_footer-subheading {
  margin: 20px 0 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pmd-v3_footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pmd-v3_footer-links li {
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.55;
}

.pmd-v3_footer-links a {
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 4px;
}

.pmd-v3_footer-links a:hover {
  color: var(--pmd-white);
}

.pmd-v3_footer-disclosures {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 58px;
  padding-top: 28px;
  border-top: 1px solid var(--pmd-blue-line);
}

.pmd-v3_footer-disclosures p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.7;
}

.pmd-v3_footer-contact:empty {
  display: none;
}

.pmd-v3_footer-copyright {
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.6;
}

/* High-specificity V3 foreground locks for legacy Webflow tag-style leakage. */
.pmd-v3_page .pmd-v3_judgment-gap :where(.pmd-v3_h2, .pmd-v3_h3, .pmd-v3_judgment-emphasis),
.pmd-v3_page .pmd-v3_complete-care :where(.pmd-v3_h2, .pmd-v3_h3, .pmd-v3_complete-care-list li),
.pmd-v3_page .pmd-v3_final-cta :where(.pmd-v3_h2, .pmd-v3_h3),
.pmd-v3_page .pmd-v3_footer .pmd-v3_footer-brand-line,
.pmd-v3_page .pmd-v3_model-orbit :where(.pmd-v3_model-you) {
  color: var(--pmd-white);
}

.pmd-v3_page .pmd-v3_judgment-gap .pmd-v3_body,
.pmd-v3_page .pmd-v3_complete-care .pmd-v3_body,
.pmd-v3_page .pmd-v3_final-cta .pmd-v3_body {
  color: rgba(255, 255, 255, 0.78);
}

/* Keep anchor colors deterministic against broad legacy link rules. */
.pmd-v3_page a.pmd-v3_button {
  color: var(--pmd-white);
}

.pmd-v3_page a.pmd-v3_video-play {
  color: var(--pmd-blue-900);
}

.pmd-v3_page a.pmd-v3_button--secondary,
.pmd-v3_page a.pmd-v3_button--text {
  color: var(--pmd-blue-900);
}

.pmd-v3_page .pmd-v3_judgment-gap a.pmd-v3_button--text,
.pmd-v3_page .pmd-v3_technology a.pmd-v3_button--secondary {
  color: var(--pmd-white);
}

.pmd-v3_page .pmd-v3_final-cta a.pmd-v3_final-cta-button {
  color: var(--pmd-blue-900);
}

@media (min-width: 1281px) and (max-width: 1440px) {
  .pmd-v3_hero {
    min-height: min(820px, calc(100svh - 80px));
  }

  .pmd-v3_hero-media,
  .pmd-v3_hero-image {
    min-height: 580px;
  }
}

@media (min-width: 1101px) and (max-width: 1280px) {
  .pmd-v3_section {
    padding-block: 104px;
  }

  .pmd-v3_hero {
    padding-block: 78px;
  }

  .pmd-v3_hero-media,
  .pmd-v3_hero-image {
    min-height: 550px;
  }

  .pmd-v3_model-orbit {
    min-height: 700px;
  }
}

/* Section responsive rules */
@media (max-width: 1100px) {
  .pmd-v3_hero-content,
  .pmd-v3_judgment-content {
    grid-column: span 5;
  }

  .pmd-v3_hero-media,
  .pmd-v3_judgment-diagram {
    grid-column: span 3;
  }

  .pmd-v3_hero-media,
  .pmd-v3_hero-image {
    min-height: 540px;
  }

  .pmd-v3_hero-callouts {
    grid-template-columns: 1fr;
  }

  .pmd-v3_hero-callout {
    min-height: 32px;
    border-right: 0;
    border-bottom: 1px solid var(--pmd-blue-line);
  }

  .pmd-v3_physician-card {
    grid-column: span 8;
  }

  .pmd-v3_physician-card-link {
    display: grid;
    grid-template-columns: minmax(250px, 0.75fr) minmax(0, 1fr);
  }

  .pmd-v3_physician-image {
    height: 100%;
    min-height: 420px;
  }

  .pmd-v3_physician-credentials {
    min-height: auto;
  }

  .pmd-v3_team-grid,
  .pmd-v3_care-team-roles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pmd-v3_model-orbit,
  .pmd-v3_model-features,
  .pmd-v3_complete-care-copy,
  .pmd-v3_complete-care-services,
  .pmd-v3_origin-story-copy,
  .pmd-v3_origin-story-media {
    grid-column: span 8;
  }

  .pmd-v3_model-orbit {
    min-height: 680px;
  }

  .pmd-v3_model-features {
    margin-top: 18px;
  }

  .pmd-v3_care-lane-number {
    grid-column: 1;
  }

  .pmd-v3_care-lane-content {
    grid-column: 2 / 5;
  }

  .pmd-v3_care-lane-media {
    grid-column: 5 / -1;
  }

  .pmd-v3_care-lane:nth-child(even) .pmd-v3_care-lane-media {
    grid-column: 1 / 4;
  }

  .pmd-v3_care-lane:nth-child(even) .pmd-v3_care-lane-number {
    grid-column: 4;
  }

  .pmd-v3_care-lane:nth-child(even) .pmd-v3_care-lane-content {
    grid-column: 5 / -1;
  }

  .pmd-v3_technology-step {
    grid-column: span 4;
  }

  .pmd-v3_technology-step:nth-child(3) {
    grid-column: span 4;
  }

  .pmd-v3_technology-step:last-child {
    grid-column: 3 / 7;
  }

  .pmd-v3_technology-step::after {
    display: none;
  }

  .pmd-v3_technology-device-copy,
  .pmd-v3_technology-example,
  .pmd-v3_incentives-content,
  .pmd-v3_incentives-ledger {
    grid-column: span 8;
  }

  .pmd-v3_incentives-ledger {
    margin-top: 20px;
  }

  .pmd-v3_journey-step,
  .pmd-v3_proof-point {
    grid-column: span 4;
  }

  .pmd-v3_journey-list::before {
    display: none;
  }

  .pmd-v3_journey-step::after,
  .pmd-v3_journey-step::before {
    display: none;
  }

  .pmd-v3_journey-step:nth-child(odd):not(:last-child)::after {
    position: absolute;
    z-index: 2;
    top: 28px;
    right: -22px;
    bottom: auto;
    left: auto;
    display: block;
    width: auto;
    height: auto;
    content: "→";
    color: var(--pmd-sand-500);
    background: transparent;
    font-size: 18px;
    line-height: 1;
  }

  .pmd-v3_journey-step:nth-child(2)::after {
    position: absolute;
    z-index: 2;
    top: auto;
    right: auto;
    bottom: -18px;
    left: 26px;
    display: block;
    width: auto;
    height: auto;
    content: "↓";
    color: var(--pmd-sand-500);
    background: transparent;
    font-size: 18px;
    line-height: 1;
  }

  .pmd-v3_complete-care-services {
    margin-top: 16px;
  }

  .pmd-v3_testimonial-featured,
  .pmd-v3_testimonial-supporting,
  .pmd-v3_locations-list,
  .pmd-v3_locations-map {
    grid-column: span 8;
  }

  .pmd-v3_locations-list {
    min-height: 240px;
  }

  .pmd-v3_locations-map-inner {
    min-height: 420px;
  }

  .pmd-v3_insight-card-featured {
    grid-column: span 8;
    grid-row: auto;
  }

  .pmd-v3_insight-card-supporting {
    grid-column: span 4;
  }
}

@media (max-width: 1024px) {
  .pmd-v3_section-header {
    margin-bottom: 54px;
  }

  .pmd-v3_hero {
    min-height: 0;
  }

  .pmd-v3_hero-media,
  .pmd-v3_hero-image {
    min-height: 500px;
  }

  .pmd-v3_team-card {
    min-height: 210px;
  }

  .pmd-v3_model-orbit {
    min-height: 620px;
  }

  .pmd-v3_care-lane-media img {
    height: 270px;
  }

  .pmd-v3_comparison-table {
    min-width: 860px;
  }

  .pmd-v3_footer-brand {
    align-items: start;
  }
}

@media (max-width: 768px) {
  .pmd-v3_section-header {
    margin-bottom: 44px;
  }

  .pmd-v3_hero {
    min-height: 0;
    padding-top: 68px;
  }

  .pmd-v3_hero-content,
  .pmd-v3_hero-media,
  .pmd-v3_judgment-content,
  .pmd-v3_judgment-diagram,
  .pmd-v3_physician-card,
  .pmd-v3_model-orbit,
  .pmd-v3_model-features,
  .pmd-v3_technology-device-copy,
  .pmd-v3_technology-example,
  .pmd-v3_incentives-content,
  .pmd-v3_incentives-ledger,
  .pmd-v3_complete-care-copy,
  .pmd-v3_complete-care-services,
  .pmd-v3_testimonial-featured,
  .pmd-v3_testimonial-supporting,
  .pmd-v3_locations-list,
  .pmd-v3_locations-map,
  .pmd-v3_origin-story-copy,
  .pmd-v3_origin-story-media,
  .pmd-v3_insight-card-featured,
  .pmd-v3_insight-card-supporting {
    grid-column: 1 / -1;
  }

  .pmd-v3_hero-content {
    padding-right: 0;
  }

  .pmd-v3_hero-media {
    min-height: 470px;
    margin-top: 32px;
  }

  .pmd-v3_hero-image {
    min-height: 470px;
  }

  .pmd-v3_hero-callouts {
    grid-template-columns: repeat(3, 1fr);
  }

  .pmd-v3_hero-callout {
    min-height: 40px;
    border-right: 1px solid var(--pmd-blue-line);
    border-bottom: 0;
  }

  .pmd-v3_proof-item {
    grid-column: span 2;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--pmd-blue-line);
  }

  .pmd-v3_proof-item:nth-child(odd) {
    border-right: 1px solid var(--pmd-blue-line);
  }

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

  .pmd-v3_judgment-diagram {
    margin-top: 40px;
  }

  .pmd-v3_physician-card-link {
    display: block;
  }

  .pmd-v3_physician-image {
    width: 100%;
    height: clamp(270px, 72vw, 350px);
    min-height: 0;
    aspect-ratio: auto;
    object-position: center 20%;
  }

  .pmd-v3_care-team {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .pmd-v3_team-grid,
  .pmd-v3_care-team-roles {
    grid-template-columns: 1fr;
  }

  .pmd-v3_team-card {
    min-height: 0;
    padding: 22px;
  }

  .pmd-v3_team-card::before {
    margin-bottom: 22px;
  }

  .pmd-v3_model-orbit {
    display: grid;
    min-height: 0;
    gap: 12px;
    padding: 24px;
  }

  .pmd-v3_model-orbit::before,
  .pmd-v3_model-orbit::after {
    display: none;
  }

  .pmd-v3_model-orbit-center,
  .pmd-v3_model-ring {
    position: static;
    width: auto;
    max-width: none;
    aspect-ratio: auto;
    border-radius: 9px;
    transform: none;
  }

  .pmd-v3_model-orbit-center {
    min-height: 76px;
  }

  .pmd-v3_model-ring {
    padding: 20px;
  }

  .pmd-v3_model-ring-list li {
    font-size: 12px;
  }

  .pmd-v3_care-lane {
    display: grid;
    grid-template-columns: 36px 1fr;
    min-height: 0;
    gap: 16px;
    padding-block: 36px;
  }

  .pmd-v3_care-lane::after {
    display: none;
  }

  .pmd-v3_care-lane-media,
  .pmd-v3_care-lane:nth-child(even) .pmd-v3_care-lane-media {
    grid-column: 1 / -1;
    grid-row: 1;
    margin-bottom: 8px;
  }

  .pmd-v3_care-lane-media img {
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }

  .pmd-v3_care-lane-number,
  .pmd-v3_care-lane:nth-child(even) .pmd-v3_care-lane-number {
    grid-column: 1;
    grid-row: 2;
  }

  .pmd-v3_care-lane-content,
  .pmd-v3_care-lane:nth-child(even) .pmd-v3_care-lane-content {
    grid-column: 2;
    grid-row: 2;
  }

  .pmd-v3_signal {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pmd-v3_technology-step,
  .pmd-v3_technology-step:nth-child(3),
  .pmd-v3_technology-step:last-child {
    grid-column: 1 / -1;
  }

  .pmd-v3_technology-example-list > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .pmd-v3_journey-step,
  .pmd-v3_proof-point {
    grid-column: 1 / -1;
  }

  .pmd-v3_journey-step {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    padding: 0 0 34px;
    border-bottom: 0;
  }

  .pmd-v3_journey-list::before {
    position: absolute;
    z-index: 0;
    top: 25px;
    bottom: 34px;
    left: 24px;
    display: block;
    width: 1px;
    content: "";
    background: var(--pmd-sand-500);
  }

  .pmd-v3_journey-step::before,
  .pmd-v3_journey-step::after,
  .pmd-v3_journey-step:nth-child(odd):not(:last-child)::after,
  .pmd-v3_journey-step:nth-child(2)::after {
    display: none;
  }

  .pmd-v3_journey-number {
    position: relative;
    z-index: 2;
    width: 50px;
    height: 50px;
    margin-bottom: 0;
  }

  .pmd-v3_journey-step article {
    display: contents;
  }

  .pmd-v3_journey-step article > *:not(.pmd-v3_journey-number) {
    grid-column: 2;
  }

  .pmd-v3_complete-care-steps {
    grid-template-columns: 1fr;
  }

  .pmd-v3_comparison-scroll-hint {
    display: block;
  }

  .pmd-v3_comparison-scroll {
    margin-right: -20px;
    border-radius: var(--pmd-radius-card) 0 0 var(--pmd-radius-card);
  }

  .pmd-v3_comparison-table {
    min-width: 690px;
  }

  .pmd-v3_comparison-table th,
  .pmd-v3_comparison-table td {
    padding: 15px 14px;
    font-size: 11px;
  }

  .pmd-v3_comparison-table th:first-child,
  .pmd-v3_comparison-table td:first-child {
    position: sticky;
    z-index: 2;
    left: 0;
    width: 155px;
    min-width: 155px;
    max-width: 155px;
    background: var(--pmd-white);
    box-shadow: 8px 0 14px -14px rgba(21, 42, 68, 0.7);
  }

  .pmd-v3_comparison-table thead th:first-child {
    z-index: 4;
    background: #fbfaf8;
  }

  .pmd-v3_comparison-table th:nth-child(2),
  .pmd-v3_comparison-table td:nth-child(2) {
    position: sticky;
    z-index: 1;
    left: 155px;
    width: 165px;
    min-width: 165px;
    box-shadow: 8px 0 14px -14px rgba(21, 42, 68, 0.7);
  }

  .pmd-v3_comparison-table thead th:nth-child(2) {
    z-index: 3;
  }

  .pmd-v3_comparison-table .pmd-v3_comparison-group-heading,
  .pmd-v3_comparison-group > th,
  .pmd-v3_comparison-group > td {
    position: static;
    width: auto;
    max-width: none;
    background: #ece3da;
    box-shadow: none;
  }

  .pmd-v3_testimonial {
    min-height: 280px;
  }

  .pmd-v3_locations-map {
    min-height: 340px;
  }

  .pmd-v3_locations-map-inner {
    min-height: 340px;
    padding: 24px 20px;
  }

  .pmd-v3_locations-map-svg {
    min-height: 230px;
  }

  .pmd-v3_locations-map-svg .pmd-v3_map-pin text {
    font-size: 18px;
  }

  .pmd-v3_origin-story-media {
    margin-top: 28px;
  }

  .pmd-v3_video-play {
    right: 14px;
    bottom: 14px;
    left: 14px;
    min-height: 58px;
    padding: 10px 16px;
  }

  .pmd-v3_insights-grid {
    display: grid;
    grid-template-rows: none;
  }

  .pmd-v3_insight-card-featured .pmd-v3_insight-link {
    min-height: 360px;
  }

  .pmd-v3_insight-card-supporting .pmd-v3_insight-link {
    min-height: 220px;
  }

  .pmd-v3_footer-brand {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .pmd-v3_footer-column {
    grid-column: span 2;
    margin-bottom: 28px;
  }

  .pmd-v3_footer-disclosures {
    grid-template-columns: 1fr;
  }

  .pmd-v3_footer {
    padding-block: 72px 28px;
  }
}

@media (max-width: 479px) {
  .pmd-v3_video-play time {
    display: none;
  }

  .pmd-v3_hero-actions {
    display: grid;
  }

  .pmd-v3_hero-actions .pmd-v3_button--primary {
    width: 100%;
  }

  .pmd-v3_hero-actions .pmd-v3_button--text {
    justify-content: center;
  }

  .pmd-v3_hero-media,
  .pmd-v3_hero-image {
    min-height: 430px;
  }

  .pmd-v3_hero-callouts {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .pmd-v3_hero-callout {
    padding: 5px;
    font-size: 8px;
  }

  .pmd-v3_judgment-inputs {
    grid-template-columns: 1fr;
  }

  .pmd-v3_care-team-roles {
    grid-template-columns: 1fr;
  }

  .pmd-v3_proof-item {
    grid-column: 1 / -1;
    border-right: 0 !important;
    border-bottom: 1px solid var(--pmd-blue-line) !important;
  }

  .pmd-v3_proof-item:last-child {
    border-bottom: 0 !important;
  }

  .pmd-v3_footer-column {
    grid-column: 1 / -1;
  }
}

@media (max-width: 390px) {
  .pmd-v3_header-shell,
  .pmd-v3_shell,
  .pmd-v3_shell--wide {
    width: min(calc(100% - 32px), var(--pmd-container));
  }

  .pmd-v3_section {
    padding-block: 56px;
  }

  .pmd-v3_h1 {
    font-size: 38px;
  }

  .pmd-v3_h2 {
    font-size: 32px;
  }

  .pmd-v3_body--large {
    font-size: 17px;
  }

  .pmd-v3_hero {
    padding-top: 56px;
  }

  .pmd-v3_hero-media,
  .pmd-v3_hero-image {
    min-height: 360px;
  }

  .pmd-v3_hero-callouts {
    padding: 7px;
  }

  .pmd-v3_physician-card-content,
  .pmd-v3_locations-list {
    padding: 22px;
  }

  .pmd-v3_physician-image {
    height: 290px;
  }

  .pmd-v3_care-team {
    padding: 22px;
  }

  .pmd-v3_team-card {
    padding: 20px;
  }

  .pmd-v3_comparison-scroll {
    margin-right: -16px;
  }

  .pmd-v3_comparison-table th:first-child,
  .pmd-v3_comparison-table td:first-child {
    width: 142px;
    min-width: 142px;
    max-width: 142px;
  }

  .pmd-v3_comparison-table th:nth-child(2),
  .pmd-v3_comparison-table td:nth-child(2) {
    left: 142px;
    width: 156px;
    min-width: 156px;
  }

  .pmd-v3_testimonial-featured,
  .pmd-v3_testimonial-supporting {
    padding: 28px;
  }

  .pmd-v3_video-play time {
    display: none;
  }

  .pmd-v3_footer {
    padding-top: 64px;
  }
}

@media (max-width: 340px) {
  .pmd-v3_header-shell,
  .pmd-v3_shell,
  .pmd-v3_shell--wide {
    width: min(calc(100% - 28px), var(--pmd-container));
  }

  .pmd-v3_brand img {
    width: 132px;
  }

  .pmd-v3_h1 {
    font-size: 35px;
  }

  .pmd-v3_h2 {
    font-size: 30px;
  }

  .pmd-v3_hero-media,
  .pmd-v3_hero-image {
    min-height: 330px;
  }

  .pmd-v3_hero-callouts {
    right: 7px;
    bottom: 7px;
    left: 7px;
  }

  .pmd-v3_hero-callout {
    font-size: 7px;
    letter-spacing: 0.04em;
  }

  .pmd-v3_physician-image {
    height: 270px;
  }

  .pmd-v3_care-lane {
    grid-template-columns: 30px 1fr;
    gap: 12px;
  }

  .pmd-v3_comparison-scroll {
    margin-right: -14px;
  }

  .pmd-v3_comparison-table th:first-child,
  .pmd-v3_comparison-table td:first-child {
    width: 132px;
    min-width: 132px;
    max-width: 132px;
  }

  .pmd-v3_comparison-table th:nth-child(2),
  .pmd-v3_comparison-table td:nth-child(2) {
    left: 132px;
    width: 150px;
    min-width: 150px;
  }

  .pmd-v3_video-play {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }
}

/* ==========================================================================
 * PrimaryMD Home V3 refinement v2 — comparison chart
 * Source: work/refinement/comparison-v2.css
 * ========================================================================== */

/*
 * PrimaryMD comparison chart V2.
 * These selectors intentionally require `.pmd-v3_comparison-chart--v2` so the
 * proposal can be loaded beside the current V3 stylesheet without changing it.
 */

.pmd-v3_comparison-chart--v2 {
  --pmd-v3-compare-feature-width: 40%;
  --pmd-v3-compare-primary-width: 20%;
  --pmd-v3-compare-peer-width: 20%;
  position: relative;
}

.pmd-v3_comparison-chart--v2 .pmd-v3_comparison-scroll-hint {
  display: none;
}

.pmd-v3_comparison-chart--v2 .pmd-v3_comparison-scroll {
  position: relative;
  width: 100%;
  margin: 0;
  overflow-x: auto;
  border: 1px solid rgba(21, 42, 68, 0.2);
  border-radius: 12px;
  background: var(--pmd-white);
  box-shadow: 0 12px 36px rgba(21, 42, 68, 0.06);
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--pmd-sand-500) rgba(21, 42, 68, 0.08);
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
}

.pmd-v3_comparison-chart--v2 .pmd-v3_comparison-scroll:focus-visible {
  outline: 3px solid #e5b07a;
  outline-offset: 4px;
}

.pmd-v3_comparison-chart--v2 .pmd-v3_comparison-table {
  width: 100%;
  min-width: 760px;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
}

.pmd-v3_comparison-chart--v2 .pmd-v3_comparison-col--feature {
  width: var(--pmd-v3-compare-feature-width);
}

.pmd-v3_comparison-chart--v2 .pmd-v3_comparison-col--primarymd {
  width: var(--pmd-v3-compare-primary-width);
}

.pmd-v3_comparison-chart--v2 .pmd-v3_comparison-col--peer {
  width: var(--pmd-v3-compare-peer-width);
}

.pmd-v3_comparison-chart--v2 .pmd-v3_comparison-table th:first-child,
.pmd-v3_comparison-chart--v2 .pmd-v3_comparison-table td:first-child {
  width: var(--pmd-v3-compare-feature-width);
}

.pmd-v3_comparison-chart--v2 .pmd-v3_comparison-table th:nth-child(2),
.pmd-v3_comparison-chart--v2 .pmd-v3_comparison-table td:nth-child(2) {
  width: var(--pmd-v3-compare-primary-width);
}

.pmd-v3_comparison-chart--v2 .pmd-v3_comparison-table th:nth-child(3),
.pmd-v3_comparison-chart--v2 .pmd-v3_comparison-table td:nth-child(3),
.pmd-v3_comparison-chart--v2 .pmd-v3_comparison-table th:nth-child(4),
.pmd-v3_comparison-chart--v2 .pmd-v3_comparison-table td:nth-child(4) {
  width: var(--pmd-v3-compare-peer-width);
}

.pmd-v3_comparison-chart--v2 .pmd-v3_comparison-table caption.pmd-v3_sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.pmd-v3_comparison-chart--v2 .pmd-v3_comparison-table th,
.pmd-v3_comparison-chart--v2 .pmd-v3_comparison-table td {
  height: 56px;
  padding: 15px 18px;
  border-right: 0;
  border-bottom: 1px solid rgba(21, 42, 68, 0.12);
  color: var(--pmd-blue-900);
  background: var(--pmd-white);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
  vertical-align: middle;
}

.pmd-v3_comparison-chart--v2 .pmd-v3_comparison-table thead th {
  height: 64px;
  padding-block: 16px;
  border-bottom-color: rgba(21, 42, 68, 0.22);
  background: #fbfaf8;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.35;
}

.pmd-v3_comparison-chart--v2 .pmd-v3_comparison-table thead th:first-child,
.pmd-v3_comparison-chart--v2 .pmd-v3_comparison-table tbody th[scope="row"] {
  width: auto;
  color: var(--pmd-blue-900);
  font-weight: 700;
  text-align: left;
}

.pmd-v3_comparison-chart--v2 .pmd-v3_comparison-table .pmd-v3_comparison-primarymd {
  border-right: 1px solid rgba(135, 61, 27, 0.18);
  border-left: 1px solid rgba(135, 61, 27, 0.18);
  color: var(--pmd-blue-900);
  background: #f8eee6;
  font-weight: 750;
}

.pmd-v3_comparison-chart--v2 .pmd-v3_comparison-table thead .pmd-v3_comparison-primarymd {
  border-color: var(--pmd-blue-900);
  color: var(--pmd-white);
  background: var(--pmd-blue-900);
}

.pmd-v3_comparison-chart--v2 .pmd-v3_comparison-group > th {
  height: 42px;
  padding: 11px 18px;
  border-bottom-color: rgba(21, 42, 68, 0.14);
  color: var(--pmd-amber-700);
  background: #eee5dc;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-align: left;
  text-transform: uppercase;
}

.pmd-v3_comparison-chart--v2 .pmd-v3_comparison-table tbody:last-of-type tr:last-child > * {
  border-bottom: 0;
}

.pmd-v3_comparison-chart--v2 .pmd-v3_comparison-mark {
  display: inline-flex;
  min-width: 28px;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  color: var(--pmd-blue-900);
  font-size: 24px;
  font-weight: 650;
  line-height: 1;
}

.pmd-v3_comparison-chart--v2 .pmd-v3_comparison-mark--yes {
  color: var(--pmd-amber-700);
}

.pmd-v3_comparison-chart--v2 .pmd-v3_comparison-mark--no {
  color: #77736d;
}

.pmd-v3_comparison-chart--v2 .pmd-v3_comparison-mark--varies {
  color: #8b694d;
}

.pmd-v3_comparison-chart--v2 .pmd-v3_comparison-legend {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 16px 28px;
  margin-top: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(21, 42, 68, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.pmd-v3_comparison-chart--v2 .pmd-v3_comparison-legend-title {
  margin: 0;
  color: var(--pmd-blue-900);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.pmd-v3_comparison-chart--v2 .pmd-v3_comparison-legend-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pmd-v3_comparison-chart--v2 .pmd-v3_comparison-legend-list li {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  gap: 7px;
  color: var(--pmd-ink-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.pmd-v3_comparison-chart--v2 .pmd-v3_comparison-legend .pmd-v3_comparison-mark {
  min-width: 22px;
  min-height: 22px;
  font-size: 19px;
}

.pmd-v3_comparison-chart--v2 .pmd-v3_comparison-footnote {
  max-width: 96ch;
  margin: 14px 0 0;
  color: var(--pmd-ink-muted);
  font-size: 13px;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .pmd-v3_comparison-chart--v2 {
    --pmd-v3-compare-feature-width: 160px;
    --pmd-v3-compare-primary-width: 96px;
    --pmd-v3-compare-peer-width: 197px;
  }

  .pmd-v3_comparison-chart--v2 .pmd-v3_comparison-scroll-hint {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0;
    padding: 0 2px 8px;
    color: var(--pmd-blue-900);
    font-size: 13px;
    font-weight: 750;
    line-height: 1.35;
  }

  .pmd-v3_comparison-chart--v2 .pmd-v3_comparison-scroll-hint span:last-child {
    color: var(--pmd-amber-700);
    font-size: 22px;
    line-height: 1;
  }

  .pmd-v3_comparison-chart--v2 .pmd-v3_comparison-scroll {
    width: 100%;
    margin: 0;
    border-radius: 10px;
    scrollbar-gutter: auto;
  }

  .pmd-v3_comparison-chart--v2 .pmd-v3_comparison-table {
    width: 650px;
    min-width: 650px;
  }

  .pmd-v3_comparison-chart--v2 .pmd-v3_comparison-table th,
  .pmd-v3_comparison-chart--v2 .pmd-v3_comparison-table td {
    height: 52px;
    padding: 13px 12px;
    font-size: 14px;
  }

  .pmd-v3_comparison-chart--v2 .pmd-v3_comparison-table thead th {
    height: 60px;
    padding: 13px 10px;
    font-size: 12px;
  }

  .pmd-v3_comparison-chart--v2 .pmd-v3_comparison-table thead th:first-child,
  .pmd-v3_comparison-chart--v2 .pmd-v3_comparison-table tbody tr:not(.pmd-v3_comparison-group) > th[scope="row"] {
    position: sticky;
    z-index: 3;
    left: 0;
    width: var(--pmd-v3-compare-feature-width);
    min-width: var(--pmd-v3-compare-feature-width);
    max-width: var(--pmd-v3-compare-feature-width);
    background: var(--pmd-white);
    box-shadow: 8px 0 18px -16px rgba(21, 42, 68, 0.9);
  }

  .pmd-v3_comparison-chart--v2 .pmd-v3_comparison-table thead th:first-child {
    z-index: 6;
    background: #fbfaf8;
  }

  .pmd-v3_comparison-chart--v2 .pmd-v3_comparison-table thead th:nth-child(2),
  .pmd-v3_comparison-chart--v2 .pmd-v3_comparison-table tbody td:nth-child(2) {
    position: sticky;
    z-index: 2;
    left: var(--pmd-v3-compare-feature-width);
    width: var(--pmd-v3-compare-primary-width);
    min-width: var(--pmd-v3-compare-primary-width);
    max-width: var(--pmd-v3-compare-primary-width);
    box-shadow: 9px 0 18px -16px rgba(21, 42, 68, 0.9);
  }

  .pmd-v3_comparison-chart--v2 .pmd-v3_comparison-table thead th:nth-child(2) {
    z-index: 5;
  }

  .pmd-v3_comparison-chart--v2 .pmd-v3_comparison-group > th {
    position: static;
    width: auto;
    min-width: 0;
    max-width: none;
    padding-inline: 14px;
    background: #eee5dc;
    box-shadow: none;
  }

  .pmd-v3_comparison-chart--v2 .pmd-v3_comparison-mark {
    min-width: 26px;
    min-height: 26px;
    font-size: 22px;
  }

  .pmd-v3_comparison-chart--v2 .pmd-v3_comparison-legend {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 14px;
    padding: 14px;
  }

  .pmd-v3_comparison-chart--v2 .pmd-v3_comparison-legend-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .pmd-v3_comparison-chart--v2 .pmd-v3_comparison-legend-list li {
    min-height: 44px;
    font-size: 14px;
  }

  .pmd-v3_comparison-chart--v2 .pmd-v3_comparison-footnote {
    margin-top: 12px;
    font-size: 13px;
  }
}

@media (max-width: 340px) {
  .pmd-v3_comparison-chart--v2 {
    --pmd-v3-compare-feature-width: 150px;
    --pmd-v3-compare-primary-width: 92px;
    --pmd-v3-compare-peer-width: 194px;
  }

  .pmd-v3_comparison-chart--v2 .pmd-v3_comparison-table {
    width: 630px;
    min-width: 630px;
  }

  .pmd-v3_comparison-chart--v2 .pmd-v3_comparison-table th,
  .pmd-v3_comparison-chart--v2 .pmd-v3_comparison-table td {
    padding-inline: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pmd-v3_comparison-chart--v2 .pmd-v3_comparison-scroll {
    scroll-behavior: auto;
  }
}

/* ==========================================================================
 * PrimaryMD Home V3 refinement v2 — geographic locations map
 * Source: work/refinement/locations-map-v2.css
 * ========================================================================== */

/*
 * Proposed location-map refinement.
 * Load after pmd_v3_styles.css and replace only the existing map <figure>.
 */

.pmd-v3_locations-network--verified {
  align-items: start;
}

.pmd-v3_locations-network--verified .pmd-v3_locations-map--geographic {
  display: block;
  min-height: 0;
  align-self: start;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--pmd-radius-media);
  background: var(--pmd-blue-900);
  box-shadow: 0 24px 70px rgba(21, 42, 68, 0.12);
}

.pmd-v3_locations-map-stage {
  display: grid;
  width: 100%;
  aspect-ratio: 975 / 610;
  align-items: center;
  padding: clamp(20px, 3.25vw, 42px);
  background:
    radial-gradient(circle at 89% 34%, rgba(229, 167, 116, 0.09), transparent 24%),
    radial-gradient(circle at 9% 45%, rgba(229, 167, 116, 0.07), transparent 22%);
}

.pmd-v3_locations-map--geographic .pmd-v3_locations-map-svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  overflow: visible;
}

.pmd-v3_locations-map--geographic .pmd-v3_locations-land {
  fill: rgba(242, 230, 220, 0.11);
  fill-rule: evenodd;
  stroke: rgba(255, 255, 255, 0.66);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
}

.pmd-v3_locations-map--geographic .pmd-v3_locations-state-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.2);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 0.9;
  vector-effect: non-scaling-stroke;
}

.pmd-v3_locations-market-region circle {
  fill: rgba(229, 167, 116, 0.08);
  stroke: #e5a774;
  stroke-dasharray: 3 3;
  stroke-width: 1.75;
  vector-effect: non-scaling-stroke;
}

.pmd-v3_locations-marker {
  color: #e5a774;
  filter: drop-shadow(0 4px 7px rgba(5, 18, 32, 0.34));
}

.pmd-v3_locations-marker--clinic > path {
  fill: currentColor;
  stroke: #ffffff;
  stroke-linejoin: round;
  stroke-width: 1.6;
  vector-effect: non-scaling-stroke;
}

.pmd-v3_locations-marker--clinic > circle:not(.pmd-v3_locations-cluster-badge) {
  fill: var(--pmd-blue-900);
  stroke: #ffffff;
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
}

.pmd-v3_locations-cluster-badge {
  fill: #ffffff;
  stroke: var(--pmd-blue-900);
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
}

.pmd-v3_locations-cluster-count {
  fill: var(--pmd-blue-900);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 8px;
  font-weight: 800;
  text-anchor: middle;
}

.pmd-v3_locations-marker--partner rect {
  fill: #e5a774;
  stroke: #ffffff;
  stroke-width: 1.5;
  transform: rotate(45deg);
  transform-box: fill-box;
  transform-origin: center;
  vector-effect: non-scaling-stroke;
}

.pmd-v3_locations-map-labels path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.46);
  stroke-dasharray: 2 3;
  stroke-linecap: round;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.pmd-v3_locations-map-labels text {
  fill: rgba(255, 255, 255, 0.9);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.01em;
  paint-order: stroke;
  stroke: var(--pmd-blue-900);
  stroke-linejoin: round;
  stroke-width: 4px;
}

.pmd-v3_locations-map--geographic .pmd-v3_locations-legend {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, max-content));
  align-items: center;
  justify-content: start;
  gap: 12px 26px;
  margin: 0 clamp(20px, 3.25vw, 42px);
  padding: 18px 0 22px;
  border-top: 1px solid var(--pmd-blue-line);
}

.pmd-v3_locations-map--geographic .pmd-v3_locations-legend-item {
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  line-height: 1.35;
}

.pmd-v3_locations-map--geographic .pmd-v3_locations-legend-clinic {
  position: relative;
  width: 11px;
  height: 14px;
  border: 1px solid #ffffff;
  border-radius: 8px 8px 8px 0;
  background: #e5a774;
  transform: rotate(-45deg) scale(0.84);
}

.pmd-v3_locations-map--geographic .pmd-v3_locations-legend-clinic::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  content: "";
  background: var(--pmd-blue-900);
}

@media (max-width: 991px) {
  .pmd-v3_locations-network--verified .pmd-v3_locations-map--geographic {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .pmd-v3_locations-map-stage {
    padding: 16px 14px 12px;
  }

  .pmd-v3_locations-map-labels {
    display: none;
  }

  .pmd-v3_locations-map--geographic .pmd-v3_locations-legend {
    margin-inline: 16px;
    padding-block: 15px 18px;
    gap: 10px 18px;
  }
}

@media (max-width: 479px) {
  .pmd-v3_locations-map--geographic .pmd-v3_locations-legend {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pmd-v3_locations-map--geographic .pmd-v3_locations-legend-item:last-child {
    grid-column: 1 / -1;
  }
}

/* ==========================================================================
 * PrimaryMD Home V3 refinement v2 — responsive and mobile behavior
 * Source: work/refinement/responsive-v2.css
 * ========================================================================== */

/*
 * PrimaryMD Home V3 — responsive refinement proposal
 *
 * Load after pmd_v3_styles.css. Everything stays inside the V3 namespace so
 * this patch cannot restyle legacy pages.
 */

/* Contain legacy width rules without hiding intentional horizontal scrollers. */
.pmd-v3_page {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.pmd-v3_page :where(
  .pmd-v3_header-shell,
  .pmd-v3_shell,
  .pmd-v3_shell--wide,
  .pmd-v3_grid,
  .pmd-v3_grid > *,
  .pmd-v3_header-shell > *,
  .pmd-v3_hero-content,
  .pmd-v3_physician-card,
  .pmd-v3_physician-card-link,
  .pmd-v3_physician-card-content
) {
  min-width: 0;
}

.pmd-v3_page :where(img, svg, video, iframe) {
  max-width: 100%;
}

/* Keep the doctor section useful without spending half a viewport on portraits. */
.pmd-v3_physician-grid {
  align-items: stretch;
}

.pmd-v3_physician-card-link {
  display: flex;
  flex-direction: column;
}

.pmd-v3_physician-image {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 18%;
}

.pmd-v3_physician-card:nth-child(1) .pmd-v3_physician-image {
  object-position: center 24%;
}

.pmd-v3_physician-card:nth-child(3) .pmd-v3_physician-image {
  object-position: center 14%;
}

.pmd-v3_physician-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.pmd-v3_physician-credentials {
  min-height: 0;
}

.pmd-v3_physician-cta {
  margin-top: auto;
}

/* JS inserts this only when the physician rail exists. */
.pmd-v3_swipe-hint {
  display: none;
  align-items: center;
  justify-content: space-between;
  margin: -10px 0 14px;
  color: var(--pmd-ink-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.pmd-v3_swipe-hint::after {
  content: "→";
  color: var(--pmd-amber-700);
  font-size: 20px;
  font-weight: 400;
}

.pmd-v3_swipe-hint[hidden] {
  display: none !important;
}

@media (min-width: 769px) and (max-width: 1100px) {
  .pmd-v3_physician-card-link {
    display: grid;
    grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1fr);
  }

  .pmd-v3_physician-image {
    height: 100%;
    min-height: 340px;
    aspect-ratio: auto;
  }
}

@media (max-width: 768px) {
  /*
   * Mobile header composition:
   * logo | persistent conversion action | conventional 44px hamburger.
   */
  .pmd-v3_page .pmd-v3_header {
    height: 72px;
  }

  .pmd-v3_page .pmd-v3_header-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto 44px;
    width: min(calc(100% - 24px), var(--pmd-wide));
    gap: 8px;
  }

  .pmd-v3_page .pmd-v3_brand {
    overflow: hidden;
    width: auto;
    min-width: 0;
    min-height: 44px;
  }

  .pmd-v3_page .pmd-v3_brand img {
    width: clamp(120px, 35vw, 148px);
    max-width: 100%;
  }

  .pmd-v3_page .pmd-v3_header-actions {
    display: flex;
    margin: 0;
    gap: 0;
  }

  .pmd-v3_page .pmd-v3_header-actions .pmd-v3_member-link {
    display: none;
  }

  .pmd-v3_page .pmd-v3_header-actions .pmd-v3_button-small {
    display: inline-flex;
    min-height: 44px;
    padding: 10px 13px;
    white-space: nowrap;
    font-size: 12px;
  }

  /*
   * Strongly reset the native details/summary chrome. This prevents inherited
   * Webflow/legacy sizing or background declarations from creating the navy
   * mystery rectangle shown in the mobile Designer capture.
   */
  .pmd-v3_page .pmd-v3_mobile-menu {
    position: static;
    display: block;
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;
    border: 0;
    color: var(--pmd-blue-900);
    background: transparent;
  }

  .pmd-v3_page .pmd-v3_mobile-menu > summary {
    position: relative;
    z-index: 1003;
    display: grid !important;
    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    place-items: center;
    padding: 0 !important;
    border: 0 !important;
    border-radius: var(--pmd-radius-control) !important;
    margin: 0 !important;
    color: var(--pmd-blue-900) !important;
    background: transparent !important;
    box-shadow: none !important;
    cursor: pointer;
    list-style: none;
    touch-action: manipulation;
    appearance: none;
    -webkit-appearance: none;
  }

  .pmd-v3_page .pmd-v3_mobile-menu > summary::before,
  .pmd-v3_page .pmd-v3_mobile-menu > summary::after {
    display: none !important;
    content: none !important;
  }

  .pmd-v3_page .pmd-v3_menu-icon {
    position: relative;
    display: block !important;
    width: 24px !important;
    height: 18px !important;
    padding: 0 !important;
    border: 0 !important;
    margin: 0 !important;
    background: transparent !important;
  }

  .pmd-v3_page .pmd-v3_menu-icon i {
    right: auto !important;
    left: 0 !important;
    display: block !important;
    width: 24px !important;
    height: 2px !important;
    padding: 0 !important;
    border: 0 !important;
    margin: 0 !important;
    background: currentColor !important;
    box-shadow: none !important;
  }

  .pmd-v3_page .pmd-v3_mobile-menu:not([open]) > .pmd-v3_mobile-panel {
    display: none !important;
  }

  .pmd-v3_page .pmd-v3_mobile-menu[open] > .pmd-v3_mobile-panel {
    inset: 72px 0 0 !important;
    width: 100% !important;
    min-width: 0 !important;
    height: calc(100dvh - 72px) !important;
    padding:
      20px max(20px, env(safe-area-inset-right))
      calc(28px + env(safe-area-inset-bottom))
      max(20px, env(safe-area-inset-left)) !important;
  }

  .pmd-v3_page .pmd-v3_mobile-panel nav > a:not(.pmd-v3_button) {
    min-height: 56px !important;
  }

  /* Hero: poster-like on desktop, readable and economical on a phone. */
  .pmd-v3_page .pmd-v3_hero {
    padding-block: 48px 56px;
  }

  .pmd-v3_page .pmd-v3_hero .pmd-v3_h1 {
    max-width: 100%;
    margin-bottom: 22px;
    font-size: clamp(36px, 9.8vw, 46px);
    line-height: 1.04;
    letter-spacing: -0.038em;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .pmd-v3_page .pmd-v3_hero-body {
    max-width: 42ch;
    font-size: 16px;
    line-height: 1.62;
  }

  .pmd-v3_page .pmd-v3_hero-actions {
    gap: 12px;
    margin-top: 26px;
  }

  .pmd-v3_page .pmd-v3_hero-capacity {
    margin-top: 24px;
  }

  .pmd-v3_page .pmd-v3_hero-media {
    height: clamp(280px, 78vw, 340px);
    min-height: 0;
    margin-top: 28px;
    aspect-ratio: auto;
  }

  .pmd-v3_page .pmd-v3_hero-image {
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
    object-position: center 20%;
  }

  /* One-row rail saves page length while the next-card peek teaches swiping. */
  .pmd-v3_page .pmd-v3_swipe-hint {
    display: flex;
  }

  .pmd-v3_page .pmd-v3_physician-grid {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(82vw, 330px);
    align-items: stretch;
    width: auto;
    max-width: none;
    margin-right: -20px;
    padding: 0 20px 14px 0;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-inline: 0 20px;
    scroll-snap-type: inline mandatory;
    scrollbar-color: var(--pmd-sand-500) rgba(21, 42, 68, 0.08);
    scrollbar-width: thin;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  .pmd-v3_page .pmd-v3_physician-card {
    grid-column: auto;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
  }

  .pmd-v3_page .pmd-v3_physician-card-link {
    display: flex;
    flex-direction: column;
  }

  .pmd-v3_page .pmd-v3_physician-image {
    width: 100%;
    height: clamp(190px, 56vw, 228px);
    min-height: 0;
    aspect-ratio: auto;
    object-position: center 18%;
  }

  .pmd-v3_page .pmd-v3_physician-card:nth-child(1) .pmd-v3_physician-image {
    object-position: center 26%;
  }

  .pmd-v3_page .pmd-v3_physician-card-content {
    padding: 20px;
  }

  .pmd-v3_page .pmd-v3_physician-name {
    font-size: clamp(20px, 5.7vw, 24px);
  }

  .pmd-v3_page .pmd-v3_physician-role {
    margin-bottom: 16px;
  }

  .pmd-v3_page .pmd-v3_physician-credentials {
    margin-bottom: 14px;
  }

  .pmd-v3_page .pmd-v3_physician-credentials li {
    margin-bottom: 7px;
    line-height: 1.45;
  }
}

@media (max-width: 479px) {
  .pmd-v3_page .pmd-v3_hero .pmd-v3_h1 {
    font-size: clamp(34px, 9.8vw, 42px);
  }

  .pmd-v3_page .pmd-v3_hero-actions {
    gap: 8px;
  }

  .pmd-v3_page .pmd-v3_hero-actions .pmd-v3_button {
    min-height: 48px;
  }

  .pmd-v3_page .pmd-v3_hero-callouts {
    grid-template-columns: 1fr;
  }

  .pmd-v3_page .pmd-v3_hero-callout {
    min-height: 30px;
    border-right: 0;
    border-bottom: 1px solid var(--pmd-blue-line);
    font-size: 8px;
  }

  .pmd-v3_page .pmd-v3_hero-callout:nth-child(3) {
    border-bottom: 0;
  }
}

@media (max-width: 360px) {
  .pmd-v3_page .pmd-v3_header-shell {
    width: min(calc(100% - 16px), var(--pmd-wide));
    gap: 6px;
  }

  .pmd-v3_page .pmd-v3_brand img {
    width: 116px;
  }

  .pmd-v3_page .pmd-v3_header-actions .pmd-v3_button-small {
    padding-inline: 10px;
    font-size: 11px;
  }

  .pmd-v3_page .pmd-v3_hero .pmd-v3_h1 {
    font-size: clamp(33px, 10.2vw, 37px);
  }

  .pmd-v3_page .pmd-v3_physician-grid {
    margin-right: -14px;
    padding-right: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pmd-v3_page .pmd-v3_physician-grid {
    scroll-behavior: auto;
  }
}
