#StemCellLandingPage {
  --stem-surface: #f6f5f2;
  --stem-surface-alt: #ece9e3;
  --stem-panel: #ffffff;
  --stem-panel-soft: rgba(255, 255, 255, 0.82);
  --stem-panel-dark: rgba(14, 17, 21, 0.78);
  --stem-border: rgba(25, 25, 25, 0.12);
  --stem-border-light: rgba(255, 255, 255, 0.16);
  --stem-shadow: 0 30px 80px rgba(15, 24, 34, 0.12);
  --stem-shadow-soft: 0 20px 48px rgba(15, 24, 34, 0.09);
  --stem-radius: 1.5rem;
  --stem-radius-lg: 2rem;
  --stem-text: #21303c;
  --stem-muted: #596773;
  --stem-link: #5ea7c1;
  --stem-link-dark: #96cddd;
  --stem-accent: #cad4db;
  --stem-accent-dark: rgba(202, 212, 219, 0.14);
  --stem-hero-overlay: linear-gradient(100deg, rgba(8, 13, 18, 0.94) 0%, rgba(8, 13, 18, 0.82) 36%, rgba(8, 13, 18, 0.48) 66%, rgba(8, 13, 18, 0.18) 100%), linear-gradient(180deg, rgba(8, 13, 18, 0.08) 0%, rgba(8, 13, 18, 0) 42%, rgba(8, 13, 18, 0.42) 100%);
  color: var(--stem-text);
}

#StemCellLandingPage a {
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

#StemCellLandingPage .stem-hero,
#StemCellLandingPage .stem-section {
  position: relative;
  overflow: clip;
}

#StemCellLandingPage .stem-section-label,
#StemCellLandingPage .stem-kicker {
  margin: 0 0 0.9rem;
  color: var(--stem-link);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

#StemCellLandingPage .stem-section-head {
  max-width: 52rem;
  margin: 0 auto 3rem;
}

#StemCellLandingPage .stem-section-head h2 {
  margin-bottom: 1rem;
}

#StemCellLandingPage .stem-section-intro {
  color: var(--stem-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

#StemCellLandingPage .stem-hero {
  min-height: calc(100vh - 5rem);
  display: flex;
  align-items: stretch;
}

#StemCellLandingPage .stem-hero > .img-bg,
#StemCellLandingPage .stem-cta > .img-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#StemCellLandingPage .stem-hero > .img-bg img,
#StemCellLandingPage .stem-cta > .img-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#StemCellLandingPage .stem-hero::before,
#StemCellLandingPage .stem-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--stem-hero-overlay);
  z-index: 1;
}

#StemCellLandingPage .stem-hero-sheen {
  position: absolute;
  inset: auto -8% -18% auto;
  width: clamp(18rem, 34vw, 40rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 167, 193, 0.28) 0%, rgba(94, 167, 193, 0.08) 38%, rgba(94, 167, 193, 0) 72%);
  filter: blur(10px);
  z-index: 1;
}

#StemCellLandingPage .stem-hero-inner,
#StemCellLandingPage .stem-cta-grid {
  position: relative;
  z-index: 2;
}

#StemCellLandingPage .stem-hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding-top: clamp(6.5rem, 11vw, 9rem);
  padding-bottom: clamp(4.5rem, 8vw, 7rem);
}

#StemCellLandingPage .stem-breadcrumb {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 1rem;
  padding: 0.8rem 1.05rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

#StemCellLandingPage .stem-breadcrumb ol {
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

#StemCellLandingPage .stem-breadcrumb li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

#StemCellLandingPage .stem-breadcrumb li + li::before {
  content: "/";
  margin-right: 0.85rem;
  color: rgba(255, 255, 255, 0.48);
}

#StemCellLandingPage .stem-breadcrumb a {
  color: rgba(255, 255, 255, 0.86);
}

#StemCellLandingPage .stem-hero-copy {
  width: min(100%, 50rem);
  color: var(--text-alt);
}

#StemCellLandingPage .stem-hero-copy > * {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

#StemCellLandingPage .stem-hero.anm .stem-hero-copy > * {
  opacity: 1;
  transform: none;
}

#StemCellLandingPage .stem-hero.anm .stem-hero-copy > *:nth-child(1) { transition-delay: 0ms; }
#StemCellLandingPage .stem-hero.anm .stem-hero-copy > *:nth-child(2) { transition-delay: 100ms; }
#StemCellLandingPage .stem-hero.anm .stem-hero-copy > *:nth-child(3) { transition-delay: 200ms; }
#StemCellLandingPage .stem-hero.anm .stem-hero-copy > *:nth-child(4) { transition-delay: 300ms; }
#StemCellLandingPage .stem-hero.anm .stem-hero-copy > *:nth-child(5) { transition-delay: 420ms; }

#StemCellLandingPage .stem-hero h1 {
  margin: 0;
  max-width: 16ch;
  color: #fff;
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

#StemCellLandingPage .stem-subheadline {
  margin: 0;
  max-width: 44rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.06rem, 1.35vw, 1.32rem);
  line-height: 1.75;
}

#StemCellLandingPage .stem-hero-actions,
#StemCellLandingPage .stem-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.35rem;
}

#StemCellLandingPage .stem-hero-actions .btn.v1,
#StemCellLandingPage .stem-cta-actions .btn.v1 {
  min-width: 13rem;
}

#StemCellLandingPage .stem-legal-notice {
  margin-top: 1.1rem;
  padding: 1.3rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

#StemCellLandingPage .stem-legal-notice strong {
  display: block;
  margin-bottom: 0.55rem;
  color: #fff;
  font-size: clamp(1.02rem, 1.15vw, 1.24rem);
  letter-spacing: 0.06em;
}

#StemCellLandingPage .stem-legal-notice p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1.7;
}

#StemCellLandingPage .stem-intro,
#StemCellLandingPage .stem-law,
#StemCellLandingPage .stem-process,
#StemCellLandingPage .stem-faq {
  background:
    radial-gradient(circle at top right, rgba(94, 167, 193, 0.12), transparent 32%),
    linear-gradient(180deg, #faf9f7 0%, #f3f1ec 100%);
}

#StemCellLandingPage .stem-conditions {
  background:
    linear-gradient(180deg, rgba(236, 233, 227, 0.86), rgba(250, 249, 247, 0.96)),
    linear-gradient(135deg, rgba(94, 167, 193, 0.08), rgba(255, 255, 255, 0));
}

#StemCellLandingPage .stem-intro .cnt-stl,
#StemCellLandingPage .stem-law .cnt-stl {
  color: var(--stem-text);
}

#StemCellLandingPage .stem-why .stem-why-copy {
  max-width: 60rem;
  margin: 0 auto;
  color: var(--stem-text);
}

#StemCellLandingPage .stem-intro .cnt-stl p,
#StemCellLandingPage .stem-law .cnt-stl p,
#StemCellLandingPage .stem-why .cnt-stl p {
  color: var(--stem-muted);
  line-height: 1.85;
}

#StemCellLandingPage .stem-media-card,
#StemCellLandingPage .stem-law-panel,
#StemCellLandingPage .stem-address-card,
#StemCellLandingPage .stem-map-card,
#StemCellLandingPage .stem-source-note,
#StemCellLandingPage .stem-law-highlight,
#StemCellLandingPage .stem-law-summary,
#StemCellLandingPage .stem-card,
#StemCellLandingPage .stem-step-card,
#StemCellLandingPage .stem-faq-item {
  border: 1px solid var(--stem-border);
  border-radius: var(--stem-radius);
  background: var(--stem-panel);
  box-shadow: var(--stem-shadow-soft);
}

#StemCellLandingPage .stem-media-card {
  overflow: hidden;
}

#StemCellLandingPage .stem-media-card picture {
  display: block;
}

#StemCellLandingPage .stem-media-card img {
  display: block;
  width: 100%;
  object-fit: cover;
}

#StemCellLandingPage .stem-media-card img {
  aspect-ratio: 2 / 3;
}

#StemCellLandingPage .stem-media-card figcaption {
  display: grid;
  gap: 0.4rem;
  padding: 1.2rem 1.35rem 1.4rem;
  color: var(--stem-muted);
  font-size: 0.97rem;
  line-height: 1.65;
}

#StemCellLandingPage .stem-source-note,
#StemCellLandingPage .stem-law-highlight,
#StemCellLandingPage .stem-law-summary {
  padding: 1.35rem 1.45rem;
}

#StemCellLandingPage .stem-source-note {
  margin-top: 2rem;
  border-left: 4px solid var(--stem-link);
}

#StemCellLandingPage .stem-source-note h3,
#StemCellLandingPage .stem-law-highlight strong {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--stem-text);
}

#StemCellLandingPage .stem-source-note p:last-child,
#StemCellLandingPage .stem-law-highlight p:last-child,
#StemCellLandingPage .stem-law-summary p:last-child {
  margin-bottom: 0;
}

#StemCellLandingPage .stem-card-grid,
#StemCellLandingPage .stem-trust-list,
#StemCellLandingPage .stem-step-grid,
#StemCellLandingPage .stem-cta-grid {
  display: grid;
  gap: 1.5rem;
}

#StemCellLandingPage .stem-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

#StemCellLandingPage .stem-card,
#StemCellLandingPage .stem-step-card {
  position: relative;
  height: 100%;
  padding: 1.65rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

#StemCellLandingPage .stem-card:hover,
#StemCellLandingPage .stem-card:focus-within,
#StemCellLandingPage .stem-step-card:hover,
#StemCellLandingPage .stem-step-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--stem-shadow);
  border-color: rgba(94, 167, 193, 0.28);
}

#StemCellLandingPage .stem-card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.35rem;
  border-radius: 50%;
  background: rgba(94, 167, 193, 0.12);
  color: var(--stem-link);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

#StemCellLandingPage .stem-condition-card h3,
#StemCellLandingPage .stem-step-card h3,
#StemCellLandingPage .stem-trust-item h3,
#StemCellLandingPage .stem-law-panel h3 {
  margin-bottom: 0.8rem;
}

#StemCellLandingPage .stem-condition-card p,
#StemCellLandingPage .stem-step-card p,
#StemCellLandingPage .stem-trust-item p,
#StemCellLandingPage .stem-law-panel p,
#StemCellLandingPage .stem-law-panel li {
  color: var(--stem-muted);
  line-height: 1.75;
}

#StemCellLandingPage .stem-law-panel {
  padding: 1.75rem;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f4ef 100%);
}

#StemCellLandingPage .stem-law-list {
  display: grid;
  gap: 1rem;
  margin: 1.4rem 0 0;
  padding-left: 1.1rem;
}

#StemCellLandingPage .stem-law-list li::marker {
  color: var(--stem-link);
}

#StemCellLandingPage .stem-law-summary {
  margin-top: 1.5rem;
  background: linear-gradient(135deg, rgba(94, 167, 193, 0.12), rgba(202, 212, 219, 0.22));
}

#StemCellLandingPage .stem-why {
  background:
    linear-gradient(125deg, rgba(9, 13, 18, 0.92), rgba(21, 29, 38, 0.88)),
    radial-gradient(circle at top right, rgba(94, 167, 193, 0.28), rgba(94, 167, 193, 0) 30%);
}

#StemCellLandingPage .stem-why-shell {
  max-width: 74rem;
  margin: 0 auto;
}

#StemCellLandingPage .stem-why .stem-section-label,
#StemCellLandingPage .stem-why h2 {
  color: #fff;
}

#StemCellLandingPage .stem-why .stem-why-copy > p {
  max-width: 54rem;
  margin-right: auto;
  margin-left: auto;
}

#StemCellLandingPage .stem-why .cnt-stl p,
#StemCellLandingPage .stem-why .stem-trust-item p {
  color: rgba(255, 255, 255, 0.76);
}

#StemCellLandingPage .stem-trust-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 70rem;
  margin: 2rem auto 0;
}

#StemCellLandingPage .stem-trust-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.4rem 1.45rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

#StemCellLandingPage .stem-trust-item h3 {
  color: #fff;
}

#StemCellLandingPage .stem-step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: stem-steps;
}

#StemCellLandingPage .stem-step-card {
  padding-top: 4.2rem;
}

#StemCellLandingPage .stem-step-number {
  position: absolute;
  top: 1.4rem;
  left: 1.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #3d91b0, #78bacf);
  color: #fff;
  font-weight: 700;
}

#StemCellLandingPage .stem-faq-list {
  display: grid;
  gap: 1rem;
  max-width: 58rem;
  margin: 0 auto;
}

#StemCellLandingPage .stem-faq-item {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
}

#StemCellLandingPage .stem-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.35rem;
  cursor: pointer;
  list-style: none;
  color: var(--stem-text);
  font-weight: 600;
}

#StemCellLandingPage .stem-faq-item summary::-webkit-details-marker {
  display: none;
}

#StemCellLandingPage .stem-faq-item[open] summary {
  border-bottom: 1px solid rgba(25, 25, 25, 0.08);
}

#StemCellLandingPage .stem-faq-answer {
  padding: 1.2rem 1.35rem 1.35rem;
}

#StemCellLandingPage .stem-faq-answer p:last-child {
  margin-bottom: 0;
}

#StemCellLandingPage .stem-faq-icon {
  position: relative;
  flex: 0 0 1.1rem;
  width: 1.1rem;
  height: 1.1rem;
}

#StemCellLandingPage .stem-faq-icon::before,
#StemCellLandingPage .stem-faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 2px;
  background: var(--stem-link);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

#StemCellLandingPage .stem-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

#StemCellLandingPage .stem-faq-item[open] .stem-faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.35);
}

#StemCellLandingPage .stem-cta {
  background:
    linear-gradient(120deg, rgba(10, 16, 22, 0.92), rgba(14, 20, 27, 0.84)),
    radial-gradient(circle at left top, rgba(94, 167, 193, 0.24), rgba(94, 167, 193, 0) 34%);
}

#StemCellLandingPage .stem-cta-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
  align-items: stretch;
}

#StemCellLandingPage .stem-cta-copy {
  padding: clamp(2rem, 3.2vw, 3rem);
  border: 1px solid var(--stem-border-light);
  border-radius: var(--stem-radius-lg);
  background: var(--stem-panel-dark);
  backdrop-filter: blur(14px);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

#StemCellLandingPage .stem-cta-copy h2 {
  color: #fff;
  margin-bottom: 1rem;
}

#StemCellLandingPage .stem-cta-copy p,
#StemCellLandingPage .stem-address-card p,
#StemCellLandingPage .stem-address-card address {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

#StemCellLandingPage .stem-address-card,
#StemCellLandingPage .stem-map-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

#StemCellLandingPage .stem-address-card {
  margin-top: 1.6rem;
  padding: 1.35rem 1.45rem;
}

#StemCellLandingPage .stem-address-card strong {
  display: block;
  margin-bottom: 0.65rem;
  color: #fff;
}

#StemCellLandingPage .stem-address-card address {
  margin-bottom: 0.75rem;
}

#StemCellLandingPage .stem-address-card a,
#StemCellLandingPage .stem-cta-copy a:not(.btn),
#StemCellLandingPage .stem-hero a:not(.btn),
#StemCellLandingPage .stem-why a:not(.btn) {
  color: var(--stem-link-dark);
}

#StemCellLandingPage .stem-map-card {
  overflow: hidden;
  min-height: 24rem;
}

#StemCellLandingPage .stem-map-shell,
#StemCellLandingPage .stem-map-shell iframe {
  width: 100%;
  height: 100%;
}

#StemCellLandingPage .stem-map-shell {
  min-height: 100%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02)),
    url("/images/staticmap[9].2401161331550.jpg") center/cover no-repeat;
}

#StemCellLandingPage .stem-map-shell iframe {
  display: block;
  border: 0;
  min-height: 24rem;
}

#StemCellLandingPage .stem-sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 1200;
  display: none;
  gap: 0.75rem;
  width: min(calc(100vw - 1.5rem), 30rem);
  padding: 0.55rem;
  border: 1px solid rgba(33, 48, 60, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 44px rgba(15, 24, 34, 0.18);
  backdrop-filter: blur(18px);
  transform: translate(-50%, 1rem);
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

#StemCellLandingPage .stem-sticky-cta.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

#StemCellLandingPage .stem-sticky-link {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

#StemCellLandingPage .stem-sticky-call {
  background: #ffffff;
  color: var(--stem-text);
  border: 1px solid rgba(33, 48, 60, 0.12);
}

#StemCellLandingPage .stem-sticky-book {
  background: linear-gradient(135deg, #4d9ebb, #6bbad1);
  color: #fff;
}

@media (max-width: 1279px) {
  #StemCellLandingPage .stem-card-grid,
  #StemCellLandingPage .stem-step-grid,
  #StemCellLandingPage .stem-trust-list,
  #StemCellLandingPage .stem-cta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  #StemCellLandingPage .stem-hero {
    min-height: auto;
  }

  #StemCellLandingPage .stem-hero-inner {
    padding-top: 6rem;
  }

  #StemCellLandingPage .stem-card-grid,
  #StemCellLandingPage .stem-step-grid,
  #StemCellLandingPage .stem-trust-list,
  #StemCellLandingPage .stem-cta-grid {
    grid-template-columns: 1fr;
  }

  #StemCellLandingPage .stem-cta-grid {
    gap: 1.25rem;
  }

  #StemCellLandingPage .stem-map-card {
    min-height: 20rem;
  }
}

@media (max-width: 767px) {
  #StemCellLandingPage {
    --stem-hero-overlay: linear-gradient(180deg, rgba(8, 13, 18, 0.68) 0%, rgba(8, 13, 18, 0.46) 34%, rgba(8, 13, 18, 0.78) 100%), linear-gradient(90deg, rgba(8, 13, 18, 0.82) 0%, rgba(8, 13, 18, 0.3) 100%);
  }

  #StemCellLandingPage .stem-breadcrumb {
    padding: 0.75rem 0.95rem;
    border-radius: 1rem;
  }

  #StemCellLandingPage .stem-breadcrumb ol {
    gap: 0.65rem;
    flex-wrap: wrap;
  }

  #StemCellLandingPage .stem-hero-actions,
  #StemCellLandingPage .stem-cta-actions {
    flex-direction: column;
  }

  #StemCellLandingPage .stem-hero-actions .btn.v1,
  #StemCellLandingPage .stem-cta-actions .btn.v1 {
    width: 100%;
  }

  #StemCellLandingPage .stem-card,
  #StemCellLandingPage .stem-step-card,
  #StemCellLandingPage .stem-law-panel,
  #StemCellLandingPage .stem-source-note,
  #StemCellLandingPage .stem-address-card,
  #StemCellLandingPage .stem-cta-copy {
    padding: 1.3rem;
  }

  #StemCellLandingPage .stem-step-card {
    padding-top: 3.9rem;
  }

  #StemCellLandingPage .stem-map-card,
  #StemCellLandingPage .stem-map-shell iframe {
    min-height: 17rem;
  }

  #StemCellLandingPage .stem-sticky-cta {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  #StemCellLandingPage .stem-hero-copy > *,
  #StemCellLandingPage .stem-card,
  #StemCellLandingPage .stem-step-card,
  #StemCellLandingPage .stem-faq-icon::before,
  #StemCellLandingPage .stem-faq-icon::after,
  #StemCellLandingPage .stem-sticky-cta {
    transition: none !important;
    transform: none !important;
  }
}
