:root {
  --ink: #1f2833;
  --ink-soft: #5d6570;
  --ink-muted: #7d8490;
  --white: #ffffff;
  --paper: #fbfcfd;
  --mist: #f4f8f9;
  --line: rgba(31, 40, 51, 0.12);
  --line-strong: rgba(31, 40, 51, 0.2);
  --blue: #7bd2e9;
  --blue-deep: #2f7e9a;
  --pink: #e6a5ac;
  --pink-deep: #b76f7b;
  --peach: #f1c9b8;
  --sage: #b7d8cf;
  --gold: #d9bb7e;
  --alliance-blue: #0f3d78;
  --alliance-green: #315d56;
  --shadow-sm: 0 12px 32px rgba(40, 54, 66, 0.08);
  --shadow-md: 0 24px 60px rgba(40, 54, 66, 0.12);
  --shadow-lg: 0 40px 100px rgba(40, 54, 66, 0.16);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --max-width: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

button,
a {
  font: inherit;
}

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

button {
  color: inherit;
}

address {
  font-style: normal;
}

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

h1,
h2,
h3 {
  line-height: 1.15;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.35rem, 4.6vw, 4.45rem);
  font-weight: 720;
}

h2 {
  font-size: clamp(1.85rem, 3.35vw, 3.15rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.15rem, 1.75vw, 1.5rem);
}

::selection {
  color: var(--ink);
  background: rgba(123, 210, 233, 0.4);
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--ink);
  transition: transform 180ms ease;
}

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

.privacy-strip {
  position: relative;
  z-index: 102;
  min-height: 34px;
  color: rgba(31, 40, 51, 0.78);
  background: linear-gradient(90deg, rgba(230, 165, 172, 0.17), rgba(123, 210, 233, 0.17));
  border-bottom: 1px solid rgba(31, 40, 51, 0.08);
  font-size: 0.76rem;
}

.privacy-strip__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.text-button {
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
}

.text-button:hover,
.text-button:focus-visible {
  color: var(--blue-deep);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(251, 252, 253, 0.8);
  backdrop-filter: blur(22px) saturate(1.35);
  transition: box-shadow 240ms ease, border-color 240ms ease, background 240ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(251, 252, 253, 0.95);
  box-shadow: 0 12px 32px rgba(40, 54, 66, 0.06);
}

.nav-shell {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  width: 182px;
}

.brand img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  font-size: 0.88rem;
  font-weight: 600;
}

.primary-nav > a:not(.nav-cta) {
  position: relative;
  padding: 10px 0;
  color: rgba(31, 40, 51, 0.75);
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1.5px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: linear-gradient(90deg, var(--pink), var(--blue));
  transition: transform 180ms ease;
}

.primary-nav > a:not(.nav-cta):hover,
.primary-nav > a:not(.nav-cta).is-active {
  color: var(--ink);
}

.primary-nav > a:not(.nav-cta):hover::after,
.primary-nav > a:not(.nav-cta).is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 10px 18px;
  border: 1px solid rgba(183, 111, 123, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 22px rgba(183, 111, 123, 0.08);
}

.nav-cta:hover {
  border-color: rgba(183, 111, 123, 0.6);
  background: rgba(230, 165, 172, 0.12);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 34px - var(--header-height));
  padding: clamp(72px, 8vw, 120px) 0 70px;
  background:
    linear-gradient(125deg, rgba(255, 248, 246, 0.92), rgba(246, 252, 254, 0.94) 55%, rgba(245, 249, 248, 0.98)),
    url("../images/brand-gradient.jpg") center / cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(31, 40, 51, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 40, 51, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 82%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.55;
  pointer-events: none;
}

.hero__glow--one {
  top: -210px;
  left: -150px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(230, 165, 172, 0.35), transparent 66%);
}

.hero__glow--two {
  right: -180px;
  bottom: 0;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(123, 210, 233, 0.32), transparent 66%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--blue-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.72);
}

.hero h1 {
  max-width: 850px;
  margin-bottom: 28px;
  background: linear-gradient(110deg, var(--ink) 15%, #394b59 62%, var(--blue-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  max-width: 720px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.75;
}

.hero__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 750;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--white);
  background: linear-gradient(110deg, var(--pink-deep), var(--blue-deep));
  box-shadow: 0 14px 28px rgba(71, 124, 145, 0.2);
}

.button--primary:hover {
  box-shadow: 0 18px 36px rgba(71, 124, 145, 0.28);
}

.button--secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
}

.button--secondary:hover {
  border-color: rgba(183, 111, 123, 0.45);
  background: var(--white);
}

.button--light {
  color: var(--alliance-blue);
  background: var(--white);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
}

.button--outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.06);
}

.button--outline-light:hover {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.12);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
}

.hero__trust span {
  padding: 7px 12px;
  border: 1px solid rgba(31, 40, 51, 0.1);
  border-radius: 999px;
  color: rgba(31, 40, 51, 0.68);
  background: rgba(255, 255, 255, 0.54);
  font-size: 0.75rem;
  font-weight: 700;
}

.hero__visual {
  position: relative;
  min-height: 570px;
}

.hero-card {
  position: absolute;
  inset: 28px 28px 38px 38px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 42px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: rotate(2.2deg);
}

.hero-card::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(28, 45, 55, 0.68), transparent 56%);
}

.hero-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-card__overlay {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 34px;
  left: 34px;
  color: var(--white);
}

.hero-card__overlay p {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.hero-card__overlay strong {
  max-width: 340px;
  display: block;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  line-height: 1.2;
}

.hero-badge {
  position: absolute;
  z-index: 3;
  width: 158px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.hero-badge--top {
  top: 0;
  right: -6px;
}

.hero-badge--bottom {
  bottom: 0;
  left: 0;
  width: 194px;
}

.hero-badge > span {
  color: var(--blue-deep);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
}

.hero-badge small {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
}

.metric-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: clamp(62px, 8vw, 100px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--line);
  box-shadow: var(--shadow-sm);
}

.metric-card {
  min-height: 118px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
}

.metric-card strong,
.metric-card span {
  display: block;
}

.metric-card strong {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.metric-card span {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.section {
  position: relative;
  padding: clamp(88px, 10vw, 150px) 0;
}

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

.section--tint {
  background:
    linear-gradient(135deg, rgba(230, 165, 172, 0.07), rgba(123, 210, 233, 0.1)),
    var(--mist);
}

.section--gradient {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(230, 165, 172, 0.18), transparent 32%),
    radial-gradient(circle at 90% 80%, rgba(123, 210, 233, 0.22), transparent 38%),
    linear-gradient(135deg, #f8fbfb, #fffafa);
}

.section-heading {
  max-width: 900px;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.section-heading h2 {
  margin-bottom: 24px;
}

.section-heading > p:last-child,
.section-heading--split > p {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.65fr);
  align-items: end;
  gap: clamp(34px, 7vw, 110px);
}

.section-heading--split h2 {
  margin-bottom: 0;
}

.challenge-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: start;
  gap: 40px;
}

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

.challenge-card {
  min-height: 240px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.challenge-card:hover {
  transform: translateY(-4px);
  border-color: rgba(123, 210, 233, 0.45);
  box-shadow: var(--shadow-sm);
}

.challenge-card > span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border-radius: 50%;
  color: var(--blue-deep);
  background: rgba(230, 165, 172, 0.13);
  font-size: 0.75rem;
  font-weight: 800;
}

.challenge-card h3 {
  margin-bottom: 14px;
  font-size: 1.2rem;
}

.challenge-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.bridge-panel {
  position: sticky;
  top: 120px;
  overflow: hidden;
  padding: 38px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: linear-gradient(145deg, #263a47, #486a74);
  box-shadow: var(--shadow-lg);
}

.bridge-panel::after {
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(123, 210, 233, 0.38), transparent 68%);
}

.bridge-panel > * {
  position: relative;
  z-index: 1;
}

.bridge-panel > img {
  position: absolute;
  z-index: 0;
  top: -38px;
  right: -70px;
  width: 230px;
  opacity: 0.13;
  transform: rotate(-12deg);
}

.bridge-panel h3 {
  margin-bottom: 28px;
  font-size: 1.75rem;
}

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

.check-list li {
  position: relative;
  padding: 12px 0 12px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

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

.check-list li::before {
  position: absolute;
  top: 13px;
  left: 0;
  width: 18px;
  height: 18px;
  content: "✓";
  border-radius: 50%;
  color: var(--ink);
  background: linear-gradient(135deg, var(--pink), var(--blue));
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 410px;
  padding: clamp(30px, 4vw, 44px);
  overflow: hidden;
  border: 1px solid rgba(31, 40, 51, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 46px rgba(40, 54, 66, 0.06);
  backdrop-filter: blur(16px);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card::after {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(123, 210, 233, 0.2), transparent 70%);
}

.service-card:nth-child(even)::after {
  background: radial-gradient(circle, rgba(230, 165, 172, 0.22), transparent 70%);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(123, 210, 233, 0.42);
  box-shadow: var(--shadow-md);
}

.service-card__icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(230, 165, 172, 0.23), rgba(123, 210, 233, 0.25));
}

.service-card__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card__index {
  position: absolute;
  top: 34px;
  right: 38px;
  color: rgba(31, 40, 51, 0.23);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-card h3 {
  max-width: 420px;
  margin-bottom: 14px;
  font-size: 1.65rem;
}

.service-card > p:not(.service-card__index) {
  max-width: 500px;
  margin-bottom: 24px;
  color: var(--ink-soft);
}

.service-card details {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
}

.service-card summary {
  padding: 18px 0 8px;
  cursor: pointer;
  color: var(--blue-deep);
  font-size: 0.86rem;
  font-weight: 800;
}

.service-card details[open] summary {
  margin-bottom: 8px;
}

.service-card ul {
  margin: 0;
  padding: 0 0 0 19px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.service-card li + li {
  margin-top: 7px;
}

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

.expert-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.expert-card--featured {
  background: linear-gradient(155deg, rgba(230, 165, 172, 0.1), rgba(123, 210, 233, 0.12)), var(--white);
}

.expert-card__portrait {
  height: 330px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 40%, rgba(255,255,255,0.95), rgba(123,210,233,0.11) 55%, rgba(230,165,172,0.08));
}

.expert-card__portrait img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

.expert-card__content {
  flex: 1;
  padding: 30px;
}

.expert-card__role,
.expert-card__credentials {
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.expert-card__role {
  margin-bottom: 7px;
}

.expert-card h3 {
  margin-bottom: 8px;
  font-size: 1.65rem;
}

.expert-card__credentials {
  margin-bottom: 20px;
  color: var(--blue-deep);
}

.expert-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 0.87rem;
}

.expert-card li + li {
  margin-top: 7px;
}

.network-block {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
}

.network-block__heading {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.55fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 34px;
}

.network-block__heading h3 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 2.35vw, 2.2rem);
}

.network-block__heading > p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.logo-card {
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.logo-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.logo-card img {
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
}

.network-disclaimer {
  margin: 18px 0 0;
  color: var(--ink-muted);
  font-size: 0.72rem;
}

.alliance-section {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(132deg, rgba(15, 61, 120, 0.98), rgba(49, 93, 86, 0.95)),
    url("../images/alliance-mountain.jpg") center / cover;
}

.alliance-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 95% 20%, rgba(255,255,255,0.15), transparent 30%),
    linear-gradient(140deg, transparent 60%, rgba(255,255,255,0.07));
}

.alliance-section > .container {
  position: relative;
  z-index: 1;
}

.alliance-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 70px;
}

.alliance-hero__content h2 {
  margin-bottom: 24px;
}

.alliance-hero__content > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.76);
  font-size: 1.08rem;
}

.alliance-hero__image {
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow-lg);
}

.alliance-hero__image img {
  width: 100%;
  border-radius: 14px;
}

.alliance-logo-pair {
  min-height: 190px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.35fr);
  align-items: center;
  gap: 24px;
  padding: 22px;
  border-radius: 16px;
  background: #ffffff;
}

.alliance-logo-pair > span {
  color: #8a98a5;
  font-size: 1.65rem;
  font-weight: 300;
}

.alliance-logo {
  max-height: 92px;
  object-fit: contain;
}

.alliance-logo--axxelis {
  max-height: 72px;
}

.alliance-introduction {
  display: grid;
  grid-template-columns: minmax(170px, 0.7fr) minmax(0, 1.7fr) auto;
  align-items: center;
  gap: 34px;
  margin-top: 30px;
  padding: 28px 30px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 22px;
  background: rgba(255,255,255,0.1);
  box-shadow: 0 22px 48px rgba(5, 26, 55, 0.12);
  backdrop-filter: blur(14px);
}

.alliance-introduction__eyebrow {
  margin: 0 0 8px;
  color: rgba(255,255,255,0.58);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.alliance-introduction__heading h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.alliance-introduction__copy {
  padding-left: 34px;
  border-left: 1px solid rgba(255,255,255,0.16);
}

.alliance-introduction__copy p {
  margin: 0;
  color: rgba(255,255,255,0.76);
  font-size: 0.92rem;
  line-height: 1.7;
}

.alliance-introduction__copy p + p {
  margin-top: 8px;
}

.alliance-introduction__link {
  min-width: 190px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2px 14px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 16px;
  color: #ffffff;
  background: rgba(255,255,255,0.1);
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.alliance-introduction__link:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.36);
  background: rgba(255,255,255,0.16);
}

.alliance-introduction__link span {
  grid-column: 1;
  color: rgba(255,255,255,0.58);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.alliance-introduction__link strong {
  grid-column: 1;
  font-size: 0.88rem;
}

.alliance-introduction__link i {
  grid-column: 2;
  grid-row: 1 / span 2;
  font-size: 1.25rem;
  font-style: normal;
}

.alliance-flow {
  display: grid;
  grid-template-columns: repeat(7, auto);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding: 24px 30px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
}

.alliance-flow div {
  min-width: 120px;
  text-align: center;
}

.alliance-flow strong,
.alliance-flow span {
  display: block;
}

.alliance-flow strong {
  font-size: 1.3rem;
}

.alliance-flow span {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.alliance-flow i {
  font-size: 1.8rem;
}

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

.alliance-card {
  padding: 38px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}

.alliance-card__label {
  margin-bottom: 13px;
  color: rgba(255,255,255,0.58);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.alliance-card h3 {
  max-width: 450px;
  margin-bottom: 24px;
  font-size: 1.6rem;
}

.check-list--light li {
  color: rgba(255,255,255,0.74);
}

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

.audience-card {
  min-height: 240px;
  padding: 30px;
  border-radius: 20px;
  color: var(--ink);
  background: rgba(255,255,255,0.93);
  box-shadow: var(--shadow-md);
}

.audience-card > span {
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 900;
}

.audience-card h3 {
  margin: 18px 0 14px;
}

.audience-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.case-study {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) 1.28fr;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--mist);
  box-shadow: var(--shadow-md);
}

.case-study__visual {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(230,165,172,0.3), transparent 35%),
    radial-gradient(circle at 75% 80%, rgba(123,210,233,0.35), transparent 38%),
    #f9fbfc;
}

.case-study__visual::before {
  position: absolute;
  inset: 28px;
  content: "";
  border: 1px solid rgba(31,40,51,0.08);
  border-radius: 26px;
}

.case-study__visual img {
  position: relative;
  z-index: 1;
  width: min(72%, 350px);
  filter: drop-shadow(0 26px 34px rgba(31,40,51,0.18));
}

.case-study__year {
  position: absolute;
  z-index: 2;
  top: 32px;
  left: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--blue-deep);
  background: rgba(255,255,255,0.8);
  font-size: 0.72rem;
  font-weight: 900;
}

.case-study__content {
  padding: clamp(42px, 6vw, 80px);
  background: var(--white);
}

.case-study__content h3 {
  margin-bottom: 20px;
  font-size: clamp(1.75rem, 2.9vw, 2.65rem);
}

.case-study__content > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 36px;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.case-study__steps {
  display: grid;
  gap: 12px;
}

.case-study__steps div {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.case-study__steps strong {
  color: var(--blue-deep);
  font-size: 0.78rem;
}

.case-study__steps span {
  font-weight: 700;
}

.launch-list {
  margin-top: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.launch-list > p {
  margin-bottom: 18px;
  color: var(--ink-muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.launch-list > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.launch-list span {
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--mist);
  font-size: 0.82rem;
  font-weight: 700;
}

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

.licensing-card {
  min-height: 430px;
  padding: 38px;
  border: 1px solid rgba(31,40,51,0.09);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.78);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.licensing-card__icon {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  border-radius: 20px;
  color: var(--ink);
  background: linear-gradient(135deg, rgba(230,165,172,0.26), rgba(123,210,233,0.28));
  font-size: 1rem;
  font-weight: 900;
}

.licensing-card h3 {
  margin-bottom: 8px;
  font-size: 1.75rem;
}

.licensing-card > p {
  margin-bottom: 24px;
  color: var(--blue-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.licensing-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.licensing-card li + li {
  margin-top: 10px;
}

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

.location-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.location-card > img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  filter: saturate(0.78) contrast(0.96);
  transition: transform 500ms ease, filter 500ms ease;
}

.location-card:hover > img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1);
}

.location-card > div {
  padding: 28px;
}

.status {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--mist);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.status--active {
  color: #255e52;
  background: rgba(183,216,207,0.35);
}

.location-card h3 {
  margin-bottom: 8px;
  font-size: 1.65rem;
}

.location-card p {
  margin-bottom: 13px;
  font-weight: 700;
}

.location-card address {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 11vw, 150px) 0;
  color: var(--white);
  background: linear-gradient(128deg, #283b47, #446a73 55%, #725763);
}

.contact-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}

.contact-section__glow {
  position: absolute;
  right: -250px;
  bottom: -340px;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,210,233,0.36), transparent 68%);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.75fr;
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.contact-copy h2 {
  max-width: 760px;
  margin-bottom: 24px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 710px;
  margin-bottom: 34px;
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
}

.contact-card {
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 28px;
  color: var(--ink);
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}

.contact-card > img {
  width: 190px;
  margin-bottom: 28px;
}

.contact-card__item {
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.contact-card__item span {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-deep);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card__item a {
  font-weight: 800;
}

.contact-card__item a:hover {
  color: var(--blue-deep);
}

.contact-card__item p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.site-footer {
  padding: 48px 0;
  background: #f8fafb;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 40px;
}

.footer-grid > div:first-child img {
  width: 170px;
  margin-bottom: 16px;
}

.footer-grid > div:first-child p {
  max-width: 320px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.footer-links,
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.82rem;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--blue-deep);
}

.footer-legal {
  align-items: flex-end;
  text-align: right;
}

.footer-legal p {
  margin: 10px 0 0;
  color: var(--ink-muted);
}

.back-to-top {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255,255,255,0.88);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.privacy-dialog {
  width: min(calc(100% - 36px), 620px);
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 28px;
  color: var(--ink);
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow-lg);
}

.privacy-dialog::backdrop {
  background: rgba(27,38,46,0.58);
  backdrop-filter: blur(6px);
}

.privacy-dialog > img {
  width: 88px;
  margin-bottom: 16px;
}

.privacy-dialog h2 {
  margin-bottom: 20px;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.privacy-dialog p:not(.eyebrow) {
  color: var(--ink-soft);
}

.privacy-dialog__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(.2,.7,.2,1);
}

.reveal--delay-1 {
  transition-delay: 100ms;
}

.reveal--delay-2 {
  transition-delay: 180ms;
}

.reveal--delay-3 {
  transition-delay: 260ms;
}

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

:focus-visible {
  outline: 3px solid rgba(123,210,233,0.65);
  outline-offset: 4px;
}

@media (max-width: 1050px) {
  .primary-nav {
    gap: 17px;
    font-size: 0.82rem;
  }

  .hero__grid {
    grid-template-columns: 1fr 0.82fr;
    gap: 45px;
  }

  .hero__visual {
    min-height: 500px;
  }

  .challenge-layout {
    grid-template-columns: 1fr;
  }

  .bridge-panel {
    position: relative;
    top: auto;
  }

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

  .expert-card--featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
  }

  .expert-card--featured .expert-card__portrait {
    height: 100%;
    min-height: 430px;
  }

  .logo-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .alliance-introduction {
    grid-template-columns: minmax(150px, 0.55fr) minmax(0, 1.45fr);
  }

  .alliance-introduction__link {
    grid-column: 1 / -1;
    width: fit-content;
    min-width: 220px;
    margin-left: calc(150px + 34px);
  }

  .alliance-flow {
    grid-template-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
    padding-inline: 18px;
  }

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

  .licensing-card:last-child,
  .location-card:last-child {
    grid-column: span 2;
  }

  .contact-grid {
    grid-template-columns: 1fr 0.82fr;
    gap: 50px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    z-index: 99;
    top: calc(34px + var(--header-height));
    right: 0;
    bottom: 0;
    width: min(85vw, 390px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 32px;
    background: rgba(251,252,253,0.98);
    box-shadow: -24px 30px 60px rgba(31,40,51,0.16);
    transform: translateX(105%);
    transition: transform 220ms ease;
  }

  .primary-nav.is-open {
    transform: translateX(0);
  }

  .primary-nav > a:not(.nav-cta) {
    padding: 13px 4px;
    font-size: 1rem;
  }

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

  .hero {
    min-height: auto;
  }

  .hero__grid,
  .alliance-hero,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero__content {
    max-width: 760px;
  }

  .hero__visual {
    width: min(100%, 560px);
    min-height: 570px;
    margin-inline: auto;
  }

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

  .section-heading--split,
  .network-block__heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

  .service-grid,
  .alliance-columns {
    grid-template-columns: 1fr;
  }

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

  .expert-card--featured {
    grid-column: auto;
    display: block;
  }

  .expert-card--featured .expert-card__portrait {
    min-height: 0;
    height: 350px;
  }

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

  .alliance-introduction {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 20px;
  }

  .alliance-introduction__copy {
    padding-top: 20px;
    padding-left: 0;
    border-top: 1px solid rgba(255,255,255,0.16);
    border-left: 0;
  }

  .alliance-introduction__link {
    grid-column: auto;
    width: 100%;
    margin-left: 0;
  }

  .alliance-flow {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .alliance-flow i {
    transform: rotate(90deg);
    text-align: center;
  }

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

  .case-study {
    grid-template-columns: 1fr;
  }

  .case-study__visual {
    min-height: 390px;
  }

  .contact-card {
    max-width: 620px;
  }

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

  .footer-legal {
    grid-column: span 2;
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .privacy-strip__inner {
    justify-content: space-between;
    text-align: left;
  }

  .privacy-strip__inner span {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand {
    width: 154px;
  }

  .hero {
    padding-top: 58px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 10.5vw, 3.25rem);
  }

  .hero__actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero__visual {
    min-height: 450px;
  }

  .hero-card {
    inset: 24px 8px 25px 14px;
    border-radius: 28px;
  }

  .hero-card__overlay {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }

  .hero-badge {
    width: 132px;
    padding: 14px;
    border-radius: 16px;
  }

  .hero-badge--top {
    right: 0;
  }

  .hero-badge--bottom {
    left: 0;
  }

  .hero-badge > span {
    font-size: 1.75rem;
  }

  .metric-grid,
  .challenge-grid,
  .licensing-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .licensing-card:last-child,
  .location-card:last-child {
    grid-column: auto;
  }

  .metric-card {
    min-height: 96px;
    padding: 22px;
  }

  .service-card,
  .challenge-card,
  .alliance-card,
  .licensing-card {
    padding: 28px;
  }

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

  .bridge-panel {
    padding: 30px;
  }

  .expert-card__portrait {
    height: 300px;
  }

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

  .logo-card {
    height: 96px;
  }

  .alliance-introduction {
    padding: 24px;
  }

  .alliance-hero__image {
    padding: 14px;
  }

  .case-study__visual {
    min-height: 320px;
  }

  .case-study__content {
    padding: 34px 28px;
  }

  .contact-card {
    padding: 28px;
  }

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

  .footer-legal {
    grid-column: auto;
  }

  .privacy-dialog {
    padding: 34px 24px 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* AlphaMed 2026 content update */
.expert-card h3 {
  overflow-wrap: anywhere;
}

@media (max-width: 560px) {
  .hero-badge--bottom {
    width: 154px;
  }

  .alliance-logo-pair {
    min-height: 150px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 13px;
  }

  .alliance-logo-pair > span {
    line-height: 1;
  }

  .alliance-logo {
    max-width: 88%;
  }
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}


/* Multi-page structure + value proposition update */
.nav-cta.is-active {
  border-color: rgba(183, 111, 123, 0.62);
  background: rgba(230, 165, 172, 0.17);
  color: var(--ink);
}

.page-section:first-child {
  padding-top: clamp(72px, 8vw, 112px);
}

.page-contact {
  min-height: calc(100vh - 34px - var(--header-height));
  display: flex;
  align-items: center;
}

.value-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 8% 12%, rgba(230, 165, 172, 0.15), transparent 28%),
    radial-gradient(circle at 92% 88%, rgba(123, 210, 233, 0.17), transparent 32%),
    var(--paper);
  box-shadow: var(--shadow-sm);
}

.value-panel__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: end;
  padding: clamp(36px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
}

.value-panel__intro h3 {
  max-width: 700px;
  margin-bottom: 0;
  font-size: clamp(1.55rem, 2.45vw, 2.25rem);
}

.value-panel__intro > p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

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

.value-card {
  position: relative;
  min-height: 300px;
  padding: clamp(30px, 4vw, 46px);
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.value-card:last-child {
  border-right: 0;
}

.value-card__index {
  display: inline-flex;
  min-width: 44px;
  height: 28px;
  align-items: center;
  justify-content: center;
  margin-bottom: 44px;
  border: 1px solid rgba(47, 126, 154, 0.18);
  border-radius: 999px;
  color: var(--blue-deep);
  background: rgba(123, 210, 233, 0.10);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.value-card h3 {
  margin-bottom: 16px;
}

.value-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.value-statement {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px clamp(30px, 4vw, 46px);
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.value-statement img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.value-statement p {
  margin: 0;
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  font-weight: 760;
}

@media (max-width: 860px) {
  .value-panel__intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .value-card {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .value-card:last-child {
    border-bottom: 0;
  }

  .value-card__index {
    margin-bottom: 24px;
  }
}

@media (max-width: 560px) {
  .page-section:first-child {
    padding-top: 58px;
  }

  .value-panel__intro,
  .value-card {
    padding: 28px;
  }

  .value-statement {
    align-items: flex-start;
    padding: 24px 28px;
  }
}

/* Experts page — client-facing leadership and capability presentation */
.experts-page .experts-leadership {
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 8%, rgba(230, 165, 172, 0.11), transparent 25%),
    radial-gradient(circle at 96% 16%, rgba(123, 210, 233, 0.15), transparent 30%),
    var(--white);
}

.experts-intro {
  margin-bottom: clamp(38px, 5vw, 58px);
}

.experts-intro__grid,
.capability-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: end;
  gap: clamp(32px, 6vw, 88px);
}

.experts-intro h1 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.15rem, 4vw, 3.55rem);
  font-weight: 720;
}

.experts-intro__grid > p,
.capability-intro__grid > p {
  margin-bottom: 4px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
}

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

.leadership-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(31, 40, 51, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(40, 54, 66, 0.08);
}

.leadership-card::before {
  position: absolute;
  top: 0;
  right: 28px;
  left: 28px;
  height: 3px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, rgba(230, 165, 172, 0.65), rgba(123, 210, 233, 0.78));
}

.leadership-card--founder {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(220px, 0.7fr) minmax(360px, 1.4fr);
  grid-template-rows: auto 1fr;
  gap: 18px 24px;
  align-items: start;
  border-color: rgba(47, 126, 154, 0.42);
  background:
    linear-gradient(160deg, rgba(123, 210, 233, 0.08), rgba(230, 165, 172, 0.06) 65%),
    var(--white);
  box-shadow: 0 20px 52px rgba(47, 126, 154, 0.12);
}

.leadership-card--founder .leadership-card__head {
  grid-column: 1;
  grid-row: 1 / span 2;
  margin-bottom: 0;
}

.leadership-card--founder .profile-metrics {
  grid-column: 2;
  grid-row: 1;
  margin-bottom: 0;
}

.leadership-card--founder .profile-points {
  grid-column: 2;
  grid-row: 2;
  margin-bottom: 0;
}

.leadership-card--founder .launch-portfolio {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: stretch;
  margin-top: 0;
}

.leadership-card--founder::before {
  background: linear-gradient(90deg, var(--blue-deep), var(--blue), var(--pink));
}

.leadership-card__head {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.leadership-card__portrait {
  width: 118px;
  height: 132px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(31, 40, 51, 0.08);
  border-radius: 20px;
  background: linear-gradient(145deg, #f8fbfc, #eef5f6);
}

.leadership-card__portrait img {
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

.leadership-card__portrait--founder {
  background: linear-gradient(145deg, rgba(230, 165, 172, 0.1), rgba(123, 210, 233, 0.12));
}

.leadership-card__role {
  margin-bottom: 7px;
  color: var(--blue-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  line-height: 1.35;
  text-transform: uppercase;
}

.leadership-card h2 {
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  letter-spacing: -0.025em;
}

.leadership-card__credentials {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0;
  padding: 4px 9px;
  border: 1px solid rgba(47, 126, 154, 0.13);
  border-radius: 999px;
  color: var(--ink-muted);
  background: rgba(123, 210, 233, 0.07);
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.3;
}

.profile-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}

.profile-metrics > div {
  min-height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(244,248,249,0.78));
  text-align: center;
}

.profile-metrics strong {
  color: var(--blue-deep);
  font-size: 1rem;
  line-height: 1.2;
}

.profile-metrics span {
  margin-top: 4px;
  color: var(--ink-muted);
  font-size: 0.72rem;
  line-height: 1.25;
}

.profile-points {
  margin-bottom: 22px;
}

.profile-points p,
.profile-list {
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.58;
}

.profile-points p {
  margin-bottom: 11px;
}

.profile-points p:last-child {
  margin-bottom: 0;
}

.profile-points strong,
.profile-list strong {
  color: var(--ink);
}

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

.profile-list li {
  position: relative;
  padding-left: 18px;
}

.profile-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: linear-gradient(135deg, var(--pink-deep), var(--blue-deep));
}

.profile-list li + li {
  margin-top: 10px;
}

.launch-portfolio {
  margin-top: auto;
  padding: 18px;
  border: 1px dashed rgba(47, 126, 154, 0.34);
  border-radius: 16px;
  background: rgba(123, 210, 233, 0.055);
}

.launch-portfolio__title {
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.4;
}

.launch-portfolio__title span {
  color: var(--ink-muted);
  font-weight: 700;
}

.launch-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.launch-tags span {
  padding: 5px 8px;
  border-radius: 7px;
  color: #276981;
  background: rgba(123, 210, 233, 0.16);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.2;
}

.professional-context-note {
  margin-top: 20px;
}

.professional-context-note p {
  margin-bottom: 0;
  padding: 13px 16px;
  border-left: 3px solid rgba(47, 126, 154, 0.32);
  color: var(--ink-muted);
  background: rgba(244, 248, 249, 0.72);
  font-size: 0.72rem;
  line-height: 1.55;
}

.ecosystem-panel {
  margin-top: 58px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(115deg, rgba(241, 201, 184, 0.25), rgba(183, 216, 207, 0.2) 58%, rgba(123, 210, 233, 0.15)),
    var(--white);
  box-shadow: var(--shadow-sm);
}

.ecosystem-panel__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 36px;
  margin-bottom: 30px;
}

.ecosystem-panel__heading .eyebrow {
  margin-bottom: 10px;
}

.ecosystem-panel__heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
}

.ecosystem-panel__heading > p {
  margin-bottom: 2px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.65;
}

.ecosystem-panel__logos {
  min-height: 152px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 28px 32px;
  border: 1px solid rgba(31, 40, 51, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
}

.ecosystem-panel__logos img {
  width: 100%;
  max-height: 116px;
  object-fit: contain;
}

.experts-page .network-disclaimer {
  margin-top: 16px;
  font-size: 0.7rem;
  line-height: 1.55;
}

.expert-capability-section {
  background:
    radial-gradient(circle at 88% 10%, rgba(123, 210, 233, 0.16), transparent 28%),
    radial-gradient(circle at 12% 92%, rgba(230, 165, 172, 0.1), transparent 30%),
    var(--mist);
}

.capability-intro {
  margin-bottom: clamp(36px, 5vw, 54px);
}

.capability-intro h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3vw, 2.75rem);
}

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

.capability-group {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(31, 40, 51, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px rgba(40, 54, 66, 0.065);
}

.capability-group--regulatory {
  grid-column: 1 / -1;
}

.capability-group--medical {
  grid-column: span 1;
}

.capability-group--commercial {
  grid-column: span 2;
}

.capability-group__heading {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.capability-group__index {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-radius: 12px;
  color: var(--blue-deep);
  background: linear-gradient(135deg, rgba(230, 165, 172, 0.17), rgba(123, 210, 233, 0.2));
  font-size: 0.72rem;
  font-weight: 850;
}

.capability-group__heading h3 {
  margin-bottom: 7px;
  font-size: clamp(1.22rem, 1.8vw, 1.55rem);
}

.capability-group__heading p:last-child {
  margin-bottom: 0;
  color: var(--ink-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.capability-people {
  display: grid;
  flex: 1;
  gap: 14px;
}

.capability-people--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.capability-people--one {
  grid-template-columns: 1fr;
}

.team-profile {
  min-width: 0;
  height: 100%;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(31, 40, 51, 0.08);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(248,251,252,0.9));
}

.team-profile__portrait {
  width: 104px;
  height: 132px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border-radius: 15px;
  background: linear-gradient(150deg, rgba(31, 40, 51, 0.035), rgba(123, 210, 233, 0.1));
}

.team-profile__portrait img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

.team-profile h4 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.25;
  letter-spacing: -0.018em;
}

.team-profile__former {
  margin-bottom: 7px;
  color: var(--blue-deep) !important;
  font-size: 0.76rem !important;
  font-weight: 800;
  line-height: 1.35 !important;
}

.team-profile__content > p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.48;
}

.professional-context-note--bottom {
  margin-top: 20px;
}

.experts-cta-section {
  padding: clamp(58px, 7vw, 86px) 0;
  background:
    radial-gradient(circle at 85% 12%, rgba(123,210,233,0.24), transparent 28%),
    linear-gradient(125deg, #263b49, #406673);
}

.experts-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 44px;
  color: var(--white);
}

.experts-cta h2 {
  max-width: 740px;
  margin-bottom: 14px;
  font-size: clamp(1.75rem, 2.7vw, 2.55rem);
}

.experts-cta p:last-child {
  max-width: 780px;
  margin-bottom: 0;
  color: rgba(255,255,255,0.75);
  font-size: 0.93rem;
}

@media (max-width: 1080px) {
  .leadership-grid {
    grid-template-columns: 1fr 1fr;
  }

  .leadership-card--founder {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    grid-template-rows: auto auto;
  }

  .leadership-card--founder .leadership-card__head {
    grid-column: 1;
    grid-row: 1;
    grid-template-columns: 132px minmax(0, 1fr);
  }

  .leadership-card--founder .profile-metrics {
    grid-column: 2;
    grid-row: 1;
  }

  .leadership-card--founder .profile-points {
    grid-column: 1;
    grid-row: 2;
  }

  .leadership-card--founder .launch-portfolio {
    grid-column: 2;
    grid-row: 2;
  }

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

  .capability-group--commercial {
    grid-column: span 1;
  }

  .capability-people--three {
    grid-template-columns: 1fr;
  }

  .capability-people--two {
    grid-template-columns: 1fr;
  }

  .capability-group--regulatory .team-profile {
    grid-template-columns: 112px minmax(0, 1fr);
  }
}

@media (max-width: 820px) {
  .experts-intro__grid,
  .capability-intro__grid,
  .ecosystem-panel__heading {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .leadership-grid,
  .capability-layout {
    grid-template-columns: 1fr;
  }

  .leadership-card--founder,
  .capability-group--regulatory,
  .capability-group--medical,
  .capability-group--commercial {
    grid-column: auto;
  }

  .leadership-card--founder {
    display: flex;
  }

  .capability-people--two {
    grid-template-columns: 1fr;
  }

  .ecosystem-panel__logos {
    min-height: 120px;
    padding: 22px 18px;
  }

  .experts-cta {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }
}

@media (max-width: 560px) {
  .experts-intro h1 {
    font-size: 2.15rem;
  }

  .leadership-card,
  .capability-group,
  .ecosystem-panel {
    padding: 22px;
    border-radius: 20px;
  }

  .leadership-card__head,
  .leadership-card--founder .leadership-card__head {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
  }

  .leadership-card__portrait {
    width: 92px;
    height: 108px;
    border-radius: 15px;
  }

  .profile-metrics {
    gap: 8px;
  }

  .profile-metrics > div {
    min-height: 64px;
  }

  .ecosystem-panel__logos {
    min-height: 96px;
    padding: 18px 12px;
  }

  .ecosystem-panel__logos img {
    max-height: 74px;
  }

  .team-profile,
  .capability-group--regulatory .team-profile {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 13px;
    padding: 13px;
  }

  .team-profile__portrait {
    width: 88px;
    height: 112px;
  }

  .professional-context-note p {
    padding: 11px 13px;
    font-size: 0.68rem;
  }
}


.experience-addition {
  margin-top: 34px;
}

.experience-addition__heading {
  margin-bottom: 22px;
}

.experience-addition__heading h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.case-carousel {
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fcfd 100%);
  box-shadow: var(--shadow-md);
}

.case-carousel__topbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.case-carousel__topbar h4 {
  margin: 0;
  font-size: clamp(1.2rem, 1.9vw, 1.55rem);
}

.case-carousel__controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.case-carousel__counter {
  min-width: 72px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.case-carousel__arrow {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(31,40,51,0.12);
  border-radius: 50%;
  background: var(--white);
  color: var(--blue-deep);
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.case-carousel__arrow:hover {
  transform: translateY(-1px);
  border-color: rgba(15,61,120,0.35);
  box-shadow: var(--shadow-sm);
}

.case-carousel__slides {
  position: relative;
}

.case-panel {
  display: none;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.case-panel.is-active {
  display: grid;
}

.case-panel__content,
.case-panel__media {
  min-width: 0;
}

.case-panel__content {
  padding: clamp(22px, 3vw, 30px);
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(31,40,51,0.07);
}

.case-panel__content h4 {
  margin-bottom: 6px;
  font-size: clamp(1.55rem, 2.25vw, 2.1rem);
}

.case-panel__subtitle {
  margin-bottom: 22px;
  color: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.case-panel__block {
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: var(--mist);
}

.case-panel__block h5 {
  margin-bottom: 10px;
  color: var(--blue-deep);
  font-size: 0.92rem;
}

.case-panel__block p,
.case-panel__block li {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.case-panel__block ul {
  margin: 0;
  padding-left: 18px;
}

.case-panel__block li + li {
  margin-top: 8px;
}

.case-panel__media {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.case-panel__media--stats {
  display: grid;
  grid-template-columns: 1fr;
}

.case-stat-card,
.case-stat-note,
.case-badge-card,
.case-figure {
  border: 1px solid rgba(31,40,51,0.08);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.case-stat-card {
  padding: 24px;
  background:
    radial-gradient(circle at 18% 18%, rgba(230,165,172,0.22), transparent 36%),
    radial-gradient(circle at 82% 74%, rgba(123,210,233,0.22), transparent 34%),
    #ffffff;
}

.case-stat-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-deep);
  font-size: clamp(1.8rem, 3.1vw, 2.5rem);
  font-weight: 900;
}

.case-stat-card small,
.case-stat-note p,
.case-badge-card span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.case-stat-note {
  padding: 24px;
  display: flex;
  align-items: center;
}

.case-stat-note--tall {
  flex: 1;
}

.case-badge-card {
  padding: 18px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 12px;
  min-height: 150px;
  text-align: center;
}

.case-badge-card img {
  width: auto;
  max-width: 92px;
  max-height: 72px;
}

.case-figure {
  overflow: hidden;
  padding: 16px;
  min-height: 100%;
}

.case-figure img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

.case-figure--landscape {
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.case-carousel__dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(15,61,120,0.2);
  cursor: pointer;
}

.case-carousel__dots button.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--blue-deep);
}

.experience-note {
  margin-top: 16px;
  color: var(--ink-muted);
  font-size: 0.82rem;
}

@media (max-width: 1080px) {
  .case-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .case-carousel__topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .case-carousel__controls {
    justify-content: space-between;
  }

  .case-panel__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .case-carousel,
  .case-panel__content,
  .case-figure,
  .case-badge-card,
  .case-stat-card,
  .case-stat-note {
    border-radius: 20px;
  }

  .case-carousel__counter {
    min-width: 58px;
  }
}


/* Experience case media refinements */
.case-panel__media--gallery,
.case-panel__media--case3 {
  min-height: 100%;
}

.case-gallery {
  display: grid;
  width: 100%;
  height: 100%;
  gap: 14px;
}

.case-gallery--four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.case-gallery figure {
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(31,40,51,0.08);
  border-radius: 22px;
  background: #f8fbfc;
  box-shadow: var(--shadow-sm);
}

.case-gallery figure img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  display: block;
  object-fit: cover;
}

.case-gallery--case4 figure {
  background: #fff;
}

.case-gallery--case4 figure img {
  object-fit: contain;
  padding: 10px;
}

.case3-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 14px;
  height: 100%;
}

.case3-tile {
  min-height: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(31,40,51,0.08);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 20%, rgba(123,210,233,0.15), transparent 38%),
    #fff;
  box-shadow: var(--shadow-sm);
}

.case3-tile--visual {
  align-items: center;
  text-align: center;
}

.case3-tile img {
  width: auto;
  max-width: 110px;
  max-height: 82px;
  margin-bottom: 18px;
}

.case3-tile strong {
  margin-bottom: 8px;
  color: var(--blue-deep);
  font-size: 1.05rem;
}

.case3-tile span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

@media (max-width: 1080px) {
  .case-gallery figure img {
    min-height: 240px;
  }

  .case3-tile {
    min-height: 190px;
  }
}

@media (max-width: 620px) {
  .case-gallery--four,
  .case3-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .case-gallery figure img {
    min-height: 220px;
  }
}


.case-gallery--case2-stack {
  grid-template-columns: 1fr;
  align-content: start;
}

.case-gallery--case2-stack figure {
  padding: 10px;
  background: #ffffff;
}

.case-gallery--case2-stack figure img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}


.licensing-card__icon {
  width: auto;
  min-width: 96px;
  padding: 0 16px;
  gap: 10px;
}

.licensing-card__icon span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 1.35rem;
}


/* Premium Experience carousel */
.experience-addition--premium { margin-top: 42px; }
.premium-case-carousel {
  overflow: hidden;
  border: 1px solid rgba(22, 52, 77, 0.10);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(31, 54, 76, 0.10);
}
.premium-case-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(22, 52, 77, 0.09);
  background: linear-gradient(180deg, #fbfdfe, #f6fafb);
}
.premium-case-tab {
  position: relative;
  min-height: 92px;
  padding: 19px 20px 17px;
  border: 0;
  border-right: 1px solid rgba(22, 52, 77, 0.08);
  background: transparent;
  text-align: left;
  color: var(--ink);
  cursor: pointer;
  transition: background 220ms ease, transform 220ms ease;
}
.premium-case-tab:last-child { border-right: 0; }
.premium-case-tab::after {
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 3px;
  content: "";
  border-radius: 999px 999px 0 0;
  background: transparent;
}
.premium-case-tab.is-active { background: #fff; }
.premium-case-tab.is-active::after { background: linear-gradient(90deg, var(--blue-deep), var(--pink-deep)); }
.premium-case-tab > span {
  float: left;
  margin-right: 12px;
  color: rgba(15, 61, 120, 0.45);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.premium-case-tab strong,
.premium-case-tab small { display: block; }
.premium-case-tab strong { font-size: 0.91rem; line-height: 1.25; }
.premium-case-tab small { margin-top: 5px; color: var(--ink-muted); font-size: 0.7rem; }

.premium-case-stage { padding: clamp(24px, 3.4vw, 42px); }
.premium-case-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.premium-case-progress { display: flex; align-items: center; gap: 10px; color: var(--ink-muted); font-size: 0.75rem; font-weight: 900; }
.premium-case-progress i { width: 74px; height: 1px; background: rgba(15, 61, 120, 0.20); }
.premium-case-arrows { display: flex; gap: 9px; }
.premium-case-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(15, 61, 120, 0.16);
  border-radius: 50%;
  background: #fff;
  color: var(--blue-deep);
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.premium-case-arrow:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(15,61,120,.12); }
.premium-case { display: none; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: clamp(22px, 3vw, 34px); align-items: stretch; }
.premium-case.is-active { display: grid; animation: premiumCaseIn 380ms ease both; }
@keyframes premiumCaseIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.premium-case__main {
  min-width: 0;
  padding: clamp(26px, 3.2vw, 38px);
  border: 1px solid rgba(22, 52, 77, 0.08);
  border-radius: 26px;
  background: linear-gradient(180deg, #fff, #fbfdfe);
}
.premium-case__headline { position: relative; padding-top: 30px; }
.premium-case__number {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--blue-deep);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.premium-case__sector {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--blue-deep);
  background: rgba(230,165,172,.13);
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.premium-case__headline h4 { max-width: 760px; margin-bottom: 12px; font-size: clamp(1.7rem, 2.45vw, 2.35rem); line-height: 1.12; }
.premium-case__headline > p { max-width: 760px; margin-bottom: 24px; color: var(--ink-soft); font-size: .98rem; }
.premium-case__columns { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.premium-case__section { padding: 20px; border-radius: 20px; background: #f5f9fb; }
.premium-case__section--accent { background: linear-gradient(140deg, rgba(123,210,233,.14), rgba(230,165,172,.10)); }
.premium-case__section h5 { margin-bottom: 10px; color: var(--blue-deep); font-size: .86rem; letter-spacing: .04em; text-transform: uppercase; }
.premium-case__section ul { margin: 0; padding-left: 17px; color: var(--ink-soft); }
.premium-case__section li { font-size: .88rem; line-height: 1.55; }
.premium-case__section li + li { margin-top: 7px; }
.premium-case__outcome { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; margin-top: 14px; }
.premium-case__outcome--three { grid-template-columns: repeat(3, minmax(0,1fr)); }
.premium-case__outcome > div { padding: 15px 16px; border: 1px solid rgba(22,52,77,.08); border-radius: 17px; background: #fff; }
.premium-case__outcome span, .premium-case__outcome strong { display: block; }
.premium-case__outcome span { margin-bottom: 5px; color: var(--ink-muted); font-size: .66rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.premium-case__outcome strong { color: var(--ink); font-size: .85rem; line-height: 1.35; }
.premium-case__takeaway { margin: 18px 0 0; padding-top: 17px; border-top: 1px solid rgba(22,52,77,.09); color: var(--ink-soft); font-size: .9rem; }
.premium-case__takeaway strong { color: var(--blue-deep); }

.premium-case__visual { min-width: 0; overflow: hidden; border-radius: 26px; background: linear-gradient(160deg, #eaf6fa, #fdf5f6); }
.premium-case__visual--metrics { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; padding: 18px; align-content: stretch; }
.premium-metric { min-height: 150px; padding: 22px; display: flex; flex-direction: column; justify-content: flex-end; border-radius: 20px; background: rgba(255,255,255,.88); box-shadow: 0 12px 28px rgba(31,54,76,.07); }
.premium-metric--hero { grid-column: span 2; min-height: 190px; background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(237,248,251,.92)); }
.premium-metric strong { display: block; margin-bottom: 7px; color: var(--blue-deep); font-size: clamp(2rem, 4vw, 3.4rem); line-height: .95; }
.premium-metric span { color: var(--ink-soft); font-size: .83rem; }
.premium-pathway { grid-column: span 2; padding: 17px 18px; display: flex; align-items: center; justify-content: space-between; gap: 8px; border-radius: 18px; background: rgba(15,61,120,.88); color: #fff; font-size: .72rem; font-weight: 800; text-align: center; }
.premium-pathway i { opacity: .62; }

.premium-case__visual--photo-stack { padding: 14px; display: grid; gap: 10px; align-content: center; background: #f5f8fa; }
.premium-case__visual--photo-stack figure { margin: 0; padding: 8px; border-radius: 16px; background: #fff; box-shadow: 0 8px 20px rgba(31,54,76,.06); }
.premium-case__visual--photo-stack img { width: min(100%, 390px); height: auto; max-height: 138px; margin: 0 auto; display: block; object-fit: contain; }

.premium-case__visual--case3 { padding: 18px; display: grid; gap: 12px; grid-template-rows: auto 1fr auto; }
.premium-case3-brand { min-height: 120px; padding: 18px; display: flex; align-items: center; gap: 16px; border-radius: 20px; background: #fff; }
.premium-case3-brand img { width: 72px; height: 72px; object-fit: contain; }
.premium-case3-brand span { color: var(--blue-deep); font-size: 1.03rem; font-weight: 900; }
.premium-case3-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
.premium-case3-grid > div { min-height: 118px; padding: 18px; display: flex; flex-direction: column; justify-content: flex-end; border-radius: 18px; background: rgba(255,255,255,.91); }
.premium-case3-grid strong { margin-bottom: 5px; color: var(--blue-deep); font-size: 1.35rem; }
.premium-case3-grid span { color: var(--ink-soft); font-size: .78rem; }
.premium-case3-visual { padding: 15px 18px; display: flex; align-items: center; gap: 15px; border-radius: 18px; background: rgba(15,61,120,.88); color: #fff; }
.premium-case3-visual img { width: 54px; height: 46px; object-fit: contain; filter: brightness(1.03); }
.premium-case3-visual p { margin: 0; color: #fff; font-size: .79rem; }

.premium-case__visual--gallery4 { padding: 14px; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; align-content: center; background: #f5f8fa; }
.premium-case__visual--gallery4 figure { margin: 0; min-height: 180px; padding: 10px; display: flex; align-items: center; justify-content: center; border-radius: 18px; background: #fff; box-shadow: 0 8px 20px rgba(31,54,76,.06); }
.premium-case__visual--gallery4 img { width: 100%; height: 100%; max-height: 220px; object-fit: contain; }

@media (max-width: 1100px) {
  .premium-case { grid-template-columns: 1fr; }
  .premium-case__visual--photo-stack img { max-height: none; width: min(100%, 520px); }
  .premium-case__visual--photo-stack { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 860px) {
  .premium-case-tabs { grid-template-columns: repeat(2, 1fr); }
  .premium-case-tab:nth-child(2) { border-right: 0; }
  .premium-case-tab:nth-child(-n+2) { border-bottom: 1px solid rgba(22,52,77,.08); }
  .premium-case__columns, .premium-case__outcome, .premium-case__outcome--three { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .premium-case-tabs { grid-template-columns: 1fr; }
  .premium-case-tab { min-height: 76px; border-right: 0; border-bottom: 1px solid rgba(22,52,77,.08); }
  .premium-case-tab:last-child { border-bottom: 0; }
  .premium-case-stage { padding: 18px; }
  .premium-case__main, .premium-case__visual { border-radius: 20px; }
  .premium-case__visual--photo-stack { grid-template-columns: 1fr; }
  .premium-case__visual--gallery4, .premium-case3-grid { grid-template-columns: 1fr; }
  .premium-pathway { flex-direction: column; }
  .premium-pathway i { transform: rotate(90deg); }
}


/* Experts capability heading line control */
.capability-heading-copy {
  min-width: 0;
}

.capability-heading-title--medical {
  white-space: nowrap;
  font-size: clamp(1.12rem, 1.55vw, 1.42rem);
}

.capability-heading-description {
  max-width: none;
}

.capability-heading-description--commercial {
  white-space: normal;
}

@media (max-width: 760px) {
  .capability-heading-title--medical {
    white-space: normal;
  }

  .capability-heading-description br {
    display: none;
  }
}

/* Final client-facing layout refinements */
.capability-group__heading {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  min-height: 94px;
  margin-bottom: 18px;
  padding-bottom: 16px;
}

.capability-group--medical .capability-group__heading,
.capability-group--commercial .capability-group__heading {
  min-height: 98px;
}

.capability-group__heading h3,
.capability-heading-title--medical {
  margin-bottom: 7px;
  white-space: nowrap;
  font-size: clamp(1.16rem, 1.5vw, 1.4rem);
}

.capability-group__heading p:last-child,
.capability-heading-description {
  margin-bottom: 0;
  font-size: 0.8rem;
  line-height: 1.5;
}

.capability-group--medical,
.capability-group--commercial {
  align-self: stretch;
}

.capability-group--medical .capability-people,
.capability-group--commercial .capability-people {
  flex: 1;
}

.case-study__steps div {
  grid-template-columns: 1fr;
}

.premium-case-tab {
  grid-template-columns: 1fr;
}

.premium-case-progress {
  min-width: 72px;
}

.licensing-card__icon {
  min-width: 118px;
  width: fit-content;
}

.licensing-card__icon--duo {
  gap: 8px;
}

.licensing-icon-arrow {
  color: var(--blue-deep);
  font-size: 1.08rem !important;
  font-weight: 900;
}

.licensing-icon-amp {
  color: var(--ink-soft);
  font-size: 0.92rem !important;
  font-weight: 800;
}

@media (max-width: 760px) {
  .capability-group__heading,
  .capability-group--medical .capability-group__heading,
  .capability-group--commercial .capability-group__heading {
    min-height: 0;
  }

  .capability-group__heading h3,
  .capability-heading-title--medical {
    white-space: normal;
  }
}

/* Experience case showcase: text first, adaptive visual band below */
.premium-case {
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.premium-case.is-active {
  display: grid;
}

.premium-case__main {
  padding: clamp(24px, 2.7vw, 34px);
}

.premium-case__headline h4,
.premium-case__headline > p {
  max-width: 980px;
}

.premium-case__visual {
  width: 100%;
  min-height: 0;
}

/* Case 1: three balanced proof points + pathway */
.premium-case__visual--metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
}

.premium-metric,
.premium-metric--hero {
  grid-column: auto;
  min-height: 126px;
  padding: 20px;
}

.premium-metric--hero {
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(237,248,251,.92));
}

.premium-pathway {
  grid-column: 1 / -1;
  min-height: 58px;
}

/* Case 2: four complete images in one balanced row */
.premium-case__visual--photo-stack {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
  align-items: center;
}

.premium-case__visual--photo-stack figure {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.premium-case__visual--photo-stack img {
  width: 100%;
  max-width: none;
  height: auto;
  max-height: none;
  object-fit: contain;
}

/* Case 3: compact evidence and market-access band */
.premium-case__visual--case3 {
  grid-template-columns: 1.35fr repeat(4, minmax(0, .78fr)) 1.65fr;
  grid-template-rows: 1fr;
  gap: 10px;
  padding: 14px;
  align-items: stretch;
}

.premium-case3-brand,
.premium-case3-visual,
.premium-case3-grid > div {
  min-height: 128px;
  height: 100%;
}

.premium-case3-brand {
  padding: 16px;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.premium-case3-brand img {
  width: 62px;
  height: 62px;
}

.premium-case3-brand span {
  font-size: .9rem;
}

.premium-case3-grid {
  display: contents;
}

.premium-case3-grid > div {
  padding: 16px;
  justify-content: center;
}

.premium-case3-grid strong {
  font-size: 1.22rem;
}

.premium-case3-visual {
  padding: 16px;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.premium-case3-visual img {
  width: 56px;
  height: 48px;
}

/* Case 4: four source visuals in one full-width row */
.premium-case__visual--gallery4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
  align-items: stretch;
}

.premium-case__visual--gallery4 figure {
  min-height: 150px;
  height: 100%;
}

.premium-case__visual--gallery4 img {
  max-height: 185px;
}

@media (max-width: 1100px) {
  .premium-case__visual--photo-stack,
  .premium-case__visual--gallery4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .premium-case__visual--case3 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .premium-case3-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .premium-case3-brand,
  .premium-case3-visual {
    flex-direction: row;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .premium-case__visual--metrics,
  .premium-case__visual--photo-stack,
  .premium-case__visual--gallery4,
  .premium-case3-grid {
    grid-template-columns: 1fr;
  }

  .premium-pathway {
    flex-direction: column;
  }

  .premium-pathway i {
    transform: rotate(90deg);
  }
}


/* Experience stacked-case layout — isolated final rules */
.premium-case.premium-case--stacked {
  display: none !important;
  width: 100% !important;
  grid-template-columns: none !important;
  grid-template-rows: none !important;
  gap: 18px !important;
  align-items: stretch !important;
}

.premium-case.premium-case--stacked.is-active {
  display: flex !important;
  flex-direction: column !important;
}

.premium-case--stacked > .premium-case__main,
.premium-case--stacked > .premium-case__visual {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
}

.premium-case--stacked .premium-case__main {
  padding: clamp(24px, 2.7vw, 34px) !important;
}

.premium-case--stacked .premium-case__headline h4,
.premium-case--stacked .premium-case__headline > p {
  max-width: 1040px !important;
}

/* Case 1: metrics below the text */
.premium-case--stacked .premium-case__visual--metrics {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  grid-template-rows: auto auto !important;
  gap: 12px !important;
  padding: 14px !important;
}
.premium-case--stacked .premium-case__visual--metrics .premium-metric,
.premium-case--stacked .premium-case__visual--metrics .premium-metric--hero {
  grid-column: auto !important;
  min-height: 122px !important;
}
.premium-case--stacked .premium-case__visual--metrics .premium-pathway {
  grid-column: 1 / -1 !important;
}

/* Case 2: four complete photos below, balanced in one row */
.premium-case--stacked .premium-case__visual--photo-stack {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px !important;
  padding: 14px !important;
  align-items: stretch !important;
}
.premium-case--stacked .premium-case__visual--photo-stack figure {
  margin: 0 !important;
  min-height: 0 !important;
  padding: 8px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.premium-case--stacked .premium-case__visual--photo-stack img {
  width: 100% !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
}

/* Case 3: six unequal evidence elements fitted as a dense horizontal band */
.premium-case--stacked .premium-case__visual--case3 {
  display: grid !important;
  grid-template-columns: 1.25fr repeat(4, minmax(0, .8fr)) 1.5fr !important;
  grid-template-rows: 1fr !important;
  gap: 10px !important;
  padding: 14px !important;
  align-items: stretch !important;
}
.premium-case--stacked .premium-case3-grid {
  display: contents !important;
}
.premium-case--stacked .premium-case3-brand,
.premium-case--stacked .premium-case3-grid > div,
.premium-case--stacked .premium-case3-visual {
  min-height: 126px !important;
  height: 100% !important;
}

/* Case 4: four source visuals below the text */
.premium-case--stacked .premium-case__visual--gallery4 {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px !important;
  padding: 14px !important;
  align-items: stretch !important;
}
.premium-case--stacked .premium-case__visual--gallery4 figure {
  min-height: 148px !important;
}
.premium-case--stacked .premium-case__visual--gallery4 img {
  width: 100% !important;
  height: 100% !important;
  max-height: 190px !important;
  object-fit: contain !important;
}

@media (max-width: 1100px) {
  .premium-case--stacked .premium-case__visual--photo-stack,
  .premium-case--stacked .premium-case__visual--gallery4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .premium-case--stacked .premium-case__visual--case3 {
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    grid-template-rows: auto !important;
  }
  .premium-case--stacked .premium-case3-grid {
    display: contents !important;
  }
}

@media (max-width: 700px) {
  .premium-case--stacked .premium-case__visual--metrics,
  .premium-case--stacked .premium-case__visual--photo-stack,
  .premium-case--stacked .premium-case__visual--gallery4,
  .premium-case--stacked .premium-case__visual--case3 {
    grid-template-columns: 1fr !important;
  }
}


/* Experience refinement: simplified header, balanced Case 3, unified key takeaway */
.experience-addition--premium {
  margin-top: 0;
}

.experience-addition__heading {
  margin-bottom: 24px;
}

.experience-addition__heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.85rem, 3vw, 2.75rem);
}

.premium-case__takeaway {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin: 18px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(15, 61, 120, .10);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(237,248,251,.76), rgba(255,255,255,.96));
  color: var(--ink-soft);
  font-size: .9rem;
  line-height: 1.6;
}

.premium-case__takeaway strong {
  color: var(--blue-deep);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .08em;
  white-space: nowrap;
}

.premium-case__takeaway span {
  min-width: 0;
}

/* Case 3 now has four purposeful visual blocks after removing RWE and NRDL tiles */
.premium-case--stacked .premium-case__visual--case3 {
  grid-template-columns: 1.25fr .85fr 1fr 1.45fr;
  grid-template-rows: 1fr;
  gap: 12px;
  align-items: stretch;
}

.premium-case--stacked .premium-case3-grid {
  display: contents;
}

.premium-case--stacked .premium-case3-brand,
.premium-case--stacked .premium-case3-grid > div,
.premium-case--stacked .premium-case3-visual {
  min-height: 138px;
  height: 100%;
}

.premium-case--stacked .premium-case3-grid > div {
  justify-content: center;
}

@media (max-width: 900px) {
  .premium-case--stacked .premium-case__visual--case3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .premium-case__takeaway {
    grid-template-columns: 1fr;
    gap: 7px;
  }
}

@media (max-width: 620px) {
  .premium-case--stacked .premium-case__visual--case3 {
    grid-template-columns: 1fr;
  }
}


/* Experience alignment refinements */
.experience-addition__heading .eyebrow {
  margin-bottom: 10px;
}

.premium-case__takeaway {
  grid-template-columns: 132px minmax(0, 1fr);
  align-items: center;
  column-gap: 18px;
}

.premium-case__takeaway strong,
.premium-case__takeaway span {
  align-self: center;
}

/* Case 3: four equal visual / summary blocks */
.premium-case--stacked .premium-case__visual--case3 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: 1fr;
  gap: 12px;
  align-items: stretch;
}

.premium-case--stacked .premium-case3-brand,
.premium-case--stacked .premium-case3-grid > div,
.premium-case--stacked .premium-case3-visual {
  min-width: 0;
  min-height: 142px;
  height: 100%;
  padding: 18px;
  justify-content: center;
}

.premium-case--stacked .premium-case3-brand,
.premium-case--stacked .premium-case3-visual {
  flex-direction: column;
  text-align: center;
}

.premium-case--stacked .premium-case3-brand img,
.premium-case--stacked .premium-case3-visual img {
  margin: 0 auto 8px;
}

.premium-case--stacked .premium-case3-visual p {
  text-align: center;
}

@media (max-width: 900px) {
  .premium-case__takeaway {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 14px;
  }

  .premium-case--stacked .premium-case__visual--case3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .premium-case__takeaway {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 7px;
  }

  .premium-case--stacked .premium-case__visual--case3 {
    grid-template-columns: 1fr;
  }
}

/* Case 3 final equal-distribution fix: flatten nested summary grid */
.premium-case--stacked .premium-case__visual--case3 {
  display: grid !important;
  width: 100% !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  grid-template-rows: minmax(148px, auto) !important;
  gap: 14px !important;
  align-items: stretch !important;
  justify-items: stretch !important;
}

.premium-case--stacked .premium-case3-grid {
  display: contents !important;
}

.premium-case--stacked .premium-case3-brand,
.premium-case--stacked .premium-case3-grid > div,
.premium-case--stacked .premium-case3-visual {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  height: 100% !important;
  min-height: 148px !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

@media (max-width: 900px) {
  .premium-case--stacked .premium-case__visual--case3 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 620px) {
  .premium-case--stacked .premium-case__visual--case3 {
    grid-template-columns: 1fr !important;
  }
}


/* Client-facing refinements: unified outcomes, ecosystem position, value statement emphasis */
.premium-case__outcome--summary {
  display: grid;
  grid-template-columns: minmax(130px, .24fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  margin-top: 16px;
  border: 1px solid rgba(22,52,77,.10);
  border-radius: 20px;
  background: #fff;
}

.premium-case__outcome--summary h5 {
  margin: 0;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(145deg, var(--blue-deep), #2f7e9a);
  font-size: clamp(1.08rem, 1.7vw, 1.4rem);
  font-weight: 900;
  letter-spacing: .08em;
}

.premium-case__outcome-copy {
  padding: 19px 22px;
  display: grid;
  align-content: center;
  gap: 9px;
}

.premium-case__outcome-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .9rem;
  line-height: 1.5;
}

.premium-case__outcome-copy p + p {
  padding-top: 9px;
  border-top: 1px solid rgba(22,52,77,.08);
}

.expert-capability-section + .ecosystem-panel,
.expert-capability-section .ecosystem-panel {
  margin-top: 48px;
  margin-bottom: 0;
}

.value-statement--highlight {
  position: relative;
  margin: 20px;
  padding: clamp(28px, 4vw, 42px) clamp(30px, 5vw, 56px);
  border: 1px solid rgba(15,61,120,.14);
  border-radius: 22px;
  background:
    linear-gradient(118deg, rgba(15,61,120,.07), rgba(123,210,233,.14) 55%, rgba(230,165,172,.14)),
    #fff;
  box-shadow: 0 18px 44px rgba(31,54,76,.08);
}

.value-statement--highlight img {
  width: 52px;
  height: 52px;
}

.value-statement--highlight p {
  color: var(--blue-deep);
  font-size: clamp(1.28rem, 2.2vw, 1.8rem);
  line-height: 1.35;
  font-weight: 850;
}

@media (max-width: 620px) {
  .premium-case__outcome--summary {
    grid-template-columns: 1fr;
  }

  .premium-case__outcome--summary h5 {
    justify-content: flex-start;
    padding: 14px 18px;
  }

  .value-statement--highlight {
    margin: 14px;
  }
}

.premium-case__outcome--summary > .premium-case__outcome-copy {
  padding: 19px 22px;
  border: 0;
  border-radius: 0;
  background: transparent;
}


/* Experience terminology and takeaway emphasis */
.premium-case__takeaway {
  grid-template-columns: 154px minmax(0, 1fr);
  column-gap: 20px;
  align-items: center;
}

.premium-case__takeaway strong {
  font-size: clamp(.92rem, 1.25vw, 1.08rem);
  font-weight: 900;
  letter-spacing: .075em;
}

.premium-case__takeaway span {
  font-size: .96rem;
  font-weight: 700;
  line-height: 1.58;
  color: var(--ink);
}

/* Case 3 therapy-area tile uses the same light card treatment as the other tiles */
.premium-case--stacked .premium-case3-visual {
  background: rgba(255,255,255,.91) !important;
  color: var(--ink-soft) !important;
  border: 1px solid rgba(31,40,51,.08) !important;
  box-shadow: var(--shadow-sm);
}

.premium-case--stacked .premium-case3-visual p {
  color: var(--ink-soft) !important;
  font-weight: 600;
}

@media (max-width: 620px) {
  .premium-case__takeaway {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}


/* ==========================================================================\n   Client requested readability + September 2026 content refinements\n   ========================================================================== */

/* Larger body/descriptive text for mature client audiences; restrained headline scale. */
body { font-size: 17px; }
h1 { font-size: clamp(2.15rem, 4vw, 3.7rem); }
h2 { font-size: clamp(1.7rem, 2.8vw, 2.65rem); }
.hero h1 { font-size: clamp(2.25rem, 4.2vw, 3.8rem); }
.section-heading > p:last-child,
.section-heading--split > p,
.experts-intro__grid > p,
.capability-intro__grid > p,
.value-panel__intro > p,
.alliance-hero__content > p:not(.eyebrow),
.contact-copy > p:not(.eyebrow) {
  font-size: 1.1rem;
  line-height: 1.8;
}
.service-card > p:not(.service-card__index),
.value-card p,
.location-card p,
.location-card address,
.audience-card p,
.alliance-card li,
.check-list li {
  font-size: 1rem;
  line-height: 1.72;
}

/* About: quote first; align the descriptive copy with both major headings and pull it closer. */
.about-execution-quote {
  margin-bottom: clamp(36px, 4vw, 52px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
#about .section-heading--split,
#about .value-panel__intro {
  align-items: center;
  gap: clamp(28px, 4vw, 54px);
}
#about .section-heading--split > p,
#about .value-panel__intro > p {
  margin-left: clamp(-18px, -1.25vw, -8px);
}
#about .value-panel__intro h3 {
  font-size: clamp(1.45rem, 2.15vw, 2rem);
}
.about-locations { border-top: 1px solid var(--line); }

/* Services: PPT-led editorial bridge, intentionally avoiding the previous card-box treatment. */
.services-bridge-heading { margin-bottom: clamp(28px, 4vw, 42px); }
.services-bridge-heading h2 { margin-bottom: 0; }
.services-bridge-editorial {
  display: grid;
  gap: clamp(36px, 5vw, 64px);
}
.services-bridge-editorial__lead {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding-bottom: clamp(30px, 4vw, 44px);
  border-bottom: 1px solid var(--line);
}
.services-bridge-editorial__lead h3 {
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(1.55rem, 2.35vw, 2.25rem);
  line-height: 1.2;
}
.services-bridge-editorial__lead p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.82;
}
.services-bridge-editorial__body {
  display: grid;
  grid-template-columns: minmax(240px, .68fr) minmax(0, 1.32fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: stretch;
}
.services-bridge-editorial__image {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
}
.services-bridge-editorial__image img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}
.services-challenge-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(26px, 4vw, 56px);
}
.services-challenge-list > div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(31,40,51,.13);
}
.services-challenge-list span {
  color: var(--blue-deep);
  font-size: .86rem;
  font-weight: 850;
  letter-spacing: .08em;
}
.services-challenge-list h4 {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.4;
}

/* Experts: center founder identity block; enlarge and vertically center launch portfolio. */
.experts-intro h1 { font-size: clamp(2rem, 3.3vw, 3rem); }
.leadership-card--founder { align-items: center; }
.leadership-card--founder .leadership-card__head {
  width: 100%;
  place-self: center;
  align-self: center;
}
.leadership-card--founder .leadership-card__portrait {
  margin-inline: auto;
}
.leadership-card--founder .launch-portfolio {
  align-self: center;
  display: flex;
  min-height: 72%;
  flex-direction: column;
  justify-content: center;
}
.launch-portfolio__title { font-size: .93rem; line-height: 1.55; }
.launch-tags span { font-size: .9rem; padding: 7px 10px; }
.leadership-card__role { font-size: .84rem; }
.leadership-card__credentials { font-size: .82rem; }
.profile-metrics span { font-size: .82rem; }
.profile-points p,
.profile-list { font-size: .95rem; line-height: 1.65; }
.capability-group__heading p:last-child,
.capability-heading-description { font-size: .94rem; line-height: 1.62; }

/* Alliance: collaboration lock-up becomes the hero title; introduction sits to its right. */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.alliance-hero--reframed {
  grid-template-columns: minmax(320px, .86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(36px, 6vw, 86px);
}
.alliance-hero__brandlockup {
  display: flex;
  align-items: center;
  justify-content: center;
}
.alliance-logo-pair--hero {
  width: 100%;
  padding: clamp(28px, 4vw, 44px);
  background: rgba(255,255,255,.94);
}
.alliance-hero__content--right > p {
  margin-bottom: 18px;
  color: rgba(255,255,255,.92);
  font-size: 1.08rem;
  line-height: 1.78;
}
.alliance-source-link {
  display: inline-flex;
  margin-top: 6px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,.5);
  color: #fff;
  font-size: .95rem;
  font-weight: 750;
}

/* Experience: title tabs only; text-only case presentation, larger case copy. */
.premium-case-stage { padding-top: clamp(24px, 3vw, 34px); }
.premium-case-tab { min-height: 96px; }
.premium-case-tab strong { font-size: 1rem; }
.premium-case-tab small { margin-top: 7px; font-size: .82rem; line-height: 1.35; }
.premium-case { grid-template-columns: 1fr !important; }
.premium-case__headline h4 { font-size: clamp(1.45rem, 2vw, 2rem); }
.premium-case__headline > p { font-size: 1.06rem; line-height: 1.7; }
.premium-case__section h5 { font-size: .94rem; }
.premium-case__section li { font-size: 1rem; line-height: 1.68; }
.premium-case__outcome--summary h5 { font-size: .94rem; }
.premium-case__outcome--summary p { font-size: 1rem; line-height: 1.65; }
.premium-case__takeaway { font-size: 1rem; line-height: 1.7; }
.premium-case__takeaway span { font-weight: 400 !important; }
.launch-list > p { font-size: .94rem; }
.launch-list span { font-size: .93rem; }

@media (max-width: 900px) {
  .services-bridge-editorial__lead,
  .services-bridge-editorial__body,
  .alliance-hero--reframed {
    grid-template-columns: 1fr;
  }
  .services-bridge-editorial__image img { min-height: 300px; max-height: 460px; }
  #about .section-heading--split > p,
  #about .value-panel__intro > p { margin-left: 0; }
}

@media (max-width: 680px) {
  body { font-size: 16.5px; }
  .services-challenge-list { grid-template-columns: 1fr; }
  .services-bridge-editorial__lead p,
  .section-heading > p:last-child,
  .section-heading--split > p { font-size: 1.03rem; }
  .alliance-logo-pair--hero { padding: 24px 18px; }
}


/* Readability polish for navigation and founder alignment */
.primary-nav { font-size: .95rem; }
.leadership-card--founder .leadership-card__head {
  grid-template-columns: 132px minmax(0, 165px);
  justify-content: center;
}
.premium-case__number,
.premium-case__sector,
.alliance-card__label,
.status { font-size: .82rem; }

/* September 2026 round 2: hierarchy + readability corrections */

/* About quote belongs after the Execution-led introduction and is centered as a single statement. */
.about-execution-quote {
  min-height: 148px;
  margin: clamp(28px, 4vw, 46px) auto clamp(46px, 6vw, 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.about-execution-quote p {
  max-width: 880px;
  margin: 0;
  font-size: clamp(1.2rem, 1.7vw, 1.4rem) !important;
  line-height: 1.5;
}

/* Services: the PPT description stands on its own; no extra summary heading. */
.services-bridge-editorial__lead {
  display: block;
  padding-bottom: clamp(30px, 4vw, 44px);
}
.services-bridge-editorial__lead p {
  max-width: 1120px;
  margin: 0 auto;
}

/* Reduce heading scale site-wide while increasing reading copy for older client audiences. */
main h1 {
  font-size: clamp(1.9rem, 3.45vw, 3.15rem) !important;
  line-height: 1.12;
}
main h2 {
  font-size: clamp(1.48rem, 2.35vw, 2.2rem) !important;
  line-height: 1.2;
}
main h3 {
  font-size: clamp(1.08rem, 1.55vw, 1.38rem) !important;
  line-height: 1.3;
}
main h4 {
  font-size: clamp(1rem, 1.3vw, 1.2rem) !important;
  line-height: 1.38;
}
main h5 {
  font-size: .98rem !important;
  line-height: 1.42;
}

main p:not(.eyebrow),
main li,
main address,
main summary {
  font-size: 1.12rem !important;
  line-height: 1.76;
}

/* Keep short metadata/labels visually subordinate, but no longer tiny. */
.premium-case-tab small,
.leadership-card__role,
.leadership-card__credentials,
.profile-metrics span,
.status,
.premium-case__number,
.premium-case__sector,
.alliance-card__label,
.launch-list > p,
.launch-list span {
  font-size: .88rem !important;
  line-height: 1.5;
}

@media (max-width: 680px) {
  body { font-size: 17px; }
  main h1 { font-size: clamp(1.82rem, 8.5vw, 2.55rem) !important; }
  main h2 { font-size: clamp(1.42rem, 6.5vw, 1.95rem) !important; }
  main p:not(.eyebrow),
  main li,
  main address,
  main summary { font-size: 1.07rem !important; }
  .about-execution-quote {
    min-height: 132px;
    flex-direction: column;
    gap: 14px;
    padding: 26px 24px;
  }
}


/* September 2026 round 3: exact centerline, simpler Services opening, larger reading copy. */

/* Keep the quote text itself on the exact vertical centerline of the page.
   The brand mark is positioned independently so it cannot push the sentence rightward. */
.about-execution-quote {
  position: relative;
  display: grid !important;
  place-items: center !important;
  width: min(var(--max-width), calc(100% - 40px));
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
}
.about-execution-quote img {
  position: absolute;
  left: clamp(28px, 4vw, 54px);
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}
.about-execution-quote p {
  width: min(880px, calc(100% - 150px));
  margin: 0 auto !important;
  text-align: center;
}

/* Titles one more step smaller; substantive copy one more step larger. */
main h1 {
  font-size: clamp(1.72rem, 3.05vw, 2.85rem) !important;
  line-height: 1.14;
}
main h2 {
  font-size: clamp(1.34rem, 2.05vw, 1.95rem) !important;
  line-height: 1.22;
}
main h3 {
  font-size: clamp(1.08rem, 1.38vw, 1.28rem) !important;
  line-height: 1.32;
}
main h4 {
  font-size: clamp(1.02rem, 1.18vw, 1.14rem) !important;
  line-height: 1.4;
}
main h5 {
  font-size: .96rem !important;
  line-height: 1.45;
}

main p:not(.eyebrow),
main li,
main address,
main summary {
  font-size: 1.18rem !important;
  line-height: 1.78;
}

/* Service-card supporting copy should be easy to read without making labels dominant. */
.service-card > p:not(.service-card__index),
.service-card li,
.service-card summary {
  font-size: 1.16rem !important;
  line-height: 1.72;
}

@media (max-width: 680px) {
  main h1 { font-size: clamp(1.66rem, 7.7vw, 2.28rem) !important; }
  main h2 { font-size: clamp(1.28rem, 5.8vw, 1.78rem) !important; }
  main p:not(.eyebrow),
  main li,
  main address,
  main summary { font-size: 1.11rem !important; }
  .about-execution-quote {
    padding: 30px 24px 26px !important;
  }
  .about-execution-quote img {
    position: static;
    transform: none;
    margin: 0 auto 12px;
  }
  .about-execution-quote p {
    width: 100%;
  }
}


/* September 2026 round 4: original Services restored; PPT challenge content in an editorial, non-card layout. */
.services-ppt-challenges {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(123,210,233,.045), rgba(255,255,255,0) 42%),
    var(--white);
}
.services-ppt-challenges__header {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(38px, 7vw, 112px);
  padding-bottom: clamp(34px, 4.5vw, 54px);
  border-bottom: 1px solid rgba(31,40,51,.14);
}
.services-ppt-challenges__header h2 {
  margin: 0;
  color: var(--ink);
}
.services-ppt-challenges__header p {
  max-width: 760px;
  margin: 0;
  color: var(--ink-soft);
}
.services-ppt-challenges__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(40px, 7vw, 100px);
  padding-top: clamp(18px, 2.8vw, 34px);
}
.services-ppt-challenges__item {
  position: relative;
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 20px 0 20px 46px;
  border-bottom: 1px solid rgba(31,40,51,.105);
}
.services-ppt-challenges__item::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 2px;
  content: "";
  transform: translateY(-50%);
  background: linear-gradient(90deg, var(--blue-deep), var(--blue));
}
.services-ppt-challenges__item h3 {
  margin: 0;
  color: var(--ink);
  font-weight: 680;
  letter-spacing: -0.018em;
}

/* Keep Zoom Yan's profile card on the same visual baseline as the two Commercialization profiles. */
@media (min-width: 821px) {
  .capability-group--medical .capability-group__heading,
  .capability-group--commercial .capability-group__heading {
    box-sizing: border-box;
    height: 132px;
    min-height: 132px;
    align-content: start;
  }
  .capability-group--medical .capability-people,
  .capability-group--commercial .capability-people {
    min-height: 0;
    align-items: stretch;
  }
  .capability-group--medical .team-profile,
  .capability-group--commercial .team-profile {
    height: 100%;
    min-height: 248px;
    align-self: stretch;
  }
  .capability-group--commercial .capability-people--two {
    grid-auto-rows: 1fr;
  }
}

@media (max-width: 820px) {
  .services-ppt-challenges__header,
  .services-ppt-challenges__list {
    grid-template-columns: 1fr;
  }
  .services-ppt-challenges__header {
    gap: 20px;
  }
  .services-ppt-challenges__item {
    min-height: 70px;
  }
}


/* September 2026 round 5: alignment and always-open service scopes. */
@media (min-width: 821px) {
  /* Pull the bridge copy left and align its top edge with the heading. */
  .services-ppt-challenges__header {
    grid-template-columns: minmax(280px, 330px) minmax(0, 1fr);
    align-items: start;
    gap: clamp(26px, 3.2vw, 48px);
  }
  .services-ppt-challenges__header p {
    max-width: 820px;
    justify-self: start;
  }

  /* Give both capability headers the same safe height so the Medical copy never spills into Zoom Yan. */
  .capability-group--medical .capability-group__heading,
  .capability-group--commercial .capability-group__heading {
    box-sizing: border-box;
    height: 156px;
    min-height: 156px;
    align-content: start;
  }
  .capability-group--medical .capability-heading-description,
  .capability-group--commercial .capability-heading-description {
    overflow-wrap: normal;
    word-break: normal;
  }

  /* Experience title and descriptive copy start on the same horizontal line. */
  .experience-addition__heading {
    align-items: start;
  }
}



/* September 2026 round 6: optical heading alignment and simplified section labels. */

/* Make the execution statement more prominent without changing its centered composition. */
.about-execution-quote p {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem) !important;
  line-height: 1.25 !important;
}

/* Major two-column title/copy blocks should share one top edge. */
.section-heading--split,
.experts-intro__grid,
.capability-intro__grid,
.experience-addition__heading,
.services-ppt-challenges__header {
  align-items: start !important;
}

.section-heading--split > div,
.experts-intro__grid > div,
.capability-intro__grid > div,
.experience-addition__heading > div,
.services-ppt-challenges__header > h2 {
  align-self: start;
}

.section-heading--split h1,
.section-heading--split h2,
.experts-intro__grid h1,
.capability-intro__grid h2,
.experience-addition__heading h2,
.services-ppt-challenges__header h2,
.section-heading--split > p,
.experts-intro__grid > p,
.capability-intro__grid > p,
.experience-addition__heading > p,
.services-ppt-challenges__header > p {
  margin-top: 0 !important;
}

/* The challenges heading looked optically a little low next to its paragraph. */
.services-ppt-challenges__header h2 {
  transform: translateY(-3px);
}

/* The Experts page lead title should feel like a section title, not an oversized hero. */
.experts-intro h1,
#experts-title {
  font-size: clamp(1.58rem, 2.55vw, 2.32rem) !important;
  line-height: 1.16 !important;
  max-width: 700px;
}

/* Keep right-hand explanatory copy pinned to the same starting line. */
.experts-intro__grid > p,
.capability-intro__grid > p,
.section-heading--split > p,
.experience-addition__heading > p,
.services-ppt-challenges__header > p {
  align-self: start;
  padding-top: 0 !important;
  margin-bottom: 0 !important;
}

@media (max-width: 820px) {
  .services-ppt-challenges__header h2 {
    transform: none;
  }
  .about-execution-quote p {
    font-size: clamp(1.6rem, 6.5vw, 2rem) !important;
  }
  .experts-intro h1,
  #experts-title {
    font-size: clamp(1.5rem, 7vw, 2.05rem) !important;
  }
}

/* Optical correction: large type sits visually higher than body copy even when line boxes share a top edge. */
.value-panel__intro {
  align-items: start !important;
}
.value-panel__intro h3,
.value-panel__intro > p {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  align-self: start;
}
.section-heading--split h2,
.experts-intro__grid h1,
.capability-intro__grid h2,
.experience-addition__heading h2,
.value-panel__intro h3 {
  transform: translateY(4px);
}
/* Current Challenges was the opposite case: keep it slightly higher than the shared optical correction. */
.services-ppt-challenges__header h2 {
  transform: translateY(-3px);
}
@media (max-width: 820px) {
  .section-heading--split h2,
  .experts-intro__grid h1,
  .capability-intro__grid h2,
  .experience-addition__heading h2,
  .value-panel__intro h3,
  .services-ppt-challenges__header h2 {
    transform: none;
  }
}
.about-execution-quote {
    display: flex;
    justify-content: center;
    align-items: center;
}

#execution-quote {
    font-size: 1.8rem !important;
    line-height: 1.25 !important;
    max-width: none !important;
    width: max-content;
    white-space: nowrap;
    margin: 0 auto;
    text-align: center;
}

/* Alliance page global footprint map */
.alliance-network {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
}

.alliance-network__title {
  margin: 0 0 18px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.alliance-network__image {
  display: block;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(7, 26, 56, 0.18);
}

@media (max-width: 768px) {
  .alliance-network {
    padding: 16px;
  }

  .alliance-network__title {
    font-size: 1.05rem;
    margin-bottom: 14px;
  }

  .alliance-network__image {
    border-radius: 12px;
  }
}

/* ==========================================================================
   September 7 2026 requested corrections — v4
   ========================================================================== */

/* 1) Restore the original red accent treatment used by v2 for compact
   subtitles / metadata labels, including the animated 18+ and 12 counters. */
.eyebrow,
.hero-badge > span,
.challenge-card > span,
.service-card summary,
.expert-card__role,
.expert-card__credentials,
.case-study__year,
.licensing-card > p,
.contact-card__item span,
.case-panel__subtitle,
.premium-case__sector {
  color: var(--pink-deep) !important;
}

/* Keep the small red eyebrow hierarchy consistent everywhere. */
main .eyebrow {
  margin-bottom: 14px;
  font-size: 0.76rem !important;
  line-height: 1.35 !important;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* 2) One typography system across all pages.
   Top page headings are the same size even when legacy markup uses h1/h2. */
main h1 {
  font-size: clamp(2.05rem, 3.25vw, 2.95rem) !important;
  line-height: 1.14 !important;
}
main h2 {
  font-size: clamp(1.62rem, 2.35vw, 2.12rem) !important;
  line-height: 1.2 !important;
}
main h3 {
  font-size: clamp(1.16rem, 1.55vw, 1.4rem) !important;
  line-height: 1.32 !important;
}
main h4 {
  font-size: clamp(1.04rem, 1.25vw, 1.2rem) !important;
  line-height: 1.4 !important;
}

/* Every page's largest visible heading uses one shared scale. */
#hero-title,
#about-title,
#challenges-title,
#experts-title,
#experience-title,
#contact-title {
  max-width: none;
  font-size: clamp(2.05rem, 3.25vw, 2.95rem) !important;
  line-height: 1.14 !important;
}

/* Normal reading copy has one consistent size across pages. */
main :where(p:not(.eyebrow):not(.network-disclaimer):not(.experience-note)),
main li,
main address {
  font-size: 1.08rem !important;
  line-height: 1.72 !important;
}

/* 3) Risk / affiliation / logo-context notices deliberately remain smaller,
   matching the visual hierarchy of v2 instead of inheriting v3 body copy. */
.professional-context-note p {
  font-size: 0.72rem !important;
  line-height: 1.55 !important;
  color: var(--ink-muted) !important;
}
.experts-page .network-disclaimer,
.network-disclaimer {
  font-size: 0.70rem !important;
  line-height: 1.55 !important;
  color: var(--ink-muted) !important;
}
.experience-note {
  font-size: 0.82rem !important;
  line-height: 1.55 !important;
  color: var(--ink-muted) !important;
}

/* About — move the Execution-led explanatory copy left so its text column
   aligns optically with the Navigating explanatory copy below. */
@media (min-width: 821px) {
  #about .section-heading--split > p {
    margin-left: clamp(-84px, -5.5vw, -68px) !important;
  }
}

/* About — make “Navigating the value chain…” clearly more important than
   its supporting copy and the three lower value-card headings. */
#about .value-panel__intro h3 {
  font-size: clamp(1.55rem, 2.15vw, 1.95rem) !important;
  line-height: 1.22 !important;
}
#about .value-card h3 {
  font-size: clamp(1.12rem, 1.4vw, 1.3rem) !important;
}

/* Services — closed initially, obvious affordance, independent vertical size. */
.service-grid {
  align-items: start;
}
.service-card {
  align-self: start;
  min-height: 410px;
}
.service-card details {
  width: 100%;
}
.service-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 0 8px;
  list-style: none;
  font-size: 1rem !important;
  line-height: 1.45 !important;
}
.service-card summary::-webkit-details-marker {
  display: none;
}
.service-card summary::after {
  flex: 0 0 auto;
  content: "Open +";
  color: var(--ink-muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.service-card details[open] summary::after {
  content: "Close −";
  color: var(--pink-deep);
}
.service-card details[open] summary {
  margin-bottom: 8px;
}
.service-card details:not([open]) ul {
  display: none;
}

/* Experts — Connected title and its explanatory content follow the same
   top-aligned two-column rhythm as the other section headers. */
.ecosystem-panel__heading {
  align-items: start !important;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 88px);
}
.ecosystem-panel__heading h2,
.ecosystem-panel__heading > p {
  margin-top: 0 !important;
  align-self: start;
}
.ecosystem-panel__heading > p {
  padding-top: 28px !important;
}
.ecosystem-panel__heading .eyebrow {
  margin-bottom: 12px;
}

/* The new wrapped Services header keeps the restored eyebrow and heading
   together in the left column. */
.services-ppt-challenges__header > div {
  align-self: start;
}
.services-ppt-challenges__header > div h2 {
  margin: 0;
  transform: translateY(-3px);
}

@media (max-width: 820px) {
  main h1,
  #hero-title,
  #about-title,
  #challenges-title,
  #experts-title,
  #experience-title,
  #contact-title {
    font-size: clamp(1.72rem, 7.6vw, 2.3rem) !important;
  }
  main h2 {
    font-size: clamp(1.42rem, 6vw, 1.86rem) !important;
  }
  main :where(p:not(.eyebrow):not(.network-disclaimer):not(.experience-note)),
  main li,
  main address {
    font-size: 1.03rem !important;
  }
  #about .section-heading--split > p {
    margin-left: 0 !important;
  }
  .services-ppt-challenges__header > div h2 {
    transform: none;
  }
  .ecosystem-panel__heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .ecosystem-panel__heading > p {
    padding-top: 0 !important;
  }
  .service-card {
    min-height: 0;
  }
}

/* Final specificity guard: v3 contains earlier !important readability rules.
   These selectors intentionally outrank them so the requested unified scale wins. */
body main p:not(.eyebrow) {
  font-size: 1.08rem !important;
  line-height: 1.72 !important;
}
body main li,
body main address {
  font-size: 1.08rem !important;
  line-height: 1.72 !important;
}
body main .professional-context-note p {
  font-size: 0.72rem !important;
  line-height: 1.55 !important;
}
body main p.network-disclaimer {
  font-size: 0.70rem !important;
  line-height: 1.55 !important;
}
body main p.experience-note {
  font-size: 0.82rem !important;
  line-height: 1.55 !important;
}
@media (min-width: 821px) {
  .ecosystem-panel__heading > p {
    margin-top: 28px !important;
    padding-top: 0 !important;
  }
}
@media (max-width: 820px) {
  body main p:not(.eyebrow),
  body main li,
  body main address {
    font-size: 1.03rem !important;
  }
  .ecosystem-panel__heading > p {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}

/* ==========================================================================
   September 7 2026 — v5 typography refinements requested by client
   ========================================================================== */

/* Major section headings: use one exact desktop scale across the site.
   The Experts ecosystem heading (“Connected to the…”) is intentionally
   excluded and therefore keeps its existing size. */
#hero-title,
#about-title,
#about-locations-title,
#about .value-panel__intro h3,
#challenges-title,
#services-title,
#licensing-title,
#experts-title,
#capability-title,
#experience-title,
#contact-title {
  font-size: 47.2px !important;
}

/* Experts — academic degree line beneath each featured person. */
body main .leadership-card__credentials {
  font-size: 14px !important;
}

/* Experience — exact case-study typography requested. */
body main .premium-case__headline h4 {
  font-size: 24px !important;
}
body main .premium-case__takeaway span {
  font-size: 17.3px !important;
}

/* Keep the exact 47.2px scale on larger layouts while preserving readable
   responsive sizing on narrow mobile screens. */
@media (max-width: 820px) {
  #hero-title,
  #about-title,
  #about-locations-title,
  #about .value-panel__intro h3,
  #challenges-title,
  #services-title,
  #licensing-title,
  #experts-title,
  #capability-title,
  #experience-title,
  #contact-title {
    font-size: clamp(30px, 8.7vw, 37px) !important;
  }
}
/* AlphaMed visual overrides exported from the v5 editor.
   Includes font-size and text-position adjustments. */
/* about.html */
html[data-page="about"] #primary-navigation > a:nth-of-type(2) {
  font-size: 18px !important;
}

/* experience.html */
html[data-page="experience"] div.premium-case-stage:nth-of-type(2) > div.premium-case-slides > article.premium-case.premium-case--stacked:nth-of-type(1) > div.premium-case__main > div.premium-case__headline:nth-of-type(1) > h4 {
  font-size: 24px !important;
}

/* experts.html */
html[data-page="experts"] section.section.section--white:nth-of-type(1) > div.container.leadership-grid:nth-of-type(2) > article.leadership-card.leadership-card--founder:nth-of-type(1) > div.leadership-card__head:nth-of-type(1) > div.leadership-card__identity:nth-of-type(2) > p.leadership-card__credentials:nth-of-type(2) {
  font-size: 14px !important;
}
html[data-page="experts"] section.section.section--white:nth-of-type(1) > div.container.leadership-grid:nth-of-type(2) > article.leadership-card.reveal--delay-1:nth-of-type(2) > div.leadership-card__head:nth-of-type(1) > div.leadership-card__identity:nth-of-type(2) > p.leadership-card__credentials:nth-of-type(2) {
  font-size: 14px !important;
}
html[data-page="experts"] section.section.section--white:nth-of-type(1) > div.container.leadership-grid:nth-of-type(2) > article.leadership-card.reveal--delay-2:nth-of-type(3) > div.leadership-card__head:nth-of-type(1) > div.leadership-card__identity:nth-of-type(2) > p.leadership-card__credentials:nth-of-type(2) {
  font-size: 14px !important;
}

/* services.html */
html[data-page="services"] #services-title {
  font-size: 47px !important;
}
