.bp-landing {
  --bp-navy: #061f46;
  --bp-blue: #075da8;
  --bp-cyan: #11a8bd;
  --bp-sky: #eaf6fc;
  --bp-ink: #102d4c;
  position: fixed;
  z-index: 1000;
  inset: 0;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  background: #ffffff;
  color: var(--bp-ink);
}

.is-authenticated .bp-landing,
.bp-landing.app-hidden {
  display: none !important;
}

.bp-landing * {
  letter-spacing: 0;
}

.bp-slide {
  min-height: 100vh;
  scroll-margin-top: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.bp-landing-nav {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  height: 78px;
  padding: 10px clamp(22px, 4vw, 68px);
  border-bottom: 1px solid rgba(13, 65, 111, .12);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
}

.bp-landing-logo img {
  display: block;
  width: 170px;
  height: 56px;
  object-fit: contain;
  object-position: left center;
}

.bp-landing-nav nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
}

.bp-landing-nav a,
.bp-landing-nav button {
  color: var(--bp-navy);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.bp-nav-login {
  position: relative;
  overflow: hidden;
  min-height: 40px;
  padding: 0 20px;
  border: 1px solid #0878c5;
  border-radius: 6px;
  background: linear-gradient(135deg, #0759a6, #0f9fc0);
  color: #ffffff !important;
  cursor: pointer;
  box-shadow: 0 12px 25px rgba(7, 93, 168, .22);
}

.bp-nav-login:hover {
  border-color: #0759a6;
  color: #ffffff;
  transform: translateY(-1px);
}

.bp-nav-login::after {
  position: absolute;
  top: -45%;
  bottom: -45%;
  left: -48%;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .72), transparent);
  content: "";
  transform: rotate(18deg);
  animation: bpButtonShine 4.5s ease-in-out infinite;
}

.bp-hero {
  position: relative;
  min-height: 100vh;
  padding: 128px clamp(24px, 5vw, 80px) 72px;
  overflow: clip;
  contain: paint;
  display: grid;
  grid-template-columns: minmax(420px, .95fr) minmax(480px, 1.05fr);
  align-items: center;
  gap: clamp(30px, 5vw, 80px);
  background: #ffffff;
}

.bp-hero-photo,
.bp-hero-shade {
  position: absolute;
  inset: 0;
}

.bp-hero-photo {
  background: url("../images/biopartner-hospital-hero.png") center/cover no-repeat;
  animation: bpHeroDrift 18s ease-in-out infinite alternate;
}

.bp-hero-shade {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .99) 0%, rgba(255, 255, 255, .95) 32%, rgba(255, 255, 255, .64) 58%, rgba(255, 255, 255, .16) 100%),
    linear-gradient(0deg, rgba(4, 31, 70, .09), transparent 38%);
}

.bp-hero-content,
.bp-live-product,
.bp-scroll-cue {
  position: relative;
  z-index: 2;
}

.bp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--bp-cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.bp-kicker::before {
  width: 30px;
  height: 2px;
  background: currentColor;
  content: "";
}

.bp-hero h1 {
  max-width: 760px;
  margin: 18px 0 22px;
  color: var(--bp-navy);
  font-size: clamp(44px, 5.7vw, 84px);
  line-height: .96;
}

.bp-hero-content > p {
  max-width: 650px;
  margin: 0;
  color: #3f5d78;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.65;
}

.bp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.bp-cta-primary,
.bp-cta-secondary {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.bp-cta-primary {
  position: relative;
  overflow: hidden;
  border: 1px solid #0878c5;
  background: linear-gradient(135deg, #0759a6, #0f9fc0);
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(7, 93, 168, .24);
}

.bp-cta-primary::after {
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -45%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .7), transparent);
  content: "";
  transform: rotate(18deg);
  animation: bpButtonShine 4.5s ease-in-out infinite;
}

.bp-cta-secondary {
  border: 1px solid #b9ccdc;
  background: rgba(255, 255, 255, .72);
  color: var(--bp-navy);
}

.bp-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  color: #60758a;
  font-size: 12px;
}

.bp-hero-proof strong {
  display: block;
  color: var(--bp-navy);
  font-size: 20px;
}

.bp-live-product {
  justify-self: end;
  width: min(610px, 100%);
  padding: 20px;
  border: 1px solid rgba(178, 205, 226, .75);
  border-radius: 8px;
  background: rgba(255, 255, 255, .91);
  box-shadow: 0 32px 80px rgba(6, 31, 70, .18);
  backdrop-filter: blur(14px);
}

.bp-live-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid #dce8f1;
}

.bp-live-brand {
  color: var(--bp-navy);
  font-size: 18px;
  font-weight: 900;
}

.bp-live-status {
  color: #557088;
  font-size: 11px;
  font-weight: 800;
}

.bp-live-status i {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 5px;
  border-radius: 50%;
  background: #13b981;
  box-shadow: 0 0 0 5px rgba(19, 185, 129, .12);
  animation: bpStatusPulse 1.8s ease infinite;
}

.bp-live-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin: 15px 0 20px;
}

.bp-live-kpis article {
  min-width: 0;
  padding: 12px;
  border-left: 3px solid var(--bp-cyan);
  background: #f2f8fc;
}

.bp-live-kpis span,
.bp-live-kpis strong,
.bp-live-kpis small {
  display: block;
}

.bp-live-kpis span,
.bp-live-kpis small {
  color: #678096;
  font-size: 10px;
}

.bp-live-kpis strong {
  margin: 3px 0;
  color: var(--bp-navy);
  font-size: 25px;
}

.bp-live-flow {
  position: relative;
  display: grid;
  gap: 8px;
}

.bp-flow-line {
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 20px;
  width: 2px;
  background: #d7e7f2;
}

.bp-flow-line span {
  position: absolute;
  top: 0;
  left: -2px;
  width: 6px;
  height: 30%;
  border-radius: 3px;
  background: linear-gradient(var(--bp-cyan), var(--bp-blue));
  animation: bpFlowTravel 7.6s linear infinite;
}

.bp-live-flow article {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border: 1px solid transparent;
  border-radius: 6px;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}

.bp-live-flow article.is-active {
  border-color: #b9daec;
  background: #edf7fc;
  transform: translateX(5px);
}

.bp-live-flow b {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--bp-navy);
  color: #ffffff;
  font-size: 10px;
}

.bp-live-flow article.is-active b {
  background: var(--bp-cyan);
}

.bp-live-flow strong,
.bp-live-flow small {
  display: block;
}

.bp-live-flow strong {
  color: var(--bp-navy);
  font-size: 13px;
}

.bp-live-flow small {
  color: #71879a;
  margin-top: 2px;
}

.bp-scroll-cue {
  position: absolute;
  bottom: 18px;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 5px;
  color: #536c82;
  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.bp-scroll-cue span {
  width: 1px;
  height: 24px;
  background: var(--bp-cyan);
  animation: bpScrollCue 1.8s ease-in-out infinite;
}

.bp-reality,
.bp-platform,
.bp-modules,
.bp-method,
.bp-offer-teaser,
.bp-final-cta {
  padding: clamp(76px, 9vw, 130px) clamp(24px, 6vw, 96px);
}

.bp-section-heading {
  max-width: 900px;
}

.bp-section-heading h2,
.bp-platform h2,
.bp-method h2,
.bp-final-cta h2 {
  margin: 15px 0 0;
  color: var(--bp-navy);
  font-size: clamp(34px, 4.5vw, 64px);
  line-height: 1.02;
}

.bp-reality {
  background: #ffffff;
}

.bp-reality-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 54px;
  border-top: 1px solid #cfdfeb;
  border-bottom: 1px solid #cfdfeb;
}

.bp-reality-strip article {
  min-height: 230px;
  padding: 28px;
  border-right: 1px solid #cfdfeb;
}

.bp-reality-strip article:last-child {
  border-right: 0;
}

.bp-reality-strip span {
  color: var(--bp-cyan);
  font-size: 12px;
  font-weight: 900;
}

.bp-reality-strip strong {
  display: block;
  margin: 35px 0 12px;
  color: var(--bp-navy);
  font-size: 21px;
}

.bp-reality-strip p {
  margin: 0;
  color: #63798d;
  line-height: 1.6;
}

.bp-platform {
  display: grid;
  grid-template-columns: minmax(360px, .72fr) minmax(560px, 1.28fr);
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
  background: var(--bp-sky);
}

.bp-platform-copy p {
  max-width: 600px;
  margin: 24px 0;
  color: #506b82;
  font-size: 17px;
  line-height: 1.7;
}

.bp-inline-link {
  padding: 0 0 7px;
  border: 0;
  border-bottom: 2px solid var(--bp-cyan);
  background: transparent;
  color: var(--bp-navy);
  font-weight: 900;
  cursor: pointer;
}

.bp-inline-link span {
  margin-left: 12px;
  color: var(--bp-cyan);
}

.bp-orbit {
  position: relative;
  min-height: 590px;
}

.bp-orbit-core {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(6, 31, 70, .16);
  transform: translate(-50%, -50%);
}

.bp-orbit-core img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.bp-orbit-core strong {
  color: var(--bp-navy);
  font-size: 13px;
}

.bp-orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid #a9ccdf;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.bp-orbit-ring::after {
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bp-cyan);
  content: "";
}

.ring-one {
  width: 390px;
  height: 390px;
  animation: bpOrbitSpin 18s linear infinite;
}

.ring-two {
  width: 540px;
  height: 540px;
  animation: bpOrbitSpin 28s linear infinite reverse;
}

.bp-orbit article {
  position: absolute;
  z-index: 4;
  width: 180px;
  padding: 13px;
  border-left: 3px solid var(--bp-cyan);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(6, 31, 70, .08);
}

.bp-orbit article strong,
.bp-orbit article small {
  display: block;
}

.bp-orbit article strong {
  color: var(--bp-navy);
}

.bp-orbit article small {
  margin-top: 3px;
  color: #688096;
}

.orbit-equipment { top: 3%; left: 37%; }
.orbit-contract { top: 21%; right: 0; }
.orbit-maintenance { right: 2%; bottom: 18%; }
.orbit-investment { bottom: 2%; left: 37%; }
.orbit-partner { bottom: 20%; left: 0; }
.orbit-reporting { top: 19%; left: 1%; }

.bp-modules {
  background: var(--bp-navy);
  color: #ffffff;
}

.bp-heading-light h2 {
  color: #ffffff;
}

.bp-module-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 52px;
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.bp-module-rail article {
  min-height: 280px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, .18);
  transition: background .25s ease, transform .25s ease;
}

.bp-module-rail article:hover {
  background: rgba(17, 168, 189, .12);
  transform: translateY(-6px);
}

.bp-module-rail span {
  color: #51d3e3;
  font-size: 12px;
  font-weight: 900;
}

.bp-module-rail h3 {
  margin: 56px 0 14px;
  font-size: 23px;
}

.bp-module-rail p {
  color: #c3d5e5;
  line-height: 1.65;
}

.bp-method {
  display: grid;
  grid-template-columns: minmax(360px, .8fr) minmax(480px, 1.2fr);
  align-items: center;
  gap: clamp(55px, 9vw, 150px);
  background: #ffffff;
}

.bp-method-visual {
  min-height: 470px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(145deg, #061f46, #075da8);
  color: #ffffff;
}

.bp-method-pulse {
  position: relative;
  margin: auto;
  width: 200px;
  height: 200px;
}

.bp-method-pulse span,
.bp-method-pulse i {
  position: absolute;
  inset: 25px;
  border: 2px solid #43cee0;
  border-radius: 50%;
  animation: bpPulseRing 2.8s ease-out infinite;
}

.bp-method-pulse i {
  animation-delay: 1.4s;
}

.bp-method-pulse::after {
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  height: 40px;
  background: linear-gradient(90deg, transparent 0 8%, #ffffff 8% 28%, transparent 28% 33%, #43cee0 33% 38%, transparent 38% 43%, #ffffff 43% 52%, transparent 52% 100%);
  clip-path: polygon(0 48%, 27% 48%, 31% 10%, 37% 88%, 43% 38%, 48% 58%, 100% 58%, 100% 64%, 47% 64%, 43% 51%, 36% 100%, 31% 30%, 29% 54%, 0 54%);
  content: "";
  transform: translateY(-50%);
}

.bp-method-pulse img {
  position: absolute;
  z-index: 2;
  inset: 50%;
  width: 126px;
  height: 126px;
  padding: 13px;
  border-radius: 50%;
  object-fit: contain;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .28), 0 0 0 1px rgba(255, 255, 255, .72);
  transform: translate(-50%, -50%);
  animation: bpLogoFocus 3.4s ease-in-out infinite;
}

.bp-method-pulse::after {
  opacity: .16;
}

.bp-method-visual > strong {
  font-size: 25px;
}

.bp-method-visual > p {
  margin: 8px 0 0;
  color: #c7dcef;
  line-height: 1.6;
}

.bp-method-list {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  background: #d4e2ed;
}

.bp-method-list article {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 16px;
  padding: 20px;
  background: #ffffff;
}

.bp-method-list b {
  color: var(--bp-cyan);
}

.bp-method-list strong,
.bp-method-list small {
  display: block;
}

.bp-method-list strong {
  color: var(--bp-navy);
  font-size: 18px;
}

.bp-method-list small {
  margin-top: 5px;
  color: #687f93;
}

.bp-offer-teaser {
  background: #f1f7fb;
}

.bp-offer-lines {
  display: grid;
  gap: 10px;
  margin-top: 50px;
}

.bp-offer-lines article {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) 190px;
  align-items: center;
  gap: 30px;
  min-height: 105px;
  padding: 20px 24px;
  border: 1px solid #cbdde9;
  background: #ffffff;
}

.bp-offer-lines article.is-featured {
  border-color: var(--bp-cyan);
  box-shadow: inset 5px 0 var(--bp-cyan);
}

.bp-offer-lines div span,
.bp-offer-lines div strong {
  display: block;
}

.bp-offer-lines div span {
  color: var(--bp-navy);
  font-size: 22px;
  font-weight: 900;
}

.bp-offer-lines div strong {
  margin-top: 5px;
  color: var(--bp-blue);
}

.bp-offer-lines p {
  color: #586f83;
  line-height: 1.5;
}

.bp-offer-lines button {
  min-height: 42px;
  border: 1px solid var(--bp-blue);
  border-radius: 5px;
  background: transparent;
  color: var(--bp-blue);
  font-weight: 900;
  cursor: pointer;
}

.bp-offer-lines .is-featured button {
  background: var(--bp-blue);
  color: #ffffff;
}

.bp-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  align-items: center;
  gap: 60px;
  background: linear-gradient(125deg, #061f46, #075da8);
  color: #ffffff;
}

.bp-final-cta h2 {
  color: #ffffff;
}

.bp-final-cta p {
  color: #c8dced;
  font-size: 17px;
}

.bp-contact-actions {
  display: grid;
  gap: 12px;
  justify-items: stretch;
}

.bp-contact-actions a {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .3);
  display: flex;
  align-items: center;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.bp-landing-footer {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 24px clamp(24px, 6vw, 96px);
  background: #ffffff;
}

.bp-landing-footer img {
  width: 170px;
  height: 64px;
  object-fit: contain;
}

.bp-landing-footer p {
  color: #647b90;
}

.bp-landing-footer button {
  border: 0;
  background: transparent;
  color: var(--bp-blue);
  font-weight: 900;
  cursor: pointer;
}

.bp-slide-controls {
  position: fixed;
  z-index: 25;
  top: 50%;
  right: 18px;
  display: grid;
  justify-items: center;
  gap: 9px;
  padding: 10px 8px;
  border: 1px solid rgba(174, 204, 226, .78);
  border-radius: 24px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 16px 38px rgba(6, 31, 70, .14);
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
}

.bp-sticky-signup {
  position: fixed;
  z-index: 26;
  right: 24px;
  bottom: 24px;
  display: grid;
  min-width: 182px;
  padding: 11px 18px;
  border: 1px solid #0878c5;
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(135deg, #0759a6, #0f9fc0);
  color: #ffffff;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 18px 38px rgba(7, 93, 168, .28);
}

.bp-sticky-signup::after {
  position: absolute;
  top: -45%;
  bottom: -45%;
  left: -48%;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .72), transparent);
  content: "";
  transform: rotate(18deg);
  animation: bpButtonShine 4.5s ease-in-out infinite;
}

.bp-sticky-signup span,
.bp-sticky-signup strong {
  position: relative;
  z-index: 1;
}

.bp-sticky-signup span {
  font-size: 10px;
  font-weight: 700;
  opacity: .82;
}

.bp-sticky-signup strong {
  margin-top: 2px;
  font-size: 14px;
}

.bp-sticky-signup:hover,
.bp-sticky-signup:focus-visible {
  transform: translateY(-2px);
  outline: none;
  box-shadow: 0 22px 44px rgba(7, 93, 168, .34);
}

.bp-slide-arrow,
.bp-slide-dots button {
  border: 0;
  display: grid;
  place-items: center;
  background: transparent;
  cursor: pointer;
}

.bp-slide-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--bp-blue);
  font-size: 17px;
  font-weight: 900;
}

.bp-slide-arrow:hover {
  background: var(--bp-sky);
}

.bp-slide-arrow:disabled {
  opacity: .25;
  cursor: default;
}

.bp-slide-dots {
  display: grid;
  gap: 9px;
}

.bp-slide-dots button {
  position: relative;
  width: 16px;
  height: 16px;
}

.bp-slide-dots button::before {
  width: 7px;
  height: 7px;
  border: 1px solid #5e86a5;
  border-radius: 50%;
  background: #ffffff;
  content: "";
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.bp-slide-dots button.is-active::before {
  border-color: var(--bp-cyan);
  background: var(--bp-cyan);
  transform: scale(1.45);
}

.bp-slide-dots button span {
  position: absolute;
  top: 50%;
  right: 28px;
  width: max-content;
  padding: 6px 9px;
  border-radius: 4px;
  background: var(--bp-navy);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translate(6px, -50%);
  transition: opacity .2s ease, transform .2s ease;
}

.bp-slide-dots button:hover span,
.bp-slide-dots button:focus-visible span {
  opacity: 1;
  transform: translate(0, -50%);
}

[data-landing-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .75s ease;
}

[data-landing-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes bpHeroDrift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.5%, -.7%, 0); }
}

@keyframes bpButtonShine {
  0%, 55% { left: -45%; }
  78%, 100% { left: 120%; }
}

@keyframes bpStatusPulse {
  50% { box-shadow: 0 0 0 9px rgba(19, 185, 129, 0); }
}

@keyframes bpFlowTravel {
  from { top: 0; }
  to { top: 70%; }
}

@keyframes bpScrollCue {
  0%, 100% { transform: scaleY(.45); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

@keyframes bpOrbitSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes bpPulseRing {
  0% { opacity: 1; transform: scale(.55); }
  100% { opacity: 0; transform: scale(1.35); }
}

@keyframes bpLogoFocus {
  0%, 100% { transform: translate(-50%, -50%) scale(.82); }
  48% { transform: translate(-50%, -50%) scale(1.06); }
  62% { transform: translate(-50%, -50%) scale(1); }
}

@media (max-width: 1100px) {
  .bp-landing {
    scroll-snap-type: y proximity;
  }

  .bp-slide {
    min-height: auto;
  }

  .bp-slide-controls {
    display: none;
  }

  .bp-sticky-signup {
    right: 16px;
    bottom: 16px;
  }

  .bp-landing-nav nav {
    display: none;
  }

  .bp-landing-nav {
    grid-template-columns: 1fr auto;
  }

  .bp-hero {
    grid-template-columns: 1fr;
    padding-top: 120px;
  }

  .bp-hero-content {
    max-width: 760px;
  }

  .bp-live-product {
    justify-self: start;
    width: min(720px, 100%);
  }

  .bp-reality-strip,
  .bp-module-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bp-reality-strip article:nth-child(2) {
    border-right: 0;
  }

  .bp-platform,
  .bp-method {
    grid-template-columns: 1fr;
  }

  .bp-orbit {
    width: min(700px, 100%);
    margin: 0 auto;
  }

  .bp-offer-lines article {
    grid-template-columns: 210px 1fr;
  }

  .bp-offer-lines button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .bp-landing {
    scroll-snap-type: none;
  }

  .bp-landing-nav {
    height: 66px;
    padding: 7px 16px;
  }

  .bp-landing-logo img {
    width: 135px;
    height: 48px;
  }

  .bp-nav-login {
    min-height: 36px;
    padding: 0 11px;
    font-size: 11px;
  }

  .bp-sticky-signup {
    right: 10px;
    bottom: 10px;
    min-width: 0;
    padding: 10px 14px;
  }

  .bp-sticky-signup span {
    display: none;
  }

  .bp-hero {
    min-height: auto;
    padding: 105px 18px 60px;
  }

  .bp-hero-photo {
    animation: none;
    transform: none;
  }

  .bp-hero-shade {
    background: linear-gradient(90deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .8));
  }

  .bp-hero h1 {
    font-size: clamp(39px, 13vw, 58px);
  }

  .bp-hero-actions {
    display: grid;
  }

  .bp-live-product {
    padding: 13px;
  }

  .bp-live-kpis {
    grid-template-columns: 1fr;
  }

  .bp-scroll-cue {
    display: none;
  }

  .bp-reality,
  .bp-platform,
  .bp-modules,
  .bp-method,
  .bp-offer-teaser,
  .bp-final-cta {
    padding: 66px 18px;
  }

  .bp-reality-strip,
  .bp-module-rail {
    grid-template-columns: 1fr;
  }

  .bp-reality-strip article,
  .bp-module-rail article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #cfdfeb;
  }

  .bp-module-rail article {
    border-bottom-color: rgba(255, 255, 255, .18);
  }

  .bp-orbit {
    min-height: 710px;
  }

  .ring-one { width: 290px; height: 290px; }
  .ring-two { width: 390px; height: 390px; }
  .bp-orbit-core { width: 150px; height: 150px; }
  .bp-orbit-core img { width: 70px; height: 70px; }
  .bp-orbit article { width: 150px; font-size: 12px; }
  .orbit-equipment { top: 3%; left: 27%; }
  .orbit-contract { top: 22%; right: 0; }
  .orbit-maintenance { right: 0; bottom: 19%; }
  .orbit-investment { bottom: 3%; left: 27%; }
  .orbit-partner { bottom: 19%; left: 0; }
  .orbit-reporting { top: 22%; left: 0; }

  .bp-method-visual {
    min-height: 400px;
    padding: 28px;
  }

  .bp-offer-lines article,
  .bp-final-cta,
  .bp-landing-footer {
    grid-template-columns: 1fr;
  }

  .bp-landing-footer {
    text-align: center;
    justify-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bp-landing *,
  .bp-landing *::before,
  .bp-landing *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
