:root {
  --bg: #f6f8fa;
  --surface: #ffffff;
  --surface-2: #eef5f7;
  --ink: #17212b;
  --muted: #61707c;
  --line: #d8e3e8;
  --blue: #2f86a1;
  --blue-soft: #dff1f6;
  --sand: #e8dfcf;
  --sand-soft: #f5efe4;
  --graphite: #25313a;
  --shadow: 0 24px 70px rgb(27 43 55 / 11%);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 1180px;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

a {
  color: inherit;
}

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

p {
  color: var(--muted);
  line-height: 1.58;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto minmax(160px, 1fr);
  align-items: center;
  gap: 28px;
  height: 76px;
  padding: 0 42px;
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 92%);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 56px;
  height: 50px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-mark--med img {
  transform: translateY(-3px) scale(.86);
  transform-origin: center center;
}

.brand-mark--building img {
  transform: translateY(2px) scale(1.06);
  transform-origin: center center;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.top-nav {
  display: flex;
  gap: 4px;
  padding: 0;
  border: 0;
  background: transparent;
}

.top-nav a,
.language-switch button {
  min-height: 36px;
  padding: 8px 14px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.005em;
  transition: color .15s;
}

.top-nav a:hover,
.language-switch button:not(.active):hover {
  color: var(--ink);
}

.top-nav a[aria-current="page"] {
  color: var(--ink);
  background: transparent;
  box-shadow: inset 0 -2px 0 var(--blue);
}

.language-switch {
  justify-self: end;
  display: flex;
  gap: 4px;
}

.language-switch button.active {
  color: var(--ink);
  background: transparent;
  box-shadow: inset 0 -2px 0 var(--blue);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(520px, .85fr) minmax(620px, 1fr);
  align-items: center;
  gap: 64px;
  min-height: 690px;
  padding: 64px 86px 70px;
}

.hero-copy h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: 96px;
  line-height: .9;
  letter-spacing: -.055em;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 32px;
  color: #53636f;
  font-size: 24px;
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  gap: 12px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 12px;
  font-weight: 850;
  text-decoration: none;
}

.primary-action {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 18px 34px rgb(47 134 161 / 20%);
}

.primary-action:hover {
  background: #24758d;
}

.secondary-action {
  border: 1px solid var(--line);
  background: var(--surface);
}

.hero-workstation {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.workstation-top,
.workstation-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.workstation-top span {
  padding: 8px 11px;
  border-radius: 999px;
  background: #f4f7f8;
}

.workstation-top span:first-child {
  background: var(--blue-soft);
  color: var(--blue);
}

.workstation-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 18px;
  min-height: 420px;
  padding: 20px;
  background: #fbfcfd;
}

.slide-preview {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.slide-preview img {
  width: 112%;
  max-width: none;
  opacity: .92;
}

.annotation-dot {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 7px rgb(47 134 161 / 16%);
}

.dot-a {
  left: 42%;
  top: 53%;
}

.dot-b {
  right: 28%;
  top: 39%;
  background: #b78372;
  box-shadow: 0 0 0 7px rgb(183 131 114 / 16%);
}

.annotation-line {
  position: absolute;
  height: 1px;
  background: rgb(23 33 43 / 25%);
}

.line-a {
  left: 44%;
  top: 55%;
  width: 32%;
  transform: rotate(-9deg);
}

.line-b {
  right: 30%;
  top: 42%;
  width: 24%;
  transform: rotate(12deg);
}

.preview-inspector {
  align-self: stretch;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.preview-inspector small {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.preview-inspector strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.1;
}

.preview-inspector p {
  font-size: 15px;
}

.workstation-bottom {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.workstation-bottom div {
  display: flex;
  gap: 7px;
}

.workstation-bottom span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
}

.workstation-bottom span.active {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.workstation-bottom p {
  margin: 0;
  font-size: 13px;
}

.institute-strip,
.project-section,
.workflow-section {
  padding: 76px 86px;
}

.institute-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.institute-strip article,
.workflow-grid article {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fbfcfd;
}

.institute-strip span,
.workflow-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.institute-strip p {
  margin: 0;
  color: var(--graphite);
  font-size: 19px;
}

.project-section {
  display: grid;
  grid-template-columns: 370px minmax(0, 1fr);
  gap: 72px;
  align-items: start;
  background: var(--bg);
}

.section-heading h2,
.workflow-section h2 {
  margin: 0;
  font-size: 58px;
  line-height: .96;
  letter-spacing: -.035em;
}

.project-full-text {
  padding: 42px 48px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 18px 42px rgb(27 43 55 / 6%);
}

.project-full-text p {
  color: var(--ink);
  font-size: 23px;
  line-height: 1.62;
}

.project-full-text p:last-child {
  margin-bottom: 0;
}

.workflow-section {
  display: grid;
  grid-template-columns: 410px minmax(0, 1fr);
  gap: 60px;
  background: var(--surface);
}

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

.workflow-grid h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.workflow-grid p {
  margin-bottom: 0;
}

.atlas-body {
  height: 100vh;
  min-width: 1180px;
  background: var(--bg);
  overflow: hidden;
}

.atlas-header {
  position: relative;
  height: 44px;
  grid-template-columns: minmax(180px, auto) 1fr auto;
  gap: 16px;
  padding: 0 16px;
}

.atlas-header .brand {
  gap: 0;
}

.atlas-header .brand-mark,
.atlas-header .brand small {
  display: none;
}

.atlas-header .brand strong {
  font-size: 13px;
}

.atlas-header .top-nav {
  justify-self: center;
}

.atlas-header .top-nav a,
.atlas-header .language-switch button {
  min-height: 30px;
  padding: 6px 10px;
  font-size: 12px;
}

.atlas-main {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 8px;
  height: calc(100vh - 44px);
  padding: 8px;
  overflow: hidden;
}

.atlas-intro {
  display: none;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  align-items: center;
  column-gap: 48px;
  margin-bottom: 16px;
  padding: 18px 0 18px;
  border-bottom: 1px solid var(--line);
}

.atlas-intro .eyebrow {
  margin: 0 0 6px;
}

.atlas-intro h1 {
  margin: 0;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.atlas-intro p:last-child {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.stage-map,
.bone-browser,
.viewer-area,
.inspector-panel {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
}

.stage-map {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 48px;
  margin-bottom: 0;
  padding: 8px 10px;
}

.stage-map-head,
.browser-head,
.block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.stage-map-head {
  margin-bottom: 0;
}

.stage-map h2,
.browser-head h2,
.viewer-toolbar h2,
.inspector-panel h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: 0;
}

.stage-map .eyebrow {
  display: none;
}

.stage-map h2 {
  font-size: 14px;
  white-space: nowrap;
}

.stage-map output,
.browser-head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 14px;
  border: 1px solid rgb(47 134 161 / 24%);
  border-radius: 0;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -.005em;
}

.atlas-body .browser-head {
  gap: 8px;
}

.atlas-body .browser-head .eyebrow {
  margin-bottom: 4px;
  font-size: 10px;
}

.atlas-body .browser-head h2 {
  font-size: 16px;
}

.atlas-body .browser-head span {
  min-height: 24px;
  padding: 4px 9px;
  font-size: 11px;
}

.stage-rail {
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(130px, 1fr);
  align-items: center;
  gap: 12px;
  padding: 0;
}

.stage-picker {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 32px;
  align-items: end;
  gap: 6px;
}

.stage-select {
  display: grid;
  gap: 6px;
}

.stage-select span {
  display: none;
}

.stage-select select {
  width: 100%;
  min-height: 32px;
  padding: 6px 32px 6px 10px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.stage-step {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.stage-step:hover {
  border-color: rgb(47 134 161 / 48%);
  background: var(--blue-soft);
  color: var(--blue);
}

.stage-step:disabled {
  cursor: default;
  opacity: .42;
}

.stage-step:disabled:hover {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.stage-meter {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 32px;
  padding-right: 54px;
}

.stage-meter::before {
  content: "";
  position: absolute;
  left: 0;
  right: 54px;
  top: 50%;
  height: 2px;
  background: var(--line);
  transform: translateY(-50%);
}

.stage-meter span {
  position: relative;
  z-index: 1;
  display: block;
  height: 2px;
  background: var(--blue);
}

.stage-meter em {
  position: absolute;
  right: 0;
  top: 50%;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  transform: translateY(-50%);
}

.stage-node {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: var(--muted);
  text-align: left;
  transition: border-color .15s, background .15s, color .15s;
}

.stage-node i {
  display: grid;
  flex: 0 0 auto;
  width: 58px;
  height: 44px;
  place-items: center;
  border: 1px solid rgb(47 134 161 / 24%);
  border-radius: 0;
  background: var(--blue-soft);
  color: var(--blue);
  font-style: normal;
  font-size: 14px;
  font-weight: 900;
}

.stage-node span {
  display: grid;
  gap: 4px;
}

.stage-node strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.stage-node em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.stage-node:hover {
  border-color: rgb(47 134 161 / 45%);
  background: #f8fbfc;
}

.stage-node.active {
  color: var(--ink);
  border-color: rgb(47 134 161 / 52%);
  background: #eef8fb;
}

.stage-node.active i {
  background: var(--blue);
  color: #fff;
}

.atlas-workbench {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 8px;
  align-items: stretch;
  min-height: 0;
  height: 100%;
}

.bone-browser,
.inspector-panel {
  overflow: visible;
  padding: 20px;
}

.atlas-body .inspector-panel {
  display: none;
}

.atlas-body .bone-browser {
  height: 100%;
  min-height: 0;
  overflow: auto;
  padding: 10px;
}

.bone-list,
.structure-list {
  display: grid;
  gap: 10px;
}

.region-list {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}

.region-item {
  width: 100%;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fbfcfd;
  color: var(--ink);
  text-align: left;
}

.region-item:hover,
.region-item.active {
  border-color: rgb(47 134 161 / 55%);
  background: #eaf7fa;
}

.region-item:disabled {
  cursor: not-allowed;
  opacity: .48;
}

.region-item strong,
.region-item span,
.region-item em {
  display: block;
}

.region-item strong {
  font-size: 13px;
}

.region-item span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.region-item em {
  margin-top: 6px;
  color: var(--blue);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.catalog-back {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 4px 0;
  border: 0;
  background: transparent;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
  transition: color .15s;
}

.catalog-back:hover {
  color: var(--ink);
}

.catalog-view-title {
  display: grid;
  gap: 4px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.catalog-view-title strong {
  display: block;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -.01em;
}

.catalog-view-title span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .01em;
}

.slide-subcatalog {
  display: grid;
  gap: 6px;
}

.subcatalog-title {
  display: grid;
  gap: 4px;
  padding: 2px 2px 4px;
}

.subcatalog-title span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.subcatalog-title strong {
  font-size: 18px;
  line-height: 1.15;
}

.empty-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.bone-item,
.structure-item {
  width: 100%;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
  color: var(--ink);
  text-align: left;
}

.bone-item:hover,
.bone-item.active,
.structure-item:hover,
.structure-item.active {
  border-color: rgb(47 134 161 / 48%);
  background: #f0f8fa;
}

.bone-item:disabled {
  cursor: not-allowed;
  opacity: .58;
}

.bone-item:disabled:hover {
  border-color: var(--line);
  background: var(--surface);
}

.bone-item strong,
.bone-item span,
.structure-item strong,
.structure-item span {
  display: block;
}

.bone-item span,
.structure-item span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.meta-row {
  cursor: default;
}

.meta-row:hover {
  border-color: var(--line);
  background: var(--surface);
}

.viewer-area {
  display: grid;
  grid-template-rows: 46px minmax(0, 1fr) 32px;
  min-height: 0;
  height: 100%;
  overflow: hidden;
}

.viewer-toolbar,
.viewer-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 12px;
}

.viewer-toolbar {
  border-bottom: 1px solid var(--line);
}

.atlas-body .viewer-toolbar .eyebrow {
  display: none;
}

.atlas-body .viewer-toolbar h2 {
  font-size: 18px;
}

.tool-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tool-buttons button {
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.tool-buttons button {
  display: inline-grid;
  min-width: 32px;
  place-items: center;
  padding: 6px;
}

.tool-buttons svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.tool-buttons button:hover,
.tool-buttons button.active {
  border-color: rgb(47 134 161 / 48%);
  background: var(--blue-soft);
  color: var(--blue);
}

.tool-buttons button:disabled {
  cursor: default;
  opacity: .45;
}

.tool-buttons button:disabled:hover {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.scan-stage {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #f7fafb;
}

.deepzoom-viewer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  background: #f7fafb;
  touch-action: none;
}

.deepzoom-viewer.is-hidden {
  display: none;
}

.deepzoom-viewer.is-empty::after {
  content: attr(data-message);
  position: absolute;
  left: 50%;
  top: 50%;
  color: #fff;
  font-weight: 850;
  transform: translate(-50%, -50%);
}

.deepzoom-viewer.is-rotating,
.deepzoom-viewer.is-rotating * {
  cursor: grabbing !important;
}

.openseadragon-canvas:focus {
  outline: none;
}

.navigator {
  right: 12px !important;
  bottom: 12px !important;
  width: 170px !important;
  height: 92px !important;
  border: 1px solid rgb(255 255 255 / 58%) !important;
  background: rgb(255 255 255 / 18%) !important;
  opacity: .72 !important;
  transition: opacity .15s;
}

.navigator:hover {
  opacity: .95 !important;
}

.scale-bar {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 8;
  min-width: 116px;
  padding: 6px 10px 8px;
  border: 1px solid rgb(255 255 255 / 46%);
  border-radius: 6px;
  background: rgb(72 76 80 / 72%);
  color: #fff;
  box-shadow: 0 8px 20px rgb(20 35 45 / 18%);
  pointer-events: none;
}

.scale-bar.is-hidden {
  display: none;
}

.scale-bar span {
  display: block;
  margin-bottom: 2px;
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  text-shadow: 0 1px 1px rgb(0 0 0 / 24%);
}

.scale-bar i {
  position: relative;
  display: block;
  height: 13px;
  width: 112px;
  margin: 0 auto;
  border-right: 1px solid rgb(255 255 255 / 86%);
  border-bottom: 2px solid rgb(255 255 255 / 88%);
  border-left: 1px solid rgb(255 255 255 / 86%);
}

.scale-bar i::before,
.scale-bar i::after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 1px;
  height: 7px;
  background: rgb(255 255 255 / 78%);
}

.scale-bar i::before {
  left: 33.333%;
}

.scale-bar i::after {
  left: 66.666%;
}

.viewer-area:fullscreen {
  width: 100vw;
  height: 100vh;
  grid-template-rows: auto minmax(0, 1fr) auto;
  border-radius: 0;
  background: var(--surface);
}

.viewer-area:fullscreen .scan-stage,
.viewer-area:fullscreen .deepzoom-viewer,
.viewer-area:fullscreen .skeleton-viewer {
  min-height: 0;
}

.scan-canvas {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(980px, 86%);
  transform: translate(-50%, -50%) scale(1);
  transform-origin: center;
  touch-action: none;
  user-select: none;
}

.scan-canvas img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 70px rgb(27 43 55 / 13%);
  pointer-events: none;
}

.hotspot {
  position: absolute;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgb(47 134 161 / 18%), 0 10px 28px rgb(47 134 161 / 24%);
}

.hotspot span {
  position: absolute;
  inset: 8px;
  border-radius: 999px;
  background: #fff;
}

.hotspot.active {
  background: #b78372;
  box-shadow: 0 0 0 8px rgb(183 131 114 / 16%), 0 10px 28px rgb(183 131 114 / 22%);
}

.hotspot-one {
  left: 40%;
  top: 50%;
}

.hotspot-two {
  left: 60%;
  top: 38%;
}

.hotspot-three {
  left: 29%;
  top: 68%;
}

.scan-stage--skeleton {
  background:
    linear-gradient(180deg, rgb(250 253 253 / 92%), rgb(230 240 243 / 94%)),
    radial-gradient(circle at 50% 18%, rgb(47 134 161 / 12%), transparent 36%);
}

.skeleton-viewer {
  position: absolute;
  inset: 0;
  min-height: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgb(20 55 65 / 6%) 1px, transparent 1px),
    linear-gradient(0deg, rgb(20 55 65 / 6%) 1px, transparent 1px),
    #f3f8f9;
  background-size: 42px 42px;
  cursor: default;
}

.skeleton-viewer.is-hidden {
  display: none;
}

.skeleton-viewer:active {
  cursor: default;
}

.skeleton-viewer canvas {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.skeleton-viewer__hud {
  position: absolute;
  left: 20px;
  top: 20px;
  display: flex;
  align-items: center;
  min-height: 38px;
  max-width: calc(100% - 40px);
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  box-shadow: none;
  text-shadow:
    0 1px 0 rgb(255 255 255 / 95%),
    0 0 12px rgb(255 255 255 / 92%),
    0 8px 24px rgb(27 43 55 / 18%);
}

.skeleton-viewer__hud.is-hidden {
  opacity: 0;
}

.skeleton-callout-line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.skeleton-callout-line line {
  stroke: rgb(29 109 133);
  stroke-width: 2.5;
  stroke-linecap: round;
  filter: drop-shadow(0 3px 8px rgb(27 43 55 / 18%));
}

.skeleton-callout-line.is-drawing line {
  animation: skeleton-line-grow .48s ease-out both;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.skeleton-callout-line__ring {
  fill: rgb(255 255 255 / 58%);
  stroke: rgb(29 109 133);
  stroke-width: 2.5;
  filter: drop-shadow(0 4px 10px rgb(27 43 55 / 18%));
  transform-box: fill-box;
  transform-origin: center;
}

.skeleton-callout-line.is-drawing .skeleton-callout-line__ring {
  animation: skeleton-ring-pop .42s ease-out both;
}

.skeleton-callout-line__dot {
  fill: rgb(29 109 133);
  stroke: rgb(255 255 255 / 90%);
  stroke-width: 1.5;
  transform-box: fill-box;
  transform-origin: center;
}

.skeleton-callout-line.is-drawing .skeleton-callout-line__dot {
  animation: skeleton-dot-pop .34s ease-out both;
}

.skeleton-callout {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: max-content;
  max-width: calc(100% - 24px);
  padding: 13px 16px;
  border: 1px solid rgb(47 134 161 / 28%);
  background: rgb(255 255 255 / 92%);
  backdrop-filter: blur(10px);
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
  box-shadow: 0 14px 34px rgb(27 43 55 / 14%);
  pointer-events: none;
  text-shadow: none;
  transition: opacity .18s, transform .18s;
}

.skeleton-callout.has-thumb {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  width: min(620px, calc(100% - 24px));
  padding: 12px 14px;
}

.skeleton-callout__thumb {
  position: relative;
  display: none;
  height: 142px;
  overflow: hidden;
  border: 1px solid rgb(199 219 228 / 95%);
  background: #f8fbfc;
}

.skeleton-callout.has-thumb .skeleton-callout__thumb {
  display: block;
}

.skeleton-callout__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.skeleton-callout__title {
  display: block;
}

.skeleton-callout:not(.is-hidden) {
  animation: skeleton-card-in .22s ease-out both;
}

.skeleton-callout.is-hidden,
.skeleton-callout-line.is-hidden {
  opacity: 0;
}

@keyframes skeleton-line-grow {
  from {
    stroke-dashoffset: 1;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes skeleton-ring-pop {
  from {
    opacity: 0;
    transform: scale(.4);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes skeleton-dot-pop {
  from {
    opacity: 0;
    transform: scale(.2);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes skeleton-card-in {
  from {
    opacity: 0;
    transform: translate(var(--callout-x, 0), var(--callout-y, 0)) translateY(8px);
  }

  to {
    opacity: 1;
    transform: translate(var(--callout-x, 0), var(--callout-y, 0));
  }
}

.viewer-status {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.specimen-summary,
.inspector-block,
.term-panel {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.specimen-summary p,
#termText {
  color: var(--muted);
  line-height: 1.58;
}

.inline-term {
  display: inline;
  padding: 0 2px;
  border: 0;
  border-bottom: 2px solid rgb(47 134 161 / 34%);
  background: transparent;
  color: var(--blue);
  font-weight: 800;
}

.term-panel {
  margin-bottom: 0;
  padding: 16px;
  border: 1px solid rgb(47 134 161 / 24%);
  border-left: 3px solid var(--blue);
  border-radius: 0;
  background: #f0f8fa;
}

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

#closeTerm {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
  color: var(--muted);
}

.term-title {
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 900;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* Desktop concept for the home page */
.home-redesign {
  min-width: 1280px;
  background: #f4f7f8;
  color: #121b22;
}

.home-rail {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 40;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: 268px;
  padding: 28px 24px;
  border-right: 1px solid #d8e4e9;
  background: #ffffff;
}

.rail-brand {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.rail-brand > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid #a9d5df;
  border-radius: 14px;
  background: #e9f7fa;
  color: #2f86a1;
  font-weight: 900;
}

.rail-brand .official-mark {
  display: grid;
  place-items: center;
  width: 100%;
  height: 90px;
  padding: 14px 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.rail-brand .official-mark--med {
  padding: 14px 8px 30px;
}

.official-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rail-brand .official-mark--med img {
  transform: translateY(-9px) scale(.84);
  transform-origin: center center;
}

.rail-brand strong {
  font-size: 22px;
  line-height: 1.02;
  letter-spacing: -.03em;
}

.rail-nav {
  display: grid;
  align-content: center;
  gap: 8px;
}

.rail-nav a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 12px;
  color: #52636f;
  text-decoration: none;
  font-weight: 750;
}

.rail-nav a:hover {
  background: #edf5f7;
  color: #17212b;
}

.rail-meta {
  padding-top: 22px;
  border-top: 1px solid #d8e4e9;
}

.rail-meta span {
  display: block;
  margin-bottom: 8px;
  color: #2f86a1;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.rail-meta p {
  margin: 0;
  color: #5f6f78;
  font-size: 14px;
  line-height: 1.45;
}

.home-canvas {
  margin-left: 268px;
}

.lab-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 520px) minmax(620px, 1fr);
  grid-template-rows: auto 1fr auto;
  gap: 28px 58px;
  min-height: 820px;
  padding: 54px 66px 64px;
  overflow: hidden;
}

.lab-hero::before {
  content: "";
  position: absolute;
  left: 66px;
  right: 66px;
  top: 54px;
  height: 1px;
  background: #d8e4e9;
}

.hero-kicker {
  grid-column: 1 / -1;
  padding-top: 30px;
  color: #2f86a1;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-title {
  align-self: center;
}

.hero-title h1 {
  max-width: 470px;
  margin: 0 0 28px;
  font-size: 82px;
  line-height: .9;
  letter-spacing: -.06em;
}

.hero-title p {
  max-width: 520px;
  margin: 0;
  color: #4f606b;
  font-size: 22px;
  line-height: 1.5;
}

.hero-enter {
  align-self: end;
  display: grid;
  width: 310px;
  min-height: 124px;
  padding: 22px;
  border: 1px solid #2f86a1;
  border-radius: 20px;
  background: #2f86a1;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 22px 44px rgb(47 134 161 / 20%);
}

.hero-enter span {
  color: rgb(255 255 255 / 78%);
  font-size: 14px;
}

.hero-enter strong {
  align-self: end;
  font-size: 32px;
  letter-spacing: -.04em;
}

.hero-specimen {
  grid-row: 2 / span 2;
  grid-column: 2;
  align-self: center;
  border: 1px solid #d8e4e9;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 34px 90px rgb(27 43 55 / 13%);
  overflow: hidden;
}

.specimen-toolbar {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid #d8e4e9;
  background: #fbfdfe;
}

.specimen-toolbar span {
  padding: 8px 12px;
  border: 1px solid #d8e4e9;
  border-radius: 999px;
  color: #536773;
  font-size: 13px;
  font-weight: 800;
}

.specimen-toolbar span:first-child {
  border-color: #a9d5df;
  background: #e9f7fa;
  color: #2f86a1;
}

.specimen-frame {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: #f7fafb;
}

.specimen-frame img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 108%;
  max-width: none;
  transform: translate(-50%, -50%);
}

.pin {
  position: absolute;
  z-index: 2;
  width: 24px;
  height: 24px;
  border: 5px solid #ffffff;
  border-radius: 50%;
  background: #2f86a1;
  box-shadow: 0 0 0 7px rgb(47 134 161 / 16%);
}

.pin-a {
  left: 40%;
  top: 54%;
}

.pin-b {
  left: 63%;
  top: 39%;
  background: #b78372;
  box-shadow: 0 0 0 7px rgb(183 131 114 / 16%);
}

.pin-label {
  position: absolute;
  z-index: 3;
  padding: 9px 12px;
  border: 1px solid #d8e4e9;
  border-radius: 12px;
  background: rgb(255 255 255 / 92%);
  color: #17212b;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 12px 28px rgb(27 43 55 / 11%);
}

.label-a {
  left: 18%;
  top: 61%;
}

.label-b {
  right: 12%;
  top: 27%;
}

.hero-index {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding-top: 28px;
  border-top: 1px solid #d8e4e9;
}

.hero-index div {
  min-height: 104px;
  padding: 0 34px 0 0;
}

.hero-index div + div {
  padding-left: 34px;
  border-left: 1px solid #d8e4e9;
}

.hero-index span,
.editorial-heading span,
.board-copy span {
  display: inline-block;
  margin-bottom: 14px;
  color: #2f86a1;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-index strong {
  display: block;
  margin-bottom: 8px;
  font-size: 31px;
  line-height: 1;
  letter-spacing: -.045em;
}

.hero-index p {
  margin: 0;
  color: #61707c;
  font-size: 15px;
}

.project-editorial,
.materials-board {
  padding: 86px 66px;
  border-top: 1px solid #d8e4e9;
}

.project-editorial {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 72px;
  background: #ffffff;
}

.editorial-heading {
  position: sticky;
  top: 104px;
  align-self: start;
}

.editorial-heading h2,
.board-copy h2 {
  margin: 0;
  font-size: 58px;
  line-height: .96;
  letter-spacing: -.045em;
}

.editorial-body {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.project-visual {
  position: sticky;
  top: 104px;
  min-height: 620px;
}

.project-visual figure {
  margin: 0;
}

.project-visual img {
  display: block;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 28px 70px rgb(27 43 55 / 13%);
}

.micrograph-large {
  width: 390px;
}

.micrograph-large img {
  height: 440px;
  border-radius: 46% 54% 43% 57% / 40% 46% 54% 60%;
}

.micrograph-small {
  position: absolute;
  right: 0;
  bottom: 34px;
  width: 240px;
}

.micrograph-small img {
  height: 230px;
  border: 10px solid #ffffff;
  border-radius: 50%;
}

.project-visual figcaption {
  max-width: 310px;
  padding-top: 12px;
  margin-top: 16px;
  border-top: 1px solid #b8c9d0;
  color: #60717d;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.micrograph-small figcaption {
  margin-left: 22px;
}

.editorial-text {
  max-width: 900px;
}

.editorial-text p {
  max-width: 820px;
  margin: 0;
  color: #17212b;
  font-size: 25px;
  line-height: 1.62;
  letter-spacing: -.015em;
}

.editorial-text p:first-child {
  font-size: 32px;
  line-height: 1.42;
  letter-spacing: -.035em;
}

.editorial-text p + p {
  margin-top: 26px;
}

.editorial-text p:last-child {
  margin-bottom: 0;
}

.materials-board {
  display: grid;
  grid-template-columns: 430px minmax(0, 1fr);
  gap: 56px;
  background: #f4f7f8;
}

.board-copy p {
  max-width: 390px;
  font-size: 18px;
}

.material-composition {
  position: relative;
  min-height: 520px;
  isolation: isolate;
}

.material-composition::before {
  content: "";
  position: absolute;
  inset: 58px 46px 68px 86px;
  z-index: -1;
  border-top: 1px solid #cbdadf;
  border-bottom: 1px solid #cbdadf;
}

.material-primary {
  position: absolute;
  left: 0;
  top: 24px;
  width: min(64%, 620px);
  height: 410px;
  object-fit: cover;
  border-radius: 42% 58% 52% 48% / 50% 42% 58% 50%;
  box-shadow: 0 34px 80px rgb(27 43 55 / 12%);
}

.material-secondary {
  position: absolute;
  right: 16px;
  bottom: 26px;
  width: min(43%, 420px);
  height: 280px;
  object-fit: cover;
  border: 12px solid #f4f7f8;
  border-radius: 50%;
  box-shadow: 0 26px 58px rgb(27 43 55 / 12%);
}

.material-note {
  position: absolute;
  max-width: 230px;
  padding-top: 12px;
  border-top: 1px solid #2f86a1;
  color: #17212b;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.note-one {
  right: 4%;
  top: 44px;
}

.note-two {
  left: 6%;
  bottom: 18px;
}

/* === Institute homepage === */

.home-institute .home-canvas {
  background: #ffffff;
}

.section-tag {
  display: inline-block;
  margin-bottom: 18px;
  color: #2f86a1;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* Hero */

.inst-hero {
  position: relative;
  padding: 56px 72px 64px;
  background: #ffffff;
  border-bottom: 1px solid #d8e4e9;
}

.inst-hero__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 64px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e3ecef;
}

.inst-hero__kicker {
  color: #2f86a1;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.inst-hero__year {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #6d7d87;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.inst-hero__year::before {
  content: "";
  width: 32px;
  height: 1px;
  background: #b8c9d0;
}

.inst-hero__title {
  margin: 0 0 64px;
  font-size: 108px;
  line-height: .9;
  letter-spacing: -.055em;
  font-weight: 800;
}

.inst-hero__title em {
  font-style: normal;
  color: #2f86a1;
}

.inst-hero__title span {
  display: block;
  margin-top: 18px;
  color: #4f606b;
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: -.028em;
  font-weight: 600;
}

.inst-hero__body {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(380px, 460px);
  gap: 72px;
  align-items: start;
  margin-bottom: 72px;
}

.inst-hero__lead {
  margin: 0;
  color: #17212b;
  font-size: 23px;
  line-height: 1.55;
  letter-spacing: -.012em;
}

.inst-hero__plaque {
  padding: 30px 32px 28px;
  border: 1px solid #d8e4e9;
  border-left: 4px solid #2f86a1;
  background: #fbfdfe;
}

.plaque-tag {
  display: inline-block;
  margin-bottom: 16px;
  color: #2f86a1;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.plaque-quote {
  margin: 0 0 22px;
  color: #17212b;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -.005em;
}

.plaque-sign {
  display: flex;
  flex-direction: column;
  padding-top: 16px;
  border-top: 1px solid #d8e4e9;
}

.plaque-sign strong {
  font-size: 15px;
  letter-spacing: -.005em;
}

.plaque-sign span {
  margin-top: 4px;
  color: #6d7d87;
  font-size: 13px;
}

.inst-hero__facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 32px 0 0;
  border-top: 1px solid #d8e4e9;
}

.inst-hero__facts div {
  padding-right: 32px;
}

.inst-hero__facts div + div {
  padding-left: 32px;
  border-left: 1px solid #e3ecef;
}

.inst-hero__facts dt {
  display: block;
  margin-bottom: 12px;
  color: #6d7d87;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.inst-hero__facts dd {
  margin: 0;
  color: #17212b;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -.04em;
  font-weight: 700;
}

/* Focus */

.inst-focus {
  padding: 96px 72px;
  background: #f4f7f8;
  border-bottom: 1px solid #d8e4e9;
}

.inst-focus__head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  column-gap: 56px;
  align-items: end;
  margin-bottom: 36px;
}

.inst-focus__head h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -.035em;
}

.inst-focus__head p {
  margin: 0;
  max-width: 420px;
  color: #4f606b;
  font-size: 16px;
  line-height: 1.55;
}

.focus-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid #d8e4e9;
}

.focus-list li {
  position: relative;
  padding: 36px 32px 40px;
  border-bottom: 1px solid #d8e4e9;
  border-right: 1px solid #d8e4e9;
  background: transparent;
  transition: background .25s;
}

.focus-list li:nth-child(3n) {
  border-right: 0;
}

.focus-list li:hover {
  background: #ffffff;
}

.focus-num {
  display: block;
  margin-bottom: 32px;
  color: #2f86a1;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
}

.focus-list h3 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -.02em;
}

.focus-list p {
  margin: 0;
  color: #5f6f78;
  font-size: 15px;
  line-height: 1.55;
}

/* Atlas project */

.inst-atlas {
  padding: 96px 72px;
  background: #ffffff;
  border-bottom: 1px solid #d8e4e9;
}

.inst-atlas__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid #d8e4e9;
}

.inst-atlas__head h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -.035em;
}

.atlas-cta {
  display: inline-grid;
  gap: 4px;
  padding: 18px 26px;
  border: 1px solid #2f86a1;
  background: #2f86a1;
  color: #ffffff;
  text-decoration: none;
  text-align: right;
  transition: background .2s;
}

.atlas-cta:hover {
  background: #267a94;
}

.atlas-cta span {
  color: rgb(255 255 255 / 78%);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.atlas-cta strong {
  font-size: 22px;
  letter-spacing: -.025em;
}

.inst-atlas__body {
  display: grid;
  grid-template-columns: minmax(380px, 480px) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
  margin-bottom: 56px;
}

.atlas-figure {
  position: sticky;
  top: 40px;
  margin: 0;
}

.atlas-figure__frame {
  position: relative;
  height: 540px;
  border: 1px solid #d8e4e9;
  background: #f7fafb;
  box-shadow: 0 24px 60px rgb(27 43 55 / 12%);
  overflow: hidden;
}

.atlas-figure__frame img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 108%;
  max-width: none;
  transform: translate(-50%, -50%);
}

.atlas-figure__chip {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 8px 12px;
  border: 1px solid #d8e4e9;
  background: rgb(255 255 255 / 95%);
  color: #2f86a1;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.atlas-figure figcaption {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #d8e4e9;
  color: #5f6f78;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.atlas-text p {
  margin: 0;
  color: #17212b;
  font-size: 21px;
  line-height: 1.6;
  letter-spacing: -.012em;
}

.atlas-text p:first-child {
  font-size: 26px;
  line-height: 1.45;
  letter-spacing: -.025em;
}

.atlas-text p + p {
  margin-top: 22px;
}

.atlas-spec {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 32px 0 0;
  border-top: 1px solid #d8e4e9;
}

.atlas-spec div {
  padding-right: 32px;
}

.atlas-spec div + div {
  padding-left: 32px;
  border-left: 1px solid #e3ecef;
}

.atlas-spec dt {
  display: block;
  margin-bottom: 12px;
  color: #6d7d87;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.atlas-spec dd {
  margin: 0;
  color: #17212b;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -.03em;
  font-weight: 700;
}

.atlas-spec .stain-decoder {
  display: grid;
  gap: 6px;
  font-size: 18px;
  line-height: 1.22;
  letter-spacing: 0;
}

/* Specimens */

.inst-specimens {
  padding: 96px 72px;
  background: #f4f7f8;
  border-bottom: 1px solid #d8e4e9;
}

.specimens-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  column-gap: 56px;
  align-items: end;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid #d8e4e9;
}

.specimens-head h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -.035em;
}

.specimens-head p {
  margin: 0;
  max-width: 420px;
  color: #4f606b;
  font-size: 16px;
  line-height: 1.55;
}

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

.specimen-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #d8e4e9;
  transition: box-shadow .25s, transform .25s;
}

.specimen-card:hover {
  box-shadow: 0 24px 50px rgb(27 43 55 / 10%);
  transform: translateY(-2px);
}

.specimen-card__img {
  position: relative;
  height: 280px;
  background: #f7fafb;
  border-bottom: 1px solid #d8e4e9;
  overflow: hidden;
}

.specimen-card__img img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 108%;
  max-width: none;
  transform: translate(-50%, -50%);
}

.specimen-card__chip {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 7px 11px;
  border: 1px solid #d8e4e9;
  background: rgb(255 255 255 / 95%);
  color: #2f86a1;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.specimen-card__meta {
  padding: 26px 28px 30px;
}

.specimen-card__num {
  display: block;
  margin-bottom: 14px;
  color: #6d7d87;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.specimen-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -.02em;
}

.specimen-card p {
  margin: 0;
  color: #5f6f78;
  font-size: 15px;
  line-height: 1.55;
}

/* Contacts */

.inst-contacts {
  padding: 96px 72px 56px;
  background: #ffffff;
  border-top: 1px solid #d8e4e9;
}

.contacts-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  column-gap: 56px;
  align-items: end;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid #d8e4e9;
}

.contacts-head h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -.035em;
}

.contacts-head p {
  margin: 0;
  max-width: 420px;
  color: #4f606b;
  font-size: 16px;
  line-height: 1.55;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 56px;
}

.contacts-grid > div {
  padding-right: 36px;
}

.contacts-grid > div + div {
  padding-left: 36px;
  border-left: 1px solid #e3ecef;
}

.contacts-grid span {
  display: block;
  margin-bottom: 14px;
  color: #2f86a1;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contacts-grid p {
  margin: 0;
  color: #17212b;
  font-size: 17px;
  line-height: 1.55;
}

.contacts-foot {
  padding-top: 22px;
  border-top: 1px solid #d8e4e9;
  color: #6d7d87;
  font-size: 13px;
  letter-spacing: .02em;
}
