:root {
  --navy: #00192f;
  --navy-2: #052b4d;
  --gold: #d9b76a;
  --gold-2: #f0d58d;
  --ink: #071b33;
  --muted: #516173;
  --line: #d8dee7;
  --bg: #f7f9fc;
  --white: #ffffff;
  --content-max: 1360px;
  --page-gutter: clamp(24px, 3vw, 48px);
}

* {
  box-sizing: border-box;
}

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

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

/* Prevent shared grid/flex children from forcing the page wider than the viewport. */
.site-header,
.header-top,
.nav,
.hero,
.hero-content,
.hero-service-strip,
.stats,
.section,
.service-grid,
.split-section,
.panel,
.instrument-layout,
.workflow-grid,
.analysis-icons,
.team-grid,
.cta-band,
.cta-steps,
footer {
  min-width: 0;
}

.hero-service-strip>*,
.stats>*,
.service-grid>*,
.split-section>*,
.instrument-layout>*,
.workflow-grid>*,
.analysis-icons>*,
.team-grid>*,
.cta-band>*,
.cta-steps>*,
footer>* {
  min-width: 0;
}

img,
svg {
  max-width: 100%;
}

/* Shared header: two-row desktop/tablet layout, hamburger on small screens */
.site-header {
  height: auto;
  background: linear-gradient(90deg, #001426, #031f3d);
  color: white;
  display: block;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .25);
}

.header-top {
  width: min(calc(100% - (2 * var(--page-gutter))), var(--content-max));
  height: 86px;
  padding: 0;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 350px;
  gap: 16px;
}

.cu-mark {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.brand h1 {
  font-size: 20px;
  line-height: 1.18;
  margin: 0;
}

.brand p {
  margin: 6px 0 0;
  font-size: 13px;
}

.nav {
  width: min(calc(100% - (2 * var(--page-gutter))), var(--content-max));
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  gap: clamp(10px, 1.25vw, 20px);
  font-size: clamp(12px, 0.78vw, 13.5px);
  font-weight: 800;
  text-transform: uppercase;
  min-width: 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .03);
}

.nav a {
  padding: 14px 0;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}

.nav a.active,
.nav a:hover {
  color: var(--gold-2);
  border-bottom-color: var(--gold);
}

.top-cta {
  background: var(--gold);
  color: #071b33;
  padding: 12px 18px;
  border-radius: 3px;
  font-weight: 800;
  font-size: 12px;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  background: none;
  color: white;
  border: 0;
  font-size: 28px;
}

.hero {
  min-height: 385px;
  position: relative;
  color: white;
  overflow: hidden;

  background:
    linear-gradient(90deg,
      rgba(0, 22, 42, .96) 0%,
      rgba(0, 25, 47, .86) 34%,
      rgba(0, 25, 47, .35) 65%,
      rgba(0, 25, 47, .05) 100%),
    url('../images/eclipse.png');

  background-size: min(1100px, 68vw);
  background-position: right center;
  background-repeat: no-repeat;
  background-color: #00192f;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 42%, rgba(255, 255, 255, .12) 42% 43%, transparent 43% 100%),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, .05) 0 2px, transparent 2px 85px);
  opacity: .75;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - (2 * var(--page-gutter))), var(--content-max));
  margin-inline: auto;
  padding: 48px 0 130px;
}

.hero-content > h2,
.hero-content > p,
.hero-content > .hero-actions {
  max-width: 680px;
}

.hero h2 {
  font-size: clamp(40px, 3.25vw, 54px);
  line-height: 1.05;
  margin: 0 0 20px;
  letter-spacing: -1.4px;
}

.hero p {
  font-size: 18px;
  line-height: 1.55;
  max-width: 520px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 15px 20px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 14px;
}

.btn-gold {
  background: var(--gold);
  color: #06182b;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, .8);
  color: white;
}

.hero-service-strip {
  position: absolute;
  z-index: 3;
  left: 50%;
  right: auto;
  width: min(calc(100% - (2 * var(--page-gutter))), var(--content-max));
  transform: translateX(-50%);
  bottom: 0;
  min-height: 90px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  background: rgba(0, 17, 33, .82);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.hero-service-strip div {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.hero-service-strip div:last-child {
  border-right: none;
}

.hero-service-strip>div,
.hero-service-strip>div a,
.hero-service-strip>div span {
  font-family: Arial, Helvetica, sans-serif;
}

.hero-service-strip a,
.hero-service-strip .service-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 90px;
  padding: 10px 16px;
  text-decoration: none;
}

.hero-service-strip a {
  cursor: pointer;
}

.hero-service-strip span {
  color: white;
  font-size: 16px;
  line-height: 1.15;
  font-weight: 700;
}

.hero-service-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  color: var(--gold);
}

.hero-service-icon * {
  vector-effect: non-scaling-stroke;
}

.hero-service-strip a:hover .hero-service-icon,
.hero-service-strip a:hover span {
  color: var(--gold-2);
}

.stats {
  width: min(calc(100% - (2 * var(--page-gutter))), var(--content-max));
  max-width: none;
  margin: 16px auto 0;
  background: white;
  border: 1px solid var(--gold);
  border-radius: 7px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  box-shadow: 0 6px 18px rgba(12, 31, 54, .08);
}

.stats div {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 12px;
  align-items: center;
  padding: 18px 28px;
  border-right: 1px solid #d9c28b;
}

.stats div:last-child {
  border-right: none;
}

.stats .icon {
  font-size: 38px;
  color: var(--navy);
  grid-row: span 2;
}

.stats strong {
  font-size: 34px;
  line-height: .95;
}

.stats p {
  margin: 0;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1.05;
}

.section {
  width: min(calc(100% - (2 * var(--page-gutter))), var(--content-max));
  max-width: none;
  margin: 26px auto 0;
  padding: 0;
}

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}

.section-heading h2,
.panel h2 {
  text-transform: uppercase;
  font-size: 20px;
  margin: 0;
  letter-spacing: .2px;
}

.section-heading a {
  color: #0067b1;
  font-weight: 800;
  font-size: 13px;
}

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

.card,
.panel,
.person {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(12, 31, 54, .08);
}

.card {
  overflow: hidden;
  min-height: 270px;
}

.card-img {
  height: 88px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.service-image {
  height: 160px;
  width: 100%;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: #00192f;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.spectrum {
  background: linear-gradient(135deg, #051b3f, #1f4cc0 30%, #00c7ff 48%, #f6d04b 60%, #a10f7b 80%, #071326);
}

.lipid {
  background: radial-gradient(circle at 40% 40%, #8bd1ff, transparent 15%), radial-gradient(circle at 70% 60%, #315d92, transparent 16%), linear-gradient(135deg, #071b33, #6daed8);
}

.protein {
  background: radial-gradient(circle at 35% 40%, #d1ff47, transparent 18%), linear-gradient(135deg, #061b40, #5145a6 55%, #4bc8df);
}

.target {
  background: radial-gradient(circle at 60% 45%, transparent 0 10%, #b6c8df 10% 11%, transparent 11% 21%, #9aaec8 21% 22%, transparent 22% 34%, #8a9eb8 34% 35%, transparent 35%), linear-gradient(135deg, #d9e4f1, #ffffff);
}

.prep {
  background: linear-gradient(135deg, rgba(7, 27, 51, .05), rgba(7, 27, 51, .35)), radial-gradient(circle at 75% 30%, #d2eaff, #87a9ce 25%, transparent 26%), linear-gradient(135deg, #e4edf5, #ffffff);
}

.card h3 {
  margin: 18px 18px 12px;
  font-size: 18px;
}

.card p {
  margin: 0 18px 18px;
  line-height: 1.45;
  color: #152b42;
}

.card a {
  margin: 0 18px 18px;
  display: inline-block;
  color: #0067b1;
  font-weight: 800;
}

.card .card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
}

.card .card-link:hover {
  text-decoration: none;
}

.card .card-link:hover .service-image img {
  transform: scale(1.03);
}

.service-image img {
  transition: transform 0.25s ease;
}

.learn-more {
  margin: auto 18px 18px;
  display: inline-block;
  color: #0067b1;
  font-weight: 800;
}


.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
}

.panel {
  padding: 0;
}

.instrument-layout {
  display: grid;
  grid-template-columns: minmax(0, 58fr) minmax(0, 42fr);
  gap: 22px;
  padding: 16px 18px 18px;
}

.instrument-photo {
  min-height: 360px;
  border-radius: 4px;
  border: 1px solid #c5cfdb;
  overflow: hidden;
  position: relative;
  background: #eef3f8;
}

.instrument-photo img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center center;
  display: block;
}



.instrument-list h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.instrument-list p {
  margin: 0 0 14px;
  line-height: 1.35;
}

.small-btn {
  display: inline-block;
  border: 2px solid var(--navy);
  padding: 10px 14px;
  border-radius: 3px;
  font-weight: 800;
  font-size: 13px;
}

.panel h2 {
  padding: 16px 18px 0;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding: 22px 28px 26px;
}

.workflow-grid div {
  text-align: center;
  position: relative;
}

.workflow-grid div:not(:nth-child(4)):not(:nth-child(8))::after {
  content: "→";
  position: absolute;
  right: -16px;
  top: 32px;
  color: #6d7e92;
  font-size: 22px;
}

.workflow-grid span {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid #9fb0c4;
  border-radius: 50%;
  margin: 0 auto 8px;
  font-size: 30px;
  color: var(--navy);
}

.workflow-grid .done span {
  color: white;
  background: var(--navy);
  border-color: var(--navy);
}

.workflow-grid b {
  display: block;
}

.workflow-grid p {
  margin: 4px 0 0;
  font-weight: 900;
  font-size: 13px;
}

.compact {
  padding: 16px 18px 8px;
  margin: 0;
}

table {
  width: calc(100% - 36px);
  margin: 0 18px 18px;
  border-collapse: collapse;
  font-size: 13px;
}

th {
  background: #edf1f6;
  text-align: left;
}

th,
td {
  border: 1px solid #d7dce4;
  padding: 8px 10px;
  vertical-align: top;
}

.analysis-icons {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 24px 18px 16px;
  border-bottom: 1px solid #d9dee7;
}

.analysis-icons div {
  text-align: center;
  color: var(--navy);
  font-size: 40px;
  border-right: 1px solid #dce1ea;
}

.analysis-icons div:last-child {
  border-right: none;
}

.analysis-icons p {
  color: var(--ink);
  font-weight: 900;
  font-size: 13px;
  margin: 8px 0 0;
}

#analysis>p,
#analysis .small-btn {
  margin-left: 18px;
  margin-right: 18px;
}

#analysis>p {
  line-height: 1.5;
}

#analysis .small-btn {
  margin-bottom: 18px;
}

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

.person {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  column-gap: 18px;
  padding: 16px;
  min-height: 150px;
  align-items: start;
}

.exploris-thumb {
  height: 116px;
}

.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #e6edf4, #8eb2cf);
  color: var(--navy);
  font-weight: 900;
  font-size: 22px;
  grid-row: span 3;
}

.avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}

#team .person h3 {
  font-size: 17px;
  line-height: 1.2;
  margin: 6px 0 4px;
}

#team .person p {
  margin: 0;
  color: #0067b1;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 900;
}

.person small {
  font-size: 12px;
  line-height: 1.35;
}

@media (max-width: 1050px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

.cta-band {
  margin-top: 28px;
  padding: 32px 52px;
  background: linear-gradient(90deg, #003a70, #001b34 75%, #031321);
  color: white;
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 28px;
  align-items: center;
}

.cta-icon {
  width: 90px;
  height: 90px;
  border: 3px solid white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 42px;
}

.cta-band h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.cta-band p {
  line-height: 1.45;
}

.cta-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  color: var(--gold-2);
  font-weight: 900;
}

footer {
  background: #001426;
  color: white;
  padding: 44px 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr) minmax(0, .8fr) minmax(0, 1.5fr);
  gap: 40px;
}

footer h2,
footer h3 {
  margin-top: 0;
}

footer a {
  display: block;
  margin-bottom: 8px;
}

footer p {
  color: #d6dde7;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .header-top {
    width: calc(100% - 36px);
    height: auto;
    min-height: 82px;
    padding: 18px 0;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav {
    width: calc(100% - 36px);
    display: none;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    padding: 8px 0 14px;
    margin-inline: auto;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 12px 0;
  }

  .top-cta {
    display: none;
  }

  .hero-service-strip,
  .stats,
  .service-grid,
  .split-section,
  .cta-band,
  footer {
    grid-template-columns: 1fr;
  }

  .hero-service-strip {
    position: relative;
    left: auto;
    right: auto;
    width: 100%;
    transform: none;
  }

  .stats div,
  .hero-service-strip div {
    border-right: none;
    border-bottom: 1px solid #d9c28b;
  }

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

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

  .analysis-icons {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .analysis-icons div {
    border-right: none;
    border-bottom: 1px solid #dce1ea;
    padding-bottom: 15px;
  }
}

@media (max-width: 620px) {
  .brand {
    min-width: 0;
  }

  .brand h1 {
    font-size: 14px;
  }

  .hero-content {
    width: calc(100% - 30px);
    padding: 34px 0 60px;
  }

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

  .section {
    width: calc(100% - 30px);
    padding: 0;
  }

  .stats {
    width: calc(100% - 30px);
    margin: 14px auto;
  }

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

  .person {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .avatar {
    margin: 0 auto;
  }
}

.page-hero-title {
  font-size: clamp(2.4rem, 3.6vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}