.nm-banner-copy {
  --bc-green: #18382f;
  --bc-ink: #151916;
  --bc-muted: #747a76;
  --bc-line: #e5e7e4;
  position: relative;
  height: 410px;
  overflow: hidden;
  border: 1px solid var(--bc-line);
  border-radius: var(--radius, 4px);
  background: linear-gradient(105deg, #f8f9f7 0%, #f1f3ef 55%, #ecefea 100%);
  color: var(--bc-ink);
}
.nm-banner-copy__copy {
  position: absolute;
  left: 5.5%;
  top: 49%;
  transform: translateY(-50%);
  z-index: 4;
  width: 35%;
  max-width: 470px;
}
.nm-banner-copy__eyebrow {
  font-size: 11px;
  letter-spacing: .17em;
  font-weight: 700;
  color: var(--bc-green);
  margin-bottom: 14px;
}
.nm-banner-copy__title {
  font-size: clamp(36px, 3.4vw, 56px);
  line-height: 1;
  letter-spacing: -.045em;
  margin: 0 0 16px;
  font-weight: 650;
  color: var(--bc-ink);
}
.nm-banner-copy__sub {
  font-size: 14px;
  line-height: 1.6;
  color: var(--bc-muted);
  max-width: 430px;
  margin: 0 0 22px;
}
.nm-banner-copy__btn {
  display: inline-block;
  background: var(--bc-green);
  color: #fff;
  text-decoration: none;
  padding: 13px 20px;
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius, 4px);
}
.nm-banner-copy__btn:hover { color: #fff; opacity: .92; }
.nm-banner-copy__btn[hidden],
.nm-banner-copy__sub[hidden] { display: none !important; }
.section.nm-banner-copy-section,
.section:has(> .nm-banner-copy) {
  padding: 40px 0;
}
.nm-banner-copy__stage {
  position: absolute;
  right: 1.5%;
  top: 5%;
  width: 61%;
  height: 78%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nm-banner-copy__product {
  position: absolute;
  max-width: 96%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: translateX(24px) scale(.985);
  transition: opacity .9s ease, transform .9s ease;
  filter: drop-shadow(0 16px 18px rgba(0, 0, 0, .10));
  pointer-events: none;
}
.nm-banner-copy__product.is-active {
  opacity: 1;
  transform: none;
}
.nm-banner-copy__tabs {
  position: absolute;
  left: 5.5%;
  right: 4%;
  bottom: 18px;
  display: flex;
  gap: 30px;
  border-top: 1px solid rgba(24, 56, 47, .16);
  padding-top: 12px;
  z-index: 5;
}
.nm-banner-copy__tab {
  border: 0;
  background: none;
  padding: 0 0 7px;
  color: #858b87;
  font-size: 11px;
  cursor: pointer;
  position: relative;
  font-family: inherit;
}
.nm-banner-copy__tab.is-active {
  color: var(--bc-green);
  font-weight: 700;
}
.nm-banner-copy__tab.is-active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--bc-green);
}
.nm-banner-copy__progress {
  margin-left: auto;
  width: 96px;
  height: 2px;
  background: #d8dcd8;
  align-self: center;
  overflow: hidden;
}
.nm-banner-copy__bar {
  height: 100%;
  background: var(--bc-green);
  width: 0;
}
.nm-banner-copy__bar.is-run {
  animation: nm-banner-copy-fill 5s linear;
}
@keyframes nm-banner-copy-fill {
  from { width: 0; }
  to { width: 100%; }
}
@media (max-width: 850px) {
  .section.nm-banner-copy-section,
  .section:has(> .nm-banner-copy) {
    padding: 28px 0;
  }
  .nm-banner-copy { height: 560px; }
  .nm-banner-copy__copy { left: 7%; top: 27%; width: 86%; max-width: none; }
  .nm-banner-copy__stage { top: 46%; right: 2%; width: 96%; height: 37%; }
  .nm-banner-copy__tabs { left: 7%; overflow: auto; gap: 18px; }
  .nm-banner-copy__progress { display: none; }
  .nm-banner-copy__title { font-size: 32px; }
}
@media (max-width: 767px) {
  .nm-banner-copy .bn-has-device:not(.bn-device-mobile) { display: none !important; }
}
@media (min-width: 768px) and (max-width: 991px) {
  .nm-banner-copy .bn-has-device:not(.bn-device-tablet) { display: none !important; }
}
@media (min-width: 992px) {
  .nm-banner-copy .bn-has-device:not(.bn-device-desktop) { display: none !important; }
}
