:root {
  --navy: #0c2949;
  --navy-2: #12395e;
  --blue: #0878bd;
  --blue-2: #20a7dd;
  --pale: #f8fcff;
  --white: #ffffff;
  --ink: #18334e;
  --muted: #647a8d;
  --line: #dcebf3;
  --shadow: 0 24px 60px rgba(20, 70, 104, .12);
  --shadow-soft: 0 14px 40px rgba(27, 78, 111, .08);
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 650px;
  padding: 92px 0 132px;
  background: #eff8fc;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 252, 255, .99) 0%, rgba(244, 251, 254, .97) 31%, rgba(244, 251, 254, .86) 42%, rgba(244, 251, 254, .47) 53%, rgba(244, 251, 254, .08) 68%, rgba(244, 251, 254, 0) 100%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: -95px;
  bottom: -110px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(42, 164, 215, .15);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: block;
  text-align: left;
}

.hero-copy {
  max-width: 600px;
}

.hero-copy .eyebrow {
  justify-content: flex-start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  border-radius: 2px;
}

.hero h1 {
  max-width: 600px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(44px, 5.2vw, 68px);
  line-height: 1.055;
  letter-spacing: -.045em;
  font-weight: 760;
}

.hero h1 span {
  color: var(--blue);
}

.hero-lead {
  max-width: 590px;
  margin: 26px 0 0;
  color: #526c81;
  font-size: 17px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 33px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 760;
  transition: transform .25s ease, box-shadow .25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 13px 30px rgba(8, 120, 189, .23);
}

.button-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, .76);
  border-color: #cfe5f1;
}

.button svg {
  width: 16px;
  height: 16px;
}

.hero-tags {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-tag {
  padding: 8px 12px;
  border: 1px solid #d2e7f1;
  border-radius: 999px;
  color: #4f6e84;
  background: rgba(255, 255, 255, .65);
  font-size: 12px;
  font-weight: 700;
}

.hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: #e5f2f8;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 38, 66, 0) 72%, rgba(7, 38, 66, .05));
  pointer-events: none;
}

.stats-wrap {
  position: relative;
  z-index: 6;
  margin-top: -58px;
}

.stats-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid #dbeaf2;
  border-radius: 25px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 20px 50px rgba(21, 66, 98, .1);
}

.stat {
  position: relative;
  padding: 25px 30px 24px;
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 23px;
  right: 0;
  bottom: 23px;
  width: 1px;
  background: #e2edf3;
}

.stat-number {
  color: var(--blue);
  font-size: 31px;
  font-weight: 800;
  letter-spacing: -.04em;
}

.stat-label {
  margin-top: 5px;
  color: #738797;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
}

.section {
  padding: 68px 0;
}

.section-soft {
  background: var(--pale);
}

.section-blue {
  background: linear-gradient(145deg, #eff8fd 0%, #f8fcff 100%);
}

.section-dark {
  color: #fff;
  background: var(--navy);
}

.partner-section {
  padding-bottom: 42px;
  background: linear-gradient(180deg, #f8fcff 0%, #eef7fc 100%);
}

.partner-section+.section-soft {
  padding-top: 52px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 35px;
}

.section-head.center {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.section-head.center .eyebrow {
  justify-content: flex-start;
}

.section-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4.2vw, 50px);
  line-height: 1.13;
  letter-spacing: -.035em;
  font-weight: 750;
}

.section-desc {
  max-width: 700px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.section-head.center .section-desc {
  margin-right: 0;
  margin-left: 0;
}

.about-platforms {
  padding-top: 76px;
  padding-bottom: 68px;
  background: linear-gradient(180deg, #f9fcff 0%, #f1f8fc 100%);
}

.about-integrated-head {
  max-width: 950px;
  margin: 0 0 37px;
  text-align: left;
}

.about-integrated-head .eyebrow {
  justify-content: flex-start;
}

.about-integrated-head .section-title {
  max-width: 860px;
  margin: 0;
}

.about-integrated-head .section-desc {
  max-width: 900px;
  margin: 21px 0 0;
  font-size: 16px;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  line-height: 1.82;
}

.team-feature {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  overflow: hidden;
  border: 1px solid #d8e9f2;
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.team-photo {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.team-photo img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.team-content {
  padding: 48px 46px 43px;
}

.team-content h3 {
  margin: 0;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.team-content>p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 27px;
}

.team-stat {
  padding: 18px;
  border: 1px solid #dceaf2;
  border-radius: 17px;
  background: #f7fbfe;
}

.team-stat strong {
  display: block;
  color: var(--blue);
  font-size: 24px;
}

.team-stat span {
  display: block;
  margin-top: 4px;
  color: #788c9b;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.4;
}

.discipline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 23px;
}

.discipline-tags span {
  padding: 7px 10px;
  border-radius: 999px;
  color: #4e7187;
  background: #eaf6fb;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.capability-card {
  min-height: 248px;
  padding: 28px 25px;
  border: 1px solid #dbeaf2;
  border-radius: 24px;
  background: #fff;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.capability-card:hover {
  transform: translateY(-6px);
  border-color: #bddfed;
  box-shadow: var(--shadow-soft);
}

.capability-icon {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  margin-bottom: 28px;
  border-radius: 15px;
  color: var(--blue);
  background: #e9f7fc;
}

.capability-icon svg {
  width: 22px;
  height: 22px;
}

.capability-card h4 {
  margin: 0;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.35;
}

.capability-card p {
  margin: 12px 0 0;
  color: #718596;
  font-size: 12px;
  line-height: 1.7;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.focus-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 34px;
  border-radius: 29px;
  color: #fff;
  background: #0e4f77;
  box-shadow: var(--shadow-soft);
}

.focus-food,
.focus-auto {
  grid-column: span 7;
}

.focus-nutrition,
.focus-health {
  grid-column: span 5;
}

.focus-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.12) saturate(1.04) contrast(.98);
  transition: transform .6s ease, filter .6s ease;
}

.focus-food img {
  filter: brightness(1.04) saturate(1.02) contrast(.99);
}

.focus-card:hover img {
  transform: scale(1.035);
}

.focus-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 55, 87, .78) 0%, rgba(10, 65, 98, .58) 52%, rgba(10, 65, 98, .06) 100%);
}

.focus-nutrition::after,
.focus-health::after {
  background: linear-gradient(180deg, rgba(10, 69, 104, .12), rgba(8, 48, 76, .82) 86%);
}

.focus-body {
  position: relative;
  z-index: 2;
  max-width: 425px;
}

.focus-nutrition .focus-body,
.focus-health .focus-body {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
}

.focus-index {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #75d9f4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
}

.focus-index::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.focus-card h3 {
  margin: 17px 0 0;
  font-size: 27px;
  line-height: 1.18;
  letter-spacing: -.025em;
}

.focus-card p {
  margin: 13px 0 0;
  color: #edf8fc;
  font-size: 14px;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  line-height: 1.7;
  text-shadow: 0 1px 16px rgba(4, 27, 44, .18);
}

.focus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 21px;
}

.focus-tags a {
  display: inline-block;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .14);
  font-size: 12px;
  font-weight: 750;
  backdrop-filter: blur(7px);
  text-decoration: none;
  transition: transform .25s ease, border-color .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.focus-tags a:hover {
  transform: translateY(-2px);
  border-color: #75d9f4;
  background: rgba(117, 217, 244, .22);
  box-shadow: 0 6px 18px rgba(117, 217, 244, .18);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.technology-card {
  position: relative;
  overflow: hidden;
  min-height: 402px;
  padding: 28px 25px 26px;
  border: 1px solid #d8e9f2;
  border-radius: 26px;
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  box-shadow: 0 12px 32px rgba(31, 80, 112, .055);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.technology-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #2f70db, #8fb8ff);
}

.technology-card:hover {
  transform: translateY(-6px);
  border-color: #bddced;
  box-shadow: 0 20px 46px rgba(31, 80, 112, .11);
}

.technology-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.technology-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid #d4e5f5;
  border-radius: 18px;
  color: #2763c2;
  background: #edf4ff;
}

.technology-icon svg {
  width: 27px;
  height: 27px;
}

.technology-type {
  padding: 8px 11px;
  border-radius: 999px;
  color: #275db1;
  background: #edf3ff;
  font-size: 10px;
  font-weight: 800;
}

.technology-card .num {
  display: block;
  margin-top: 27px;
  color: #9ab5cf;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}

.technology-card h3 {
  margin: 7px 0 0;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -.035em;
}

.technology-card h3 sup {
  position: relative;
  top: -.35em;
  font-size: 10px;
  letter-spacing: 0;
}

.technology-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.technology-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}

.technology-tags span {
  padding: 7px 9px;
  border: 1px solid #dbe6ef;
  border-radius: 999px;
  color: #486780;
  background: #f5f8fb;
  font-size: 9px;
  font-weight: 720;
  line-height: 1.25;
}

.rd-production-section {
  overflow: hidden;
  background: linear-gradient(150deg, #edf7fc 0%, #f8fcff 56%, #eef8fd 100%);
}

.rd-production-section .section-head {
  max-width: 880px;
  margin-bottom: 30px;
}

.rd-production-section .section-desc {
  max-width: 840px;
}

.development-feature {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  overflow: hidden;
  min-height: 390px;
  border: 1px solid #d5e8f2;
  border-radius: 30px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 48px rgba(28, 79, 111, .09);
}

.development-media {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background: #dbeaf2;
}

.development-media>img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  transition: transform .6s ease;
}

.development-feature:hover .development-media>img {
  transform: scale(1.025);
}

.development-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 37, 62, .02) 46%, rgba(5, 40, 66, .64) 100%);
}

.development-stage {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  color: #fff;
  background: rgba(8, 47, 78, .7);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  backdrop-filter: blur(9px);
}

.development-stage::before {
  content: "01";
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  color: var(--navy);
  background: #7edcf4;
  font-size: 9px;
  letter-spacing: 0;
}

.reagent-inset {
  position: absolute;
  z-index: 3;
  right: 20px;
  top: 20px;
  width: 190px;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, .94);
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 15px 35px rgba(4, 38, 63, .2);
}

.reagent-inset img {
  height: 112px;
  object-fit: cover;
  object-position: center;
}

.reagent-inset span {
  display: block;
  padding: 9px 11px 10px;
  color: var(--navy);
  background: #fff;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.35;
}

.development-copy {
  align-self: center;
  padding: 38px 40px 36px;
}

.phase-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 820;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.phase-label::before {
  content: "";
  width: 25px;
  height: 1px;
  background: var(--blue-2);
}

.development-copy h3 {
  margin: 14px 0 0;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.23;
  letter-spacing: -.025em;
}

.development-copy>p {
  margin: 16px 0 0;
  color: #647d90;
  font-size: 14px;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  line-height: 1.75;
}

.development-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.development-points li {
  position: relative;
  padding-left: 16px;
  color: #385d76;
  font-size: 12px;
  font-weight: 720;
  line-height: 1.45;
}

.development-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 7px;
  height: 7px;
  border: 2px solid #bde9f6;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 3px #eaf7fb;
}

.production-block {
  margin-top: 26px;
}

.production-intro {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 18px;
  margin-bottom: 17px;
}

.production-index {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  font-size: 10px;
  font-weight: 820;
  box-shadow: 0 9px 22px rgba(8, 120, 189, .2);
}

.production-intro h3 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -.02em;
}

.production-intro p {
  max-width: 780px;
  margin: 7px 0 0;
  color: #6c8395;
  font-size: 14px;
  line-height: 1.65;
}

.production-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.production-card {
  overflow: hidden;
  border: 1px solid #d7e8f1;
  border-radius: 23px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 12px 32px rgba(26, 78, 111, .06);
  transition: transform .28s ease, box-shadow .28s ease;
}

.production-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 39px rgba(26, 78, 111, .11);
}

.production-photo {
  position: relative;
  height: 205px;
  overflow: hidden;
  background: #dbeaf2;
}

.production-photo img {
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.production-card:hover .production-photo img {
  transform: scale(1.03);
}

.production-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(5, 39, 64, .42) 100%);
}

.production-step {
  position: absolute;
  z-index: 2;
  left: 16px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  color: #fff;
  background: rgba(9, 51, 82, .72);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  backdrop-filter: blur(7px);
}

.production-copy {
  padding: 20px 21px 21px;
}

.production-copy small {
  color: #7f9db0;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.production-copy h4 {
  margin: 8px 0 0;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.3;
}

.production-copy p {
  margin: 9px 0 0;
  color: #6d8495;
  font-size: 14px;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

.operating-system {
  display: grid;
  grid-template-columns: 1.15fr repeat(4, 1fr);
  align-items: stretch;
  overflow: hidden;
  margin-top: 30px;
  border: 1px solid #d5e8f2;
  border-radius: 20px;
  background: rgba(255, 255, 255, .86);
}

.operating-system-title {
  display: flex;
  align-items: center;
  padding: 18px 22px;
  color: #fff;
  background: var(--navy);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.operating-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 70px;
  padding: 15px 16px;
  color: #315b75;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.4;
}

.operating-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 17px;
  right: 0;
  bottom: 17px;
  width: 1px;
  background: #dceaf2;
}

.operating-item span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 9px;
  color: var(--blue);
  background: #e5f5fb;
  font-size: 14px;
  font-weight: 820;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  margin-top: 12px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 51px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: #bcddea;
}

.milestone {
  position: relative;
  padding: 0 14px;
  text-align: center;
}

.milestone-dot {
  position: relative;
  z-index: 1;
  width: 15px;
  height: 15px;
  margin: 22px auto 23px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px #dbf0f8;
}

.milestone-year {
  color: var(--blue);
  font-size: 22px;
  font-weight: 820;
  letter-spacing: -.03em;
}

.milestone h4 {
  min-height: 34px;
  margin: 10px 0 0;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.4;
}

.milestone p {
  margin: 8px 0 0;
  color: #8294a2;
  font-size: 12px;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

.partner-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  margin: 32px 0 18px;
  border: 1px solid #d8e9f2;
  border-radius: 23px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 34px rgba(27, 78, 111, .06);
}

.partner-metric {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 154px;
  padding: 26px 30px 28px;
}

.partner-metric:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 23px;
  right: 0;
  bottom: 23px;
  width: 1px;
  background: #dceaf2;
}

.partner-metric .metric-kicker {
  color: #7f99aa;
  font-size: 8px;
  font-weight: 820;
  letter-spacing: .15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.partner-metric strong {
  margin-top: 10px;
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -.045em;
}

.partner-metric p {
  max-width: 255px;
  margin: 11px 0 0;
  color: #536f84;
  font-size: 14px;
  font-weight: 720;
  line-height: 1.48;
}

.impact-explanations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.impact-explanation {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 22px;
  border: 1px solid #d9eaf2;
  border-radius: 19px;
  background: rgba(239, 248, 252, .82);
}

.impact-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #cee5f1;
  border-radius: 13px;
  color: var(--blue);
  background: #fff;
}

.impact-icon svg {
  width: 20px;
  height: 20px;
}

.impact-explanation h3 {
  margin: 1px 0 0;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.35;
}

.impact-explanation p {
  margin: 7px 0 0;
  color: #6a8193;
  font-size: 12px;
  line-height: 1.62;
}

.impact-note {
  margin: 12px 3px 0;
  color: #8499a8;
  font-size: 12px;
  line-height: 1.55;
}

.partner-diamond-block {
  margin-top: 31px;
}

.partner-diamond-head h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.25;
}

.partner-diamond-head p {
  max-width: 720px;
  margin: 8px 0 0;
  color: #718698;
  font-size: 12px;
  line-height: 1.65;
}

.partner-diamond-figure {
  width: min(100%, 1040px);
  margin: 24px auto 0;
}

.partner-diamond-figure img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.why-section {
  background: linear-gradient(180deg, #f8fcff 0%, #eef8fd 100%);
}

.why-section .section-head {
  max-width: 860px;
  margin-bottom: 32px;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.advantage-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 452px;
  padding: 30px 29px 27px;
  border: 1px solid #d6e8f2;
  border-radius: 26px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 13px 36px rgba(27, 78, 111, .065);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.advantage-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #168dcb, #79d7f0);
}

.advantage-card:nth-child(2)::before {
  background: linear-gradient(90deg, #2569c4, #86b4f4);
}

.advantage-card:nth-child(3)::before {
  background: linear-gradient(90deg, #0878bd, #36bcd9);
}

.advantage-card:hover {
  transform: translateY(-5px);
  border-color: #bddfed;
  box-shadow: 0 20px 44px rgba(27, 78, 111, .11);
}

.advantage-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.advantage-icon {
  display: grid;
  place-items: center;
  width: 53px;
  height: 53px;
  border: 1px solid #d7eaf4;
  border-radius: 17px;
  color: var(--blue);
  background: #eaf7fc;
}

.advantage-icon svg {
  width: 25px;
  height: 25px;
}

.advantage-number {
  color: #e3f0f6;
  font-size: 47px;
  font-weight: 820;
  line-height: .9;
  letter-spacing: -.065em;
}

.advantage-kicker {
  margin: 25px 0 0;
  color: var(--blue);
  font-size: 9px;
  font-weight: 820;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.advantage-card h3 {
  margin: 11px 0 0;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.advantage-card>p:not(.advantage-kicker) {
  margin: 15px 0 0;
  color: #687f91;
  font-size: 12px;
  line-height: 1.75;
}

.advantage-evidence {
  display: grid;
  gap: 9px;
  margin: 23px 0 0;
  padding: 19px 0 0;
  border-top: 1px solid #e0edf3;
  list-style: none;
}

.advantage-evidence li {
  position: relative;
  padding-left: 17px;
  color: #3d6179;
  font-size: 12px;
  font-weight: 720;
  line-height: 1.45;
}

.advantage-evidence li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px #e7f6fb;
}

.advantage-outcome {
  margin-top: auto;
  padding-top: 22px;
}

.advantage-outcome div {
  padding: 15px 16px;
  border-radius: 16px;
  color: #305c75;
  background: #eff8fc;
  font-size: 12px;
  font-weight: 780;
  line-height: 1.55;
}

.advantage-outcome strong {
  display: block;
  margin-bottom: 4px;
  color: #7e99aa;
  font-size: 14px;
  font-weight: 820;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.cta-section {
  padding: 40px 0;
  background: #eef8fc;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 45px;
  padding: 54px 58px;
  border-radius: 31px;
  color: #fff;
  background: linear-gradient(135deg, #0b2f53, #076fa9);
  box-shadow: var(--shadow);
}

.cta-panel::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -150px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
}

.cta-copy {
  position: relative;
  z-index: 2;
}

.cta-kicker {
  color: #78d7f3;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.cta-panel h2 {
  max-width: 680px;
  margin: 12px 0 0;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.18;
  letter-spacing: -.03em;
  color: #fff;
}

.cta-panel p {
  max-width: 650px;
  margin: 14px 0 0;
  color: #c9e1ed;
  font-size: 13px;
  line-height: 1.7;
}

.cta-panel .button {
  position: relative;
  z-index: 2;
  color: var(--navy);
  background: #fff;
  white-space: nowrap;
}

.site-footer {
  padding: 57px 0 22px;
  color: #b7ccda;
  background: #edeef1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .8fr .9fr;
  gap: 55px;
  padding-bottom: 45px;
}

.footer-brand .brand-name {
  color: #fff;
}

.footer-brand .brand-sub {
  color: #7894a7;
}

.footer-brand>p {
  max-width: 335px;
  margin: 21px 0 0;
  color: #8ea9ba;
  font-size: 12px;
  line-height: 1.75;
}

.footer-col h4 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 12px;
}

.footer-col a,
.footer-col p {
  display: block;
  margin: 0 0 11px;
  color: #8faabb;
  font-size: 10px;
  line-height: 1.55;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  color: #6f8b9e;
  font-size: 9px;
}

.reveal {
  animation: rise .65s ease both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1060px) {
  .desktop-nav {
    gap: 20px;
  }

  .desktop-nav a {
    font-size: 12px;
  }

  .capability-grid,
  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .development-feature {
    grid-template-columns: 1fr 1fr;
  }

  .development-copy {
    padding: 34px 31px;
  }

  .development-copy h3 {
    font-size: 25px;
  }

  .production-photo {
    height: 185px;
  }

  .partner-diamond-figure {
    width: min(100%, 920px);
  }

  .timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 0;
  }

  .timeline::before {
    display: none;
  }

  .milestone {
    border-top: 1px solid #cfe3ec;
    padding-top: 13px;
  }

  .milestone-dot {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .hero {
    min-height: auto;
    padding: 62px 0 0;
    background: #f4fbfe;
  }

  .hero::before {
    display: none;
  }

  .hero-grid,
  .team-feature,
  .platform-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .about-platforms {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .about-integrated-head {
    margin-bottom: 36px;
  }

  .hero-copy {
    max-width: 650px;
  }

  .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    height: 360px;
    margin-top: 38px;
  }

  .hero-media img {
    object-position: 67% center;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(244, 251, 254, .64) 0%, rgba(244, 251, 254, 0) 30%, rgba(7, 38, 66, .04) 100%);
  }

  .stats-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat:nth-child(2)::after {
    display: none;
  }

  .stat:nth-child(-n+2) {
    border-bottom: 1px solid #e2edf3;
  }

  .section {
    padding: 58px 0;
  }

  .team-photo {
    min-height: 430px;
  }

  .focus-food,
  .focus-auto,
  .focus-nutrition,
  .focus-health {
    grid-column: span 12;
  }

  .focus-card {
    min-height: 365px;
  }

  .development-feature {
    grid-template-columns: 1fr;
  }

  .development-media {
    min-height: 365px;
  }

  .development-copy {
    padding: 34px 32px 36px;
  }

  .production-grid {
    grid-template-columns: 1fr;
  }

  .production-photo {
    height: 285px;
  }

  .operating-system {
    grid-template-columns: repeat(2, 1fr);
  }

  .operating-system-title {
    grid-column: span 2;
  }

  .operating-item:nth-child(3)::after {
    display: none;
  }

  .operating-item:nth-child(2),
  .operating-item:nth-child(3) {
    border-bottom: 1px solid #dceaf2;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-proof {
    grid-template-columns: 1fr;
  }

  .partner-metric {
    min-height: 125px;
  }

  .partner-metric:not(:last-child)::after {
    top: auto;
    right: 24px;
    bottom: 0;
    left: 24px;
    width: auto;
    height: 1px;
  }

  .impact-explanations {
    grid-template-columns: 1fr;
  }

  .partner-diamond-figure {
    margin-top: 20px;
  }

  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .advantage-card {
    min-height: 0;
  }

  .cta-panel {
    padding: 42px 36px;
  }

  .cta-panel .button {
    justify-self: start;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 560px) {
  .brand-sub {
    display: none;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-media {
    height: 285px;
    margin-top: 32px;
  }

  .hero-media img {
    object-position: 68% center;
  }

  .stats-wrap {
    margin-top: -46px;
  }

  .stat {
    padding: 20px;
  }

  .stat-number {
    font-size: 26px;
  }

  .section {
    padding: 52px 0;
  }

  .section-title {
    font-size: 34px;
  }

  .about-platforms {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .about-integrated-head {
    margin-bottom: 31px;
    text-align: left;
  }

  .about-integrated-head .eyebrow {
    justify-content: flex-start;
  }

  .about-integrated-head .section-title,
  .about-integrated-head .section-desc {
    margin-right: 0;
    margin-left: 0;
  }

  .team-photo {
    min-height: 300px;
  }

  .team-content {
    padding: 32px 24px;
  }

  .capability-grid,
  .team-stats {
    grid-template-columns: 1fr;
  }

  .advantage-card {
    padding: 27px 23px 24px;
  }

  .rd-production-section .section-head {
    margin-bottom: 25px;
  }

  .development-media {
    min-height: 310px;
  }

  .development-stage {
    left: 16px;
    bottom: 16px;
  }

  .reagent-inset {
    top: 14px;
    right: 14px;
    width: 150px;
    border-width: 4px;
  }

  .reagent-inset img {
    height: 88px;
  }

  .development-copy {
    padding: 29px 23px 31px;
  }

  .development-copy h3 {
    font-size: 23px;
  }

  .development-points {
    grid-template-columns: 1fr;
  }

  .production-intro {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .production-index {
    width: 43px;
    height: 43px;
  }

  .production-photo {
    height: 220px;
  }

  .operating-system {
    grid-template-columns: 1fr;
  }

  .operating-system-title {
    grid-column: auto;
  }

  .operating-item {
    min-height: 58px;
  }

  .operating-item:not(:last-child)::after {
    top: auto;
    right: 16px;
    bottom: 0;
    left: 16px;
    width: auto;
    height: 1px;
  }

  .operating-item:nth-child(2),
  .operating-item:nth-child(3) {
    border-bottom: 0;
  }

  .partner-section {
    padding-bottom: 36px;
  }

  .partner-section+.section-soft {
    padding-top: 46px;
  }

  .partner-diamond-head h3 {
    font-size: 19px;
  }

  .partner-diamond-figure {
    width: calc(100% - 8px);
  }

  .capability-card {
    min-height: 0;
  }

  .focus-card {
    padding: 25px;
  }

  .focus-nutrition .focus-body,
  .focus-health .focus-body {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .milestone {
    padding: 15px 18px;
    border: 1px solid #d7e8f0;
    border-radius: 16px;
    text-align: left;
  }

  .milestone h4 {
    min-height: auto;
  }

  .cta-panel {
    padding: 35px 25px;
    border-radius: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}