@charset "UTF-8";

:root {
  --navy: #0b2442;
  --navy-deep: #071a31;
  --teal: #0b8b8d;
  --teal-light: #dff1ef;
  --copper: #ad623c;
  --ink: #152b38;
  --muted: #61717a;
  --line: #ccd9dc;
  --ice: #f1f7f7;
  --white: #ffffff;
  --header-height: 142px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

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

button {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
dd,
figure {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: -999px;
  z-index: 9999;
  padding: 8px 14px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--teal);
}

.skip-link:focus {
  left: 8px;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 0 rgba(10, 35, 65, 0.12);
}

.status-bar {
  height: 28px;
  color: #d9e6ed;
  background: var(--navy-deep);
  font-size: 12px;
}

.status-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.status-inner ul {
  display: flex;
  gap: 28px;
}

.status-inner li {
  position: relative;
}

.status-inner li + li::before {
  position: absolute;
  top: 50%;
  left: -15px;
  width: 3px;
  height: 3px;
  background: #5f7a90;
  border-radius: 50%;
  content: "";
}

.main-nav-wrap {
  height: 78px;
}

.main-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand img,
.footer-brand img {
  width: 46px;
  height: 46px;
}

.brand span,
.footer-brand span {
  display: flex;
  flex-direction: column;
}

.brand strong,
.footer-brand strong {
  color: var(--navy);
  font-size: 20px;
  letter-spacing: 0.08em;
}

.brand small,
.footer-brand small {
  color: var(--teal);
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a {
  position: relative;
  display: block;
  padding: 24px 0;
  font-weight: 700;
}

.desktop-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 17px;
  left: 50%;
  height: 2px;
  background: var(--teal);
  content: "";
  transition: right 0.2s ease, left 0.2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus::after,
.desktop-nav a.active::after {
  right: 0;
  left: 0;
}

.guide-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-weight: 700;
}

.guide-link:hover,
.guide-link:focus {
  color: var(--white);
  background: var(--navy);
}

.medical-ticker {
  height: 36px;
  color: var(--white);
  background: var(--teal);
}

.medical-ticker ul {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.medical-ticker li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 46px;
  font-size: 12px;
  font-weight: 700;
}

.medical-ticker li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.medical-ticker .icon {
  width: 17px;
  height: 17px;
  filter: brightness(0) invert(1);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

main {
  padding-top: var(--header-height);
}

.section-anchor {
  scroll-margin-top: var(--header-height);
}

.icon {
  display: inline-block;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
}

.icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.icon-clinic::before { background-image: url("../icons/clinic.svg"); }
.icon-lab::before { background-image: url("../icons/lab.svg"); }
.icon-globe::before { background-image: url("../icons/globe.svg"); }
.icon-file::before { background-image: url("../icons/file.svg"); }
.icon-assessment::before { background-image: url("../icons/assessment.svg"); }
.icon-chart::before { background-image: url("../icons/chart.svg"); }
.icon-flask::before { background-image: url("../icons/flask.svg"); }
.icon-embryo::before { background-image: url("../icons/embryo.svg"); }
.icon-dna::before { background-image: url("../icons/dna.svg"); }
.icon-heart::before { background-image: url("../icons/heart.svg"); }
.icon-pin::before { background-image: url("../icons/pin.svg"); }
.icon-team::before { background-image: url("../icons/team.svg"); }
.icon-shield::before { background-image: url("../icons/shield.svg"); }
.icon-lock::before { background-image: url("../icons/lock.svg"); }
.icon-id::before { background-image: url("../icons/id.svg"); }
.icon-history::before { background-image: url("../icons/history.svg"); }
.icon-calendar::before { background-image: url("../icons/calendar.svg"); }

.hero {
  background: var(--navy-deep);
}

.hero-photo {
  height: 410px;
  background-image: linear-gradient(90deg, rgba(7, 26, 49, 0.05), rgba(7, 26, 49, 0.12)), url("../images/hero-clinical-research-site17.png");
  background-position: center;
  background-size: cover;
}

.hero-content {
  color: var(--white);
  background: var(--navy-deep);
}

.hero-grid {
  display: grid;
  grid-template-columns: 145px 1fr 300px;
  min-height: 300px;
}

.hero-index {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 1.12;
}

.hero-copy {
  padding: 38px 44px 32px;
}

.hero-copy > p:first-child,
.section-index > span,
.program header > span,
.wide-title span,
.lab-copy > span,
.number-title span,
.about-copy > span,
.faq-grid > header > span,
.preparation header > span {
  color: #58c7c8;
  font-family: Consolas, "Courier New", monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.hero h1 {
  margin-top: 4px;
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1.25;
  letter-spacing: 0.04em;
}

.hero-copy h2 {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 700;
}

.hero-description {
  max-width: 660px;
  margin-top: 12px;
  color: #c8d7e4;
}

.hero-copy ul {
  display: flex;
  margin-top: 18px;
  color: #a8bac9;
  font-size: 12px;
}

.hero-copy li + li::before {
  content: "/";
  margin: 0 12px;
  color: #527189;
}

.program-price {
  padding: 37px 38px;
  background: var(--copper);
}

.program-price > span {
  display: block;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

.program-price strong {
  display: block;
  margin-top: 12px;
  font-family: Georgia, serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
}

.program-price strong small {
  font-family: "Microsoft YaHei", sans-serif;
  font-size: 23px;
}

.program-price i {
  display: block;
  width: 42px;
  height: 2px;
  margin: 22px 0;
  background: rgba(255, 255, 255, 0.8);
}

.program-price p {
  color: #f2d8c9;
  font-size: 12px;
}

.hero-service-rail {
  color: var(--white);
  background: #0d2c50;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-service-rail ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-service-rail li {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 90px;
  padding: 15px 25px;
}

.hero-service-rail li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-service-rail .icon {
  filter: brightness(0) invert(1);
}

.hero-service-rail span,
.hero-service-rail strong,
.hero-service-rail small {
  display: block;
}

.hero-service-rail small {
  color: #a9bdcd;
  font-size: 12px;
}

.clinical-overview,
.assessment,
.routes,
.cycle,
.team-observation,
.cases,
.faq {
  padding: 88px 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 55px;
}

.section-index em {
  display: block;
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 54px;
  font-style: normal;
  line-height: 1;
}

.section-index h2,
.program h2,
.wide-title h2,
.lab-copy h2,
.number-title h2,
.about-copy h2,
.faq h2,
.preparation h2 {
  font-size: 34px;
  line-height: 1.35;
}

.section-index p {
  margin-top: 18px;
  color: var(--muted);
}

.signal-line {
  position: relative;
  width: 100%;
  height: 24px;
  margin-top: 28px;
  overflow: hidden;
}

.signal-line::before {
  position: absolute;
  top: 11px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
  content: "";
}

.signal-line::after {
  position: absolute;
  top: 4px;
  left: 40px;
  width: 46px;
  height: 13px;
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  content: "";
  transform: skewX(-35deg);
}

.service-strips {
  border-top: 1px solid var(--line);
}

.service-strips li {
  display: grid;
  grid-template-columns: 55px 220px 1fr;
  align-items: center;
  min-height: 68px;
  border-bottom: 1px solid var(--line);
}

.service-strips li:nth-child(odd) {
  background: var(--ice);
}

.service-strips em {
  color: var(--teal);
  font-family: Georgia, serif;
  font-style: normal;
  text-align: center;
}

.service-strips strong {
  padding-right: 20px;
  font-size: 15px;
}

.service-strips span {
  padding: 12px 22px;
  border-left: 1px dashed #9cb4b9;
  color: var(--muted);
}

.program {
  color: var(--white);
  background: var(--teal);
}

.program-grid {
  display: grid;
  grid-template-columns: 330px 1fr;
}

.program header {
  padding: 58px 44px 58px 0;
}

.program header > span {
  color: #bfeaea;
}

.program header p {
  margin-top: 15px;
  color: #d4eeee;
}

.program header > strong {
  display: block;
  margin-top: 34px;
  font-family: Georgia, serif;
  font-size: 55px;
  font-weight: 400;
}

.program header > strong small {
  font-family: "Microsoft YaHei", sans-serif;
  font-size: 16px;
}

.program header > em {
  display: block;
  margin-top: 6px;
  color: #c5e9e7;
  font-size: 12px;
  font-style: normal;
}

.program-matrix {
  align-self: center;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  border-left: 1px solid rgba(255, 255, 255, 0.45);
}

.matrix-row {
  display: grid;
  grid-template-columns: 130px 1.25fr 1fr;
}

.matrix-row > * {
  padding: 13px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.matrix-row span {
  font-weight: 700;
}

.matrix-row small {
  color: #d3eeed;
  font-size: 12px;
}

.matrix-head > * {
  background: rgba(4, 65, 68, 0.38);
}

.wide-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 45px;
  margin-bottom: 42px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.wide-title p {
  max-width: 470px;
  color: var(--muted);
  text-align: right;
}

.pathway-board {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 0.8fr);
  align-items: center;
  gap: 54px;
}

.problem-list {
  position: relative;
  border-left: 2px solid var(--teal);
}

.problem-list::after {
  position: absolute;
  top: 50%;
  right: -55px;
  width: 55px;
  height: 1px;
  background: var(--teal);
  content: "";
}

.problem-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 9px 18px;
  background: var(--ice);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.problem-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.problem-list .icon {
  width: 27px;
  height: 27px;
}

.problem-list span,
.problem-list strong,
.problem-list small {
  display: block;
}

.problem-list small {
  color: var(--muted);
  font-size: 12px;
}

.path-node {
  position: relative;
  min-height: 150px;
  padding: 35px 22px 22px;
  border: 1px solid #8db4ba;
  text-align: center;
}

.path-node + .path-node::before {
  position: absolute;
  top: 50%;
  right: 100%;
  width: 55px;
  height: 1px;
  background: var(--teal);
  content: "";
}

.path-node em {
  position: absolute;
  top: 0;
  left: 0;
  padding: 3px 10px;
  color: var(--white);
  background: var(--navy);
  font-family: Georgia, serif;
  font-style: normal;
}

.path-node strong,
.path-node span {
  display: block;
}

.path-node strong {
  font-size: 17px;
}

.path-node span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.routes {
  background: var(--ice);
}

.campus-flow {
  display: grid;
  grid-template-columns: 1fr 270px 1fr;
  align-items: stretch;
}

.campus {
  position: relative;
  min-height: 230px;
  padding: 38px;
  border: 1px solid #8eb4ba;
}

.campus-primary {
  color: var(--white);
  background: var(--navy);
}

.campus-option {
  background: var(--white);
}

.campus > small {
  position: absolute;
  top: 16px;
  right: 18px;
  color: #69c1c2;
  font-family: Consolas, monospace;
  font-size: 12px;
}

.campus .icon {
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
}

.campus-primary .icon {
  filter: brightness(0) invert(1);
}

.campus h3 {
  font-size: 24px;
}

.campus p {
  margin-top: 8px;
  color: var(--muted);
}

.campus-primary p {
  color: #c8d7e4;
}

.campus strong {
  display: block;
  margin-top: 18px;
  color: var(--teal);
}

.campus-primary strong {
  color: #74d0cf;
}

.record-bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--teal);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.record-bridge i {
  position: relative;
  width: 150px;
  height: 26px;
  margin: 10px 0;
}

.record-bridge i::before {
  position: absolute;
  top: 12px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--teal);
  content: "";
}

.record-bridge i::after {
  position: absolute;
  top: 7px;
  right: 0;
  width: 10px;
  height: 10px;
  border-top: 1px solid var(--teal);
  border-right: 1px solid var(--teal);
  content: "";
  transform: rotate(45deg);
}

.record-bridge small {
  color: var(--muted);
  font-size: 12px;
}

.route-compare {
  margin-top: 26px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.route-row {
  display: grid;
  grid-template-columns: 160px 1fr 1fr;
}

.route-row > * {
  padding: 13px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.route-row > span {
  color: var(--muted);
  background: #e4eeee;
  font-weight: 700;
}

.route-head > * {
  color: var(--white);
  background: var(--teal);
}

.laboratory {
  padding: 88px 0 0;
  color: var(--white);
  background: var(--navy-deep);
}

.lab-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 55px;
}

.lab-photo {
  min-height: 450px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

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

.lab-copy {
  padding-top: 15px;
}

.lab-copy > p {
  max-width: 700px;
  margin-top: 16px;
  color: #bfcfda;
}

.pgt-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.pgt-columns article {
  min-height: 190px;
  padding: 26px 20px 20px 0;
}

.pgt-columns article + article {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.pgt-columns strong,
.pgt-columns span {
  display: block;
}

.pgt-columns strong {
  color: #70d0cf;
  font-family: Georgia, serif;
  font-size: 25px;
}

.pgt-columns span {
  margin-top: 5px;
  font-weight: 700;
}

.pgt-columns p {
  margin-top: 12px;
  color: #aebfcd;
  font-size: 12px;
}

.lab-copy > small {
  display: block;
  margin-top: 20px;
  color: #9fb1bf;
  font-size: 12px;
}

.lab-standards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 55px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.lab-standards li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 76px;
}

.lab-standards li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.lab-standards .icon {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.compact-title {
  margin-bottom: 30px;
}

.ecg-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  min-height: 180px;
  padding-top: 30px;
}

.ecg-timeline::before {
  position: absolute;
  top: 66px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--teal);
  content: "";
}

.ecg-timeline li {
  position: relative;
  padding: 52px 10px 0;
  text-align: center;
}

.ecg-timeline li::before {
  position: absolute;
  top: 31px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--white);
  border: 2px solid var(--teal);
  content: "";
  transform: rotate(45deg) translateX(-50%);
}

.ecg-timeline li:nth-child(3)::after,
.ecg-timeline li:nth-child(7)::after {
  position: absolute;
  top: 20px;
  left: calc(50% - 20px);
  width: 40px;
  height: 29px;
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  content: "";
  transform: skewX(-36deg);
}

.ecg-timeline em,
.ecg-timeline strong,
.ecg-timeline span {
  display: block;
}

.ecg-timeline em {
  color: var(--teal);
  font-family: Consolas, monospace;
  font-size: 12px;
  font-style: normal;
}

.ecg-timeline strong {
  margin-top: 6px;
  font-size: 13px;
}

.ecg-timeline span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.team-observation {
  background: var(--ice);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.team,
.observation {
  padding: 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.number-title {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 25px;
}

.number-title > em {
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 42px;
  font-style: normal;
  line-height: 1;
}

.team-main-photo {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.specialist-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 16px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.specialist-list article {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.specialist-list img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  object-position: top;
}

.specialist-list article > div {
  min-height: 120px;
  padding: 16px;
}

.specialist-list strong,
.specialist-list span {
  display: block;
}

.specialist-list span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.journal-feature {
  min-height: 220px;
  padding: 30px;
  color: var(--white);
  background: var(--navy);
}

.journal-feature > span {
  color: #67c8c8;
  font-family: Consolas, monospace;
  font-size: 12px;
}

.journal-feature h3 {
  max-width: 450px;
  margin-top: 15px;
  font-size: 23px;
  line-height: 1.45;
}

.journal-feature p {
  margin-top: 12px;
  color: #bdcfdb;
}

.journal-feature a {
  display: inline-flex;
  gap: 18px;
  margin-top: 22px;
  color: #72cfce;
  font-weight: 700;
}

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

.journal-list li {
  display: grid;
  grid-template-columns: 50px 1fr;
  min-height: 83px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.journal-list em {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
  border-right: 1px solid var(--line);
  font-family: Georgia, serif;
  font-style: normal;
}

.journal-list a {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 12px 18px;
}

.journal-list strong,
.journal-list span {
  display: block;
}

.journal-list span {
  color: var(--muted);
  font-size: 12px;
}

.case-rows {
  border-top: 1px solid var(--line);
}

.case-rows article {
  display: grid;
  grid-template-columns: 185px 70px 1fr;
  min-height: 220px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.case-rows figure {
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--line);
}

.case-rows img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: saturate(0.35) contrast(0.9);
}

.case-rows figure span {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 3px 8px;
  color: var(--white);
  background: rgba(11, 36, 66, 0.85);
  font-size: 12px;
}

.case-rows article > em {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
  border-right: 1px solid var(--line);
  font-family: Georgia, serif;
  font-size: 32px;
  font-style: normal;
}

.case-rows article > div {
  padding: 25px 30px;
}

.case-rows h3 {
  font-size: 19px;
}

.case-rows dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.case-rows dl div {
  display: grid;
  grid-template-columns: 76px 1fr;
  padding: 8px 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.case-rows dt {
  color: var(--muted);
}

.case-disclaimer {
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.about {
  padding: 0 0 88px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  border: 1px solid var(--line);
}

.about-copy {
  padding: 55px;
}

.about-copy > p {
  margin-top: 18px;
  color: var(--muted);
}

.about-copy > ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.about-copy li {
  position: relative;
  min-height: 112px;
  padding: 20px 15px 16px 56px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-copy li .icon {
  position: absolute;
  top: 21px;
  left: 16px;
  width: 27px;
  height: 27px;
}

.about-copy li strong,
.about-copy li span {
  display: block;
}

.about-copy li span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.environment-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  background: var(--ice);
}

.environment-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.environment-grid img:first-child {
  grid-row: 1 / 3;
}

.faq {
  color: var(--white);
  background: var(--navy);
}

.faq-grid {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 65px;
}

.faq-grid > header p {
  margin-top: 16px;
  color: #b8cbd8;
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 66px;
  padding: 0 18px;
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.faq-item button span {
  font-weight: 700;
}

.faq-item button b {
  color: #6ed1d0;
  font-size: 22px;
  font-weight: 400;
}

.faq-item.is-open {
  background: rgba(255, 255, 255, 0.06);
  border-left: 3px solid #6ed1d0;
}

.faq-answer {
  padding: 0 60px 20px 18px;
  color: #b8cbd8;
}

.preparation {
  padding: 52px 0;
  background: var(--teal);
  color: var(--white);
}

.preparation-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  gap: 50px;
}

.preparation header > span {
  color: #c7efee;
}

.preparation header p {
  margin-top: 8px;
  color: #d8f0f0;
}

.preparation ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.preparation li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 92px;
  padding: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.preparation .icon {
  width: 25px;
  height: 25px;
  filter: brightness(0) invert(1);
}

.preparation li span,
.preparation li small {
  display: block;
}

.preparation li span {
  font-weight: 700;
}

.preparation li small {
  color: #d1eeee;
  font-size: 12px;
  font-weight: 400;
}

.site-footer {
  background: #f7f8f7;
}

.campus-directory {
  border-bottom: 1px solid var(--line);
}

.footer-primary {
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 250px;
}

.footer-manifesto {
  padding: 48px 48px 40px 0;
  color: var(--white);
  background: var(--navy-deep);
  box-shadow: -999px 0 0 var(--navy-deep);
  text-align: center;
}

.footer-manifesto .footer-brand strong {
  color: var(--white);
}

.footer-manifesto .footer-brand {
  justify-content: center;
}

.footer-manifesto p {
  max-width: 370px;
  margin: 28px auto 0;
  color: #b9cad6;
}

.directory-rows {
  padding: 28px 0 28px 42px;
}

.directory-rows a {
  display: grid;
  grid-template-columns: 160px 1fr 35px;
  align-items: center;
  min-height: 64px;
  border-bottom: 1px solid var(--line);
}

.directory-rows a:first-child {
  border-top: 1px solid var(--line);
}

.directory-rows span {
  color: var(--muted);
  font-size: 12px;
}

.directory-rows b {
  color: var(--teal);
  font-size: 20px;
  font-weight: 400;
  text-align: right;
}

.footer-ribbon {
  color: var(--white);
  background: var(--teal);
}

.footer-ribbon ul {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
}

.footer-ribbon a {
  display: block;
  padding: 0 25px;
  font-size: 12px;
}

.footer-ribbon li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.footer-legal {
  padding: 17px 0;
  color: var(--muted);
  background: var(--white);
  font-size: 12px;
  text-align: center;
}

@media (max-width: 1100px) {
  .desktop-nav ul {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: 115px 1fr 270px;
  }

  .pathway-board {
    gap: 32px;
  }

  .path-node + .path-node::before,
  .problem-list::after {
    width: 33px;
  }

  .program-grid {
    grid-template-columns: 280px 1fr;
  }

  .program header {
    padding-right: 28px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: calc(100% - 28px);
  }

  .status-bar,
  .desktop-nav,
  .guide-link,
  .medical-ticker {
    display: none;
  }

  .main-nav-wrap {
    height: 68px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

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

  .brand small {
    display: none;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid #81939e;
    background: var(--white);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--navy);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

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

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

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

  .mobile-nav {
    position: fixed;
    top: 68px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    display: grid;
    grid-template-columns: 116px 1fr;
    overflow-y: auto;
    background: var(--white);
    overscroll-behavior: contain;
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav-title {
    padding: 30px 20px;
    color: var(--white);
    background: var(--navy-deep);
  }

  .mobile-nav-title small,
  .mobile-nav-title strong {
    display: block;
    writing-mode: vertical-rl;
  }

  .mobile-nav-title small {
    color: #63c6c6;
    font-family: Consolas, monospace;
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .mobile-nav-title strong {
    margin-top: 25px;
    font-size: 20px;
    letter-spacing: 0.2em;
  }

  .mobile-nav > ul {
    padding: 10px 18px 35px;
  }

  .mobile-nav li {
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav a {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    min-height: 82px;
  }

  .mobile-nav em {
    color: var(--teal);
    font-family: Consolas, monospace;
    font-size: 12px;
    font-style: normal;
  }

  .mobile-nav a span,
  .mobile-nav a small {
    display: block;
  }

  .mobile-nav a span {
    font-size: 16px;
    font-weight: 700;
  }

  .mobile-nav a small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 400;
  }

  .hero-photo {
    height: 290px;
    background-position: 54% center;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 64px 1fr;
  }

  .hero-index {
    grid-row: 1 / 3;
    font-size: 27px;
  }

  .hero-copy {
    padding: 30px 22px 25px;
  }

  .hero h1 {
    font-size: clamp(34px, 9.5vw, 42px);
  }

  .hero-copy h2 {
    font-size: 16px;
  }

  .hero-copy ul {
    display: block;
  }

  .hero-copy li + li::before {
    content: "";
    margin: 0;
  }

  .hero-copy li {
    margin-top: 3px;
  }

  .program-price {
    grid-column: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 24px 22px;
  }

  .program-price strong {
    margin-top: 0;
    font-size: 48px;
  }

  .program-price i,
  .program-price p {
    grid-column: 1 / -1;
  }

  .program-price i {
    margin: 14px 0 8px;
  }

  .hero-service-rail ul {
    grid-template-columns: 1fr 1fr;
  }

  .hero-service-rail li {
    min-height: 96px;
    padding: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .hero-service-rail li:nth-child(odd) {
    border-left: 0;
  }

  .clinical-overview,
  .assessment,
  .routes,
  .cycle,
  .team-observation,
  .cases,
  .faq {
    padding: 65px 0;
  }

  .section-index h2,
  .program h2,
  .wide-title h2,
  .lab-copy h2,
  .number-title h2,
  .about-copy h2,
  .faq h2,
  .preparation h2 {
    font-size: 29px;
  }

  .overview-grid,
  .program-grid,
  .lab-grid,
  .faq-grid,
  .preparation-grid {
    display: block;
  }

  .section-index {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--line);
  }

  .service-strips li {
    grid-template-columns: 44px 1fr;
    padding: 12px 0;
  }

  .service-strips li > span {
    grid-column: 2;
    padding: 3px 16px 8px 0;
    border-left: 0;
  }

  .program header {
    padding: 48px 0 30px;
  }

  .program header > strong {
    margin-top: 18px;
  }

  .program-matrix {
    margin-bottom: 48px;
  }

  .matrix-row {
    grid-template-columns: 92px 1fr;
  }

  .matrix-row > * {
    padding: 11px 10px;
    font-size: 12px;
  }

  .matrix-row > small {
    grid-column: 2;
  }

  .matrix-head {
    grid-template-columns: 92px 1fr;
  }

  .matrix-head > b:last-child {
    display: none;
  }

  .wide-title {
    display: block;
  }

  .wide-title p {
    margin-top: 10px;
    text-align: left;
  }

  .pathway-board {
    display: block;
  }

  .problem-list {
    border-left-width: 3px;
  }

  .problem-list::after,
  .path-node + .path-node::before {
    display: none;
  }

  .path-node {
    min-height: 105px;
    margin-top: 18px;
    padding-top: 29px;
  }

  .path-node::after {
    position: absolute;
    top: -19px;
    left: 50%;
    width: 1px;
    height: 18px;
    background: var(--teal);
    content: "";
  }

  .campus-flow {
    display: block;
  }

  .campus {
    min-height: 210px;
  }

  .record-bridge {
    min-height: 125px;
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .record-bridge i {
    transform: rotate(90deg);
  }

  .route-row {
    grid-template-columns: 78px 1fr 1fr;
  }

  .route-row > * {
    padding: 10px 7px;
    font-size: 12px;
  }

  .laboratory {
    padding-top: 65px;
  }

  .lab-photo {
    height: 300px;
    min-height: 0;
  }

  .lab-copy {
    padding-top: 35px;
  }

  .pgt-columns {
    display: block;
  }

  .pgt-columns article,
  .pgt-columns article + article {
    min-height: auto;
    padding: 20px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .lab-standards {
    grid-template-columns: 1fr 1fr;
  }

  .lab-standards li {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
    text-align: center;
  }

  .lab-standards li:nth-child(odd) {
    border-left: 0;
  }

  .ecg-timeline {
    grid-template-columns: 1fr 1fr;
    padding-top: 0;
  }

  .ecg-timeline::before {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: auto;
  }

  .ecg-timeline li {
    min-height: 148px;
    padding: 20px 26px 20px 0;
  }

  .ecg-timeline li:nth-child(even) {
    padding-right: 0;
    padding-left: 26px;
    transform: translateY(72px);
  }

  .ecg-timeline li::before {
    top: 29px;
    right: -7px;
    left: auto;
  }

  .ecg-timeline li:nth-child(even)::before {
    right: auto;
    left: -7px;
  }

  .ecg-timeline li:nth-child(odd) > * {
    text-align: right;
  }

  .ecg-timeline li:nth-child(even) > * {
    text-align: left;
  }

  .ecg-timeline li:nth-child(3)::after,
  .ecg-timeline li:nth-child(7)::after {
    display: none;
  }

  .editorial-grid {
    display: block;
  }

  .team,
  .observation {
    padding: 28px 20px;
  }

  .specialist-list {
    grid-template-columns: 1fr;
  }

  .specialist-list article {
    display: grid;
    grid-template-columns: 110px 1fr;
  }

  .specialist-list img {
    height: 140px;
  }

  .case-rows article {
    grid-template-columns: 105px 44px 1fr;
  }

  .case-rows article > div {
    padding: 20px 16px;
  }

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

  .case-rows dl div {
    grid-template-columns: 64px 1fr;
  }

  .about {
    padding-bottom: 65px;
  }

  .about-grid {
    display: block;
  }

  .about-copy {
    padding: 38px 22px;
  }

  .about-copy > ul {
    grid-template-columns: 1fr;
  }

  .environment-grid {
    height: 400px;
  }

  .faq-grid > header {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .preparation header {
    margin-bottom: 28px;
  }

  .preparation ul {
    grid-template-columns: 1fr 1fr;
  }

  .preparation li:last-child {
    grid-column: 1 / -1;
  }

  .footer-primary {
    display: block;
    width: 100%;
  }

  .footer-manifesto {
    padding: 40px 22px;
    box-shadow: none;
  }

  .directory-rows {
    padding: 24px 14px;
  }

  .directory-rows a {
    grid-template-columns: 110px 1fr 25px;
  }

  .footer-ribbon ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 12px 0;
  }

  .footer-ribbon li {
    border-left: 0 !important;
    text-align: center;
  }

  .footer-ribbon a {
    padding: 6px;
  }

  .footer-legal span {
    display: block;
    margin-top: 8px;
  }
}

@media (max-width: 430px) {
  .hero-index {
    width: 58px;
    font-size: 24px;
  }

  .hero-grid {
    grid-template-columns: 58px 1fr;
  }

  .hero-copy {
    padding-right: 17px;
    padding-left: 17px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .program-price {
    padding-right: 17px;
    padding-left: 17px;
  }

  .program-price strong {
    font-size: 43px;
  }

  .case-rows article {
    grid-template-columns: 92px 38px 1fr;
  }

  .case-rows h3 {
    font-size: 16px;
  }

  .case-rows article > div {
    padding: 16px 12px;
  }

  .case-rows dl div {
    display: block;
  }

  .case-rows dd {
    margin-top: 2px;
  }
}
