:root {
  --bg: #f4f7f4;
  --surface: #ffffff;
  --surface-muted: #e9efe9;
  --text: #13201e;
  --text-muted: #61706a;
  --line: rgba(19, 32, 30, 0.12);
  --accent: #155f66;
  --accent-dark: #123d45;
  --accent-green: #6e9b74;
  --accent-coral: #d96b4a;
  --accent-orange: #e8742f;
  --accent-orange-dark: #b95622;
  --accent-orange-soft: rgba(232, 116, 47, 0.14);
  --accent-ink: #1b2f3a;
  --max-width: 1180px;
  --radius-lg: 8px;
  --radius-md: 8px;
  --radius-sm: 6px;
  --shadow-soft: 0 18px 48px rgba(16, 36, 28, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", "Noto Serif SC", sans-serif;
  background:
    linear-gradient(90deg, rgba(19, 32, 30, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(19, 32, 30, 0.035) 1px, transparent 1px),
    var(--bg);
  background-size: 48px 48px, 48px 48px, auto;
  color: var(--text);
  line-height: 1.65;
}

body.locale-zh {
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

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

p,
h1,
h2,
h3,
h4,
figure,
ul {
  margin: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(244, 247, 244, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 44px;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 52px;
  height: auto;
  object-fit: contain;
}

.brand-text {
  font-size: 1.28rem;
  letter-spacing: 0.04em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav {
  display: inline-flex;
  gap: 26px;
  color: var(--text-muted);
  font-size: 0.95rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a,
.footer-links a,
.text-link {
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a.is-active,
.footer-links a:hover,
.text-link:hover {
  color: var(--accent-orange);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(232, 116, 47, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--accent-ink);
}

.language-toggle {
  display: inline-flex;
  padding: 3px;
  border: 1px solid rgba(232, 116, 47, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.lang-pill {
  min-width: 44px;
  min-height: 32px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.lang-pill.is-active {
  background: var(--accent-orange);
  color: #fff;
  box-shadow: 0 6px 18px rgba(232, 116, 47, 0.24);
}

.hero {
  position: relative;
}

.hero-cinematic {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--accent-ink);
}

.hero-bg,
.hero-cinematic picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-cinematic picture {
  z-index: 0;
}

.hero-bg {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.04);
  transform: scale(1.02);
}

.hero-cells {
  position: absolute;
  inset: -8%;
  z-index: 2;
  opacity: 0.62;
  filter: saturate(1.6) contrast(1.16);
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.48) 44%, rgba(0, 0, 0, 1));
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.48) 44%, rgba(0, 0, 0, 1));
  pointer-events: none;
  animation: heroCellsDrift 22s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 18, 20, 0.62), rgba(8, 18, 20, 0.4) 44%, rgba(8, 18, 20, 0.14)),
    linear-gradient(180deg, transparent 66%, rgba(244, 247, 244, 0.86));
}

.hero-stack {
  position: relative;
  z-index: 3;
  padding: 88px 0 72px;
  display: grid;
  gap: 42px;
}

@keyframes heroCellsDrift {
  from {
    transform: translate3d(-1.5%, -1%, 0) scale(1.02);
  }

  to {
    transform: translate3d(1.5%, 1%, 0) scale(1.06);
  }
}

.hero-copy {
  max-width: 760px;
  color: #fff;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--accent-orange);
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-copy .eyebrow {
  color: #ffbd85;
  margin-bottom: 18px;
  font-size: 1.08rem;
  font-weight: 800;
}

.hero h1 {
  font-size: 5rem;
  line-height: 1;
}

.hero-subtitle {
  max-width: 640px;
  margin-top: 22px;
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-text {
  max-width: 44rem;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.button-primary {
  background: var(--accent-orange);
  color: #fff;
}

.button-primary:hover {
  background: var(--accent-orange-dark);
}

.button-secondary {
  border-color: rgba(255, 186, 128, 0.58);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.page-hero .button-secondary,
.section .button-secondary,
.contact-box .button-secondary {
  border-color: rgba(232, 116, 47, 0.26);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
}

.section .button-secondary:hover {
  border-color: rgba(232, 116, 47, 0.56);
  background: rgba(255, 248, 240, 0.96);
}

.card .button-secondary {
  border-color: rgba(232, 116, 47, 0.32);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
}

.card .button-secondary:hover {
  border-color: rgba(232, 116, 47, 0.58);
  background: rgba(255, 248, 240, 0.96);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-proof span {
  padding: 16px 18px;
  color: #fff;
  font-weight: 700;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-proof span:last-child {
  border-right: 0;
}

.section {
  padding: 76px 0;
}

.section-muted {
  background: rgba(255, 255, 255, 0.48);
}

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

.section-heading h2 {
  max-width: 872px;
  font-size: 3rem;
  line-height: 1.12;
}

.section-heading.narrow h2 {
  max-width: 748px;
}

.page-hero {
  position: relative;
  min-height: 380px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.page-hero-bg,
.page-hero-overlay {
  position: absolute;
  inset: 0;
}

.page-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.98);
}

.page-hero-overlay {
  background:
    linear-gradient(180deg, rgba(8, 18, 20, 0.16), rgba(8, 18, 20, 0.38)),
    linear-gradient(90deg, rgba(8, 18, 20, 0.54), rgba(8, 18, 20, 0.2) 62%, rgba(8, 18, 20, 0.1));
}

.page-hero-copy {
  position: relative;
  z-index: 1;
  padding: 92px 0 56px;
  color: #fff;
}

.page-hero-copy h1 {
  max-width: 792px;
  font-size: 3rem;
  line-height: 1.12;
}

.page-hero-copy p:last-child {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
}

.intro-layout,
.lab-grid,
.pipeline-layout,
.science-layout,
.about-grid,
.ops-grid,
.contact-grid,
.detail-grid,
.two-column,
.news-toolbar {
  display: grid;
  gap: 28px;
}

.intro-layout,
.lab-grid,
.pipeline-layout,
.about-grid,
.science-layout,
.news-toolbar {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.intro-copy,
.section-copy,
.lab-copy,
.science-copy,
.team-feature-copy,
.expert-copy,
.expert-section p,
.card p,
.news-card p,
.contact-box p,
.person-card p,
.principle p,
.story-panel p {
  color: var(--text-muted);
}

.name-section {
  background: rgba(255, 255, 255, 0.34);
}

.name-grid,
.cards-grid,
.people-grid,
.news-grid,
.reference-grid,
.principles,
.metrics,
.leader-metrics,
.detail-grid,
.two-column,
.story-grid {
  display: grid;
  gap: 18px;
}

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

.reference-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.cards-grid,
.principles,
.metrics,
.leader-metrics,
.detail-grid,
.two-column,
.story-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.name-card,
.card,
.contact-box,
.leader-card,
.metric,
.principle,
.person-card,
.news-card,
.reference-card,
.team-feature,
.team-cta,
.story-panel,
.expert-summary,
.expert-section,
.highlight-band,
.reference-disclaimer,
.news-channel-note {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.name-card,
.card,
.metric,
.principle,
.story-panel,
.news-card,
.reference-card,
.expert-section {
  padding: 24px;
}

.reference-card {
  display: grid;
  gap: 12px;
  min-height: 300px;
}

.reference-card p {
  color: var(--text-muted);
}

.reference-disclaimer {
  padding: 24px;
  border-color: rgba(232, 116, 47, 0.28);
  background:
    linear-gradient(135deg, rgba(232, 116, 47, 0.12), rgba(21, 95, 102, 0.08)),
    var(--surface);
}

.reference-disclaimer p {
  color: var(--accent-ink);
  font-weight: 600;
}

.name-card {
  display: grid;
  gap: 12px;
  border-color: rgba(232, 116, 47, 0.24);
}

.name-card span {
  color: var(--accent-coral);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.name-card h3,
.card h3,
.principle h3,
.news-card h3,
.person-card h3 {
  font-size: 1.18rem;
}

.visual-lab {
  padding-top: 46px;
}

.lab-image {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid rgba(232, 116, 47, 0.26);
  border-radius: var(--radius-lg);
}

.lab-image img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.lab-image figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--accent-dark);
  border: 1px solid rgba(232, 116, 47, 0.28);
  font-weight: 700;
}

.lab-copy {
  align-self: center;
  display: grid;
  gap: 18px;
}

.capability-card {
  min-height: 420px;
  display: grid;
  grid-template-rows: 190px auto auto;
  gap: 12px;
  overflow: hidden;
}

.capability-card img {
  width: calc(100% + 48px);
  height: 190px;
  margin: -24px -24px 4px;
  object-fit: cover;
  background: var(--surface-muted);
}

.pipeline-section {
  background:
    linear-gradient(90deg, rgba(21, 95, 102, 0.09), transparent 1px),
    linear-gradient(180deg, rgba(21, 95, 102, 0.09), transparent 1px),
    #eef4ee;
  background-size: 34px 34px;
}

.pipeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.pipe-line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-orange));
}

.pipeline article {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 0 14px 14px;
}

.pipeline article span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent-orange);
  color: var(--accent-dark);
  font-weight: 700;
}

.team-feature {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
  padding: 34px;
  border-color: rgba(232, 116, 47, 0.24);
  background: rgba(255, 255, 255, 0.76);
}

.team-feature-copy {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.team-feature-copy h2,
.team-cta h2 {
  font-size: 2.5rem;
  line-height: 1.14;
}

.profile-photo {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  min-height: 180px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(232, 116, 47, 0.28);
  background:
    linear-gradient(135deg, rgba(21, 95, 102, 0.74), rgba(232, 116, 47, 0.72)),
    url("/assets/qureator/bio-bg-1.png");
  background-size: cover;
  color: #fff;
  overflow: hidden;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-photo span {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(19, 32, 30, 0.34);
  font-weight: 700;
}

.profile-photo-large {
  width: min(100%, 360px);
  min-height: 360px;
}

.profile-photo-large span {
  width: 104px;
  height: 104px;
  font-size: 1.25rem;
}

.profile-facts,
.news-tags,
.meta-tags,
.expert-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.profile-facts span,
.news-tags span,
.meta-tags span,
.expert-links a {
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(232, 116, 47, 0.3);
  background: rgba(232, 116, 47, 0.09);
  color: var(--accent-orange-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.expert-link-block {
  display: grid;
  gap: 10px;
}

.expert-links a {
  display: grid;
  gap: 4px;
  align-items: start;
}

.expert-links a small {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
}

.publication-meta {
  display: grid;
  gap: 4px;
  margin-top: 8px;
}

.publication-meta p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.person-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  min-height: 430px;
  padding: 20px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.person-card:hover,
.news-card:hover {
  border-color: rgba(232, 116, 47, 0.36);
  transform: translateY(-2px);
}

.person-card .profile-photo {
  min-height: 210px;
}

.person-kicker,
.contact-label,
.signal-label {
  margin-bottom: 8px;
  color: var(--accent-orange);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.team-cta,
.highlight-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-color: rgba(232, 116, 47, 0.24);
  background: rgba(255, 255, 255, 0.76);
}

.news-toolbar {
  align-items: center;
}

.news-toolbar h2 {
  font-size: 2.4rem;
  line-height: 1.12;
}

.news-tags {
  justify-content: flex-end;
}

.news-card {
  display: grid;
  gap: 14px;
  min-height: 320px;
}

.news-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.news-meta span {
  color: var(--accent-orange);
  font-weight: 700;
  text-transform: uppercase;
}

.source-link,
.text-link {
  align-self: end;
  color: var(--accent-orange-dark);
  font-weight: 700;
}

.metrics,
.leader-metrics {
  gap: 14px;
}

.metric strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-orange);
  font-size: 1.35rem;
}

.metric span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-box {
  padding: 34px;
}

.contact-grid {
  margin: 28px 0 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-list,
.bullet-list {
  padding-left: 18px;
  color: var(--text-muted);
}

.bullet-list li + li,
.contact-list li + li {
  margin-top: 8px;
}

.form-shell,
.form-intro {
  display: grid;
  gap: 18px;
}

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

.form-grid label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 600;
}

.form-grid .full-width {
  grid-column: 1 / -1;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(19, 32, 30, 0.16);
  border-radius: 14px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
  font: inherit;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form .button {
  margin-top: 18px;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-color: rgba(232, 116, 47, 0.56);
  box-shadow: 0 0 0 4px rgba(232, 116, 47, 0.12);
}

.form-note {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.sr-only-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr) auto;
  gap: 22px;
  align-items: start;
}

.footer-title {
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-text {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-links {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.about-signal {
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(21, 95, 102, 0.96), rgba(232, 116, 47, 0.9)),
    url("/assets/qureator/platform-pipe.png");
  background-size: cover;
  color: #fff;
}

.about-signal p {
  color: rgba(255, 255, 255, 0.84);
}

.book-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.book-strip span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(232, 116, 47, 0.08);
  border: 1px solid rgba(232, 116, 47, 0.24);
  color: var(--accent-orange-dark);
  font-size: 0.92rem;
}

.expert-shell {
  display: grid;
  gap: 28px;
}

.expert-summary {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 36px;
  padding: 34px;
}

.expert-copy {
  display: grid;
  gap: 16px;
}

.expert-copy h1 {
  font-size: 3rem;
  line-height: 1.08;
}

.expert-meta {
  color: var(--accent-orange-dark);
  font-weight: 700;
}

.news-channel-note {
  padding: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (max-width: 1080px) {
  .name-grid,
  .people-grid,
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero h1 {
    font-size: 4.2rem;
  }

  .section-heading h2,
  .page-hero-copy h1,
  .expert-copy h1 {
    font-size: 2.6rem;
  }
}

@media (max-width: 840px) {
  .header-inner {
    align-items: flex-start;
    padding: 14px 0;
  }

  .menu-toggle {
    display: inline-block;
  }

  .header-actions {
    gap: 10px;
    margin-left: auto;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 24px;
    left: 24px;
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-soft);
  }

  .menu-open .nav {
    display: flex;
  }

  .intro-layout,
  .lab-grid,
  .pipeline-layout,
  .science-layout,
  .about-grid,
  .news-toolbar,
  .team-feature,
  .team-cta,
  .highlight-band,
  .expert-summary,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-proof,
  .pipeline {
    grid-template-columns: 1fr;
  }

  .pipe-line {
    display: none;
  }

  .cards-grid,
  .principles,
  .metrics,
  .leader-metrics,
  .detail-grid,
  .two-column,
  .story-grid,
.reference-grid,
  .form-grid,
  .contact-grid,
  .name-grid,
  .people-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-items: start;
  }

  .team-feature,
  .team-cta,
  .highlight-band,
  .expert-summary,
  .contact-box,
  .news-channel-note {
    padding: 26px;
  }

  .lab-image,
  .lab-image img {
    min-height: 360px;
  }

  .capability-card {
    min-height: auto;
  }
}

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

  .hero-cinematic {
    min-height: auto;
  }

  .hero-stack {
    padding: 84px 0 56px;
  }

  .hero-copy,
  .page-hero-copy,
  .team-feature-copy,
  .expert-copy {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-subtitle {
    font-size: 1.12rem;
  }

  .hero-proof span {
    padding: 14px 16px;
  }

  .section,
  .page-hero-copy {
    padding-top: 64px;
    padding-bottom: 44px;
  }

  .page-hero {
    min-height: 300px;
  }

  .section-heading h2,
  .page-hero-copy h1,
  .expert-copy h1,
  .team-feature-copy h2,
  .team-cta h2 {
    font-size: 2.1rem;
  }

  .button,
  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .person-card,
  .news-card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .brand-mark {
    width: 46px;
    height: 40px;
  }

  .brand-mark img {
    width: 46px;
  }

  .brand-text {
    font-size: 1.08rem;
  }

  .header-inner {
    gap: 14px;
  }

  .nav {
    right: 12px;
    left: 12px;
  }

  .language-toggle {
    min-height: 38px;
  }

  .lang-pill {
    min-width: 48px;
    min-height: 34px;
    padding: 0 10px;
  }

  .hero-stack {
    padding: 72px 0 48px;
    gap: 28px;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero-subtitle {
    margin-top: 18px;
    font-size: 1rem;
  }

  .hero-text {
    margin-top: 14px;
    font-size: 0.98rem;
  }

  .section-heading h2,
  .page-hero-copy h1,
  .expert-copy h1,
  .team-feature-copy h2,
  .team-cta h2 {
    font-size: 1.8rem;
  }

  .page-hero-copy {
    padding-top: 72px;
    padding-bottom: 36px;
  }

  .page-hero-copy p:last-child {
    font-size: 0.96rem;
  }

  .name-card,
  .card,
  .metric,
  .principle,
  .story-panel,
  .news-card,
.reference-card,
  .expert-section,
  .team-feature,
  .team-cta,
  .highlight-band,
  .expert-summary,
  .contact-box,
.reference-disclaimer,
  .news-channel-note {
    padding: 20px;
  }

  .profile-photo-large {
    min-height: 280px;
  }

  .lab-image,
  .lab-image img {
    min-height: 280px;
  }

  .capability-card img {
    height: 170px;
  }

  .hero-proof span {
    font-size: 0.94rem;
  }
}
