:root {
  --black: #08111f;
  --navy: #13233a;
  --navy-2: #1c3553;
  --white: #ffffff;
  --paper: #f7f9fc;
  --ink: #07111f;
  --muted: #627085;
  --crimson: #d11236;
  --crimson-soft: rgba(209, 18, 54, 0.14);
  --glass: rgba(255, 255, 255, 0.72);
  --line: rgba(8, 17, 31, 0.12);
  --font-display: "Satoshi", "General Sans", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; background: var(--paper); }
body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 6%, rgba(209, 18, 54, 0.13), transparent 28rem),
    radial-gradient(circle at 10% 16%, rgba(50, 108, 185, 0.13), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #eef3f9 42%, #ffffff 100%);
  color: var(--ink);
  font-family: var(--font-body);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
::selection { background: var(--crimson); color: white; }

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: #f8fbff;
  pointer-events: none;
}
.loader__mark {
  width: min(440px, 78vw);
  text-align: center;
  color: #5f6b7b;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.loader path {
  fill: none;
  stroke: var(--crimson);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 18px rgba(209, 18, 54, 0.8));
}

#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.38;
  pointer-events: none;
}
.cursor-pulse {
  position: fixed;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(209, 18, 54, 0.75);
  border-radius: 999px;
  pointer-events: none;
  z-index: 20;
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
}
.ambient {
  position: fixed;
  width: 36rem;
  height: 36rem;
  z-index: 0;
  border-radius: 999px;
  filter: blur(92px);
  pointer-events: none;
  opacity: 0.18;
}
.ambient-one { top: 8%; right: -8%; background: var(--crimson); }
.ambient-two { bottom: 12%; left: -10%; background: #1f6fff; }

.section-shell { position: relative; z-index: 1; padding: 7rem 0; }
.content-wrap { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }
.section-heading { max-width: 830px; margin-bottom: 3rem; }
.section-heading h2,
.impact-story h2,
.pulse-grid h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.4vw, 5.7rem);
  line-height: 0.94;
  letter-spacing: 0;
}
.eyebrow {
  color: var(--crimson);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  font-size: 0.74rem;
}

.top-nav {
  position: absolute;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 2rem));
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(22px);
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(19, 35, 58, 0.08);
}
.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--ink);
  transition: transform 0.25s ease;
}
.brand:hover {
  transform: translateY(-1px);
}
.brand-name {
  width: auto;
  padding: 0 0.25rem;
}
.brand-logo {
  width: clamp(168px, 18vw, 230px);
  height: auto;
  max-height: 34px;
  object-fit: contain;
}
.nav-links { display: flex; gap: 1.35rem; color: #41506a; font-size: 0.88rem; }
.nav-links a { transition: color 0.25s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-call {
  position: relative;
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 0.35rem 0.72rem;
  align-items: center;
  min-height: 48px;
  padding: 0.56rem 1.18rem 0.56rem 1rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 20% 16%, rgba(255, 255, 255, 0.24), transparent 1.65rem),
    linear-gradient(135deg, #c44947 0%, #b33c3b 54%, #8f292b 100%);
  color: white;
  border: 1px solid rgba(179, 60, 59, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 16px 38px rgba(179, 60, 59, 0.22);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.nav-call::before {
  content: "";
  grid-row: 1 / span 2;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.08);
}
.nav-call::after {
  content: "";
  position: absolute;
  left: 1.68rem;
  top: 50%;
  width: 0.58rem;
  height: 0.58rem;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -56%) rotate(-45deg);
}
.nav-call-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}
.nav-call strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.045em;
}
.nav-call:hover {
  transform: translateY(-2px);
  filter: saturate(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 20px 46px rgba(179, 60, 59, 0.3);
}

.hero { display: grid; align-items: center; overflow: hidden; padding-top: 9rem; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.78fr);
  gap: 4rem;
  align-items: center;
}
.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9.8rem);
  line-height: 0.82;
  letter-spacing: 0;
}
.hero-subtitle {
  margin: 1.3rem 0 0;
  color: #13233a;
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  font-weight: 700;
}
.hero-subtitle span { color: var(--ink); text-shadow: 0 0 24px var(--crimson-soft); }
.rotator {
  position: relative;
  height: 2rem;
  margin-top: 1rem;
  color: var(--crimson);
  font-weight: 800;
  font-size: clamp(1rem, 2vw, 1.4rem);
}
.rotator span {
  position: absolute;
  inset: 0 auto auto 0;
  opacity: 0;
}
.hero-lede {
  max-width: 650px;
  margin: 1.6rem 0 0;
  color: #56667b;
  font-size: 1.06rem;
  line-height: 1.8;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0 1.3rem;
  border-radius: 999px;
  font-weight: 800;
}
.button-primary {
  background: var(--ink);
  color: white;
  box-shadow: 0 18px 40px rgba(8, 17, 31, 0.18);
}
.button-secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
}

.hero-portrait { position: relative; min-height: 620px; display: grid; place-items: center; }
.hero-portrait img {
  width: min(430px, 86vw);
  aspect-ratio: 0.84;
  object-fit: cover;
  object-position: center;
  border-radius: 34px;
  border: 1px solid rgba(8, 17, 31, 0.16);
  box-shadow: 0 42px 120px rgba(20, 35, 58, 0.18), 0 0 90px rgba(209, 18, 54, 0.14);
  filter: saturate(0.95) contrast(1.08);
}
.portrait-orbit {
  position: absolute;
  width: 510px;
  max-width: 96vw;
  aspect-ratio: 1;
  border: 1px solid rgba(8,17,31,0.14);
  border-radius: 50%;
  box-shadow: inset 0 0 60px rgba(209, 18, 54, 0.12);
}
.floating-card {
  position: absolute;
  width: 190px;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(22px);
  box-shadow: 0 20px 70px rgba(19, 35, 58, 0.16);
}
.floating-card span { font-size: 1.55rem; font-weight: 900; }
.floating-card p { margin: 0.35rem 0 0; color: var(--muted); font-size: 0.8rem; line-height: 1.45; }
.card-one { top: 8%; right: 0; }
.card-two { left: 0; bottom: 18%; }
.card-three { right: 4%; bottom: 5%; }
.ecg-bg {
  position: absolute;
  inset: 16% -8% auto;
  opacity: 0.16;
  pointer-events: none;
}
.ecg-line {
  fill: none;
  stroke: var(--crimson);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.stat-card,
.expertise-grid article,
.publication,
.awards-grid article {
  min-width: 0;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,0.86), rgba(246,249,253,0.62));
  backdrop-filter: blur(22px);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(19, 35, 58, 0.08);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.stat-card:hover,
.expertise-grid article:hover,
.publication:hover,
.awards-grid article:hover {
  transform: translateY(-8px);
  border-color: rgba(209, 18, 54, 0.6);
}
.stat-card { min-height: 190px; padding: 1.25rem; display: flex; flex-direction: column; justify-content: flex-end; }
.counter { font-size: clamp(2.7rem, 4.7vw, 5rem); font-family: var(--font-display); font-weight: 900; line-height: 0.95; }
.stat-card p { color: var(--muted); margin: 0.75rem 0 0; }

.timeline-rail {
  position: relative;
  max-width: 900px;
  margin-left: auto;
}
.timeline-rail::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1rem;
  width: 1px;
  background: linear-gradient(var(--crimson), rgba(8,17,31,0.12));
}
.timeline-item {
  position: relative;
  margin-bottom: 1.1rem;
  padding: 1.5rem 1.5rem 1.5rem 4rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 56px rgba(19, 35, 58, 0.07);
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 0.66rem;
  top: 1.85rem;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: var(--crimson);
  box-shadow: 0 0 22px rgba(209, 18, 54, 0.9);
}
.timeline-item time { color: var(--crimson); font-weight: 900; }
.timeline-item h3 { margin: 0.45rem 0; font-size: 1.35rem; }
.timeline-item p { margin: 0; color: #5d6c81; line-height: 1.7; }

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.expertise-grid article { min-height: 260px; padding: 1.3rem; display: flex; flex-direction: column; justify-content: space-between; }
.expertise-grid span { color: var(--crimson); font-weight: 900; }
.expertise-grid h3 { margin: 0; font-size: 1.7rem; }
.expertise-grid p { margin: 1rem 0 0; color: var(--muted); line-height: 1.65; }

.recognition-stage {
  display: grid;
  grid-template-columns: 1.2fr 0.45fr 0.9fr;
  gap: 1rem;
  align-items: stretch;
}
.showcase-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 24px 70px rgba(19, 35, 58, 0.1);
}
.showcase-card img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; transition: transform 0.6s ease; }
.showcase-card:hover img { transform: scale(1.055); }
.showcase-card figcaption { padding: 1rem; color: #55657a; }
.conference-tags { display: grid; gap: 0.75rem; }
.conference-tags span {
  display: grid;
  place-items: center;
  min-height: 72px;
  border: 1px solid var(--line);
  border-radius: 18px;
  font-size: 1.55rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 54px rgba(19, 35, 58, 0.08);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.publication { min-height: 250px; padding: 1.35rem; display: flex; flex-direction: column; justify-content: space-between; }
.publication.featured { grid-column: span 2; background: linear-gradient(135deg, rgba(209,18,54,0.13), rgba(255,255,255,0.88)); }
.publication p { color: var(--crimson); font-weight: 800; margin: 0; }
.publication h3 { font-size: 1.35rem; line-height: 1.28; margin: 1rem 0; overflow-wrap: anywhere; }
.publication a { color: var(--ink); border-bottom: 1px solid rgba(209,18,54,0.7); width: max-content; max-width: 100%; overflow-wrap: anywhere; }

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.awards-grid article { min-height: 190px; padding: 1.25rem; display: flex; flex-direction: column; justify-content: space-between; }
.awards-grid strong { font-size: 2.2rem; font-family: var(--font-display); }
.awards-grid span { color: var(--muted); line-height: 1.5; }
.award-photo { margin: 1rem 0 0; overflow: hidden; border-radius: 24px; border: 1px solid var(--line); max-height: 520px; }
.award-photo img { width: 100%; height: 100%; object-fit: cover; }
.honors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.honor-card,
.press-lead,
.press-tile,
.broadcast-card,
.gallery-panel {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,0.8);
  cursor: zoom-in;
  box-shadow: 0 22px 70px rgba(19, 35, 58, 0.09);
}
.honor-card img,
.press-lead img,
.press-tile img,
.broadcast-card img,
.gallery-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}
.honor-card { height: 250px; }
.honor-card:hover img,
.press-lead:hover img,
.press-tile:hover img,
.broadcast-card:hover img,
.gallery-panel:hover img {
  transform: scale(1.055);
  filter: saturate(1.05) contrast(1.02);
}
.honor-card span,
.press-lead span,
.press-tile span,
.broadcast-card span,
.gallery-panel span {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  display: inline-flex;
  width: max-content;
  max-width: calc(100% - 1.7rem);
  padding: 0.48rem 0.72rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(8,17,31,0.16);
}

.press {
  overflow: hidden;
}
.press-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 3rem;
}
.press-lead {
  height: clamp(520px, 62vw, 760px);
  background: #fff;
}
.press-lead img {
  object-fit: contain;
  padding: 0.6rem;
  background: white;
}
.press-copy {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.3rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 12%, rgba(209,18,54,0.14), transparent 15rem),
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(238,243,249,0.72));
  box-shadow: 0 22px 70px rgba(19, 35, 58, 0.09);
}
.press-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.98;
}
.press-copy p:not(.eyebrow) {
  margin: 1.2rem 0 0;
  color: #526379;
  line-height: 1.75;
}
.press-subhead {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 1rem;
  padding-top: 0.5rem;
}
.press-subhead h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2.7rem);
  line-height: 1.05;
}
.broadcast-heading { margin-top: 3rem; }
.press-archive {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.press-tile {
  height: 330px;
  background: white;
}
.press-tile img {
  object-fit: contain;
  padding: 0.45rem;
  background: white;
}
.broadcast-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.broadcast-card {
  height: 340px;
}
.broadcast-card img {
  object-fit: cover;
}

.impact-story {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 3rem;
  align-items: start;
}
.impact-copy {
  display: grid;
  gap: 1rem;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.65;
  color: #526379;
}
.impact-copy p {
  margin: 0;
  padding: 1.15rem;
  border-left: 2px solid var(--crimson);
  background: rgba(255,255,255,0.72);
  box-shadow: 0 14px 44px rgba(19, 35, 58, 0.07);
}

.gallery-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 1rem;
}
.gallery-panel {
  height: 100%;
}
.gallery-panel-main {
  grid-row: span 2;
}
.gallery-panel-main img {
  object-position: center;
}

.pulse-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 3rem;
  align-items: center;
}
.pulse-grid p:not(.eyebrow) { color: var(--muted); line-height: 1.8; max-width: 560px; }
.heart-system {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: radial-gradient(circle, rgba(209,18,54,0.12), rgba(255,255,255,0.74) 42%, rgba(238,243,249,0.28) 70%);
  box-shadow: 0 24px 80px rgba(19, 35, 58, 0.09);
  overflow: hidden;
}
.heart-system svg { width: min(520px, 90%); filter: drop-shadow(0 0 25px rgba(209,18,54,0.38)); }
.heart-path {
  fill: rgba(209, 18, 54, 0.06);
  stroke: rgba(8,17,31,0.18);
  stroke-width: 2;
}
.heart-ecg {
  fill: none;
  stroke: var(--crimson);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.heart-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 14px rgba(209, 18, 54, 0.95);
}

.premium-footer {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 8%, rgba(209, 18, 54, 0.08), transparent 22rem),
    radial-gradient(circle at 12% 76%, rgba(50, 108, 185, 0.08), transparent 24rem),
    rgba(255,255,255,0.72);
}
.footer-wrap {
  display: grid;
  gap: 2rem;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
}
.premium-footer h2 { margin: 0 0 0.35rem; font-family: var(--font-display); font-size: 2rem; }
.premium-footer p,
.footer-contact { color: var(--muted); }
.footer-contact { display: grid; gap: 0.45rem; text-align: right; }
.footer-contact a:hover { color: var(--ink); }
.clinic-footer {
  display: grid;
  grid-template-columns: 1fr 1.25fr 0.65fr;
  gap: 0.85rem;
}
.clinic-block {
  position: relative;
  min-height: 142px;
  padding: 1.4rem 1.45rem;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: stretch;
  align-items: start;
  overflow: hidden;
  border: 1px solid rgba(8, 17, 31, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(247, 249, 252, 0.74));
  box-shadow: 0 18px 52px rgba(19, 35, 58, 0.08);
}
.clinic-block::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--crimson);
  opacity: 0.78;
}
.clinic-block span {
  position: relative;
  display: block;
  min-height: 1.95rem;
  margin-bottom: 0.55rem;
  color: var(--crimson);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}
.clinic-block p,
.clinic-block a {
  position: relative;
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.45;
}
.clinic-timing {
  background:
    radial-gradient(circle at 94% 20%, rgba(209, 18, 54, 0.1), transparent 9rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(238, 243, 249, 0.82));
}
.clinic-timing::before {
  background: linear-gradient(180deg, var(--crimson), rgba(209, 18, 54, 0.32));
}
.clinic-appointment {
  background:
    radial-gradient(circle at 70% 18%, rgba(209, 18, 54, 0.12), transparent 7rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(247, 249, 252, 0.78));
  text-align: center;
}
.clinic-appointment a {
  color: var(--crimson);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 2.1rem);
  letter-spacing: 0.04em;
}
.clinic-appointment a:hover {
  color: var(--ink);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(0,0,0,0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.active { opacity: 1; pointer-events: auto; }
.lightbox img { max-height: 88vh; border-radius: 18px; box-shadow: 0 30px 90px rgba(0,0,0,0.7); }
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 980px) {
  .hero-grid,
  .recognition-stage,
  .impact-story,
  .pulse-grid { grid-template-columns: 1fr; }
  .hero-portrait { min-height: 560px; }
  .stats-grid,
  .expertise-grid,
  .journal-grid,
  .awards-grid,
  .honors-grid,
  .press-archive { grid-template-columns: repeat(2, 1fr); }
  .press-editorial,
  .gallery-showcase { grid-template-columns: 1fr; }
  .press-lead,
  .press-copy { min-height: 420px; }
  .gallery-showcase { grid-template-rows: auto; }
  .gallery-panel,
  .gallery-panel-main { height: 380px; grid-row: auto; }
  .publication.featured { grid-column: span 2; }
  .conference-tags { grid-template-columns: repeat(3, 1fr); }
  .clinic-footer { grid-template-columns: 1fr; }
  .clinic-block { min-height: 112px; }
  .clinic-appointment { text-align: left; }
  .nav-links { display: none; }
}

@media (max-width: 640px) {
  .section-shell { padding: 5rem 0; }
  .hero { padding-top: 7rem; }
  .hero-title { font-size: clamp(3.3rem, 18vw, 5rem); }
  .hero-portrait { min-height: 500px; }
  .floating-card { position: relative; inset: auto; width: 100%; margin-top: 0.75rem; }
  .hero-portrait { display: block; }
  .hero-portrait img { margin: 0 auto; }
  .portrait-orbit { display: none; }
  .stats-grid,
  .expertise-grid,
  .journal-grid,
  .awards-grid,
  .honors-grid,
  .press-archive,
  .broadcast-grid,
  .conference-tags { grid-template-columns: 1fr; }
  .brand-name { min-height: 38px; padding: 0; }
  .brand-logo { width: clamp(138px, 38vw, 172px); max-height: 28px; }
  .top-nav { padding: 0.7rem 0.8rem; }
  .nav-call {
    grid-template-columns: auto;
    min-height: 40px;
    padding: 0.58rem 0.86rem;
  }
  .nav-call::before,
  .nav-call::after,
  .nav-call-label { display: none; }
  .nav-call strong { font-size: 0.78rem; letter-spacing: 0.01em; }
  .press-lead,
  .press-copy,
  .press-tile,
  .broadcast-card,
  .gallery-panel { height: auto; min-height: 320px; }
  .publication.featured { grid-column: auto; }
  .showcase-card img { min-height: 280px; }
  .footer-grid { display: grid; }
  .footer-contact { text-align: left; }
  .clinic-block { padding: 1.15rem; }
  .cursor-pulse { display: none; }
}

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