.page-body {
  background: #fff; 
}

.page-body .topbar.scrolled {
  background-color: rgba(9, 22, 45, .92);
}

.inner-hero {
  position: relative;
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
  background: #06121f url("./page-bg.png") center/cover no-repeat;
  isolation: isolate;
}

.inner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 9, 12, .84), rgba(1, 14, 24, .56) 34%, rgba(1, 19, 39, .05) 68%),
    linear-gradient(180deg, rgba(1, 9, 13, .05), rgba(2, 8, 17, .25) 100%);
}

.inner-bg {
  display: block;
  position: relative;
  z-index: 1;
  mix-blend-mode: screen;
  padding-bottom: 4rem;
}

.inner-bg img {
  display: block;
  width: min(45vw, 48rem);
  height: auto;
  object-fit: contain;
  object-position: 0 0;
  opacity: .95;
  mix-blend-mode: screen;
  filter: brightness(1.05) contrast(1.08) saturate(1.08);
}

.inner-banner {
  position: relative;
  z-index: 2;
  width: min(96rem, 80vw);
  min-height: min(100vh, 58.75rem);
  display: flex;
  justify-content: space-between;
  padding-top: 2vw;
  /* padding-bottom: 6rem; */
}

.inner-banner div {
  flex: 1;
}

.inner-banner>div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-kicker,
.eyebrow,
.card-index,
.metric-label,
.model-card p,
.process-item p,
.product-card p,
.person-role,
.form-grid label,
.form-grid .form-group,
.footer-note {
  font-family: "FoundersGrotesk", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  width: fit-content;
  min-width: 17.75rem;
  font-family: "FoundersGrotesk", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: .86rem;
  line-height: 1;
  padding: .77rem 1rem .72rem 1.25rem;
  border: 1px solid rgba(16, 31, 53, .2);
  border-radius: 999px;
  background: transparent;
  color: #23334d;
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}

.btn::after {
  content: "";
  width: 1.125rem;
  height: 1.125rem;
  flex: 0 0 1.125rem;
  background: url("./link-black.png") center/contain no-repeat;
}

.btn:hover {
  background: #22bcea;
  color: #fff;
  border-color: #3dbfe8;
}

.btn-primary {
  background: #13aee8;
  border-color: #13aee8;
  color: #fff;
}

.btn-primary::after {
  background-image: url("./link-white.png");
}

.btn-primary:hover {
  background: #0aa1da;
  border-color: #0aa1da;
}

.btn:hover::after {
  background-image: url("./link-white.png");
}

.reveal {
  opacity: 0;
  transform: translateY(1.875rem);
  transition: .8s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
  /* background: #effaff; */
}

.inner-hero .page-kicker {
  margin: 0 0 2.8rem;
  color: #0aa1da;
  /* font-size: clamp(1.25rem, .92rem + .78vw, 2.25rem); */
  letter-spacing: 0;
  margin-top: 7vw;
}

.inner-hero h1 {
  margin: 0;
  margin-top: 3rem;
  max-width: 42rem;
  font-size: 4.2vw;
  line-height: 1.02;
  font-weight: 400;
}

.inner-hero h5 {
  margin: 0;
  /* max-width: 32rem; */
  color: rgba(255, 255, 255, 0.5);
  font-family: "FoundersGrotesk", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: clamp(1rem, .8rem + .42vw, 1.38rem);
  font-weight: 400;
  line-height: 1.24;
  margin-top: -8vw;
}

.inner-section {
  padding: clamp(4.5rem, 4vw, 6rem) 0;
  background: #fff;
}

.inner-section.tint {
  background: #effaff;
}

.inner-section.deep {
  background: #6f7b88;
  color: #fff;
}

.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.25rem;
}

.section-head h2,
.split-head h2,
.consult h2 {
  margin: 0;
  font-size: clamp(1.95rem, 1.68rem + .78vw, 2.65rem);
  line-height: 1.08;
  font-weight: 400;
}

.section-head p,
.split-head p {
  margin: 0;
  max-width: 32rem;
  color: #6f7f92;
  font-size: 1rem;
  line-height: 1.55;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-card,
.model-card,
.pipeline-card,
.strain-card,
.metric-card {
  background: #effaff;
  padding: 1.625rem;
}

.card-index {
  display: block;
  color: #333;
  font-size: .8125rem;
  margin-bottom: .8rem;
}

.feature-card h3,
.model-card h3,
.pipeline-card h3,
.product-card h3,
.strain-card h3 {
  margin: 0 0 .9rem;
  color: #253752;
  font-size: clamp(1.2rem, 1.06rem + .45vw, 1.55rem);
  line-height: 1.12;
  font-weight: 400;
  height: 5rem;
}

.feature-card p,
.pipeline-card p,
.strain-card p {
  margin: 0;
  margin-top: 4rem;
  color: #738397;
  font-size: .75rem;
  line-height: 1.45;
  margin-bottom: 1.625rem;
  font-weight: 400;
}
.feature-card p em,
.pipeline-card p em,
.strain-card p em{
  font-style: normal;
  color: #333;
}

.media-large img,
.product-card img,
.infra-card img,
.person-card img,
.strain-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-large {
  margin-bottom: 1.5rem;
}

.media-large img {
  aspect-ratio: 16 / 7.4;
}

.media-caption {
  margin: .8rem 0 0;
  color: #38465d;
  font-size: 1.15rem;
}

.production-base {
  overflow: visible;
}

.production-base h2 {
  margin: 0 0 2.25rem;
  color: #12233f;
  font-size: 2rem;
  line-height: 1.18;
  font-weight: 400;
}

.production-hero-image {
  margin-bottom: 2rem;
}

.production-hero-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1536 / 754;
  object-fit: cover;
}

.base-site-title,
.factory-head h3 {
  margin: 0;
  color: #12233f;
  font-size: clamp(1.45rem, 1.15rem + .9vw, 2.05rem);
  line-height: 1.15;
  font-weight: 400;
}

.base-site-title {
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.base-carousel {
  --active-slide: 40rem;
  --compact-slide: 24rem;
  --active-height: min(34vw, 32rem);
  --compact-height: min(23.5vw, 22rem);
  --slide-gap: 1.35rem;
  position: relative;
  overflow: visible;
  padding-bottom: 8.6rem;
}

.base-track {
  display: flex;
  align-items: flex-start;
  height: var(--active-height);
  transition-property: transform;
  transition-timing-function: ease;
}

.base-slide {
  position: relative;
  flex: 0 0 var(--compact-slide);
  width: var(--compact-slide);
  height: var(--compact-height);
  overflow: hidden;
  background: #d6e8fb;
  transition:
    flex-basis .65s ease,
    width .65s ease,
    height .65s ease;
}

.base-slide.swiper-slide-active {
  flex-basis: var(--active-slide);
  width: var(--active-slide);
  height: var(--active-height);
  overflow: visible;
  z-index: 2;
}

.base-slide img {
  display: block;
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  /* filter: saturate(.82) contrast(.94); */
}

.base-slide.swiper-slide-active img {
  width: 100%;
}

.base-slide-copy {
  /* display: none; */
}

.base-current {
  display: none;
  position: absolute;
  z-index: 2;
  left: calc(var(--active-slide) + var(--slide-gap));
  top: calc(var(--compact-height) + 4.6rem);
  width: min(26.6rem, var(--compact-slide));
  color: #142540;
}

.base-slide.swiper-slide-active .base-current {
  display: block;
}

.base-current h4 {
  margin: 0 0 1.05rem;
  font-family: "FoundersGrotesk", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 1.28rem;
  line-height: 1.12;
  font-weight: 700;
}

.base-current p {
  margin: 0;
  font-family: "FoundersGrotesk", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

.base-current-categories {
  color: #8b9caf;
  font-size: .88rem;
  line-height: 1.28;
}

.base-current-detail {
  display: block;
  margin-top: .8rem !important;
  color: #8b98a9;
  font-size: .96rem;
  line-height: 1.28;
}

.base-arrows {
  position: absolute;
  z-index: 10;
  right: 0;
  top: calc(var(--compact-height) + 6.7rem);
  display: flex;
  gap: .9rem;
}

.base-arrow {
  --carousel-arrow-size: 3.1rem;
}

.korea-factory {
  margin-top: 4.7rem;
}

.factory-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.05rem;
  align-items: start;
  margin-bottom: 1.45rem;
}

.factory-head p {
  margin: .2rem 0 0;
  color: #263855;
  font-family: "FoundersGrotesk", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: .98rem;
  line-height: 1.45;
}

.factory-image {
  position: relative;
}

.factory-image>img {
  display: block;
  width: 100%;
  aspect-ratio: 1536 / 512;
  object-fit: cover;
}

.factory-logo {
  position: absolute;
  left: 17%;
  bottom: 0;
  width: 20rem;
  max-width: 32%;
  padding: 1.65rem 2.45rem;
  background: #fff;
}

.factory-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.base-metrics {
  margin-top: 3.35rem;
  gap: 1.05rem;
}

.base-metrics .metric-card {
  min-height: 13.45rem;
  padding: 1.35rem 1.35rem 1.65rem;
  background: #fff;
}

.base-metrics .metric-card img {
  display: block;
  width: 3.85rem;
  height: 3.85rem;
  object-fit: contain;
}

.base-metrics .metric-card strong {
  margin-top: 4.1rem;
  color: #09adee;
  font-size: clamp(2rem, 1.4rem + 1.8vw, 3rem);
  line-height: 1;
}

.base-metrics .metric-label {
  display: block;
  color: #142540;
  font-family: "FoundersGrotesk", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: .76rem;
  line-height: 1.2;
}

.gallery-row,
.product-grid,
.infra-grid,
.strain-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}

.gallery-card {
  min-height: 12rem;
  background: #d9e8f4;
  overflow: hidden;
}

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

.metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.75rem;
}

.metric-card {
  min-height: 10rem;
}

.metric-card strong {
  display: block;
  margin-top: 1.3rem;
  color: #1ebce9;
  font-size: clamp(2rem, 1.5rem + 1.4vw, 3.05rem);
  font-weight: 500;
}

.metric-label {
  color: #8aa0b2;
}

.inner-section.process {
  background: #fff;
}

.timeline {
  --process-art-width: min(22.625rem, 35vw);
  position: relative;
  min-height: clamp(54rem, 63vw, 62.8125rem);
  margin-top: 4.5rem;
  counter-reset: process;
  background: url("../images/manufacturing/oem-process-timeline.png") center top / var(--process-art-width) 100% no-repeat;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: #9daab5;
  display: none;
}

.process-item {
  position: absolute;
  top: var(--process-y);
  width: calc((100% - var(--process-art-width)) / 2 - 1.75rem);
  min-height: 0;
  transform: translateY(-2.15rem);
  counter-increment: process;
}

.process-item:nth-child(1) {
  --process-y: 11.44%;
}

.process-item:nth-child(2) {
  --process-y: 25.82%;
}

.process-item:nth-child(3) {
  --process-y: 44.53%;
}

.process-item:nth-child(4) {
  --process-y: 59.05%;
}

.process-item:nth-child(5) {
  --process-y: 77.76%;
}

.process-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.process-item:nth-child(even) {
  left: calc(50% + var(--process-art-width) / 2 + 1.75rem);
}

.process-item::before {
  content: counter(process, decimal-leading-zero);
  display: block;
  margin-bottom: .55rem;
  color: #061832;
  font-family: "FoundersGrotesk", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 1rem;
  line-height: 1;
}

.process-item::after {
  content: "";
  position: absolute;
  top: .4rem;
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: #1ebce9;
  box-shadow: 0 0 0 6px rgba(30, 188, 233, .1);
  display: none;
}

.process-item:nth-child(odd)::after {
  right: -2.8rem;
}

.process-item:nth-child(even)::after {
  left: -2.75rem;
}

.process-item h3 {
  margin: 0 0 .5rem;
  color: #061832;
  font-size: clamp(1.55rem, 1.25rem + .72vw, 2.15rem);
  line-height: 1.12;
  font-weight: 400;
}

.process-item p {
  margin: 0;
  color: #061832;
  font-size: clamp(.9rem, .8rem + .24vw, 1.08rem);
  line-height: 1.45;
}

.brand-strip {
  overflow: hidden;
}

.brand-strip .section-head {
  position: relative;
  align-items: flex-start;
  margin-bottom: clamp(3.5rem, 6vw, 6.6rem);
}

.brand-strip .section-head p,
.inner-section.deep .section-head p {
  color: rgba(255, 255, 255, .74);
}

.brand-arrows {
  position: absolute;
  right: 0;
  bottom: -4.25rem;
  display: flex;
  gap: .75rem;
}

.brand-arrow {
  --carousel-arrow-size: 2.75rem;
}

.brand-carousel {
  overflow: visible;
}

.brand-track {
  align-items: flex-start;
}

.brand-slide {
  /* width: min(25.4rem, 31vw);*/
  width: 18.5rem;
}

.brand-slide h3 {
  margin: 1.05rem 0 0;
  color: #fff;
  font-family: "FoundersGrotesk", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: clamp(1.2rem, .95rem + .45vw, 1.55rem);
  font-weight: 600;
  line-height: 1.1;
}

.brand-slide p {
  margin: .85rem 0 0;
  color: rgba(255, 255, 255, .55);
  font-family: "FoundersGrotesk", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: .88rem;
  line-height: 1.35;
}

.brand-card {
  background: #fff;
  color: #253752;
  aspect-ratio: 492 / 300;
  display: grid;
  place-items: center;
  text-align: center;
}

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

.brand-card strong {
  font-size: 1.45rem;
  font-weight: 500;
}

.split-head {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 2.65rem;
}

.split-head h2 {}

.split-head p {
  max-width: 33rem;
  color: #24324a;
  font-family: "SabonLTPro", "Times New Roman", serif;
  font-size: 1.38rem;
  line-height: 1.08;
}

.procurement-actions {
  display: grid;
  justify-items: start;
  gap: .8rem;
  margin-top: 1.6rem;
}

.product-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1rem;
  align-items: start;
}

.product-card {
  min-width: 0;
  overflow: visible;
}

.product-card img {
  aspect-ratio: 1.68 / 1;
  height: auto;
  background: #e3edf3;
}

.product-card h3 {
  height: auto;
  margin-top: 1rem;
  margin-bottom: .65rem;
  font-size: 1.58rem;
  line-height: 1.08;
}

.product-card p {
  margin: 0;
  color: #7b8998;
  max-width: 29rem;
  font-size: .8rem;
  line-height: 1.35;
  overflow: visible;
}

.partnership {
  background: #effaff;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.model-card {
  min-height: 18.75rem;
  padding: 1.5rem 1.45rem;
  background: #fff;
}

.model-copy {
  min-width: 0;
}

.model-icon {
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.25rem;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
}

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

.model-card p {
  max-width: 11rem;
  margin-top: 2.7rem;
  color: #738397;
  font-size: .8rem;
  line-height: 1.15;
}

.inner-section.team {
  background: #fff;
}

.team-section {
  position: relative;
}

.team-carousel {
  position: relative;
  overflow: hidden;
}

.team-slide h2 {
  margin: 0 0 2.55rem;
  max-width: 64rem;
  color: #10203a;
  font-family: var(--font-serif);
  font-size: 2rem;
  line-height: .95;
  font-weight: 400;
  letter-spacing: 0;
}

.team-arrows {
  position: absolute;
  z-index: 2;
  top: 5rem;
  right: 0;
  display: flex;
  gap: 1rem;
}

.team-arrow {
  --carousel-arrow-size: 3.35rem;
}

.person-card {
  display: grid;
  grid-template-columns: minmax(18rem, .72fr) 1fr;
  gap: 2.2rem;
  align-items: stretch;
}

.person-card img {
  aspect-ratio: 1 / 1.14;
  object-position: center top;
  background: #d9e3ea;
}

.person-copy {
  padding-top: 1.3rem;
}

.person-copy h3 {
  margin: 0 0 .2rem;
  color: #10203a;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.05;
}

.person-role {
  margin: 0 0 2.4rem;
  color: #0e1725;
  font-size: 1.05rem;
  line-height: 1.25;
}

.person-copy p {
  margin: 0 0 1.15rem;
  color: #7d858f;
  font-size: 0.8rem;
  line-height: 1.36;
}

.person-copy .person-email {
  margin-top: 1.7rem;
  color: #13aee4;
  font-size: .8rem;
}

p.person-role {
  margin-bottom: 3rem;
}

.person-email a {
  color: inherit;
  text-decoration: none;
}

.person-copy .btn {
  margin-top: .25rem;
}

.consult {
  background: #eefbff;
}

.consult-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 4rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 1.75rem;
}

.form-grid label,
.form-grid .form-group {
  color: #5b6a7b;
  font-size: .82rem;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  margin-top: .35rem;
  border: 0;
  border-bottom: 1px solid #bfd1db;
  background: transparent;
  min-height: 2rem;
  color: #253752;
  font: inherit;
  outline: none;
}

.form-grid input[type="checkbox"] {
  display: inline-block;
  height: 0;
  border-radius: 0;
}

.form-grid textarea,
.form-wide {
  grid-column: 1 / -1;
}

.checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(8rem, 1fr));
  gap: .6rem 1.5rem;
  margin-top: .7rem;
}

.checks label {
  display: flex;
  align-items: center;
  height: 20px;
}

.checks input {
  content: "";
  display: inline-block;
  width: .72rem;
  height: .72rem;
  margin-right: .45rem;
  border: 1px solid #a9bfca;
  vertical-align: center;
}

.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.pipeline-card {
  display: flex;
  min-height: 24rem;
  flex-direction: column;
  padding: 1.95rem 2rem 2.15rem;
  transition: background-color .25s ease, transform .25s ease;
}

.pipeline-card:hover {
  background: #e7f6fc;
  transform: translateY(-2px);
}

.pipeline-card .card-index {
  color: #071830;
  font-size: .94rem;
  margin-bottom: .75rem;
}

.pipeline-card h3 {
  height: auto;
  min-height: 4.8rem;
  margin: 0 0 2.2rem;
  color: #071830;
  font-size: 1.5rem;
  line-height: 1.12;
}

.pipeline-card p {
  margin: 0;
}

p.pipeline-milestone {
  color: #333;
}

.pipeline-copy {
  color: #74869a;
  /* font-family: "FoundersGrotesk", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif; */
  font-size: .98rem;
  line-height: 1.36;
}

.pipeline-milestone {
  margin-top: auto !important;
  padding-top: 1.9rem;
  color: #071830;
  font-family: "FoundersGrotesk", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: .98rem;
  line-height: 1.35;
}

.strain-library {
  overflow: hidden;
  padding: 4.75rem 0 6.35rem;
}

.strain-library .container {
  width: 80vw;
}

.strain-library .section-head {
  margin-bottom: 2.45rem;
}

.strain-library .section-head h2 {
  color: #12233f;
  font-size: 2.25rem;
}

.strain-carousel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.55rem;
}

.strain-library .eyebrow {
  margin: 0;
  color: #12233f;
  font-size: 1.55rem;
  line-height: 1.1;
}

.strain-arrows {
  display: flex;
  gap: .75rem;
}

.strain-arrow {
  --carousel-arrow-size: 2.25rem;
}

.strain-carousel {
  margin-right: calc((100% - 100vw) / 2);
  overflow: visible;
}

.strain-product {
  width: 18.25rem;
  color: #12233f;
}

.strain-product img {
  display: block;
  width: 100%;
  aspect-ratio: 1.64 / 1;
  object-fit: cover;
}

.strain-product h3 {
  margin: 1rem 0 .4rem;
  color: #12233f;
  font-family: "FoundersGrotesk", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 1.06rem;
  line-height: 1.12;
  font-weight: 700;
}

.strain-product p {
  margin: 0;
  color: #7f8d9d;
  font-family: "FoundersGrotesk", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: .78rem;
  line-height: 1.25;
}

.strain-library .strain-subhead {
  margin-top: 4.55rem;
  margin-bottom: 1.55rem;
}

.strain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 0;
}

.strain-card {
  /* display: flex; */
  min-height: 13.75rem;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.25rem 1.35rem;
  background: #fff;
}

.strain-card::before {
  content: "";
  display: block;
  width: 4rem;
  height: 4rem;
  margin: 0 0 auto .55rem;
  background: url("../images/research-development/icon-strain.png") center/contain no-repeat;
}

.strain-card h3 {
  height: auto;
  margin: 2.1rem 0 .45rem;
  color: #12233f;
  font-family: "FoundersGrotesk", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: .98rem;
  line-height: 1.14;
  font-weight: 700;
}

.strain-card p {
  margin: 0;
  color: #7f8d9d;
  font-family: "FoundersGrotesk", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: .78rem;
  line-height: 1.28;
  font-weight: 400;
}

.strain-lab {
  margin: 4.25rem 0 2.25rem;
}

.strain-lab img {
  aspect-ratio: 16 / 7.85;
}

.patent-banner {
  position: relative;
  min-height: 20rem;
  background: url("../images/research-development/research-background.jpg") center/cover no-repeat;
}

.patent-box {
  position: absolute;
  right: max(4vw, calc((100vw - 65rem) / 2));
  top: 50%;
  width: min(28rem, 42vw);
  transform: translateY(-50%);
  background: #fff;
  padding: 2.3rem;
}

.patent-box h2 {
  margin: 0 0 1rem;
  font-size: 2rem;
  font-weight: 500;
}

.rd-infrastructure {
  padding-top: clamp(4.8rem, 5.8vw, 7.25rem);
}

.rd-infrastructure .section-head {
  margin-bottom: 3rem;
}

.rd-infrastructure .section-head h2 {
  color: #142540;
  font-size: clamp(2.55rem, 2rem + 1.65vw, 4rem);
  line-height: 1;
}

.map-wrap {
  margin: 0 -4.5rem;
}

.map-wrap img {
  display: block;
  width: 100%;
}

.patent-title {
  margin: -2.8rem 0 1.8rem;
  color: #142540;
  font-size: clamp(2rem, 1.65rem + 1vw, 2.75rem);
  line-height: 1.05;
  font-weight: 400;
  margin-top: -10rem;
}

.patent-summary {
  display: flex;
  gap: 2.1rem;
  align-items: start;
  margin-bottom: 6.4rem;
}

.patent-total {
  flex: 0 0 2rem;
  padding-top: 3.2rem;
}

.patent-total strong {
  display: block;
  color: #13afe9;
  font-size: 1.72rem;
  line-height: 1.12;
  font-weight: 400;
}

.patent-total span {
  display: block;
  margin-top: .75rem;
  color: #142540;
  font-family: "FoundersGrotesk", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: .95rem;
}

.patent-metrics {
  display: grid;
  flex: 1 1 auto;
  min-width: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.35rem;
  margin: 0;
}

.patent-card {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  min-height: 17.6rem;
  padding: 3.45rem 1.2rem 1.75rem;
  text-align: center;
  border: 1px solid #8d97a4;
  background: #fff;
}

.patent-card strong {
  display: block;
  margin: 0 0 3.55rem;
  color: #13afe9;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 400;
}

.patent-card h4 {
  margin: 0;
  color: #142540;
  font-size: 1.2rem;
  line-height: 1.05;
  font-weight: 400;
}

.patent-card p {
  margin: .9rem 0 0;
  color: #99a4b3;
  font-family: "FoundersGrotesk", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: .8rem;
  line-height: 1.25;
}

.infra-carousel {
  --active-slide: 30rem;
  --compact-slide: 24rem;
  --active-height: min(47.5vw, 46.2rem);
  --compact-height: min(32.7vw, 30.5rem);
  --slide-gap: 1.35rem;
  position: relative;
  overflow: visible;
  padding-bottom: 9rem;
}

.infra-track {
  display: flex;
  align-items: flex-start;
  height: var(--active-height);
  transition-property: transform;
  transition-timing-function: ease;
}

.infra-slide {
  position: relative;
  flex: 0 0 var(--compact-slide);
  width: var(--compact-slide);
  height: var(--compact-height);
  overflow: hidden;
  background: #dbe8f0;
  transition:
    flex-basis .65s ease,
    width .65s ease,
    height .65s ease;
}

.infra-slide.swiper-slide-active {
  flex-basis: var(--active-slide);
  width: var(--active-slide);
  height: var(--active-height);
  overflow: visible;
  z-index: 2;
}

.infra-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(.94);
}

.infra-current {
  display: none;
  position: absolute;
  left: calc(var(--active-slide) + var(--slide-gap));
  top: calc(var(--compact-height) + 5.25rem);
  width: min(26.6rem, var(--compact-slide));
  color: #142540;
}

.infra-slide.swiper-slide-active .infra-current {
  display: block;
}

.infra-current h4 {
  margin: 0 0 1.15rem;
  font-family: "FoundersGrotesk", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 1.28rem;
  line-height: 1.12;
  font-weight: 700;
}

.infra-current p {
  margin: 0;
  color: #8b98a9;
  font-family: "FoundersGrotesk", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: .96rem;
  line-height: 1.28;
}

.infra-arrows {
  position: absolute;
  z-index: 10;
  right: 0;
  top: calc(var(--compact-height) + 7.15rem);
  display: flex;
  gap: .9rem;
}

.infra-arrow {
  --carousel-arrow-size: 3.1rem;
}

.supply-hero .inner-bg img,
.branding-hero .inner-bg img {
  width: 100%;
}

.social-hero .inner-bg img {
  width: 100%;
}

.compact-products {
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem 1.15rem;
}

.compact-products .product-card img {
  aspect-ratio: 492 / 294;
}

.compact-products .product-card h3 {
  font-family: "FoundersGrotesk", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
}

.service-list {
  border-top: 1px solid rgba(18, 35, 63, .45);
}

.service-list article {
  display: grid;
  grid-template-columns: 7.5rem 18rem 1fr;
  gap: 1.9rem;
  align-items: center;
  min-height: 8.4rem;
  border-bottom: 1px solid rgba(18, 35, 63, .45);
}

.service-list img {
  width: 4.35rem;
  height: 4.35rem;
  object-fit: contain;
  justify-self: center;
}

.service-list h3 {
  margin: 0;
  color: #12233f;
  font-size: 1.8rem;
  line-height: 1.02;
  font-weight: 400;
}

.service-list p {
  margin: 0;
  color: #1f2b3b;
  font-family: "FoundersGrotesk", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: .83rem;
  line-height: 1.32;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.2rem 1.2rem;
}

.case-grid article {
  min-width: 0;
}

.case-grid img,
.case-feature img {
  display: block;
  width: 100%;
  aspect-ratio: 753 / 480;
  object-fit: cover;
  background: #dfe9f0;
}

.case-grid h3,
.case-feature h3,
.subsection-title {
  margin: 1.05rem 0 .85rem;
  color: #12233f;
  font-size: clamp(1.45rem, 1.1rem + .75vw, 2rem);
  line-height: 1.08;
  font-weight: 400;
}

.case-grid p,
.case-feature p {
  margin: 0;
  color: #10203a;
  font-family: "FoundersGrotesk", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: .88rem;
  line-height: 1.34;
}

.case-feature {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 1.1rem 3rem;
  margin-bottom: 3.2rem;
}

.case-feature img,
.case-feature .case-note {
  grid-column: 1 / -1;
}

.case-feature h3 {
  margin-top: 0;
}

.case-feature .case-note {
  margin-top: -.9rem;
}

.results-strip {
  background: #06172f url("../css/footer-bg.png") center/cover no-repeat !important;
}

.results-strip .case-grid h3,
.results-strip .section-head h2 {
  color: #fff;
}

.results-strip .case-grid p {
  color: rgba(255, 255, 255, .82);
}

.branding-cases {
  gap: 4.2rem 1.25rem;
}

.download-card > div {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 20rem;
  overflow: hidden;
  background: #effaff;
}

.download-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: .13;
  filter: grayscale(.2);
}

.download-card .btn {
  position: relative;
  z-index: 1;
}

.dark-package {
  color: #fff;
  background: #06121f url("branding-service-packages-bg.png") center/cover no-repeat;
  isolation: isolate;
}

.dark-package .section-head h2 {
  color: #fff;
}

.dark-package .model-card h3 {
  height: auto;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3.3rem;
}

.industry-grid article {
  min-height: 7.35rem;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.25rem;
  text-align: center;
  background-position: center;
  background-size: cover;
  background-blend-mode: multiply;
  overflow: hidden;
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  padding-top: 1.65rem;
  border-top: 1px solid rgba(18, 35, 63, .25);
  margin-bottom: 3.8rem;
}

.logo-cloud img {
  display: block;
  width: 100%;
  aspect-ratio: 231 / 130;
  object-fit: contain;
  background: #fff;
}

.logo-cloud.short {
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 0;
}

.project-total {
  min-height: 26rem;
  display: grid;
  align-items: center;
  color: #fff;
  text-align: center;
  background: linear-gradient(rgba(3, 13, 29, .68), rgba(3, 13, 29, .68)), url("branding-project-total-bg.png") center/cover no-repeat;
}

.project-total h2 {
  margin: 0;
  font-size: 2.2rem;
  line-height: 1.18;
  font-weight: 400;
}

.project-total strong {
  display: block;
  font-size: 4rem;
  font-weight: 400;
}

.large-feature-grid .feature-card {
  min-height: 23rem;
}

@media (max-width: 768px) {

  .inner-hero,
  .inner-banner {
    min-height: 720px;
  }

  .inner-hero {
    background-image: url("./page-m-bg.png");
  }

  .inner-bg {
    /* position: absolute; */
    z-index: 1;
    margin-top: 0;
  }

  .manufacturing-hero .inner-bg img,
  .rd-hero .inner-bg img {
    min-width: 0;
    max-width: none;
    height: auto;
  }

  .manufacturing-hero .inner-bg {
    /* right: -54vw; */
    /* top: 33%; */
  }

  .manufacturing-hero .inner-bg img {
    width: 100%;
  }

  .rd-hero .inner-bg {
    /* right: -20vw; */
    /* top: 35%; */
  }

  .rd-hero .inner-bg img {
    width: 100%;
  }

  .inner-banner {
    position: relative;
    display: block;
    width: 100%;
    gap: 0;
    padding: 8.8rem 1.75rem;
  }

  .inner-banner>div:last-child {
    display: block;
  }

  .inner-hero .page-kicker {
    margin-bottom: 1.4rem;
    font-size: 1.6rem;
  }

  .inner-hero h1 {
    font-size: 2rem;
    max-width: 22.5rem;
    line-height: 1.2;
  }

  .inner-hero h5 {
    /* position: absolute; */
    left: 1.75rem;
    right: 1.75rem;
    top: 37rem;
    margin: 0;
    /* max-width: 20rem; */
    font-size: 1rem;
    line-height: 1.32;
  }

  .inner-section {
    padding: 3.25rem 1.5rem;
  }

  .section-head,
  .split-head,
  .consult-grid,
  .person-card {
    grid-template-columns: 1fr;
    display: grid;
    gap: 1.2rem;
    width: 100%;
  }

  .section-head {
    display: block;
  }

  .section-head h2,
  .split-head h2,
  .consult h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .team-slide h2 {
    max-width: 14rem;
    margin-bottom: 1.6rem;
    font-size: 2.55rem;
    line-height: 1.02;
  }

  .feature-card h3 {
    margin: 0;
  }

  .feature-card p {
    margin: 0;
  }

  .pipeline-grid {
    gap: 1.2rem;
  }

  .pipeline-card {
    min-height: auto;
    padding: 1.35rem;
  }

  .pipeline-card:hover {
    transform: none;
  }

  .pipeline-card h3 {
    min-height: 0;
    margin-bottom: 1.6rem;
    font-size: 1.8rem;
  }

  .pipeline-copy,
  .pipeline-milestone {
    font-size: .94rem;
  }

  .pipeline-milestone {
    padding-top: 1.6rem;
  }

  .team-arrows {
    top: .2rem;
    right: 0;
    gap: .65rem;
  }

  .team-arrow {
    --carousel-arrow-size: 2.8rem;
  }

  .person-card {
    gap: 1.35rem;
  }

  .person-card img {
    aspect-ratio: .88 / 1;
  }

  .person-copy {
    padding-top: 0;
  }

  .person-copy h3 {
    font-size: 2rem;
  }

  .person-role {
    margin-bottom: 1.5rem;
    font-size: .98rem;
  }

  .person-copy p {
    margin-bottom: .9rem;
    font-size: .92rem;
  }

  .person-copy .person-email {
    font-size: .98rem;
  }

  .feature-grid,
  .gallery-row,
  .product-grid,
  .metrics,
  .pipeline-grid,
  .model-grid,
  .strain-grid,
  .patent-metrics,
  .infra-grid {
    grid-template-columns: 1fr;
  }

  .compact-products,
  .case-grid{
    grid-template-columns: 1fr ;
  }
  .industry-grid,.logo-cloud,.logo-cloud.short{
    grid-template-columns: 1fr 1fr;
  }

  .service-list article,
  .case-feature {
    grid-template-columns: 1fr;
  }

  .service-list article {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    align-items: start;
    padding: 1.4rem 0;
  }

  .service-list img {
    justify-self: start;
  }

  .service-list h3 {
    font-size: 1.55rem;
    align-self: center;
  }

  .download-card > div {
    min-height: 14rem;
  }

  .project-total {
    min-height: 18rem;
  }

  .project-total strong {
    font-size: 3rem;
  }

  .feature-card,
  .model-card,
  .pipeline-card,
  .strain-card,
  .metric-card {
    min-height: auto !important;
    padding: 1.25rem;
  }

  .model-grid {
    gap: 1.35rem;
  }

  .model-card {
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: 5.5rem minmax(0, 1fr);
    column-gap: 1rem;
    align-items: center;
    min-height: 8.75rem;
    padding: 1.95rem 1.75rem;
  }

  .model-icon {
    grid-row: 1;
    justify-self: center;
    width: 4rem;
    height: 4rem;
    margin: 0;
  }

  .model-card h3 {
    height: auto;
    width: 11rem;
    margin: 0 0 .55rem;
  }

  .model-card p {
    max-width: none;
    margin: 0;
    margin-top: 1rem;
  }

  .media-large img {
    aspect-ratio: 1.42 / 1;
  }

  .production-base h2 {
    max-width: 18rem;
    margin-bottom: 1.7rem;
    font-size: 2.55rem;
    line-height: 1.05;
  }

  .production-hero-image {
    margin-bottom: 2.55rem;
  }

  .production-hero-image img {
    aspect-ratio: 1.45 / 1;
  }

  .base-site-title {
    max-width: 19rem;
    margin-bottom: 1.5rem;
    font-size: 1.83rem;
    line-height: 1.08;
  }

  .base-carousel {
    --active-slide: 100%;
    --compact-slide: var(--active-slide);
    --active-height: 18rem;
    --compact-height: var(--active-height);
    --slide-gap: 1.15rem;
    padding-bottom: 13.5rem;
  }

  .base-slide,
  .base-slide.swiper-slide-active {
    min-height: 0;
  }

  .base-slide img,
  .base-slide.swiper-slide-active img {
    height: 100%;
  }

  .base-slide-copy p,
  .base-slide.swiper-slide-active .base-slide-copy p {
    max-width: none;
  }

  .base-current {
    left: 0;
    /* top: calc(var(--active-height) + 1.65rem); */
    width: min(92vw, 28rem);
    color: #142540;
  }

  .base-current h4 {
    margin-bottom: .8rem;
    font-size: 1.2rem;
  }

  .base-current-categories {
    color: #8b9caf;
    max-width: 21rem;
    margin-bottom: 0;
    font-size: .9rem;
  }

  .base-current-detail {
    max-width: 22rem;
    color: #8b98a9;
    font-size: .9rem;
    line-height: 1.32;
  }

  .base-arrows {
    right: 0;
    top: calc(var(--active-height) + 5.55rem);
    gap: .8rem;
    display: none;
  }

  .base-arrow {
    --carousel-arrow-size: 2.8rem;
  }

  .korea-factory {
    margin-top: 4.9rem;
  }

  .factory-head {
    display: block;
    margin-bottom: 1.6rem;
  }

  .factory-head h3 {
    margin-bottom: 1.55rem;
    font-size: 1.72rem;
  }

  .factory-head p {
    max-width: 24rem;
    font-size: .98rem;
    line-height: 1.28;
  }

  .factory-image>img {
    /* aspect-ratio: 1.32 / 1; */
  }

  .factory-logo {
    left: 1.35rem;
    width: 13.8rem;
    max-width: 56%;
    padding: 1.15rem 2rem;
  }

  .base-metrics {
    margin-top: 4rem;
    gap: 1.25rem;
  }

  .base-metrics .metric-card {
    display: grid;
    grid-template-columns: 5.7rem 1fr;
    column-gap: 1.35rem;
    align-items: center;
    min-height: 8.3rem;
    padding: 1.5rem 1.75rem;
  }

  .base-metrics .metric-card img {
    grid-row: span 2;
    width: 4.65rem;
    height: 4.65rem;
  }

  .base-metrics .metric-card strong {
    margin-top: 0;
    font-size: 1.5rem;
  }

  .base-metrics .metric-label {
    font-size: .8rem;
    line-height: 1;
    margin-top: 0.5rem;
  }

  .process {
    height: 50rem;
  }

  .timeline {
    --process-art-width: min(8.5rem, 31vw);
    min-height: clamp(54rem, 144vw, 66rem);
    margin-top: 2.75rem;
    background-size: 30% 66%;
    /* height: 42rem; */
  }

  .timeline::before {
    left: 0;
  }

  .process-item:nth-child(odd) {
    left: 0;
    text-align: right;
  }

  .process-item:nth-child(even) {
    left: calc(50% + var(--process-art-width) / 2 + .85rem);
  }

  .process-item:nth-child(1) {
    --process-y: 8%;
  }

  .process-item:nth-child(2) {
    --process-y: 18%;
  }

  .process-item:nth-child(3) {
    --process-y: 30%;
  }

  .process-item:nth-child(4) {
    --process-y: 39.8%;
  }

  .process-item:nth-child(5) {
    --process-y: 52%;
  }

  .process-item {
    width: calc((100% - var(--process-art-width)) / 2);
    /* transform: translateY(-1.65rem); */
  }

  .process-item::before {
    margin-bottom: .45rem;
    font-size: .95rem;
  }

  .process-item:nth-child(odd)::after,
  .process-item:nth-child(even)::after {
    left: -1.85rem;
    right: auto;
  }

  .process-item h3 {
    margin-bottom: .75rem;
    font-size: 0.75rem;
    word-wrap: break-word;
  }

  .process-item p {
    font-size: 0.5rem;
    line-height: 1.3;
  }

  .brand-strip .section-head {
    margin-bottom: 3.25rem;
  }

  .brand-arrows {
    position: static;
    margin-top: 1.5rem;
  }

  .brand-slide {
    width: min(78vw, 22rem);
    min-width: 0;
  }

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

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

  .strain-images {
    grid-template-columns: 1fr 1fr;
  }

  .strain-library {
    padding: 3.25rem 0 4.25rem;
  }

  .strain-library .container {
    width: min(100%, 92vw);
  }

  .strain-library .section-head {
    margin-bottom: 1.75rem;
  }

  .strain-library .section-head h2 {
    font-size: 2rem;
  }

  .strain-carousel-head {
    align-items: flex-start;
    margin-bottom: 1.2rem;
  }

  .strain-library .eyebrow {
    font-size: 1.35rem;
  }

  .strain-arrows {
    gap: .5rem;
  }

  .strain-arrow {
    --carousel-arrow-size: 2rem;
  }

  .strain-carousel {
    margin-right: -4vw;
  }

  .strain-product {
    width: min(72vw, 18.25rem);
  }

  .strain-library .strain-subhead {
    margin-top: 3.25rem;
    margin-bottom: 1.25rem;
  }

  .strain-grid {
    gap: 1rem;
  }

  .strain-card {
    min-height: 12.5rem;
    padding: 2rem 1.5rem 1.45rem;
  }

  .strain-card::before {
    width: 2.5rem;
    height: 2.5rem;
  }

  .strain-card h3 {
    margin-top: 2rem;
    font-size: 1rem;
  }

  .strain-lab {
    margin: 3rem 0 1.75rem;
  }

  .strain-lab img {
    aspect-ratio: 1.45 / 1;
  }

  .patent-banner {
    min-height: 360px;
  }

  .patent-box {
    left: 1.5rem;
    right: 1.5rem;
    width: auto;
    padding: 1.5rem;
  }

  .rd-infrastructure {
    padding-top: 4rem;
  }

  .rd-infrastructure .section-head {
    margin-bottom: 1.75rem;
  }

  .rd-infrastructure .section-head h2 {
    font-size: 2.55rem;
    line-height: 1.04;
  }

  .map-wrap {
    margin: 0 -1.5rem;
  }

  .patent-title {
    margin: 1.2rem 0 1.3rem;
    font-size: 2.05rem;
  }

  .patent-summary {
    display: block;
    margin-bottom: 3.75rem;
  }

  .patent-total {
    padding-top: 0;
    margin-bottom: 1.25rem;
  }

  .patent-total strong {
    font-size: 1.45rem;
  }

  .patent-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
  }

  .patent-card {
    min-height: 12.5rem;
    padding: 2rem .9rem 1.25rem;
  }

  .patent-card strong {
    margin-bottom: 2.15rem;
    font-size: 1.35rem;
  }

  .patent-card h4 {
    font-size: 1.2rem;
  }

  .patent-card p {
    font-size: .86rem;
  }

  .infra-carousel {
    --active-slide: 100%;
    --compact-slide: var(--active-slide);
    --active-height: 22rem;
    --compact-height: var(--active-height);
    --slide-gap: 1.15rem;
    padding-bottom: 12.5rem;
  }

  .infra-slide,
  .infra-slide.swiper-slide-active {
    min-height: 0;
  }

  .infra-current {
    left: 0;
    top: calc(var(--active-height) + 1.65rem);
    width: min(92vw, 28rem);
  }

  .infra-current h4 {
    font-size: 1.2rem;
  }

  .infra-current p {
    font-size: .9rem;
  }

  .infra-arrows {
    right: 0;
    top: calc(var(--active-height) + 4.9rem);
  }

  .infra-arrow {
    --carousel-arrow-size: 2.8rem;
  }
}
