.digital-twin-page {
  --dt-orange: var(--gold, #e48a1b);
  --dt-orange-soft: var(--gold-soft, #f2a23a);
  --dt-dark: #050809;
  --dt-panel: #0b0f10;
  --dt-light: #fff;
  --dt-text: #f6f4f0;
  --dt-muted: rgba(246, 244, 240, 0.68);
  overflow: clip;
}

.digital-twin-page .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.dt-hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 92px);
  place-items: end start;
  isolation: isolate;
  background: var(--dt-dark);
  color: var(--dt-text);
  overflow: hidden;
}

.dt-hero-media,
.dt-hero-media picture,
.dt-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.dt-hero-media img {
  object-fit: cover;
  object-position: center;
  animation: dt-hero-reveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.dt-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 6, 7, 0.96) 0%, rgba(3, 6, 7, 0.8) 37%, rgba(3, 6, 7, 0.2) 70%, rgba(3, 6, 7, 0.38) 100%),
    linear-gradient(0deg, rgba(3, 6, 7, 0.7), transparent 48%);
}

.dt-hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, 58vw);
  padding: clamp(72px, 9vw, 140px) 5vw clamp(88px, 9vw, 130px);
}

.dt-hero-copy h1 {
  max-width: 720px;
  margin: 18px 0 26px;
  color: #fff;
  font-size: clamp(48px, 5.8vw, 94px);
  font-weight: 200;
  letter-spacing: 0.025em;
  line-height: 0.98;
  text-transform: uppercase;
}

.dt-hero-lead {
  max-width: 650px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.65;
}

.dt-hero .landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.dt-hero .ghost-cta {
  background: rgba(4, 7, 8, 0.42);
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

.dt-hero-orbit {
  position: absolute;
  z-index: 1;
  width: 22px;
  height: 22px;
  border: 2px solid var(--dt-orange-soft);
  border-radius: 50%;
  background: rgba(4, 8, 9, 0.56);
  box-shadow: 0 0 0 10px rgba(228, 138, 27, 0.12), 0 0 34px rgba(242, 162, 58, 0.65);
  animation: dt-orbit 2.2s ease-out infinite;
}

.dt-orbit-one {
  top: 39%;
  left: 66%;
}

.dt-orbit-two {
  right: 12%;
  bottom: 23%;
  animation-delay: 0.65s;
}

.dt-scroll-cue {
  position: absolute;
  z-index: 3;
  right: 4vw;
  bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dt-scroll-cue span {
  position: relative;
  width: 24px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 20px;
}

.dt-scroll-cue span::after {
  position: absolute;
  top: 8px;
  left: 10px;
  width: 3px;
  height: 7px;
  border-radius: 4px;
  background: var(--dt-orange-soft);
  content: "";
  animation: dt-scroll-dot 1.8s ease-in-out infinite;
}

.dt-intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(340px, 1.15fr) minmax(300px, 0.95fr);
  gap: clamp(34px, 6vw, 100px);
  align-items: start;
  padding: clamp(84px, 10vw, 160px) 5vw;
}

.dt-intro h2,
.dt-story-heading h2,
.dt-section-copy h2,
.dt-embed h2,
.dt-price h2 {
  margin: 0;
  font-size: clamp(38px, 4.4vw, 72px);
  font-weight: 200;
  letter-spacing: 0.025em;
  line-height: 1.08;
  text-transform: uppercase;
}

.dt-intro > p:last-child,
.dt-section-copy > p:last-child,
.dt-embed-copy > p,
.dt-price-copy > p {
  max-width: 720px;
  margin: 0;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.75;
}

.dt-story {
  padding: clamp(86px, 9vw, 150px) 5vw;
  background:
    radial-gradient(circle at 78% 18%, rgba(228, 138, 27, 0.1), transparent 25%),
    var(--dt-dark);
  color: var(--dt-text);
}

.dt-story-heading {
  width: min(900px, 100%);
  margin-bottom: clamp(64px, 8vw, 120px);
}

.dt-story-heading h2 {
  max-width: 880px;
  color: #fff;
}

.dt-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: start;
}

.dt-story-stage {
  position: sticky;
  top: 122px;
  min-width: 0;
}

.dt-stage-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(242, 162, 58, 0.26);
  background: #070a0b;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.dt-stage-frame picture,
.dt-stage-frame img {
  display: block;
  width: 100%;
  height: 100%;
}

.dt-stage-frame img {
  object-fit: cover;
  transition: filter 700ms ease, opacity 700ms ease, transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.dt-stage-grid,
.dt-point-cloud,
.dt-model-lines,
.dt-scan-plane {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 500ms ease;
}

.dt-stage-grid {
  background-image:
    linear-gradient(rgba(242, 162, 58, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 162, 58, 0.13) 1px, transparent 1px);
  background-size: 38px 38px;
  mix-blend-mode: screen;
}

.dt-scan-plane {
  right: auto;
  width: 2px;
  background: linear-gradient(180deg, transparent, #ffd48e 15%, var(--dt-orange) 50%, #ffd48e 85%, transparent);
  box-shadow: 0 0 28px 8px rgba(242, 162, 58, 0.42);
}

.dt-point-cloud {
  background-image:
    radial-gradient(circle, rgba(255, 217, 156, 0.92) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(242, 162, 58, 0.78) 0 1px, transparent 1.7px);
  background-position: 0 0, 13px 17px;
  background-size: 28px 28px, 34px 34px;
  mix-blend-mode: screen;
}

.dt-model-lines {
  background:
    linear-gradient(35deg, transparent 49.5%, rgba(242, 162, 58, 0.5) 50%, transparent 50.5%),
    linear-gradient(145deg, transparent 49.5%, rgba(242, 162, 58, 0.32) 50%, transparent 50.5%);
  background-size: 84px 72px;
  mix-blend-mode: screen;
}

.dt-story-stage[data-dt-stage="scan"] img {
  filter: saturate(0.65) contrast(1.1) brightness(0.72);
  transform: scale(1.025);
}

.dt-story-stage[data-dt-stage="scan"] .dt-stage-grid,
.dt-story-stage[data-dt-stage="scan"] .dt-scan-plane,
.dt-story-stage[data-dt-stage="scan"] .dt-point-cloud {
  opacity: 1;
}

.dt-story-stage[data-dt-stage="scan"] .dt-scan-plane {
  animation: dt-scan 3.6s ease-in-out infinite;
}

.dt-story-stage[data-dt-stage="model"] img {
  filter: saturate(0.2) contrast(1.28) brightness(0.46);
  transform: scale(1.045);
}

.dt-story-stage[data-dt-stage="model"] .dt-stage-grid,
.dt-story-stage[data-dt-stage="model"] .dt-point-cloud,
.dt-story-stage[data-dt-stage="model"] .dt-model-lines {
  opacity: 1;
}

.dt-stage-status,
.dt-stage-counter {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(242, 162, 58, 0.42);
  background: rgba(5, 8, 9, 0.78);
  color: #fff;
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.dt-stage-status {
  left: 20px;
  bottom: 20px;
  gap: 10px;
  padding: 12px 15px;
}

.dt-stage-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dt-orange-soft);
  box-shadow: 0 0 12px var(--dt-orange-soft);
}

.dt-stage-counter {
  top: 20px;
  right: 20px;
  padding: 10px 12px;
}

.dt-story-steps {
  display: grid;
}

.dt-story-step {
  min-height: 78vh;
  padding: 10vh 0;
}

.dt-story.is-enhanced .dt-story-step {
  opacity: 0.4;
  transition: opacity 360ms ease, transform 500ms ease;
}

.dt-story.is-enhanced .dt-story-step.is-active {
  opacity: 1;
  transform: translateX(-10px);
}

.dt-step-number {
  display: block;
  margin-bottom: 34px;
  color: var(--dt-orange-soft);
  font-size: 13px;
  letter-spacing: 0.22em;
}

.dt-story-step h3 {
  margin: 12px 0 24px;
  color: #fff;
  font-size: clamp(31px, 3vw, 50px);
  font-weight: 300;
  line-height: 1.12;
}

.dt-story-step > p:last-of-type {
  color: var(--dt-muted);
  font-size: 17px;
  line-height: 1.75;
}

.dt-story-step ul {
  display: grid;
  gap: 13px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.dt-story-step li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.5;
}

.dt-story-step li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 9px;
  height: 1px;
  background: var(--dt-orange-soft);
  content: "";
}

.dt-interactive,
.dt-benefits {
  padding: clamp(86px, 10vw, 160px) 5vw;
}

.dt-section-copy {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(420px, 1.3fr);
  gap: 20px clamp(40px, 8vw, 130px);
  align-items: end;
  margin-bottom: clamp(54px, 7vw, 100px);
}

.dt-section-copy .eyebrow,
.dt-section-copy .small-rule {
  grid-column: 1;
}

.dt-section-copy h2 {
  grid-column: 1;
}

.dt-section-copy > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: end;
}

.dt-interactive-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: stretch;
}

.dt-hotspot-scene {
  position: relative;
  min-width: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a0d0e;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.dt-hotspot-scene picture,
.dt-hotspot-scene img {
  display: block;
  width: 100%;
  height: 100%;
}

.dt-hotspot-scene img {
  object-fit: cover;
}

.dt-feature-pin {
  position: absolute;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(4, 8, 9, 0.74);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0 0 10px rgba(228, 138, 27, 0.12);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.dt-feature-pin:hover,
.dt-feature-pin:focus-visible,
.dt-feature-pin.is-active {
  background: var(--dt-orange);
  color: #080808;
  outline: 2px solid #fff;
  outline-offset: 4px;
  transform: scale(1.08);
}

.dt-feature-pin span:first-child {
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
}

.dt-pin-one { top: 49%; left: 43%; }
.dt-pin-two { top: 32%; right: 19%; }
.dt-pin-three { bottom: 22%; left: 15%; }

.dt-feature-panel {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(17, 17, 17, 0.18);
  padding: clamp(30px, 4vw, 68px);
}

.dt-feature-panel h3 {
  margin: 12px 0 20px;
  font-size: clamp(28px, 2.6vw, 44px);
  font-weight: 300;
  line-height: 1.16;
}

.dt-feature-panel > p:not(.eyebrow) {
  color: rgba(17, 17, 17, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

.dt-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.dt-feature-tags span {
  border: 1px solid rgba(17, 17, 17, 0.2);
  padding: 8px 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dt-capability-list {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin: clamp(50px, 7vw, 90px) 0 0;
  padding: 0;
  border-top: 1px solid rgba(17, 17, 17, 0.14);
  list-style: none;
}

.dt-capability-list li {
  min-height: 122px;
  border-right: 1px solid rgba(17, 17, 17, 0.14);
  padding: 20px 14px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
}

.dt-capability-list li:last-child { border-right: 0; }

.dt-capability-list span {
  display: block;
  margin-bottom: 24px;
  color: var(--dt-orange);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.dt-embed {
  display: grid;
  grid-template-columns: minmax(340px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(54px, 7vw, 120px);
  align-items: center;
  padding: clamp(94px, 11vw, 180px) 5vw;
  background:
    radial-gradient(circle at 74% 32%, rgba(228, 138, 27, 0.12), transparent 28%),
    #070a0b;
}

.dt-embed h2 { color: #fff; }

.dt-embed-copy > p {
  margin-top: 30px;
  color: var(--dt-muted);
}

.dt-key-message {
  border-left: 2px solid var(--dt-orange);
  padding-left: 22px;
  color: #fff !important;
  font-weight: 500;
}

.dt-browser {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: #111516;
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.46);
  transform: perspective(1600px) rotateY(-4deg) rotateX(1deg);
}

.dt-browser-bar {
  display: flex;
  height: 52px;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  background: #171b1c;
}

.dt-browser-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
}

.dt-browser-bar span:first-child { background: var(--dt-orange); }

.dt-browser-bar i {
  flex: 1;
  margin-left: 12px;
  border-radius: 3px;
  padding: 7px 12px;
  background: #0c0f10;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.06em;
}

.dt-browser-screen {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.dt-browser-screen picture,
.dt-browser-screen img {
  display: block;
  width: 100%;
  height: 100%;
}

.dt-browser-screen img { object-fit: cover; }

.dt-browser-control {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  background: rgba(4, 8, 9, 0.74);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.dt-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(17, 17, 17, 0.16);
}

.dt-benefit-grid article {
  min-height: 280px;
  border-right: 1px solid rgba(17, 17, 17, 0.16);
  padding: 34px clamp(20px, 3vw, 46px);
}

.dt-benefit-grid article:last-child { border-right: 0; }

.dt-benefit-grid article > span {
  color: var(--dt-orange);
  font-size: 11px;
  letter-spacing: 0.18em;
}

.dt-benefit-grid h3 {
  margin: 50px 0 16px;
  font-size: clamp(23px, 2vw, 32px);
  font-weight: 300;
}

.dt-benefit-grid p {
  color: rgba(17, 17, 17, 0.68);
  line-height: 1.65;
}

.dt-price {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(400px, 1.1fr);
  gap: clamp(50px, 8vw, 140px);
  align-items: center;
  padding: clamp(96px, 11vw, 180px) 5vw;
  background:
    linear-gradient(115deg, rgba(228, 138, 27, 0.13), transparent 34%),
    #050809;
  color: #fff;
}

.dt-price h2 { color: #fff; }

.dt-price-copy > p {
  margin-top: 28px;
  color: var(--dt-muted);
}

.dt-configurator-shell {
  position: relative;
  border: 1px solid rgba(242, 162, 58, 0.4);
  padding: clamp(34px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.035);
}

.dt-configurator-shell::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 90px;
  height: 3px;
  background: var(--dt-orange);
  content: "";
}

.dt-configurator-kicker {
  color: var(--dt-orange-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dt-configurator-shell h3 {
  margin: 16px 0 20px;
  color: #fff;
  font-size: clamp(28px, 2.6vw, 42px);
  font-weight: 300;
}

.dt-configurator-shell > p:not(.dt-configurator-kicker) {
  margin-bottom: 30px;
  color: var(--dt-muted);
  line-height: 1.7;
}

html.einblicke-light-theme .digital-twin-page .dt-intro,
html.einblicke-light-theme .digital-twin-page .dt-interactive,
html.einblicke-light-theme .digital-twin-page .dt-benefits {
  background: #fff;
  color: #111;
}

html.einblicke-light-theme .digital-twin-page .dt-story,
html.einblicke-light-theme .digital-twin-page .dt-embed,
html.einblicke-light-theme .digital-twin-page .dt-price {
  background-color: #070a0b;
  color: #fff;
}

html.einblicke-light-theme .digital-twin-page .dt-story h2,
html.einblicke-light-theme .digital-twin-page .dt-story h3,
html.einblicke-light-theme .digital-twin-page .dt-embed h2,
html.einblicke-light-theme .digital-twin-page .dt-price h2,
html.einblicke-light-theme .digital-twin-page .dt-price h3 {
  color: #fff;
}

@keyframes dt-hero-reveal {
  from { opacity: 0; transform: scale(1.06); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes dt-orbit {
  0%, 100% { box-shadow: 0 0 0 8px rgba(228, 138, 27, 0.12), 0 0 28px rgba(242, 162, 58, 0.52); }
  50% { box-shadow: 0 0 0 18px rgba(228, 138, 27, 0), 0 0 42px rgba(242, 162, 58, 0.8); }
}

@keyframes dt-scroll-dot {
  0%, 100% { opacity: 0.35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(11px); }
}

@keyframes dt-scan {
  0%, 100% { transform: translateX(4vw); opacity: 0.18; }
  50% { transform: translateX(52vw); opacity: 1; }
}

@media (max-width: 1180px) {
  .dt-hero-copy { width: min(780px, 78vw); }

  .dt-intro {
    grid-template-columns: 1fr 1.4fr;
  }

  .dt-intro > p:last-child {
    grid-column: 2;
  }

  .dt-story-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 48px;
  }

  .dt-capability-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .dt-capability-list li:nth-child(4) { border-right: 0; }
  .dt-capability-list li:nth-child(n + 5) { border-top: 1px solid rgba(17, 17, 17, 0.14); }
}

@media (max-width: 900px) {
  .dt-hero { min-height: 860px; }

  .dt-hero-shade {
    background: linear-gradient(0deg, rgba(3, 6, 7, 0.98) 4%, rgba(3, 6, 7, 0.83) 48%, rgba(3, 6, 7, 0.24) 100%);
  }

  .dt-hero-copy {
    width: 100%;
    padding: 300px 6vw 90px;
  }

  .dt-orbit-one { top: 22%; left: 62%; }
  .dt-orbit-two { top: 34%; right: 12%; bottom: auto; }
  .dt-scroll-cue { display: none; }

  .dt-intro,
  .dt-section-copy,
  .dt-embed,
  .dt-price {
    grid-template-columns: 1fr;
  }

  .dt-intro > p:last-child,
  .dt-section-copy .eyebrow,
  .dt-section-copy .small-rule,
  .dt-section-copy h2,
  .dt-section-copy > p:last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .dt-story-layout { display: block; }

  .dt-story-stage {
    top: 18px;
    z-index: 2;
    margin-bottom: 30px;
  }

  .dt-story-step {
    min-height: 68vh;
    padding: 16vh 0 8vh;
  }

  .dt-story.is-enhanced .dt-story-step.is-active { transform: none; }

  .dt-interactive-grid {
    grid-template-columns: 1fr;
  }

  .dt-feature-panel {
    min-height: 330px;
    border-top: 1px solid rgba(17, 17, 17, 0.18);
    border-left: 0;
  }

  .dt-embed-copy { max-width: 760px; }
  .dt-browser { transform: none; }

  .dt-benefit-grid { grid-template-columns: 1fr 1fr; }
  .dt-benefit-grid article:nth-child(2) { border-right: 0; }
  .dt-benefit-grid article:nth-child(n + 3) { border-top: 1px solid rgba(17, 17, 17, 0.16); }
}

@media (max-width: 620px) {
  .dt-hero { min-height: 760px; }

  .dt-hero-copy {
    padding: 250px 20px 64px;
  }

  .dt-hero-copy h1 {
    font-size: clamp(40px, 12vw, 58px);
    line-height: 1.03;
  }

  .dt-hero-lead { font-size: 16px; }

  .dt-hero .landing-actions,
  .dt-hero .landing-actions .cta,
  .dt-hero .landing-actions .ghost-cta {
    width: 100%;
  }

  .dt-orbit-one { left: 28%; }

  .dt-intro,
  .dt-story,
  .dt-interactive,
  .dt-embed,
  .dt-benefits,
  .dt-price {
    padding-right: 20px;
    padding-left: 20px;
  }

  .dt-intro h2,
  .dt-story-heading h2,
  .dt-section-copy h2,
  .dt-embed h2,
  .dt-price h2 {
    font-size: clamp(34px, 10vw, 48px);
    overflow-wrap: anywhere;
  }

  .dt-story-stage { top: 10px; }

  .dt-stage-frame { aspect-ratio: 4 / 3; }
  .dt-stage-frame img { object-position: center; }
  .dt-stage-counter { top: 10px; right: 10px; }
  .dt-stage-status { bottom: 10px; left: 10px; }

  .dt-story-step {
    min-height: 72vh;
    padding-top: 14vh;
  }

  .dt-hotspot-scene { aspect-ratio: 4 / 3; }
  .dt-feature-pin { width: 38px; height: 38px; }

  .dt-capability-list { grid-template-columns: 1fr 1fr; }
  .dt-capability-list li:nth-child(even) { border-right: 0; }
  .dt-capability-list li:nth-child(n + 3) { border-top: 1px solid rgba(17, 17, 17, 0.14); }

  .dt-benefit-grid { grid-template-columns: 1fr; }
  .dt-benefit-grid article,
  .dt-benefit-grid article:nth-child(2) {
    min-height: 220px;
    border-top: 1px solid rgba(17, 17, 17, 0.16);
    border-right: 0;
  }

  .dt-benefit-grid article:first-child { border-top: 0; }
  .dt-benefit-grid h3 { margin-top: 34px; }
  .dt-browser-bar i { overflow: hidden; white-space: nowrap; }
  .dt-configurator-shell { padding: 34px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .digital-twin-page *,
  .digital-twin-page *::before,
  .digital-twin-page *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .dt-story-stage {
    position: relative;
    top: auto;
  }

  .dt-story.is-enhanced .dt-story-step {
    min-height: auto;
    padding: 56px 0;
    opacity: 1;
    transform: none;
  }
}
