:root {
  --ink: #072750;
  --copy: #456179;
  --muted: #70869a;
  --surface: #ffffff;
  --canvas: #f4faff;
  --line: #d4e7ef;
  --blue: #07548b;
  --blue-deep: #073f70;
  --cyan: #00d7eb;
  --green: #77eb25;
  --soft-cyan: #e8faff;
  --shadow: rgba(6, 57, 93, .18);
  --pointer-x: 17.4%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--canvas);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 75% 18%, rgba(0, 215, 235, .07), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #f1f8fc 100%);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

button,
a {
  font: inherit;
}

.hero {
  width: 100%;
  overflow: hidden;
}

.visual-stage {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  aspect-ratio: 5504 / 3072;
  isolation: isolate;
}

.base-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
}

.hero-intro-visual {
  position: absolute;
  z-index: 1;
  top: 10.4%;
  right: 0;
  width: 57.9%;
  height: 56.5%;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .22) 2.5%, rgba(0, 0, 0, .82) 6%, #000 9%, #000 91%, rgba(0, 0, 0, .72) 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .22) 2.5%, rgba(0, 0, 0, .82) 6%, #000 9%, #000 91%, rgba(0, 0, 0, .72) 96%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.hero-intro-video,
.hero-intro-final-frame {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: fill;
  background: transparent;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .9) 1%, #000 2.5%, #000 94%, rgba(0, 0, 0, .8) 97%, rgba(0, 0, 0, .45) 98.5%, transparent 100%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .9) 1%, #000 2.5%, #000 94%, rgba(0, 0, 0, .8) 97%, rgba(0, 0, 0, .45) 98.5%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.hero-intro-final-frame {
  z-index: 0;
}

.hero-intro-video {
  z-index: 1;
}

.hero-intro-video::-webkit-media-controls,
.hero-intro-video::-webkit-media-controls-enclosure,
.hero-intro-video::-webkit-media-controls-panel {
  display: none !important;
}

.hero-intro-visual.is-complete .hero-intro-final-frame {
  z-index: 2;
}

.header-cleanup {
  position: absolute;
  z-index: 2;
  top: 2.35%;
  left: 6.1%;
  width: 87.8%;
  height: 10.4%;
  background:
    radial-gradient(circle at 55% 38%, rgba(235, 248, 255, .84), transparent 34%),
    linear-gradient(90deg, #f8f9ff 0%, #f4faff 46%, #f8fbff 100%);
  box-shadow: 0 0 18px 12px rgba(247, 250, 255, .82);
}

.brand-overlay {
  position: absolute;
  z-index: 6;
  top: 3.72%;
  left: 8.68%;
  display: block;
  width: 15.25%;
  transition: transform .28s cubic-bezier(.2, .8, .2, 1);
}

.brand-overlay img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-overlay:hover,
.brand-overlay:focus-visible {
  transform: scale(1.035);
  outline: none;
}

.primary-nav-overlay {
  position: absolute;
  z-index: 6;
  top: 3.48%;
  right: 8.7%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2.05vw, 36px);
  height: 7.2%;
}

.primary-nav-overlay a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  color: #173a5b;
  font-size: clamp(12px, 1.22vw, 21px);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color .24s ease,
    transform .28s cubic-bezier(.2, .8, .2, 1),
    text-shadow .24s ease;
}

.primary-nav-overlay a:hover,
.primary-nav-overlay a:focus-visible {
  color: #086f9a;
  transform: translateY(-2px) scale(1.08);
  text-shadow: 0 7px 18px rgba(5, 102, 139, .18);
  outline: none;
}

.primary-nav-overlay .nav-contact {
  min-height: clamp(38px, 4.25vw, 62px);
  padding: 0 clamp(15px, 1.65vw, 28px);
  border: 2px solid #17678f;
  border-right-color: #44d9a7;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
}

.primary-nav-overlay .nav-contact:hover,
.primary-nav-overlay .nav-contact:focus-visible {
  color: #ffffff;
  background: #075689;
  border-color: #075689;
  text-shadow: none;
}

.cta-cleanup {
  position: absolute;
  z-index: 3;
  top: 48.15%;
  left: 7.75%;
  width: 33.3%;
  height: 9.25%;
  background: linear-gradient(90deg, #f7fbff 0%, #f2faff 52%, #eff9fd 100%);
  box-shadow: 0 0 14px 13px rgba(243, 250, 254, .94);
  border-radius: 28px;
}

.cta-overlay {
  position: absolute;
  z-index: 5;
  top: 49.35%;
  left: 8.78%;
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.25vw, 22px);
  height: 6.55%;
}

.hero-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(7px, .6vw, 11px);
  height: 100%;
  min-height: 44px;
  padding: 0 clamp(16px, 1.75vw, 31px);
  border-radius: 999px;
  font-size: clamp(13px, 1.45vw, 25px);
  line-height: 1;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform .28s cubic-bezier(.2, .8, .2, 1),
    box-shadow .28s ease,
    border-color .28s ease;
}

.hero-button svg,
.detail-link svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #082d62 0%, #0873a5 100%);
  border: 1px solid rgba(0, 220, 238, .78);
  box-shadow:
    0 10px 22px rgba(5, 60, 99, .27),
    0 0 0 3px rgba(0, 215, 235, .08),
    inset 0 1px 0 rgba(255, 255, 255, .18);
}

.hero-button-secondary {
  color: #16496d;
  background: rgba(247, 252, 255, .98);
  border: 2px solid #176a93;
  box-shadow: 0 8px 18px rgba(7, 59, 91, .1);
}

.hero-button:hover,
.hero-button:focus-visible {
  transform: translateY(-3px);
  box-shadow:
    0 14px 30px rgba(5, 60, 99, .25),
    0 0 0 4px rgba(0, 215, 235, .12);
  outline: none;
}

.solution-overlays {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.solution-card {
  position: absolute;
  display: block;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: clamp(12px, 2vw, 38px);
  cursor: pointer;
  pointer-events: auto;
  transform-origin: center;
  transition:
    transform .4s cubic-bezier(.2, .8, .2, 1),
    filter .4s ease;
}

.card-desktop {
  left: 8.78%;
  top: 68.56%;
  width: 26.18%;
  height: 27.62%;
}

.card-hardware {
  left: 36.75%;
  top: 68.52%;
  width: 26.43%;
  height: 27.7%;
}

.card-industrial {
  left: 65.08%;
  top: 68.5%;
  width: 26.08%;
  height: 27.7%;
}

.card-slice {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  border-radius: inherit;
  box-shadow: 0 12px 28px rgba(7, 62, 96, .13);
  transition:
    box-shadow .4s ease,
    outline-color .4s ease;
}

.card-slice::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: inherit;
  background: linear-gradient(120deg, #178be7, #00ddeb 56%, #71ec27) border-box;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s ease;
}

.card-slice img {
  position: absolute;
  top: 0;
  width: 100%;
  max-width: none;
  height: auto;
  user-select: none;
  pointer-events: none;
}

.card-desktop .card-slice img {
  width: 382%;
  left: -33.55%;
  top: -248.2%;
}

.card-hardware .card-slice img {
  width: 378.4%;
  left: -139.1%;
  top: -247.35%;
}

.card-hardware .card-slice .hardware-product-cover {
  position: absolute;
  z-index: 1;
  inset: 0 0 0 44%;
  overflow: hidden;
  background:
    radial-gradient(circle at 66% 60%, rgba(18, 106, 184, .42), transparent 46%),
    linear-gradient(90deg, rgba(17, 61, 123, 0), rgba(16, 58, 120, .94) 15%, #0a2e68 54%, #0b3774 100%);
  pointer-events: none;
}

.card-hardware .card-slice .hardware-product-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .26;
  background:
    linear-gradient(24deg, transparent 0 43%, rgba(63, 185, 235, .45) 43.5% 44%, transparent 44.5% 100%),
    linear-gradient(156deg, transparent 0 57%, rgba(71, 214, 159, .38) 57.5% 58%, transparent 58.5% 100%);
  background-size: 72px 56px, 84px 68px;
}

.card-hardware .card-slice img.hardware-product-refresh {
  z-index: 2;
  top: 7%;
  right: -1.5%;
  left: auto;
  width: 58%;
  height: 99%;
  object-fit: contain;
  object-position: right bottom;
  mix-blend-mode: screen;
  filter: saturate(1.06) contrast(1.08) drop-shadow(0 12px 13px rgba(0, 8, 25, .38));
}

.hardware-access-label {
  position: absolute;
  z-index: 3;
  top: 8.8%;
  right: 0;
  display: inline-flex;
  align-items: center;
  min-height: 15.6%;
  padding: 0 4.2%;
  color: #173b1d;
  background: linear-gradient(135deg, #b9f85a, #8eed42);
  border-radius: 999px 0 0 999px;
  font-size: clamp(7px, 1.05vw, 18px);
  font-weight: 720;
  letter-spacing: -.015em;
  white-space: nowrap;
  box-shadow: 0 5px 14px rgba(37, 123, 47, .14);
  pointer-events: none;
}

.card-industrial .card-slice img {
  width: 383.45%;
  left: -249.5%;
  top: -247.25%;
}

.selected-mark {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: clamp(27px, 2.3vw, 40px);
  height: clamp(27px, 2.3vw, 40px);
  color: #173a1d;
  background: var(--green);
  border: 3px solid rgba(255, 255, 255, .86);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(35, 126, 50, .28);
  opacity: 0;
  transform: scale(.65) translateY(4px);
  transition:
    opacity .3s ease,
    transform .35s cubic-bezier(.2, .8, .2, 1);
}

.selected-mark svg {
  width: 62%;
  height: 62%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-card:hover,
.solution-card:focus-visible,
.solution-card.is-selected {
  z-index: 8;
  transform: translateY(-10px) scale(1.045);
  filter: saturate(1.06) contrast(1.02);
  outline: none;
}

.solution-card:hover .card-slice,
.solution-card:focus-visible .card-slice,
.solution-card.is-selected .card-slice {
  box-shadow:
    0 24px 44px rgba(5, 67, 105, .24),
    0 0 0 5px rgba(0, 215, 235, .1);
}

.solution-card:hover .card-slice::after,
.solution-card:focus-visible .card-slice::after,
.solution-card.is-selected .card-slice::after {
  opacity: 1;
}

.solution-card:hover .selected-mark,
.solution-card:focus-visible .selected-mark,
.solution-card.is-selected .selected-mark {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.detail-zone {
  position: relative;
  z-index: 10;
  min-height: 194px;
  padding: 7px clamp(18px, 4vw, 64px) 38px;
  background:
    radial-gradient(circle at var(--pointer-x) 0, rgba(0, 215, 235, .1), transparent 25%),
    linear-gradient(180deg, rgba(239, 249, 253, .95), #f7fbfd 72%);
  border-top: 1px solid rgba(126, 183, 205, .25);
}

.detail-shell {
  position: relative;
  width: min(1420px, 100%);
  margin: 0 auto;
}

.solution-detail {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(18px, 2.2vw, 34px);
  align-items: center;
  min-height: 148px;
  padding: clamp(22px, 2.5vw, 38px);
  color: var(--ink);
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow:
    0 20px 50px rgba(7, 58, 91, .1),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  transform-origin: var(--pointer-x) top;
}

.solution-detail[hidden] {
  display: none;
}

.solution-detail.is-entering {
  animation: detail-in .38s cubic-bezier(.2, .8, .2, 1) both;
}

.detail-pointer {
  position: absolute;
  z-index: -1;
  top: -13px;
  left: var(--pointer-x);
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, .96);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: 4px 0 0;
  box-shadow: -6px -6px 16px rgba(7, 58, 91, .035);
  transform: translateX(-50%) rotate(45deg);
  transition: left .4s cubic-bezier(.2, .8, .2, 1);
}

.detail-pointer::before,
.detail-pointer::after {
  display: none;
}

.detail-icon {
  display: grid;
  place-items: center;
  width: clamp(60px, 6vw, 88px);
  height: clamp(60px, 6vw, 88px);
  color: var(--blue);
  background: linear-gradient(145deg, var(--soft-cyan), #ffffff);
  border: 1px solid #ccecf1;
  border-radius: 20px;
}

.detail-icon svg {
  width: 52%;
  height: 52%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.detail-label {
  margin: 0 0 5px;
  color: #087493;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.detail-copy h2 {
  margin: 0;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.15;
}

.detail-description {
  max-width: 790px;
  margin: 9px 0 0;
  color: var(--copy);
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.58;
}

.detail-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 14px 0 0;
  padding: 0;
  color: #315a6f;
  list-style: none;
  font-size: clamp(12px, .9vw, 14px);
}

.detail-points li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.detail-points li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: var(--green);
  border-radius: 50%;
}

.detail-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 16px;
  color: #ffffff;
  background: var(--blue-deep);
  border: 1px solid #0a7697;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease;
}

.detail-link:hover,
.detail-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(7, 62, 96, .2);
  outline: 3px solid rgba(0, 215, 235, .2);
  outline-offset: 2px;
}

.anchor-target {
  position: absolute;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  will-change: transform, opacity;
}

body.is-loaded .reveal {
  animation: rise-in .8s cubic-bezier(.2, .72, .2, 1) forwards;
}

body.is-loaded .reveal-base {
  animation-duration: .95s;
  animation-delay: .04s;
}

body.is-loaded .reveal-header {
  animation-delay: .14s;
}

body.is-loaded .reveal-copy {
  animation-delay: .18s;
}

body.is-loaded .reveal-actions {
  animation-delay: .22s;
}

body.is-loaded .reveal-cards {
  animation-delay: .36s;
}

body.is-loaded .reveal-detail {
  animation-delay: .5s;
}

@keyframes rise-in {
  0% {
    opacity: 0;
    transform: translateY(34px);
    filter: blur(4px);
  }
  62% {
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes detail-in {
  from {
    opacity: 0;
    transform: translateY(13px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 900px) {
  .primary-nav-overlay {
    gap: 12px;
  }

  .primary-nav-overlay a {
    min-height: 34px;
  }

  .cta-overlay {
    gap: 8px;
  }

  .hero-button {
    min-height: 36px;
    padding-inline: 14px;
    font-size: clamp(11px, 1.5vw, 14px);
  }

  .solution-card:hover,
  .solution-card:focus-visible,
  .solution-card.is-selected {
    transform: translateY(-6px) scale(1.035);
  }

  .solution-detail {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .detail-link {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .visual-stage {
    width: 172%;
    max-width: none;
    margin-left: -36%;
  }

  .base-visual {
    object-fit: contain;
  }

  .cta-overlay {
    left: 9%;
  }

  .detail-zone {
    min-height: 250px;
    padding-top: 12px;
  }

  .solution-detail {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px;
    border-radius: 18px;
  }

  .detail-icon {
    width: 56px;
    height: 56px;
  }

  .detail-link {
    grid-column: 1;
    justify-self: stretch;
    justify-content: center;
  }

  .detail-pointer {
    display: none;
  }

  .detail-points {
    display: grid;
    gap: 7px;
  }

  .primary-nav-overlay a:not(.nav-contact) {
    display: none;
  }

  .primary-nav-overlay {
    right: 9%;
  }

  .brand-overlay {
    width: 18.5%;
  }
}

@media (max-width: 460px) {
  .visual-stage {
    width: 210%;
    margin-left: -55%;
  }

  .hero-button {
    min-height: 32px;
    padding-inline: 10px;
    font-size: 10px;
    border-width: 1px;
  }

  .selected-mark {
    top: 7px;
    right: 7px;
  }

  .detail-zone {
    padding-inline: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* Revision 3: single-layer cards, staged hero connection, and premium detail panel. */
.topline-cleanup {
  position: absolute;
  z-index: 12;
  top: 0;
  left: -2px;
  right: -2px;
  height: max(15px, 1.18%);
  background: #f7f9fe;
  box-shadow: none;
}

.hero-visual-cleanup {
  position: absolute;
  z-index: 2;
  top: 9.2%;
  right: 5.2%;
  width: 51.8%;
  height: 58.8%;
  background:
    radial-gradient(circle at 56% 54%, rgba(198, 244, 255, .58), transparent 32%),
    radial-gradient(circle at 90% 76%, rgba(220, 249, 183, .62), transparent 24%),
    linear-gradient(135deg, rgba(247, 250, 255, .99), rgba(239, 249, 254, .98) 58%, rgba(248, 252, 239, .97));
  box-shadow: 0 0 24px 18px rgba(244, 250, 253, .92);
  opacity: 1;
  pointer-events: none;
}

.computer-arrival {
  position: absolute;
  z-index: 3;
  inset: 0;
  overflow: hidden;
  clip-path: none;
  opacity: 1;
  transform: none;
  pointer-events: none;
}

.computer-arrival img {
  display: none;
}

.baked-label-mask {
  position: absolute;
  z-index: 2;
  display: block;
  border-radius: 16px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.mask-ready {
  left: 53.1%;
  top: 35.7%;
  width: 14.1%;
  height: 8.3%;
  background: rgba(231, 247, 252, .76);
}

.mask-secure {
  left: 77.1%;
  top: 41.9%;
  width: 18%;
  height: 8.7%;
  background: rgba(226, 243, 249, .8);
}

body.is-loaded .computer-arrival {
  animation: none;
}

body.is-loaded .hero-visual-cleanup {
  animation: reveal-original-computer .9s .28s cubic-bezier(.16, .82, .22, 1) forwards;
}

.connection-animation {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.baked-lines-cleanup {
  position: absolute;
  z-index: 4;
  left: 50.2%;
  top: 30.9%;
  width: 42.8%;
  height: 24.8%;
  background:
    radial-gradient(ellipse at 42% 52%, rgba(211, 244, 251, .6), transparent 31%),
    linear-gradient(168deg, rgba(233, 248, 252, .74), rgba(222, 244, 248, .54) 43%, rgba(239, 249, 245, .65));
  border-radius: 46% 40% 48% 44%;
  filter: blur(12px);
  opacity: .88;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 34%, rgba(0,0,0,.84) 58%, transparent 77%);
  mask-image: radial-gradient(ellipse at center, #000 34%, rgba(0,0,0,.84) 58%, transparent 77%);
}

.connection-track {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
  filter: url(#path-glow);
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
}

.connection-track-ready { stroke: url(#ready-path-gradient); }
body.is-loaded .connection-track-ready {
  animation: draw-path 1.15s 1.82s cubic-bezier(.3, .7, .3, 1) forwards;
}

.status-chip {
  position: absolute;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: clamp(7px, .7vw, 11px);
  min-height: clamp(38px, 4.3vw, 66px);
  padding: 0 clamp(13px, 1.25vw, 22px);
  color: #173b5a;
  background: rgba(247, 252, 255, .9);
  border: 1px solid rgba(107, 171, 198, .42);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(7, 62, 96, .13), inset 0 1px 0 rgba(255, 255, 255, .9);
  font-size: clamp(11px, 1.12vw, 19px);
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.status-ready {
  top: 34.8%;
  left: 53.5%;
  transform: translateY(18px) scale(.94);
}

.status-secure {
  top: 41.4%;
  left: 77.6%;
  transform: translateY(12px) scale(.92);
}

.status-light {
  width: clamp(9px, 1vw, 15px);
  height: clamp(9px, 1vw, 15px);
  flex: 0 0 auto;
  background: #55c51f;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(85, 197, 31, .12);
}

.status-shield {
  display: grid;
  place-items: center;
  width: clamp(25px, 2.35vw, 39px);
  height: clamp(25px, 2.35vw, 39px);
  color: #0873a2;
  background: #dff7ff;
  border-radius: 9px;
}

.status-shield svg {
  width: 68%;
  height: 68%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.is-loaded .status-ready {
  animation: ready-chip-in .58s 1.33s cubic-bezier(.16, .82, .22, 1) forwards;
}

body.is-loaded .status-secure {
  animation: secure-chip-in .58s 2.98s cubic-bezier(.16, .82, .22, 1) forwards;
}

.cards-cleanup {
  position: absolute;
  z-index: 2;
  left: 7.2%;
  top: 67.25%;
  width: 85.9%;
  height: 31.15%;
  background:
    radial-gradient(circle at 18% 47%, rgba(208, 245, 255, .55), transparent 20%),
    radial-gradient(circle at 51% 50%, rgba(199, 239, 255, .45), transparent 22%),
    radial-gradient(circle at 84% 51%, rgba(224, 249, 211, .48), transparent 22%),
    linear-gradient(180deg, rgba(246, 250, 255, .99), rgba(240, 249, 253, .99));
  box-shadow: 0 0 18px 16px rgba(244, 250, 253, .92);
  border-radius: 28px;
}


.selected-mark { display: none !important; }

.detail-zone {
  min-height: 224px;
  padding-top: 8px;
  background: radial-gradient(circle at var(--pointer-x) 0, rgba(0, 201, 224, .08), transparent 22%), linear-gradient(180deg, #f0f8fc, #f7fbfd 72%);
}

.solution-detail {
  grid-template-columns: minmax(0, 1.15fr) minmax(440px, .85fr);
  gap: clamp(32px, 4vw, 68px);
  align-items: stretch;
  min-height: 190px;
  padding: clamp(26px, 3vw, 44px);
  color: #effaff;
  background: radial-gradient(circle at 82% 25%, rgba(0, 213, 231, .13), transparent 30%), linear-gradient(128deg, #082e52 0%, #073f65 58%, #07536e 100%);
  border: 1px solid rgba(55, 191, 211, .35);
  border-radius: 26px;
  box-shadow: 0 24px 54px rgba(5, 44, 70, .2), inset 0 1px 0 rgba(255, 255, 255, .1);
}

.detail-pointer {
  z-index: -1;
  top: -13px;
  width: 26px;
  height: 26px;
  background: #083a60;
  border-top: 1px solid rgba(55, 191, 211, .35);
  border-left: 1px solid rgba(55, 191, 211, .35);
  border-radius: 4px 0 0;
  box-shadow: -6px -6px 16px rgba(7, 58, 91, .04);
  transform: translateX(-50%) rotate(45deg);
}

.detail-pointer::before,
.detail-pointer::after { display: none; }

.detail-main {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  min-width: 0;
}

.detail-heading-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.detail-icon {
  width: clamp(48px, 4.4vw, 64px);
  height: clamp(48px, 4.4vw, 64px);
  flex: 0 0 auto;
  color: #4ce3ef;
  background: rgba(7, 98, 130, .34);
  border: 1px solid rgba(67, 218, 232, .3);
  border-radius: 16px;
}

.detail-label { color: #68eaf0; }

.detail-heading-row h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.15;
}

.detail-description {
  color: #bed4df;
  max-width: 720px;
}

.detail-link {
  margin-top: 18px;
  color: #eaffff;
  background: rgba(5, 89, 121, .55);
  border-color: rgba(77, 224, 233, .44);
}

.detail-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-self: stretch;
  margin: 0;
  padding: 0;
  color: #dcecf3;
  list-style: none;
  counter-reset: capability;
}

.detail-points li {
  position: relative;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  min-width: 0;
  padding: 38px clamp(14px, 1.5vw, 22px) 16px;
  border-left: 1px solid rgba(143, 214, 224, .18);
  counter-increment: capability;
}

.detail-points li::before {
  content: "0" counter(capability);
  position: absolute;
  top: 5px;
  left: clamp(14px, 1.5vw, 22px);
  width: auto;
  height: auto;
  background: transparent;
  color: #58dfe9;
  border-radius: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
}

@keyframes computer-in {
  from { opacity: 0; transform: translateY(34px) scale(.975); filter: blur(5px); }
  62% { filter: blur(0); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes reveal-original-computer {
  0% { opacity: 1; transform: translateY(0); }
  35% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-8px); }
}

@keyframes draw-path { to { stroke-dashoffset: 0; } }

@keyframes ready-chip-in {
  from { opacity: 0; transform: translateY(18px) scale(.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes secure-chip-in {
  from { opacity: 0; transform: translateY(12px) scale(.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 900px) {
  .solution-detail { grid-template-columns: 1fr; }
  .detail-points { min-height: 104px; }
}

@media (max-width: 680px) {
  .solution-detail { grid-template-columns: 1fr; }
  .detail-link { grid-column: 1; }
  .detail-points { grid-template-columns: 1fr; }
  .detail-points li {
    min-height: 64px;
    padding: 22px 0 10px 42px;
    border-left: 0;
    border-top: 1px solid rgba(143, 214, 224, .18);
  }
  .detail-points li::before { top: 24px; left: 0; }
  .computer-arrival { clip-path: none; }
}

/* Revision 4: preserve the original laptop artwork; animate only label timing and a light pulse. */
.hero-visual-cleanup,
.baked-lines-cleanup,
.status-chip {
  display: none !important;
}

.computer-arrival {
  z-index: 6;
  opacity: 1;
  transform: none;
}

.computer-arrival img {
  display: none;
}

.baked-label-mask {
  display: block;
  background:
    radial-gradient(circle at 58% 48%, rgba(224, 246, 251, .86), rgba(237, 249, 252, .82) 58%, rgba(239, 249, 252, .3) 82%, transparent 100%);
  box-shadow: 0 0 18px 10px rgba(231, 247, 251, .5);
  opacity: 1;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.is-loaded .computer-arrival {
  animation: none;
}

body.is-loaded .mask-ready {
  animation: label-reveal .48s 1.15s ease forwards;
}

body.is-loaded .mask-secure {
  animation: label-reveal .48s 2.75s ease forwards;
}

.connection-animation {
  z-index: 7;
}

.connection-track {
  stroke-width: 12;
  stroke-dasharray: 180 1250;
  stroke-dashoffset: 1430;
  opacity: 0;
}

body.is-loaded .connection-track-ready {
  animation: light-pulse 1.45s 1.62s cubic-bezier(.34, .02, .36, 1) forwards;
}

.card-desktop,
.card-hardware,
.card-industrial {
  top: 69.55%;
}

.cards-cleanup {
  top: 68.2%;
  height: 30.35%;
}

@keyframes label-reveal {
  to {
    opacity: 0;
  }
}

@keyframes light-pulse {
  0% {
    opacity: 0;
    stroke-dashoffset: 1430;
  }
  10% { opacity: .95; }
  82% { opacity: .95; }
  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

/* Revision 5: static original laptop and image-led capability scenes. */
.hero-visual-cleanup,
.baked-lines-cleanup,
.status-chip,
.computer-arrival,
.connection-animation {
  display: none !important;
}

.detail-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-self: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-points .scene-item {
  position: relative;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  background: rgba(2, 37, 65, .42);
  border: 1px solid rgba(105, 207, 220, .16);
  border-radius: 14px;
  counter-increment: none;
  transition: transform .3s cubic-bezier(.2, .8, .2, 1), border-color .3s ease, background .3s ease;
}

.detail-points .scene-item::before {
  display: none;
}

.scene-figure {
  position: relative;
  height: 88px;
  margin: 0;
  overflow: hidden;
  background: #082e52;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

.scene-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(3, 36, 61, .68) 100%);
  pointer-events: none;
}

.scene-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
  opacity: 0;
  transform: scale(1.045);
  transition: opacity .38s ease, transform .65s cubic-bezier(.2, .8, .2, 1);
}

.scene-figure img.is-visible {
  opacity: .82;
  transform: scale(1);
}

.scene-number {
  display: block;
  margin: 12px 14px 5px;
  color: #58dfe9;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}

.scene-title {
  display: block;
  min-height: 42px;
  padding: 0 14px 13px;
  color: #e3f3f8;
  font-size: clamp(11px, .82vw, 13px);
  line-height: 1.35;
}

@media (max-width: 680px) {
  .detail-points {
    grid-template-columns: 1fr;
  }

  .detail-points .scene-item {
    min-height: 0;
    padding: 0;
    border-left: 1px solid rgba(105, 207, 220, .16);
  }

  .scene-figure {
    height: 132px;
  }
}

/* Remote access on every device */
.device-access-section {
  position: relative;
  z-index: 4;
  padding: clamp(52px, 7vw, 104px) clamp(16px, 4vw, 64px) clamp(68px, 8vw, 118px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 84, 139, .025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8, 84, 139, .022) 1px, transparent 1px),
    linear-gradient(180deg, #f9fcfe 0%, #edf7fb 52%, #f8fbfd 100%);
  background-size: 72px 72px, 72px 72px, auto;
  border-top: 1px solid rgba(113, 181, 205, .16);
}

.device-access-section::before,
.device-access-section::after {
  content: "";
  position: absolute;
  display: none;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.device-access-section::before {
  top: 24%;
  left: -160px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(0, 185, 223, .12);
  box-shadow: 0 0 0 42px rgba(0, 185, 223, .025), 0 0 0 94px rgba(0, 185, 223, .018);
}

.device-access-section::after {
  right: -130px;
  bottom: 4%;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(119, 235, 37, .1);
  box-shadow: 0 0 0 46px rgba(119, 235, 37, .022);
}

.device-access-shell {
  position: relative;
  width: min(1420px, 100%);
  margin: 0 auto;
  padding: clamp(18px, 2vw, 30px) clamp(8px, 2vw, 28px) clamp(24px, 3vw, 42px);
}

.device-access-shell::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 25%;
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 215, 235, .75), transparent);
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(58px) scale(.985);
  filter: blur(5px);
  transition:
    opacity .9s cubic-bezier(.2, .72, .2, 1),
    transform .9s cubic-bezier(.2, .72, .2, 1),
    filter .75s ease;
  will-change: transform, opacity;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.device-access-header,
.platform-tabs,
.device-stage,
.device-benefits {
  position: relative;
  z-index: 2;
}

.device-access-header {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.device-access-eyebrow {
  margin: 0 0 12px;
  color: #0786a3 !important;
  font-size: 12px !important;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.device-access-header h2 {
  margin: 0;
  color: #062a59;
  font-size: clamp(34px, 4.2vw, 66px);
  line-height: 1.04;
  letter-spacing: 0;
}

.device-access-header > p:last-child {
  margin: 15px 0 0;
  color: #61778c;
  font-size: clamp(15px, 1.35vw, 20px);
  line-height: 1.5;
}

.platform-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  margin: clamp(26px, 3.4vw, 44px) auto 0;
  padding: 5px;
  overflow-x: auto;
  scrollbar-width: none;
  background: linear-gradient(180deg, rgba(244, 249, 253, .96), rgba(233, 241, 247, .9));
  border: 1px solid #cedde7;
  border-radius: 999px;
  box-shadow: inset 0 1px 3px rgba(7, 54, 86, .06), 0 8px 25px rgba(7, 54, 86, .05);
}

.platform-tabs::-webkit-scrollbar {
  display: none;
}

.platform-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 clamp(12px, 1.35vw, 20px);
  color: #123c65;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 600;
  white-space: nowrap;
  transition: color .25s ease, background .25s ease, transform .3s cubic-bezier(.2, .8, .2, 1), box-shadow .25s ease;
}

.platform-tab:hover,
.platform-tab:focus-visible {
  color: #056e96;
  transform: translateY(-2px);
  outline: none;
}

.platform-tab.is-active {
  color: #055a8e;
  background: rgba(255, 255, 255, .98);
  box-shadow:
    0 9px 22px rgba(5, 83, 130, .14),
    0 0 0 1px rgba(0, 192, 224, .18),
    0 0 19px rgba(0, 215, 235, .18);
}

.platform-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: currentColor;
}

.platform-icon.line-icon,
.platform-tab[data-platform="android"] .platform-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.device-stage {
  --platform-primary: #087bc1;
  --platform-secondary: #00d7eb;
  position: relative;
  height: clamp(450px, 44vw, 560px);
  max-width: 1160px;
  margin: clamp(15px, 2vw, 28px) auto 0;
  isolation: isolate;
}

.device-video-slot {
  overflow: hidden;
}

.device-stage[data-platform="macos"] { --platform-primary: #566578; --platform-secondary: #b6c8d6; }
.device-stage[data-platform="linux"] { --platform-primary: #644fc5; --platform-secondary: #f3c84b; }
.device-stage[data-platform="ios"] { --platform-primary: #087bb6; --platform-secondary: #67d8ef; }
.device-stage[data-platform="android"] { --platform-primary: #168c76; --platform-secondary: #77eb25; }
.device-stage[data-platform="web"] { --platform-primary: #07548b; --platform-secondary: #00d7eb; }

.device-aurora {
  position: absolute;
  z-index: -2;
  top: 20%;
  left: 18%;
  width: 64%;
  height: 58%;
  background:
    radial-gradient(ellipse, color-mix(in srgb, var(--platform-secondary) 19%, transparent), transparent 64%),
    radial-gradient(ellipse at 55% 55%, rgba(7, 84, 139, .08), transparent 70%);
  filter: blur(8px);
  border-radius: 50%;
  transition: background .55s ease;
}

.device-aurora::before,
.device-aurora::after {
  content: "";
  position: absolute;
  inset: 10% -8%;
  border: 1px solid color-mix(in srgb, var(--platform-secondary) 30%, transparent);
  border-radius: 50%;
  transform: rotate(-7deg);
}

.device-aurora::after {
  inset: 22% 5%;
  transform: rotate(8deg);
  opacity: .55;
}

.platform-status {
  position: absolute;
  z-index: 12;
  top: 5.5%;
  left: 50%;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 0 8px;
  min-width: 285px;
  padding: 11px 16px 10px;
  color: #153c59;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(166, 207, 220, .72);
  border-radius: 13px;
  box-shadow: 0 13px 35px rgba(7, 57, 91, .13), inset 0 1px 0 #fff;
  backdrop-filter: blur(12px);
  transform: translateX(-50%);
}

.platform-status-dot {
  grid-row: 1 / 3;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(119, 235, 37, .12), 0 0 17px rgba(119, 235, 37, .7);
}

.platform-status > span:not(.platform-status-dot) {
  font-size: 13px;
  font-weight: 750;
}

.platform-status small {
  margin-top: 2px;
  color: #718799;
  font-size: 9px;
  letter-spacing: .01em;
}

.is-switching .platform-status {
  animation: status-pop .52s cubic-bezier(.16, 1, .3, 1) both;
}

.connection-map {
  position: absolute;
  z-index: -1;
  inset: 8% 1% 4%;
  width: 98%;
  height: 88%;
  overflow: visible;
  filter: drop-shadow(0 0 7px rgba(0, 215, 235, .18));
}

.connection-base,
.connection-light {
  fill: none;
  stroke-linecap: round;
}

.connection-base {
  stroke: rgba(31, 158, 190, .1);
  stroke-width: 1.1;
}

.connection-light {
  stroke: url(#unused);
  stroke: var(--platform-secondary);
  stroke-width: 2.4;
  stroke-dasharray: .12 .88;
  stroke-dashoffset: 1;
  opacity: 0;
}

.device-stage[data-platform="ios"] .path-phone,
.device-stage[data-platform="android"] .path-tablet,
.device-stage[data-platform="macos"] .path-laptop,
.device-stage[data-platform="linux"] .path-laptop,
.device-stage[data-platform="web"] .connection-light {
  opacity: .85;
}

.is-switching .connection-light {
  animation: device-signal 1.25s .08s cubic-bezier(.4, 0, .2, 1) both;
}

.device {
  position: absolute;
  z-index: 3;
  filter: saturate(.76) brightness(1.05);
  opacity: .66;
  transition:
    transform .62s cubic-bezier(.16, 1, .3, 1),
    filter .45s ease,
    opacity .45s ease;
}

.device.is-platform-match {
  z-index: 8;
  filter: saturate(1.05) brightness(1);
  opacity: 1;
}

.device-screen,
.laptop-screen,
.phone-screen,
.tablet-screen {
  position: relative;
  overflow: hidden;
  background: #e9f4fa;
}

.device-desktop {
  top: 21%;
  left: 50%;
  width: min(46%, 520px);
  aspect-ratio: 1.44;
  transform: translateX(-50%) scale(.97);
}

.device-desktop.is-platform-match {
  transform: translateX(-50%) translateY(-7px) scale(1.025);
}

.device-desktop .device-screen {
  z-index: 2;
  width: 100%;
  height: 76%;
  padding: 10px;
  background: linear-gradient(145deg, #162a3a, #06131e 78%);
  border: 1px solid #586875;
  border-radius: 15px;
  box-shadow: 0 26px 45px rgba(6, 39, 61, .25), inset 0 0 0 2px #0b1720;
}

.desktop-camera {
  position: absolute;
  z-index: 5;
  top: 5px;
  left: 50%;
  width: 4px;
  height: 4px;
  background: #314657;
  border-radius: 50%;
  transform: translateX(-50%);
}

.screen-wallpaper {
  position: absolute;
  inset: 10px;
  overflow: hidden;
  background:
    linear-gradient(125deg, color-mix(in srgb, var(--platform-primary) 88%, #062849), color-mix(in srgb, var(--platform-secondary) 72%, #07598c));
  border-radius: 8px;
  transition: background .55s ease;
}

.screen-wallpaper::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -34%;
  width: 74%;
  height: 100%;
  border: 28px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
  transform: rotate(-24deg);
}

.screen-window {
  position: absolute;
  z-index: 3;
  overflow: hidden;
  background: rgba(250, 254, 255, .96);
  border: 1px solid rgba(210, 228, 237, .9);
  border-radius: 7px;
  box-shadow: 0 12px 25px rgba(2, 30, 51, .2);
}

.screen-window-main {
  top: 19%;
  left: 10%;
  width: 64%;
  height: 63%;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 18px;
  padding: 0 7px;
  color: #527083;
  background: #f4f8fa;
  border-bottom: 1px solid #dbe9ee;
  font-size: 6px;
}

.window-bar i {
  width: 4px;
  height: 4px;
  background: #8ad4df;
  border-radius: 50%;
}

.window-bar i:first-child { background: #ff827d; }
.window-bar i:nth-child(2) { background: #ffd167; }
.window-bar span { margin-left: 5px; }

.window-body {
  display: grid;
  grid-template-columns: 28% 1fr;
  height: calc(100% - 18px);
}

.window-nav {
  padding: 10px 7px;
  background: #eaf3f7;
}

.window-nav b,
.content-line {
  display: block;
  height: 4px;
  margin-bottom: 8px;
  background: #bdd6e1;
  border-radius: 2px;
}

.window-nav b:first-child { width: 78%; background: var(--platform-primary); }
.window-content { position: relative; padding: 10px; }
.session-chip { display: inline-flex; align-items: center; gap: 4px; margin-bottom: 12px; color: #287067; font-size: 6px; font-weight: 700; }
.session-chip i { width: 5px; height: 5px; background: var(--green); border-radius: 50%; }
.content-line { width: 55%; height: 5px; margin-bottom: 6px; background: #d6e6ec; }
.content-line.wide { width: 83%; background: #8fb6c7; }
.content-cards { display: flex; gap: 6px; margin-top: 13px; }
.content-cards i { width: 26%; height: 24px; background: linear-gradient(145deg, #d7f1f5, #eaf7fa); border: 1px solid #c9e3e9; border-radius: 4px; }
.live-cursor { position: absolute; right: 20%; bottom: 23%; width: 0; height: 0; border-top: 8px solid var(--platform-primary); border-right: 5px solid transparent; transform: rotate(-18deg); filter: drop-shadow(0 2px 2px rgba(0,0,0,.2)); }

.screen-window-code {
  right: 7%;
  bottom: 7%;
  width: 39%;
  height: 38%;
  padding: 14px 9px 7px;
  background: #102333;
  border-color: #294555;
}

.code-lines i { display: block; width: 85%; height: 3px; margin: 0 0 7px; background: #45b9d1; border-radius: 2px; opacity: .8; }
.code-lines i:nth-child(2) { width: 63%; margin-left: 10%; background: var(--green); }
.code-lines i:nth-child(3) { width: 72%; margin-left: 4%; background: #d4a85f; }
.code-lines i:nth-child(4) { width: 49%; margin-left: 15%; }
.code-lines i:nth-child(5) { width: 76%; background: #8c9df0; }

.desktop-neck {
  width: 15%;
  height: 18%;
  margin: -1px auto 0;
  background: linear-gradient(90deg, #aab6bd, #edf3f5 46%, #a3afb5);
  clip-path: polygon(20% 0, 80% 0, 88% 100%, 12% 100%);
}

.desktop-foot {
  width: 32%;
  height: 3.5%;
  margin: -1px auto;
  background: linear-gradient(180deg, #dce4e8, #8c999f);
  border-radius: 50% 50% 4px 4px;
  box-shadow: 0 8px 14px rgba(5, 45, 70, .16);
}

.device-phone {
  left: 13%;
  bottom: 7.5%;
  width: min(10%, 104px);
  aspect-ratio: .5;
  padding: 5px;
  background: linear-gradient(145deg, #1b3443, #06131d);
  border: 1px solid #637582;
  border-radius: 18px;
  box-shadow: 0 18px 29px rgba(7, 44, 67, .22);
  transform: rotate(-2deg) scale(.92);
}

.device-phone.is-platform-match { transform: translateY(-12px) rotate(0) scale(1.09); }
.phone-screen { height: 100%; padding: 17px 7px 8px; text-align: center; border-radius: 13px; background: linear-gradient(180deg, #eafaff, #f8fcfe); }
.phone-speaker { position: absolute; z-index: 3; top: 9px; left: 50%; width: 24%; height: 3px; background: #334c5b; border-radius: 3px; transform: translateX(-50%); }
.mobile-logo { display: inline-grid; place-items: center; width: 19px; height: 19px; color: #fff; background: linear-gradient(145deg, var(--platform-primary), var(--platform-secondary)); border-radius: 6px; font-size: 9px; font-weight: 800; }
.phone-screen > span { display: block; margin: 3px 0 10px; color: #31526a; font-size: 5px; font-weight: 700; }
.mobile-preview { height: 30%; padding: 6px 5px; background: #dbeef4; border-radius: 5px; }
.mobile-preview i { display: block; width: 70%; height: 3px; margin: 0 0 5px; background: #7aafbf; border-radius: 3px; }
.mobile-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-top: 8px; }
.mobile-actions b { height: 20px; background: #fff; border: 1px solid #d5e8ee; border-radius: 5px; }

.device-tablet {
  right: 7.5%;
  top: 35%;
  width: min(23%, 250px);
  aspect-ratio: 1.42;
  padding: 7px;
  background: linear-gradient(145deg, #344b5b, #0c1c27);
  border: 1px solid #6c7d87;
  border-radius: 13px;
  box-shadow: 0 21px 38px rgba(7, 44, 67, .2);
  transform: rotate(1.5deg) scale(.94);
}

.device-tablet.is-platform-match { transform: translateY(-10px) rotate(0) scale(1.055); }
.tablet-screen { height: 100%; padding: 10px; background: linear-gradient(145deg, #e8f8fc, #f9fcfd); border-radius: 7px; }
.tablet-top { display: flex; align-items: center; gap: 6px; color: #315a70; font-size: 7px; font-weight: 700; }
.tablet-top i { width: 7px; height: 7px; background: var(--platform-secondary); border-radius: 2px; }
.tablet-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; margin-top: 12px; }
.tablet-cards b { height: 45px; background: linear-gradient(160deg, color-mix(in srgb, var(--platform-primary) 35%, #e7f4f8), #eef8fa); border: 1px solid #c8e2e8; border-radius: 5px; }
.tablet-control { display: flex; gap: 5px; margin-top: 9px; }
.tablet-control i { width: 30%; height: 6px; background: #bad5df; border-radius: 4px; }

.device-laptop {
  right: 11%;
  bottom: 5%;
  width: min(31%, 340px);
  aspect-ratio: 1.5;
  transform: translateX(4%) scale(.93);
}

.device-laptop.is-platform-match { transform: translateX(4%) translateY(-10px) scale(1.07); }
.laptop-screen { width: 88%; height: 78%; margin: 0 auto; padding: 5px; background: #162a37; border: 1px solid #5d707c; border-radius: 10px 10px 4px 4px; box-shadow: 0 17px 30px rgba(7, 44, 67, .18); }
.laptop-screen > .window-bar { border-radius: 5px 5px 0 0; }
.laptop-workspace { display: grid; grid-template-columns: 25% 1fr; height: calc(100% - 18px); background: linear-gradient(145deg, #eef8fb, #dbeef4); }
.laptop-sidebar { background: color-mix(in srgb, var(--platform-primary) 68%, #123b55); }
.laptop-panel { display: flex; gap: 5px; padding: 13px 8px; }
.laptop-panel b { width: 30%; height: 44%; background: rgba(255,255,255,.8); border: 1px solid #c7e0e7; border-radius: 4px; }
.laptop-base { position: relative; width: 100%; height: 8%; margin-top: -1px; background: linear-gradient(180deg, #e9eef0, #8f9ba1); border-radius: 2px 2px 30% 30%; box-shadow: 0 8px 13px rgba(4, 40, 62, .16); }
.laptop-base::after { content: ""; position: absolute; top: 0; left: 44%; width: 12%; height: 2px; background: #98a6ac; border-radius: 0 0 4px 4px; }

.device-stage-caption {
  position: absolute;
  z-index: 14;
  bottom: 0;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: #315771;
  font-size: 12px;
  font-weight: 650;
  transform: translateX(-50%);
}

.device-stage-caption i { width: 4px; height: 4px; background: var(--platform-secondary); border-radius: 50%; box-shadow: 0 0 9px var(--platform-secondary); }

/* Cross-platform session demo: the controller changes, the remote host stays legible. */
.remote-demo {
  position: absolute;
  z-index: 20;
  inset: 14% 0 10%;
  display: grid;
  grid-template-columns: minmax(205px, .78fr) minmax(110px, .42fr) minmax(440px, 1.8fr);
  align-items: center;
  gap: clamp(15px, 2.2vw, 32px);
  transition: opacity .42s ease, transform .62s cubic-bezier(.16, 1, .3, 1);
}

.macos-video-visual {
  position: absolute;
  z-index: 18;
  inset: 10% 0 9%;
  display: grid;
  place-items: center;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px) scale(.98);
  transition:
    opacity .34s ease,
    transform .62s cubic-bezier(.16, 1, .3, 1),
    visibility 0s linear .34s;
}

.macos-laptop-video {
  display: block;
  width: auto;
  height: 122%;
  max-width: none;
  background: transparent;
  object-fit: contain;
}

.macos-laptop-video::-webkit-media-controls,
.macos-laptop-video::-webkit-media-controls-enclosure,
.macos-laptop-video::-webkit-media-controls-panel {
  display: none !important;
}

.device-stage[data-platform="macos"] .remote-demo {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px) scale(.985);
  transition:
    opacity .28s ease,
    transform .42s ease,
    visibility 0s linear .28s;
}

.device-stage[data-platform="macos"] .macos-video-visual {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition-delay: .08s, 0s, 0s;
}

.device-stage > .platform-status,
.device-stage > .access-task-strip,
.device-stage > .device-stage-caption {
  z-index: 30;
}

.demo-controller,
.demo-target { position: relative; min-width: 0; }
.demo-kicker { display: flex; align-items: center; gap: 8px; margin: 0 0 12px 6px; color: #638096; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.demo-kicker > span { display: inline-grid; place-items: center; width: 22px; height: 22px; color: #fff; background: var(--platform-primary); border-radius: 7px; font-size: 9px; font-weight: 800; letter-spacing: 0; }
.demo-kicker strong { font-weight: 800; }
.demo-kicker em { display: inline-flex; align-items: center; gap: 5px; margin-left: auto; color: #2d9164; font-style: normal; letter-spacing: .04em; }
.demo-kicker em i { width: 6px; height: 6px; background: #43d477; border-radius: 50%; box-shadow: 0 0 0 4px rgba(67, 212, 119, .12); }

.controller-shell {
  position: relative;
  width: min(100%, 290px);
  aspect-ratio: 1.08;
  margin: 0 auto;
  padding: 8px 8px 0;
  background: linear-gradient(145deg, #243e4d, #071a29 82%);
  border: 1px solid #58717d;
  border-radius: 13px 13px 8px 8px;
  box-shadow: 0 22px 34px rgba(6, 46, 70, .2), 0 0 0 1px rgba(255, 255, 255, .3) inset;
  transform: perspective(760px) rotateY(8deg) rotateX(1deg);
  transition: transform .55s cubic-bezier(.16, 1, .3, 1), box-shadow .4s ease;
}
.controller-shell::after { content: ""; position: absolute; left: 18%; right: 18%; bottom: -8px; height: 9px; background: linear-gradient(180deg, #c3d2d8, #80929c); border-radius: 0 0 45% 45%; box-shadow: 0 7px 13px rgba(7, 48, 68, .18); }
.controller-topbar { display: flex; align-items: center; gap: 4px; height: 20px; padding: 0 6px; color: #b6cad3; font-size: 7px; }
.controller-topbar i { width: 5px; height: 5px; background: #ff897e; border-radius: 50%; }
.controller-topbar i:nth-child(2) { background: #ffd267; }.controller-topbar i:nth-child(3) { background: #79d692; }
.controller-topbar span { margin-left: 5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }.controller-topbar b { margin-left: auto; padding: 3px 5px; color: #063c64; background: #c9f4fb; border-radius: 4px; font-size: 6px; }
.controller-body { display: grid; grid-template-columns: 25% 1fr; height: calc(100% - 50px); overflow: hidden; background: #f4fafc; border-radius: 7px 7px 0 0; }
.controller-sidebar { display: flex; flex-direction: column; align-items: center; gap: 13px; padding-top: 15px; background: #0e304b; }.controller-sidebar i { width: 12px; height: 12px; border: 1px solid #79a7ba; border-radius: 4px; opacity: .66; }.controller-sidebar i:nth-child(2) { border-radius: 50%; }.controller-sidebar i:nth-child(3) { border-radius: 2px; }.controller-sidebar i:nth-child(4) { border-radius: 50% 50% 3px 3px; }.controller-sidebar i.is-selected { background: var(--platform-secondary); border-color: var(--platform-secondary); box-shadow: 0 0 10px color-mix(in srgb, var(--platform-secondary) 70%, transparent); opacity: 1; }
.controller-main { padding: 15px 12px 8px; color: #1a4862; }.controller-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 11px; font-size: 10px; }.controller-heading span { display: grid; place-items: center; width: 17px; height: 17px; color: #fff; background: var(--platform-primary); border-radius: 5px; font-size: 14px; line-height: 1; }
.controller-device-row { display: flex; align-items: center; gap: 7px; min-height: 34px; padding: 5px 5px; border-bottom: 1px solid #deedf2; }.controller-device-row.is-online { background: color-mix(in srgb, var(--platform-secondary) 8%, #fff); border-radius: 6px; }.controller-device-icon { position: relative; flex: 0 0 auto; width: 17px; height: 13px; border: 1.5px solid var(--platform-primary); border-radius: 3px; }.controller-device-icon::after { content: ""; position: absolute; left: 5px; right: 5px; bottom: -4px; border-top: 1.5px solid var(--platform-primary); }.controller-device-icon.is-server { border-radius: 2px; box-shadow: inset 0 4px 0 rgba(7, 84, 139, .12), inset 0 -4px 0 rgba(7, 84, 139, .12); }.controller-device-icon.is-screen { border-radius: 50%; }.controller-device-row span { display: grid; gap: 2px; min-width: 0; }.controller-device-row b { overflow: hidden; color: #214d65; font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }.controller-device-row small { color: #89a0ad; font-size: 6px; }.controller-device-row em { width: 5px; height: 5px; margin-left: auto; background: #a8c0ca; border-radius: 50%; }.controller-device-row.is-online em { background: #49d472; box-shadow: 0 0 0 3px rgba(73, 212, 114, .13); }.controller-quick-actions { display: flex; gap: 6px; margin-top: 13px; }.controller-quick-actions i { width: 22%; height: 14px; background: #e2f4f8; border: 1px solid #c8e8ee; border-radius: 4px; }
.controller-footer { display: grid; gap: 2px; padding: 8px 7px 0; color: #d8e8ed; font-size: 7px; }.controller-footer small { color: #87a4b0; font-size: 6px; }
.access-controller-note { display: flex; align-items: center; justify-content: center; gap: 7px; margin: 14px 0 0; color: #4f7387; font-size: 10px; font-weight: 700; }.access-controller-note i { width: 5px; height: 5px; background: var(--platform-secondary); border-radius: 50%; }

.demo-bridge { position: relative; display: grid; justify-items: center; align-content: center; min-width: 0; padding-top: 25px; }.bridge-line { position: relative; width: 100%; height: 2px; background: rgba(56, 156, 182, .2); }.bridge-line::before { content: ""; position: absolute; inset: -4px 0; background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--platform-secondary) 80%, transparent), transparent); opacity: .22; }.bridge-line span { position: absolute; top: 50%; left: 0; width: 42px; height: 3px; background: var(--platform-secondary); border-radius: 4px; box-shadow: 0 0 12px var(--platform-secondary); transform: translateY(-50%); animation: bridge-flow 2.2s ease-in-out infinite; }.bridge-line i { position: absolute; right: -1px; top: 50%; width: 8px; height: 8px; border-top: 2px solid var(--platform-secondary); border-right: 2px solid var(--platform-secondary); transform: translateY(-50%) rotate(45deg); }.bridge-node { display: grid; place-items: center; width: 42px; height: 42px; margin-top: 18px; color: var(--platform-primary); background: #fff; border: 1px solid color-mix(in srgb, var(--platform-secondary) 45%, #cbdfe7); border-radius: 13px; box-shadow: 0 9px 20px rgba(8, 77, 107, .11); }.bridge-node svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }.bridge-copy { display: grid; gap: 4px; margin-top: 10px; text-align: center; }.bridge-copy strong { color: #174864; font-size: 10px; }.bridge-copy span { color: #8ba1ae; font-size: 8px; white-space: nowrap; }

.remote-monitor { position: relative; width: min(100%, 520px); margin-inline: auto; padding-top: 4px; }.monitor-bezel { position: relative; z-index: 2; width: 100%; aspect-ratio: 1.63; padding: 8px; background: linear-gradient(145deg, #253c4b, #061724 85%); border: 1px solid #617681; border-radius: 13px; box-shadow: 0 24px 42px rgba(5, 41, 62, .24), inset 0 0 0 2px #102432; }.monitor-camera { position: absolute; z-index: 5; top: 0; left: 50%; width: 5px; height: 5px; background: #687f89; border-radius: 50%; transform: translateX(-50%); }.remote-console-screen { position: relative; width: 100%; height: 100%; overflow: hidden; background: #eaf2f5; border-radius: 7px; }.remote-console-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; filter: saturate(.78) contrast(.98); }.remote-console-tint { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(5, 73, 120, .19), rgba(255,255,255,.04) 56%, rgba(7, 31, 50, .2)); }.remote-console-toolbar { position: absolute; z-index: 3; top: 8px; left: 9px; right: 9px; display: flex; align-items: center; gap: 6px; min-height: 24px; padding: 4px 6px; color: #ddecf2; background: rgba(8, 34, 53, .86); border: 1px solid rgba(169, 229, 236, .3); border-radius: 6px; box-shadow: 0 5px 12px rgba(2, 29, 46, .22); backdrop-filter: blur(8px); font-size: 7px; }.remote-console-toolbar .console-brand { display: inline-flex; align-items: center; gap: 4px; max-width: none; font-weight: 800; white-space: nowrap; }.remote-console-toolbar .console-brand b { display: grid; place-items: center; width: 14px; height: 14px; color: #063a5f; background: #63e3e8; border-radius: 4px; font-size: 8px; }.remote-console-toolbar .console-divider { width: 1px; height: 13px; background: rgba(220, 242, 247, .3); }.remote-console-toolbar .console-toolbar-spacer { flex: 1; }.remote-console-toolbar .console-tool { display: grid; place-items: center; width: 17px; height: 17px; color: #9ae8ed; background: rgba(255,255,255,.08); border-radius: 4px; }.remote-console-toolbar .console-tool svg { width: 11px; height: 11px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }.remote-live-badge { position: absolute; z-index: 4; right: 12px; top: 43px; display: flex; align-items: center; gap: 5px; padding: 5px 7px; color: #eaffef; background: rgba(17, 75, 55, .88); border: 1px solid rgba(135, 240, 169, .45); border-radius: 5px; font-size: 6px; font-weight: 800; letter-spacing: .08em; }.remote-live-badge i { width: 5px; height: 5px; background: #56ea8a; border-radius: 50%; box-shadow: 0 0 8px #56ea8a; }.remote-pointer { position: absolute; z-index: 4; left: 52%; top: 51%; width: 0; height: 0; border-top: 13px solid #fff; border-right: 7px solid transparent; filter: drop-shadow(0 1px 2px rgba(0,0,0,.65)); transform: rotate(-27deg); animation: remote-pointer-move 3.5s ease-in-out infinite; }.remote-pointer span { position: absolute; top: 3px; left: -2px; width: 5px; height: 5px; background: var(--platform-secondary); border-radius: 50%; box-shadow: 0 0 0 4px color-mix(in srgb, var(--platform-secondary) 22%, transparent); }.remote-action-toast { position: absolute; z-index: 4; left: 12px; bottom: 27px; display: flex; align-items: center; gap: 7px; min-width: 180px; max-width: 55%; padding: 7px 8px; color: #123b57; background: rgba(255,255,255,.94); border: 1px solid rgba(187, 221, 230, .9); border-radius: 6px; box-shadow: 0 8px 18px rgba(7, 43, 63, .17); }.toast-icon { display: grid; place-items: center; width: 21px; height: 21px; color: var(--platform-primary); background: #e4f8fb; border-radius: 5px; }.toast-icon svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }.remote-action-toast span:nth-child(2) { display: grid; gap: 2px; min-width: 0; }.remote-action-toast b { overflow: hidden; font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }.remote-action-toast small { color: #7891a0; font-size: 6px; }.remote-action-toast > strong { margin-left: auto; color: #2ba667; font-size: 8px; }.remote-console-footer { position: absolute; z-index: 4; right: 10px; bottom: 8px; left: 10px; display: flex; align-items: center; gap: 10px; color: rgba(238, 250, 252, .92); font-size: 6px; }.remote-console-footer span { display: inline-flex; align-items: center; gap: 3px; }.remote-console-footer span:first-child { margin-right: auto; }.remote-console-footer i { width: 5px; height: 5px; background: #53e889; border-radius: 50%; }.monitor-neck { width: 14%; height: clamp(18px, 3vw, 36px); margin: -1px auto 0; background: linear-gradient(90deg, #aab8bf, #eff4f5 45%, #96a6ad); clip-path: polygon(20% 0, 80% 0, 88% 100%, 12% 100%); }.monitor-foot { width: 33%; height: clamp(4px, .55vw, 7px); margin: -1px auto; background: linear-gradient(180deg, #e0e8eb, #87969e); border-radius: 50% 50% 5px 5px; box-shadow: 0 9px 15px rgba(5, 45, 70, .18); }
.remote-console-image { filter: saturate(.92) contrast(1.02); transform: scale(1.008); }
.remote-console-tint { z-index: 1; background: linear-gradient(110deg, rgba(5, 73, 120, .08), rgba(255,255,255,.02) 56%, rgba(7, 31, 50, .12)); pointer-events: none; }
.remote-input-hud { position: absolute; z-index: 4; top: 43px; left: 12px; display: inline-flex; align-items: center; gap: 5px; max-width: calc(100% - 150px); padding: 5px 7px; overflow: hidden; color: #d7f5f6; background: rgba(7, 42, 67, .82); border: 1px solid rgba(117, 226, 232, .28); border-radius: 5px; box-shadow: 0 5px 12px rgba(2, 29, 46, .15); backdrop-filter: blur(7px); font-size: 6px; letter-spacing: .06em; white-space: nowrap; }
.remote-input-hud i { width: 5px; height: 5px; flex: 0 0 auto; background: var(--platform-secondary); border-radius: 50%; box-shadow: 0 0 8px var(--platform-secondary); }
.remote-input-hud span { color: #83b7c4; font-size: 5px; font-weight: 800; }
.remote-input-hud b { overflow: hidden; color: #e4ffff; font-size: 6px; text-overflow: ellipsis; }
.remote-click-ring { position: absolute; z-index: 3; left: 67%; top: 41%; width: 24px; height: 24px; border: 1px solid color-mix(in srgb, var(--platform-secondary) 88%, #fff); border-radius: 50%; box-shadow: 0 0 0 5px color-mix(in srgb, var(--platform-secondary) 12%, transparent), 0 0 14px color-mix(in srgb, var(--platform-secondary) 45%, transparent); opacity: 0; transform: translate(-50%, -50%) scale(.65); animation: remote-click-ring 3.5s ease-in-out infinite; }
.remote-click-ring::after { content: ""; position: absolute; inset: 7px; border-radius: 50%; background: var(--platform-secondary); box-shadow: 0 0 7px var(--platform-secondary); }
.remote-host-meta { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 10px; color: #2e566e; }.remote-host-meta strong { font-size: 11px; }.remote-host-meta span { color: #8499a6; font-size: 8px; }
.remote-console-toolbar > span:not(.console-brand):not(.console-divider):not(.console-toolbar-spacer):not(.console-tool) { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.access-task-strip { right: 4%; bottom: 4%; left: 4%; background: rgba(255,255,255,.76); }
.task-label { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }.task-label i { width: 6px; height: 6px; background: var(--platform-secondary); border-radius: 50%; box-shadow: 0 0 7px var(--platform-secondary); }
.task-state { display: inline-flex; align-items: center; gap: 6px; margin-left: auto; padding-left: 14px; color: #2a9661; border-left: 1px solid rgba(169, 207, 216, .65); font-size: 8px; letter-spacing: .08em; white-space: nowrap; }.task-state i { width: 6px; height: 6px; background: #4dd57b; border-radius: 50%; box-shadow: 0 0 7px rgba(77, 213, 123, .6); }
.task-item.is-done { color: #2a9661; }.task-item.is-done i { background: #4dd57b; border-color: #4dd57b; }
.remote-demo + .access-task-strip, .remote-demo ~ .device-stage-caption { transition: opacity .35s ease; }.is-switching .remote-demo { animation: demo-swap .58s cubic-bezier(.16, 1, .3, 1) both; }.is-switching .access-task-strip { animation: task-swap .58s cubic-bezier(.16, 1, .3, 1) both; }
.device-stage > .device:not(.remote-demo), .device-stage > .device-aurora, .device-stage > .connection-map { opacity: 0 !important; pointer-events: none; }
.device-stage > .platform-status { top: 3%; }
.device-stage[data-platform="ios"] .controller-shell { width: min(56%, 148px); aspect-ratio: .54; border-radius: 24px; transform: none; }
.device-stage[data-platform="android"] .controller-shell { width: min(68%, 178px); aspect-ratio: .66; border-radius: 20px; transform: none; }
.device-stage[data-platform="ios"] .controller-shell::after,
.device-stage[data-platform="android"] .controller-shell::after,
.device-stage[data-platform="web"] .controller-shell::after { opacity: 0; }
.device-stage[data-platform="web"] .controller-shell { aspect-ratio: 1.28; transform: none; }
.device-stage[data-phase="connecting"] .platform-status-dot { background: var(--platform-secondary); box-shadow: 0 0 0 5px color-mix(in srgb, var(--platform-secondary) 14%, transparent), 0 0 17px color-mix(in srgb, var(--platform-secondary) 68%, transparent); animation: connection-pulse .72s ease-in-out infinite alternate; }

@keyframes bridge-flow { 0%, 100% { left: 0; opacity: .35; } 50% { left: calc(100% - 42px); opacity: 1; } }
@keyframes remote-pointer-move { 0%, 100% { left: 48%; top: 54%; } 42% { left: 67%; top: 41%; } 58% { left: 67%; top: 41%; } }
@keyframes remote-click-ring { 0%, 30%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(.65); } 37% { opacity: .9; transform: translate(-50%, -50%) scale(.82); } 55% { opacity: 0; transform: translate(-50%, -50%) scale(1.35); } }
@keyframes demo-swap { 0% { opacity: .62; transform: translateY(10px) scale(.985); } 100% { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes task-swap { 0% { opacity: .45; transform: translateY(5px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes connection-pulse { to { opacity: .45; transform: scale(.72); } }

.device-download-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 4px auto 0;
}

.device-download-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 17px;
  color: #fff;
  background: #07548b;
  border: 1px solid #0b6b9d;
  border-radius: 8px;
  box-shadow: 0 9px 20px rgba(7, 84, 139, .18), inset 0 1px 0 rgba(255,255,255,.18);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.device-download-action:hover,
.device-download-action:focus-visible {
  background: #063f70;
  box-shadow: 0 12px 24px rgba(7, 84, 139, .24), inset 0 1px 0 rgba(255,255,255,.18);
  transform: translateY(-2px);
  outline: none;
}

.device-download-action svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.device-download-meta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #70899a;
  font-size: 10px;
}

.device-download-meta i {
  width: 6px;
  height: 6px;
  background: #4dd57b;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(77, 213, 123, .11);
}

@media (max-width: 900px) {
  .remote-demo { inset-inline: 0; grid-template-columns: minmax(150px, .7fr) minmax(76px, .4fr) minmax(320px, 1.55fr); gap: 12px; }
  .macos-video-visual { inset-inline: -2%; }
  .macos-laptop-video { height: 118%; }
  .controller-shell { transform: perspective(700px) rotateY(5deg); }
  .remote-host-meta { flex-direction: column; gap: 2px; }
  .access-task-strip { right: 2%; left: 2%; gap: 11px; }
}

@media (max-width: 680px) {
  .remote-demo { inset: 21% 0 15%; grid-template-columns: minmax(74px, .72fr) 20px minmax(0, 1.55fr); gap: 5px; align-items: center; }
  .macos-video-visual { inset: 15% -12% 12%; }
  .macos-laptop-video { height: 112%; }
  .demo-kicker { gap: 5px; margin: 0 0 6px; font-size: 7px; letter-spacing: .06em; }.demo-kicker > span { width: 17px; height: 17px; border-radius: 5px; font-size: 7px; }.demo-kicker em { display: none; }
  .controller-shell { width: 100%; aspect-ratio: .82; padding: 5px 5px 0; transform: none; }.controller-shell::after { display: none; }.controller-topbar { height: 16px; padding-inline: 3px; }.controller-topbar span { display: none; }.controller-topbar b { margin-left: auto; }
  .controller-body { grid-template-columns: 23% 1fr; height: calc(100% - 40px); }.controller-sidebar { gap: 8px; padding-top: 9px; }.controller-sidebar i { width: 8px; height: 8px; }.controller-main { padding: 8px 5px 4px; }.controller-heading { margin-bottom: 5px; font-size: 7px; }.controller-heading span { width: 13px; height: 13px; font-size: 10px; }.controller-device-row { min-height: 24px; padding: 3px 2px; gap: 4px; }.controller-device-row:nth-child(4) { display: none; }.controller-device-icon { width: 12px; height: 9px; }.controller-device-row b { font-size: 5px; }.controller-device-row small { font-size: 4px; }.controller-quick-actions { gap: 3px; margin-top: 7px; }.controller-quick-actions i { height: 9px; }.controller-footer { padding: 5px 4px 0; font-size: 5px; }.controller-footer small { display: none; }
  .access-controller-note { margin-top: 7px; gap: 4px; font-size: 6px; }.demo-bridge { padding-top: 12px; }.bridge-line { width: 100%; }.bridge-line span { width: 16px; }.bridge-line i { width: 6px; height: 6px; }.bridge-node, .bridge-copy { display: none; }
  .device-stage[data-platform="ios"] .controller-shell { width: min(100%, 76px); aspect-ratio: .55; }.device-stage[data-platform="android"] .controller-shell { width: min(100%, 82px); aspect-ratio: .65; }.device-stage[data-platform="web"] .controller-shell { width: 100%; aspect-ratio: .88; }
  .demo-target .demo-kicker { margin-left: 0; }.remote-monitor { width: 100%; }.monitor-bezel { padding: 5px; border-radius: 9px; }.remote-console-toolbar { top: 4px; left: 4px; right: 4px; min-height: 18px; padding: 2px 4px; gap: 3px; font-size: 5px; }.remote-console-toolbar .console-brand, .remote-console-toolbar .console-divider { display: none; }.remote-console-toolbar .console-tool { width: 13px; height: 13px; }.remote-console-toolbar .console-tool svg { width: 8px; height: 8px; }.remote-live-badge { top: 27px; right: 6px; padding: 3px 4px; font-size: 4px; }.remote-pointer { border-top-width: 9px; border-right-width: 5px; }.remote-action-toast { left: 6px; bottom: 16px; min-width: 105px; max-width: 68%; padding: 4px; gap: 4px; }.toast-icon { width: 16px; height: 16px; }.remote-action-toast b { font-size: 5px; }.remote-action-toast small { font-size: 4px; }.remote-action-toast > strong { font-size: 5px; }.remote-console-footer { right: 5px; bottom: 4px; left: 5px; gap: 5px; font-size: 4px; }.monitor-neck { height: 18px; }.remote-host-meta { margin-top: 4px; gap: 3px; }.remote-host-meta strong { font-size: 7px; }.remote-host-meta span { font-size: 5px; }
  .access-task-strip { right: 0; bottom: 4%; left: 0; justify-content: flex-start; overflow-x: auto; padding: 8px 10px; scrollbar-width: none; }.access-task-strip::-webkit-scrollbar { display: none; }.task-label { position: sticky; left: 0; flex: 0 0 auto; padding-right: 3px; background: rgba(255,255,255,.9); }.task-item { flex: 0 0 auto; }
  .device-stage-caption { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .bridge-line span, .remote-pointer, .is-switching .remote-demo, .is-switching .access-task-strip { animation: none; }
}

.device-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.3vw, 34px);
  max-width: 1080px;
  margin: clamp(27px, 3.6vw, 48px) auto 0;
  padding-top: clamp(22px, 3vw, 38px);
  border-top: 1px solid rgba(170, 208, 221, .5);
}

.device-benefits article {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 13px;
  min-width: 0;
  padding: 13px 15px;
  border: 1px solid transparent;
  border-radius: 16px;
  transition: transform .3s cubic-bezier(.2, .8, .2, 1), background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.device-benefits article:hover {
  transform: translateY(-5px);
  background: rgba(244, 252, 254, .86);
  border-color: rgba(113, 207, 220, .38);
  box-shadow: 0 15px 28px rgba(7, 58, 91, .07);
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: #075c92;
  background: linear-gradient(145deg, #effcff, #fff);
  border: 1px solid #c8eaf0;
  border-radius: 15px;
}

.benefit-icon svg { width: 38px; height: 38px; overflow: visible; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.benefit-icon .benefit-accent { stroke: #00d7eb; }
.benefit-check { fill: var(--green); stroke: #fff; stroke-width: 2; }
.benefit-icon .check-stroke { stroke: #125477; stroke-width: 1.8; }
.device-benefits h3 { margin: 0; color: #092f5c; font-size: clamp(15px, 1.25vw, 19px); line-height: 1.2; }
.device-benefits p { margin: 5px 0 0; color: #6c8192; font-size: clamp(11px, .82vw, 13px); line-height: 1.4; }

.scroll-reveal.is-visible .device-access-header,
.scroll-reveal.is-visible .platform-tabs,
.scroll-reveal.is-visible .device-stage,
.scroll-reveal.is-visible .device-benefits {
  animation: section-child-rise .72s cubic-bezier(.2, .72, .2, 1) both;
}

.scroll-reveal.is-visible .platform-tabs { animation-delay: .1s; }
.scroll-reveal.is-visible .device-stage { animation-delay: .19s; }
.scroll-reveal.is-visible .device-benefits { animation-delay: .3s; }

@keyframes section-child-rise {
  from { opacity: 0; transform: translateY(27px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes status-pop {
  0% { opacity: .4; transform: translateX(-50%) translateY(8px) scale(.96); }
  100% { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

@keyframes device-signal {
  0% { stroke-dashoffset: 1; opacity: 0; }
  18% { opacity: .9; }
  78% { opacity: .9; }
  100% { stroke-dashoffset: 0; opacity: .15; }
}

@media (max-width: 900px) {
  .device-access-shell { padding-inline: 24px; }
  .platform-tabs { justify-content: flex-start; width: 100%; }
  .platform-tab { flex: 0 0 auto; }
  .device-stage { height: clamp(400px, 55vw, 500px); }
  .device-download-row { margin-top: 10px; }
  .device-benefits article { grid-template-columns: 45px 1fr; padding-inline: 8px; }
  .benefit-icon { width: 44px; height: 44px; }
  .benefit-icon svg { width: 32px; height: 32px; }
}

@media (max-width: 680px) {
  .device-access-section { padding-inline: 12px; }
  .device-access-shell { padding: 36px 14px 38px; }
  .device-access-eyebrow { font-size: 10px !important; }
  .device-access-header h2 { font-size: clamp(32px, 10vw, 46px); }
  .platform-tab { min-height: 38px; padding-inline: 13px; }
  .device-stage { height: 390px; margin-top: 18px; }
  .platform-status { top: 4%; min-width: 240px; }
  .device-desktop { top: 25%; width: 66%; }
  .device-phone { left: 4%; bottom: 11%; width: 14%; }
  .device-tablet { right: 2%; top: 43%; width: 29%; }
  .device-laptop { right: 3%; bottom: 9%; width: 37%; }
  .device-stage-caption { bottom: 0; white-space: nowrap; }
  .connection-map { inset-inline: -16%; width: 132%; }
  .device-benefits { grid-template-columns: 1fr; gap: 6px; }
  .device-benefits article { grid-template-columns: 48px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal { opacity: 1; transform: none; filter: none; }
}

@media (max-width: 680px) {
  .remote-input-hud {
    top: 25px;
    left: 6px;
    max-width: calc(100% - 96px);
    padding: 3px 4px;
    gap: 3px;
    font-size: 4px;
  }

  .remote-input-hud span { display: none; }
  .remote-input-hud b { font-size: 4px; }
  .remote-click-ring { width: 15px; height: 15px; box-shadow: 0 0 0 3px color-mix(in srgb, var(--platform-secondary) 12%, transparent), 0 0 9px color-mix(in srgb, var(--platform-secondary) 45%, transparent); }
  .remote-click-ring::after { inset: 4px; }
  .task-item,
  .task-state { flex: 0 0 auto; }
  .task-state { margin-left: 0; padding-left: 9px; }
  .device-download-row { flex-direction: column; gap: 8px; margin-top: 14px; }
  .device-download-action { width: min(100%, 300px); }
}

/* Environment scenarios */
.environment-section {
  position: relative;
  padding: clamp(66px, 8vw, 124px) clamp(16px, 4vw, 64px) clamp(76px, 9vw, 136px);
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 28%, rgba(0, 215, 235, .1), transparent 25%),
    radial-gradient(circle at 9% 78%, rgba(119, 235, 37, .065), transparent 23%),
    linear-gradient(180deg, #f7fbfd 0%, #eff8fc 100%);
  border-top: 1px solid rgba(128, 188, 208, .18);
}

.environment-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .32;
  background-image:
    linear-gradient(rgba(42, 136, 170, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 136, 170, .055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 28%, #000 72%, transparent);
  pointer-events: none;
}

.environment-shell {
  position: relative;
  z-index: 2;
  width: min(1420px, 100%);
  margin: 0 auto;
}

.environment-header {
  max-width: 900px;
  margin: 0 auto clamp(30px, 4vw, 54px);
  text-align: center;
}

.environment-eyebrow {
  margin: 0 0 12px;
  color: #0785a2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.environment-header h2 {
  margin: 0;
  color: #062a59;
  font-size: clamp(35px, 4.2vw, 66px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.environment-header > p:last-child {
  max-width: 720px;
  margin: 16px auto 0;
  color: #60778c;
  font-size: clamp(15px, 1.35vw, 20px);
  line-height: 1.5;
}

.scenario-deck {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr);
  gap: clamp(16px, 1.8vw, 26px);
  min-height: clamp(580px, 53vw, 730px);
  transition: grid-template-columns .7s cubic-bezier(.16, 1, .3, 1);
}

.scenario-deck[data-active="industrial"] {
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
}

.scenario-card {
  --scenario-accent: #00d7eb;
  --scenario-green: #77eb25;
  position: relative;
  min-width: 0;
  overflow: hidden;
  color: #effaff;
  background:
    radial-gradient(circle at 77% 39%, rgba(0, 215, 235, .12), transparent 31%),
    linear-gradient(145deg, #082f55 0%, #064d6a 58%, #073453 100%);
  border: 1px solid rgba(80, 211, 227, .23);
  border-radius: clamp(24px, 2.4vw, 34px);
  box-shadow: 0 24px 58px rgba(4, 48, 77, .15), inset 0 1px 0 rgba(255, 255, 255, .09);
  transform: translateY(4px);
  transition:
    transform .65s cubic-bezier(.16, 1, .3, 1),
    opacity .45s ease,
    filter .45s ease,
    border-color .45s ease,
    box-shadow .45s ease;
}

.scenario-industrial {
  --scenario-accent: #38d7ca;
  background:
    radial-gradient(circle at 70% 37%, rgba(119, 235, 37, .1), transparent 29%),
    linear-gradient(145deg, #073952 0%, #07586b 58%, #064157 100%);
}

.scenario-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .6;
  background:
    linear-gradient(115deg, rgba(255,255,255,.055), transparent 23%),
    repeating-linear-gradient(90deg, transparent 0 78px, rgba(117, 222, 231, .022) 79px 80px);
  pointer-events: none;
}

.scenario-card:not(.is-active) {
  opacity: .82;
  filter: saturate(.72);
  transform: translateY(12px) scale(.985);
}

.scenario-card.is-active,
.scenario-card:focus-visible {
  border-color: rgba(73, 225, 233, .52);
  box-shadow: 0 32px 74px rgba(4, 48, 77, .23), 0 0 0 4px rgba(0, 215, 235, .055), inset 0 1px 0 rgba(255, 255, 255, .12);
  transform: translateY(0);
  outline: none;
}

.scenario-copy {
  position: relative;
  z-index: 8;
  width: min(570px, 76%);
  padding: clamp(28px, 3.4vw, 50px) clamp(25px, 3.5vw, 52px) 0;
  transition: width .6s cubic-bezier(.16, 1, .3, 1);
}

.scenario-card:not(.is-active) .scenario-copy {
  width: 94%;
}

.scenario-index {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #71dfe8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.scenario-index span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #0b3d5b;
  background: #78ebef;
  border-radius: 9px;
  letter-spacing: 0;
}

.scenario-industrial .scenario-index { color: #a5efb1; }
.scenario-industrial .scenario-index span { background: #92ee8d; }

.scenario-copy h3 {
  max-width: 530px;
  margin: 17px 0 11px;
  color: #fff;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.06;
  letter-spacing: -.035em;
}

.scenario-copy p {
  max-width: 570px;
  margin: 0;
  color: rgba(226, 244, 249, .78);
  font-size: clamp(13px, 1.08vw, 17px);
  line-height: 1.55;
}

.scenario-copy a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 19px;
  color: #fff;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  transition: color .25s ease, transform .25s ease;
}

.scenario-copy a svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scenario-copy a:hover,
.scenario-copy a:focus-visible {
  color: #76edf3;
  transform: translateX(4px);
  outline: none;
}

.scenario-visual {
  position: absolute;
  z-index: 3;
  right: 2%;
  bottom: 7%;
  width: 94%;
  height: 57%;
  transition: opacity .4s ease, transform .65s cubic-bezier(.16, 1, .3, 1);
}

.scenario-card:not(.is-active) .scenario-visual {
  opacity: .52;
  transform: translateX(8%) scale(.91);
}

.scenario-console {
  position: absolute;
  z-index: 4;
  top: 5%;
  left: 50%;
  width: min(67%, 590px);
  height: 69%;
  overflow: hidden;
  background: #eaf6fa;
  border: 6px solid #102a3a;
  border-bottom-width: 12px;
  border-radius: 12px;
  box-shadow: 0 25px 46px rgba(0, 21, 37, .35), 0 0 0 1px rgba(104, 221, 229, .19);
  transform: translateX(-50%);
}

.scenario-console::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 39%;
  width: 22%;
  height: 34px;
  background: linear-gradient(90deg, #82939c, #d6e0e4 48%, #82939c);
  clip-path: polygon(12% 0, 88% 0, 100% 88%, 0 88%);
}

.console-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 25px;
  padding: 0 9px;
  color: #d8edf2;
  background: #0a3c56;
  font-size: 7px;
}

.console-brand,
.console-live { display: flex; align-items: center; gap: 5px; }
.console-brand i { width: 8px; height: 8px; background: linear-gradient(145deg, #00d7eb, #77eb25); border-radius: 3px; }
.console-live i { width: 6px; height: 6px; background: var(--scenario-green); border-radius: 50%; box-shadow: 0 0 8px var(--scenario-green); }
.console-body { position: relative; display: grid; grid-template-columns: 12% 58% 30%; height: calc(100% - 25px); }
.console-nav { padding: 13px 8px; background: #0e425d; }
.console-nav i { display: block; width: 100%; height: 5px; margin-bottom: 13px; background: rgba(151, 222, 232, .3); border-radius: 5px; }
.console-nav i:first-child { background: #4cdce6; }
.console-workspace { padding: 13px 10px; background: #f5fafc; }
.workspace-title { display: flex; justify-content: space-between; margin-bottom: 12px; color: #244c65; font-size: 7px; }
.workspace-title span { color: #7692a1; }
.endpoint-row { display: grid; grid-template-columns: 9px 1fr auto; align-items: center; gap: 6px; height: 26px; margin-bottom: 7px; padding: 0 7px; color: #527083; background: #fff; border: 1px solid #deebef; border-radius: 5px; font-size: 6px; }
.endpoint-row > i { width: 7px; height: 7px; background: #77eb25; border-radius: 50%; }
.endpoint-row b { color: #3f9074; font-size: 5px; }
.endpoint-focus { border-color: rgba(0, 190, 215, .45); box-shadow: 0 0 0 2px rgba(0, 210, 230, .07); }
.console-overlay { display: flex; flex-direction: column; justify-content: center; padding: 13px 9px; color: #d9f6fa; background: linear-gradient(145deg, #093c5a, #071c30); }
.console-overlay small { color: #5edce6; font-size: 5px; font-weight: 800; letter-spacing: .11em; }
.console-overlay strong { margin-top: 6px; font-size: 9px; line-height: 1.25; }
.bios-lines { display: none; margin-top: 13px; }
.bios-lines i { display: block; width: 84%; height: 3px; margin-bottom: 6px; background: rgba(108, 225, 233, .62); }
.bios-lines i:nth-child(2) { width: 64%; }
.bios-lines i:nth-child(3) { width: 73%; background: #77eb25; }
.bios-lines i:nth-child(4) { width: 48%; }

.scenario-routes {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.scenario-routes path { fill: none; stroke-linecap: round; }
.route-muted { stroke: rgba(110, 219, 228, .14); stroke-width: 1.4; }
.route-software, .route-hardware, .route-data, .route-maintenance { stroke-width: 2.4; stroke-dasharray: .13 .87; stroke-dashoffset: 1; opacity: 0; }
.route-software { stroke: #00d7eb; }
.route-hardware { stroke: #77eb25; }
.route-data { stroke: #66e8d9; }
.route-maintenance { stroke: #9df06d; }

.mini-device {
  position: absolute;
  z-index: 6;
  bottom: 4%;
  color: #bddde5;
  font-size: 7px;
  text-align: center;
}
.mini-device > div { position: relative; width: 72px; height: 45px; margin: 0 auto 5px; background: linear-gradient(145deg, #d9edf2, #90aab5); border: 4px solid #153748; border-radius: 5px; box-shadow: 0 12px 21px rgba(0,0,0,.22); }
.mini-device > div::after { content: ""; position: absolute; top: 100%; left: -9px; width: 82px; height: 5px; background: #a3b3ba; border-radius: 0 0 8px 8px; }
.mini-device > div i { display: block; width: 60%; height: 3px; margin: 7px 6px -2px; background: #498ca2; border-radius: 2px; }
.mini-laptop { left: 4%; }
.mini-kvm { right: 2%; }
.mini-kvm > div { display: flex; align-items: center; justify-content: center; gap: 6px; width: 76px; background: linear-gradient(145deg, #0a6c8a, #07394f); border-radius: 8px; }
.mini-kvm > div::after { display: none; }
.mini-kvm > div img { position: absolute; width: 91px; max-width: none; height: auto; filter: drop-shadow(0 8px 9px rgba(0,25,39,.38)); transform: translateY(-4px); }
.mini-kvm em { display: grid; place-items: center; width: 23px; height: 23px; color: #063e54; background: linear-gradient(145deg, #00d7eb, #77eb25); border-radius: 7px; font-style: normal; font-weight: 900; }
.mini-kvm > div i { position: absolute; right: 5px; bottom: 6px; z-index: 2; width: 5px; height: 5px; margin: 0; background: #77eb25; border-radius: 50%; box-shadow: 0 0 7px #77eb25; }
.mini-kvm > div i:last-child { right: 14px; }

.scenario-event {
  position: absolute;
  z-index: 9;
  top: 71%;
  left: 50%;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 0 8px;
  min-width: 230px;
  padding: 9px 13px;
  color: #234c60;
  background: rgba(251, 255, 255, .93);
  border: 1px solid rgba(123, 216, 224, .65);
  border-radius: 11px;
  box-shadow: 0 12px 25px rgba(0, 31, 48, .2);
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
}
.scenario-event > i { grid-row: 1 / 3; width: 8px; height: 8px; background: var(--scenario-green); border-radius: 50%; box-shadow: 0 0 0 4px rgba(119, 235, 37, .12), 0 0 10px rgba(119, 235, 37, .75); }
.scenario-event span { font-size: 8px; font-weight: 800; }
.scenario-event small { margin-top: 2px; color: #79909c; font-size: 6px; }

.scenario-progress {
  position: absolute;
  z-index: 11;
  right: 22px;
  bottom: 18px;
  left: 22px;
  height: 2px;
  overflow: hidden;
  background: rgba(133, 213, 222, .13);
  border-radius: 3px;
}
.scenario-progress i { display: block; width: 0; height: 100%; background: linear-gradient(90deg, #00d7eb, #77eb25); box-shadow: 0 0 9px #00d7eb; }
.scenario-card.is-running .scenario-progress i { animation: scenario-progress 6.1s linear both; }

.scenario-replay {
  position: absolute;
  z-index: 12;
  right: 22px;
  top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 0 10px;
  color: #cdeaf0;
  background: rgba(4, 38, 58, .38);
  border: 1px solid rgba(126, 220, 228, .18);
  border-radius: 9px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity .25s ease, transform .25s ease, background .25s ease;
}
.scenario-replay svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.scenario-replay span { font-size: 10px; font-weight: 700; }
.scenario-card.is-complete .scenario-replay { opacity: 1; transform: translateY(0); }
.scenario-replay:hover, .scenario-replay:focus-visible { background: rgba(8, 87, 111, .7); outline: 2px solid rgba(0, 215, 235, .18); }

.scenario-it[data-phase="connect"] .route-software,
.scenario-it[data-phase="resolved"] .route-software { opacity: .92; animation: route-flow 1.1s ease both; }
.scenario-it[data-phase="fault"] .route-software { opacity: .35; stroke: #ff9b55; animation: route-fail .75s ease both; }
.scenario-it[data-phase="fault"] .endpoint-focus { border-color: #f4a35e; background: #fff7ee; }
.scenario-it[data-phase="fault"] .endpoint-focus > i,
.scenario-it[data-phase="fault"] .scenario-event > i { background: #ff9c55; box-shadow: 0 0 0 4px rgba(255,156,85,.13), 0 0 12px rgba(255,156,85,.75); }
.scenario-it[data-phase="fault"] .endpoint-focus b { color: #c66f36; }
.scenario-it[data-phase="fault"] .screen-wallpaper { filter: grayscale(.6); }
.scenario-it[data-phase="takeover"] .route-hardware,
.scenario-it[data-phase="bios"] .route-hardware,
.scenario-it[data-phase="resolved"] .route-hardware { opacity: .96; animation: route-flow 1.15s ease both; }
.scenario-it[data-phase="takeover"] .mini-kvm { animation: node-confirm .58s cubic-bezier(.16,1,.3,1) both; }
.scenario-it[data-phase="bios"] .console-overlay { background: linear-gradient(145deg, #0b2b63, #040c20); }
.scenario-it[data-phase="bios"] .bios-lines { display: block; animation: bios-enter .55s ease both; }
.scenario-it[data-phase="resolved"] .endpoint-focus { border-color: rgba(119,235,37,.6); background: #f5fff0; }
.scenario-it[data-phase="resolved"] .endpoint-focus b { color: #29804e; }

.factory-grid {
  position: absolute;
  inset: 5% 3% 3%;
  opacity: .18;
  background-image: linear-gradient(rgba(83, 215, 204, .17) 1px, transparent 1px), linear-gradient(90deg, rgba(83, 215, 204, .17) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse, #000, transparent 72%);
}
.industrial-node { position: absolute; z-index: 6; color: #cae9ed; font-size: 7px; text-align: center; transition: transform .5s cubic-bezier(.16,1,.3,1), filter .35s ease; }
.industrial-node > div { display: grid; place-items: center; width: 84px; height: 65px; margin: 0 auto 6px; background: linear-gradient(145deg, rgba(232,248,250,.96), rgba(162,199,207,.94)); border: 2px solid #17566a; border-radius: 9px; box-shadow: 0 15px 28px rgba(0,24,35,.26); }
.industrial-node span, .industrial-node small { display: block; }
.industrial-node small { margin-top: 2px; color: #80cdd1; font-size: 6px; }
.node-hmi { left: 3%; bottom: 13%; }
.node-plc { left: 42%; top: 17%; }
.node-machine { right: 2%; bottom: 17%; }
.node-engineer { right: 16%; top: -1%; }
.hmi-screen { padding: 8px; grid-template-columns: 1fr 1fr; gap: 4px; }
.hmi-screen i { width: 100%; height: 17px; background: #0d6380; border-radius: 3px; }
.hmi-screen i:nth-child(2) { background: #4bbfb0; }
.hmi-screen b { grid-column: 1 / 3; width: 100%; height: 8px; background: #8fb2bd; border-radius: 2px; }
.plc-unit { grid-template-columns: repeat(4, 1fr); padding: 10px; background: linear-gradient(145deg, #dfe7e7, #9fb1b3) !important; }
.plc-unit b { grid-column: 1 / 5; color: #17506a; font-size: 10px; }
.plc-unit i { width: 7px; height: 18px; background: #236b80; border-radius: 2px; }
.plc-unit i:nth-of-type(3) { background: #77eb25; }
.machine-unit { position: relative; grid-template-columns: 1fr 1fr; padding: 9px; }
.machine-unit b { grid-column: 1 / 3; width: 54%; height: 27px; background: #2e7886; border: 5px solid #8fb3b8; border-radius: 3px; }
.machine-unit i { width: 20px; height: 8px; background: #658d96; border-radius: 2px; }
.engineer-panel { grid-template-columns: 15px 1fr; gap: 5px; padding: 8px; }
.engineer-panel i { grid-row: 1 / 3; width: 13px; height: 13px; background: #77eb25; border-radius: 50%; }
.engineer-panel b { width: 100%; height: 5px; background: #39778a; border-radius: 3px; }
.cloud-platform { position: relative; }
.cloud-platform i { width: 32px; height: 18px; border: 3px solid #1686a4; border-radius: 20px; border-bottom-color: transparent; }
.cloud-platform i::before { content: ""; position: absolute; left: 26px; top: 30px; width: 14px; border-top: 2px solid #1686a4; transform: rotate(-90deg); }
.cloud-platform b { position: absolute; bottom: 15px; width: 7px; height: 7px; border-top: 2px solid #53cf78; border-right: 2px solid #53cf78; transform: rotate(-45deg); }

.quickdesk-product-hub {
  position: absolute;
  z-index: 8;
  left: 50%;
  bottom: 2%;
  width: min(31%, 190px);
  margin: 0;
  text-align: center;
  transform: translateX(-50%);
  transition: transform .55s cubic-bezier(.16,1,.3,1), filter .4s ease;
}
.quickdesk-product-hub img { display: block; width: 100%; height: auto; filter: drop-shadow(0 15px 17px rgba(0,28,41,.36)); }
.quickdesk-product-hub figcaption { display: inline-flex; flex-direction: column; align-items: center; margin-top: -7px; padding: 5px 10px; color: #eafaff; background: rgba(5,56,72,.88); border: 1px solid rgba(75,218,216,.58); border-radius: 8px; box-shadow: 0 7px 15px rgba(0,35,48,.2); }
.quickdesk-product-hub figcaption span { display: flex; align-items: center; gap: 5px; font-size: 7px; font-weight: 800; }
.quickdesk-product-hub figcaption i { width: 5px; height: 5px; background: #77eb25; border-radius: 50%; box-shadow: 0 0 7px #77eb25; }
.quickdesk-product-hub figcaption small { margin-top: 1px; color: #90dce1; font-size: 5px; }

.scenario-industrial[data-phase="scan"] .route-data,
.scenario-industrial[data-phase="resolved"] .route-data { opacity: .9; animation: route-flow 1.35s ease both; }
.scenario-industrial[data-phase="scan"] .quickdesk-product-hub { animation: product-online .62s cubic-bezier(.16,1,.3,1) both; }
.scenario-industrial[data-phase="alarm"] .node-plc { animation: plc-warning .85s ease-in-out infinite alternate; }
.scenario-industrial[data-phase="alarm"] .node-plc small { color: #ffb36f; }
.scenario-industrial[data-phase="alarm"] .plc-unit i:nth-of-type(3),
.scenario-industrial[data-phase="alarm"] .scenario-event > i { background: #ff9c55; box-shadow: 0 0 12px rgba(255,156,85,.85); }
.scenario-industrial[data-phase="diagnose"] .route-maintenance,
.scenario-industrial[data-phase="repair"] .route-maintenance,
.scenario-industrial[data-phase="resolved"] .route-maintenance { opacity: .95; animation: route-flow 1.15s ease both; }
.scenario-industrial[data-phase="diagnose"] .node-engineer { transform: translateY(7px) scale(1.12); filter: brightness(1.15); }
.scenario-industrial[data-phase="repair"] .node-plc { animation: node-confirm .62s cubic-bezier(.16,1,.3,1) both; }
.scenario-industrial[data-phase="resolved"] .node-plc small { color: #98ef99; }
.scenario-industrial[data-phase="resolved"] .industrial-node { filter: brightness(1.08) saturate(1.1); }
.scenario-industrial[data-phase="resolved"] .quickdesk-product-hub { transform: translateX(-50%) translateY(-3px) scale(1.04); filter: brightness(1.06); }

.environment-device-rail {
  margin-top: clamp(26px, 4vw, 52px);
  padding: 24px 0 0;
}
.environment-device-rail > p { margin: 0 0 17px; color: #45677d; font-size: 13px; font-weight: 750; text-align: center; }
.device-rail-viewport { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.device-rail-track { display: flex; width: max-content; animation: rail-scroll 30s linear infinite; }
.device-rail-viewport:hover .device-rail-track { animation-play-state: paused; }
.device-rail-track span { display: inline-flex; align-items: center; gap: 10px; min-width: 190px; margin-right: 13px; padding: 10px 17px; color: #315a72; background: rgba(255,255,255,.72); border: 1px solid #d1e7ee; border-radius: 12px; font-size: 12px; font-weight: 650; box-shadow: 0 7px 18px rgba(7,58,91,.045); }
.device-rail-track i { position: relative; display: inline-block; width: 24px; height: 20px; flex: 0 0 auto; color: #0780a0; border: 1.7px solid currentColor; border-radius: 4px; }
.device-rail-track i::before, .device-rail-track i::after { content: ""; position: absolute; }
.rail-computer::before { left: 7px; bottom: -5px; width: 8px; border-top: 1.7px solid currentColor; }
.rail-server::before { inset: 4px 3px auto; border-top: 1.7px solid currentColor; box-shadow: 0 5px 0 currentColor; }
.rail-server::after { right: 3px; top: 3px; width: 3px; height: 3px; background: #77eb25; border-radius: 50%; box-shadow: 0 5px 0 #77eb25; }
.rail-terminal::before { left: 5px; top: 4px; width: 11px; height: 7px; border: 1.5px solid currentColor; border-radius: 2px; }
.rail-industrial::before { inset: 4px; background: repeating-linear-gradient(90deg, currentColor 0 2px, transparent 2px 5px); opacity: .65; }
.rail-hmi::before { inset: 3px; border: 1.5px solid currentColor; border-radius: 2px; }
.rail-hmi::after { right: 5px; bottom: 5px; width: 3px; height: 3px; background: #77eb25; border-radius: 50%; }
.rail-plc::before { left: 4px; top: 4px; width: 3px; height: 10px; background: currentColor; box-shadow: 5px 0 0 currentColor, 10px 0 0 currentColor; }
.rail-cnc::before { left: 4px; bottom: 3px; width: 14px; height: 9px; border: 1.5px solid currentColor; border-top-width: 5px; }

.scroll-reveal.is-visible .environment-header,
.scroll-reveal.is-visible .scenario-deck,
.scroll-reveal.is-visible .environment-device-rail { animation: section-child-rise .76s cubic-bezier(.2,.72,.2,1) both; }
.scroll-reveal.is-visible .scenario-deck { animation-delay: .13s; }
.scroll-reveal.is-visible .environment-device-rail { animation-delay: .26s; }

@keyframes route-flow { from { stroke-dashoffset: 1; opacity: 0; } 20% { opacity: .95; } to { stroke-dashoffset: 0; opacity: .9; } }
@keyframes route-fail { 0%,100% { opacity: .18; } 35%,65% { opacity: .72; } }
@keyframes node-confirm { 0% { transform: scale(.88); filter: brightness(.8); } 55% { transform: scale(1.1); filter: brightness(1.28); } 100% { transform: scale(1); filter: brightness(1); } }
@keyframes bios-enter { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
@keyframes plc-warning { from { filter: drop-shadow(0 0 0 rgba(255,156,85,0)); transform: translateY(0); } to { filter: drop-shadow(0 0 13px rgba(255,156,85,.65)); transform: translateY(-3px); } }
@keyframes product-online { from { opacity: .5; transform: translateX(-50%) translateY(10px) scale(.9); filter: brightness(.75); } to { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); filter: brightness(1); } }
@keyframes scenario-progress { from { width: 0; } to { width: 100%; } }
@keyframes rail-scroll { to { transform: translateX(calc(-50% - 6.5px)); } }

@media (max-width: 980px) {
  .scenario-deck,
  .scenario-deck[data-active="industrial"] { grid-template-columns: 1fr; min-height: 0; }
  .scenario-card { min-height: 650px; }
  .scenario-card:not(.is-active) { min-height: 380px; }
  .scenario-card:not(.is-active) .scenario-visual { opacity: .16; }
  .scenario-copy, .scenario-card:not(.is-active) .scenario-copy { width: min(620px, 88%); }
}

@media (max-width: 680px) {
  .environment-section { padding-inline: 12px; }
  .environment-eyebrow { font-size: 10px; }
  .environment-header h2 { font-size: clamp(32px, 10vw, 46px); }
  .scenario-card { min-height: 600px; border-radius: 24px; }
  .scenario-card:not(.is-active) { min-height: 360px; }
  .scenario-copy, .scenario-card:not(.is-active) .scenario-copy { width: 100%; padding: 26px 21px 0; }
  .scenario-copy h3 { font-size: 29px; }
  .scenario-visual { right: -10%; bottom: 8%; width: 120%; height: 55%; }
  .scenario-card:not(.is-active) .scenario-visual { display: none; }
  .scenario-replay { top: auto; right: 18px; bottom: 25px; }
  .scenario-progress { right: 18px; bottom: 16px; left: 18px; }
  .device-rail-track span { min-width: 170px; }
}

@media (prefers-reduced-motion: reduce) {
  .scenario-deck,
  .scenario-card,
  .scenario-visual { transition: none; }
  .scenario-progress i { width: 100%; animation: none !important; }
  .device-rail-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; gap: 8px; }
  .device-rail-track span[aria-hidden="true"] { display: none; }
}

/* Revision 7: cinematic light scenario cards inspired by the approved concept. */
.scenario-deck,
.scenario-deck[data-active="it"],
.scenario-deck[data-active="industrial"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.2vw, 32px);
  min-height: clamp(520px, 45vw, 620px);
  transition: none;
}

.scenario-card,
.scenario-industrial {
  min-height: clamp(520px, 45vw, 620px);
  color: var(--ink);
  background: rgba(255, 255, 255, .96);
  border: 5px solid transparent;
  border-radius: clamp(24px, 2.3vw, 32px);
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(105deg, #1686e0, #1bd6e5 52%, #22d77b);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 22px 48px rgba(9, 76, 116, .18), 0 0 0 1px rgba(255,255,255,.75) inset;
  filter: none;
  opacity: 1;
  transform: translateY(0);
}

.scenario-card::before {
  z-index: 5;
  opacity: 1;
  background: linear-gradient(180deg, transparent 46%, rgba(255,255,255,.12) 64%, #fff 71%);
}

.scenario-card:not(.is-active) {
  opacity: 1;
  filter: none;
  transform: none;
}

.scenario-card.is-active,
.scenario-card:focus-visible {
  box-shadow: 0 28px 62px rgba(9, 76, 116, .24), 0 0 0 5px rgba(0, 215, 235, .07);
  transform: none;
}

.scenario-copy,
.scenario-card:not(.is-active) .scenario-copy {
  position: absolute;
  z-index: 12;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 31%;
  padding: clamp(19px, 2vw, 29px) clamp(19px, 2.2vw, 31px) 34px;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(255,255,255,.96), #fff 34%);
}

.scenario-index { display: none; }

.scenario-copy h3 {
  max-width: calc(100% - 230px);
  margin: 0 0 6px;
  color: #071f3e;
  font-size: clamp(23px, 2.15vw, 34px);
  line-height: 1.08;
}

.scenario-copy p {
  max-width: calc(100% - 220px);
  color: #263d51;
  font-size: clamp(12px, .95vw, 15px);
  line-height: 1.45;
}

.scenario-copy a {
  position: absolute;
  right: clamp(18px, 2vw, 28px);
  bottom: 35px;
  min-height: 43px;
  margin: 0;
  padding: 0 15px;
  color: #fff;
  background: linear-gradient(135deg, #073b70, #075d8b);
  border: 1px solid #00c9e4;
  border-right-color: #48df68;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(7, 62, 104, .22), inset 0 1px 0 rgba(255,255,255,.15);
  white-space: nowrap;
}

.scenario-copy a:hover,
.scenario-copy a:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, #07568a, #087c93);
  box-shadow: 0 11px 24px rgba(7, 62, 104, .28), 0 0 0 4px rgba(0, 215, 235, .1);
}

.scenario-visual,
.scenario-card:not(.is-active) .scenario-visual {
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  width: 100%;
  height: 70%;
  overflow: hidden;
  opacity: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: none;
}

.scenario-video {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  pointer-events: none;
}

.scenario-video::-webkit-media-controls,
.scenario-video::-webkit-media-controls-enclosure,
.scenario-video::-webkit-media-controls-panel {
  display: none !important;
}

.scenario-card:not(.is-active) .scenario-video {
  opacity: .92;
  filter: saturate(.88);
}

.scenario-card.is-video-playing .scenario-video {
  filter: none;
}

.scenario-card.is-video-mode .scenario-console,
.scenario-card.is-video-mode .scenario-routes,
.scenario-card.is-video-mode .mini-device,
.scenario-card.is-video-mode .scenario-event,
.scenario-card.is-video-mode .scenario-progress,
.scenario-card.is-video-mode .scenario-replay,
.scenario-card.is-video-mode .factory-grid,
.scenario-card.is-video-mode .industrial-node,
.scenario-card.is-video-mode .quickdesk-product-hub {
  display: none;
}

.scenario-card.is-video-mode::before {
  display: none;
}

.scenario-card.is-video-mode .scenario-visual::before {
  display: none;
}

.it-visual {
  background: #dceff3;
}

.industrial-visual {
  background: #dceff3;
}

.scenario-visual::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(238,250,253,.08), rgba(2,52,75,.09) 62%, rgba(255,255,255,.28)),
    radial-gradient(circle at 50% 45%, transparent 25%, rgba(231,248,252,.2) 100%);
  pointer-events: none;
}

.scenario-console {
  top: 17%;
  left: 47%;
  width: min(55%, 365px);
  height: 55%;
  border-width: 5px;
  border-bottom-width: 9px;
  box-shadow: 0 20px 38px rgba(0, 33, 53, .33), 0 0 24px rgba(0, 215, 235, .12);
}

.mini-laptop { left: 14%; bottom: 13%; }
.mini-kvm { right: 7%; bottom: 11%; }

.scenario-event {
  top: 6%;
  right: 3%;
  left: auto;
  min-width: min(252px, 43%);
  color: #eafaff;
  background: linear-gradient(145deg, rgba(5, 43, 76, .96), rgba(6, 71, 91, .94));
  border-color: rgba(44, 221, 226, .7);
  box-shadow: 0 12px 28px rgba(1, 30, 48, .27), 0 0 0 2px rgba(0, 215, 235, .07);
  transform: none;
}

.scenario-event small { color: #8ddce4; }

.scenario-routes {
  z-index: 3;
  filter: drop-shadow(0 0 5px rgba(0,215,235,.7));
}

.scenario-routes .route-muted {
  stroke: rgba(0, 153, 206, .38);
  stroke-width: 1.4;
}

.industrial-node {
  z-index: 6;
  color: #0d3850;
  font-weight: 750;
  text-shadow: 0 1px 2px rgba(255,255,255,.85);
}

.industrial-node small {
  color: #116578;
  text-shadow: 0 1px 2px rgba(255,255,255,.85);
}

.industrial-node > div {
  background: linear-gradient(145deg, rgba(244,253,254,.96), rgba(182,220,226,.95));
  border-color: rgba(11, 114, 138, .78);
  box-shadow: 0 13px 27px rgba(0, 44, 61, .24), 0 0 0 2px rgba(255,255,255,.48);
}

.node-hmi { left: 1%; bottom: 3%; }
.node-plc { left: 39%; top: 0; }
.node-machine { right: 0; bottom: 4%; }
.node-engineer { right: 10%; top: -2%; }

.factory-grid { opacity: .28; }

.scenario-progress {
  right: 18px;
  bottom: 14px;
  left: 35px;
  height: 4px;
  background: #d5e2e7;
  border-radius: 999px;
}

.scenario-progress::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -22px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #7894a3;
  transform: translateY(-50%);
}

.scenario-progress i {
  position: relative;
  background: linear-gradient(90deg, #1489de, #13d9de 60%, #31df76);
}

.scenario-progress i::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  width: 8px;
  height: 8px;
  background: #fff;
  border: 3px solid #29cfd0;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0,215,235,.6);
  transform: translateY(-50%);
}

.scenario-replay {
  top: auto;
  right: auto;
  bottom: 5px;
  left: 8px;
  width: 25px;
  min-height: 25px;
  padding: 0;
  color: #648696;
  background: transparent;
  border: 0;
  opacity: 0;
}

.scenario-replay span { display: none; }
.scenario-card.is-complete .scenario-replay { opacity: 1; }

.device-rail-track i.rail-sensor,
.device-rail-track i.rail-camera,
.device-rail-track i.rail-switch {
  border: 0;
}

.rail-sensor::before {
  left: 7px;
  top: 5px;
  width: 8px;
  height: 8px;
  border: 1.7px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(7,128,160,.1);
}
.rail-sensor::after {
  left: 1px;
  top: -1px;
  width: 20px;
  height: 20px;
  border-top: 1.7px solid currentColor;
  border-right: 1.7px solid currentColor;
  border-radius: 50%;
  transform: rotate(-45deg);
}

.rail-camera::before {
  left: 2px;
  top: 2px;
  width: 17px;
  height: 9px;
  border: 1.7px solid currentColor;
  border-radius: 3px;
  transform: rotate(17deg);
}
.rail-camera::after {
  left: 11px;
  top: 12px;
  width: 2px;
  height: 8px;
  background: currentColor;
  transform: rotate(18deg);
  box-shadow: 4px 7px 0 1px currentColor;
}

.rail-switch::before {
  left: 1px;
  top: 6px;
  width: 22px;
  height: 10px;
  border: 1.7px solid currentColor;
  border-radius: 3px;
}
.rail-switch::after {
  left: 5px;
  top: 10px;
  width: 3px;
  height: 3px;
  background: currentColor;
  box-shadow: 5px 0 0 currentColor, 10px 0 0 currentColor;
}

@media (max-width: 1080px) {
  .scenario-copy h3 { max-width: 100%; }
  .scenario-copy p { max-width: 55%; }
  .scenario-copy a { padding-inline: 12px; font-size: 11px; }
}

@media (max-width: 980px) {
  .scenario-deck,
  .scenario-deck[data-active="it"],
  .scenario-deck[data-active="industrial"] { grid-template-columns: 1fr; }
  .scenario-card,
  .scenario-card:not(.is-active) { min-height: 580px; }
  .scenario-card:not(.is-active) .scenario-visual { display: block; opacity: .78; }
  .scenario-copy h3 { max-width: calc(100% - 230px); }
  .scenario-copy p { max-width: calc(100% - 220px); }
}

@media (max-width: 680px) {
  .scenario-card,
  .scenario-card:not(.is-active) { min-height: 600px; }
  .scenario-visual,
  .scenario-card:not(.is-active) .scenario-visual { right: 0; width: 100%; height: 66%; }
  .scenario-copy,
  .scenario-card:not(.is-active) .scenario-copy { height: 35%; padding: 20px 18px 38px; }
  .scenario-copy h3 { max-width: 100%; font-size: 25px; }
  .scenario-copy p { max-width: 100%; padding-right: 0; font-size: 12px; }
  .scenario-copy a { position: static; min-height: 36px; margin-top: 11px; font-size: 10px; }
  .scenario-event { min-width: 50%; }

  .scenario-card.is-video-mode,
  .scenario-card.is-video-mode:not(.is-active) {
    display: grid;
    grid-template-rows: auto minmax(230px, 1fr);
  }

  .scenario-card.is-video-mode .scenario-visual,
  .scenario-card.is-video-mode:not(.is-active) .scenario-visual {
    position: relative;
    grid-row: 1;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .scenario-card.is-video-mode .scenario-copy,
  .scenario-card.is-video-mode:not(.is-active) .scenario-copy {
    position: relative;
    grid-row: 2;
    width: 100%;
    height: auto;
    min-height: 230px;
  }
}

/* Fourth screen: layered capability path */
.capability-section {
  position: relative;
  padding: clamp(70px, 8vw, 128px) clamp(16px, 4vw, 64px) clamp(82px, 9vw, 142px);
  overflow: hidden;
  background:
    radial-gradient(circle at 13% 28%, rgba(0,215,235,.1), transparent 25%),
    radial-gradient(circle at 87% 78%, rgba(119,235,37,.065), transparent 24%),
    linear-gradient(180deg, #eff8fc 0%, #f8fbfd 52%, #eef8fb 100%);
  border-top: 1px solid rgba(117, 186, 207, .18);
}
.capability-section::before { content:""; position:absolute; top:10%; right:-9%; width:420px; height:420px; border:1px solid rgba(0,178,213,.11); border-radius:50%; box-shadow:0 0 0 50px rgba(0,178,213,.025),0 0 0 105px rgba(0,178,213,.015); pointer-events:none; }
.capability-shell { position:relative; z-index:2; width:min(1420px,100%); margin:0 auto; }
.capability-header { max-width:940px; margin:0 auto clamp(35px,4.5vw,62px); text-align:center; }
.capability-eyebrow { margin:0 0 12px; color:#0785a2; font-size:12px; font-weight:800; letter-spacing:.16em; text-transform:uppercase; }
.capability-header h2 { margin:0; color:#062a59; font-size:clamp(35px,4.2vw,66px); line-height:1.04; letter-spacing:-.045em; }
.capability-header>p:last-child { max-width:760px; margin:16px auto 0; color:#60778c; font-size:clamp(15px,1.35vw,20px); line-height:1.5; }

.capability-lab { display:grid; grid-template-columns:minmax(280px,.75fr) minmax(0,2.05fr); min-height:clamp(570px,47vw,680px); overflow:hidden; background:rgba(255,255,255,.9); border:1px solid rgba(177,215,227,.8); border-radius:clamp(25px,2.8vw,40px); box-shadow:0 30px 74px rgba(7,58,91,.13),inset 0 1px 0 #fff; backdrop-filter:blur(12px); }
.capability-rail { position:relative; z-index:4; display:flex; flex-direction:column; gap:9px; padding:clamp(22px,2.5vw,38px); background:linear-gradient(160deg,rgba(244,251,253,.98),rgba(229,243,248,.9)); border-right:1px solid #d8e9ef; }
.capability-rail::before { content:""; position:absolute; top:65px; bottom:65px; left:55px; width:1px; background:linear-gradient(180deg,transparent,#a4dce5 12%,#9cdee2 88%,transparent); }
.capability-tab { position:relative; z-index:2; display:grid; grid-template-columns:42px 1fr 18px; align-items:center; gap:12px; min-height:91px; padding:11px 13px; color:#355971; text-align:left; background:transparent; border:1px solid transparent; border-radius:16px; cursor:pointer; transition:background .3s ease,border-color .3s ease,transform .35s cubic-bezier(.16,1,.3,1),box-shadow .3s ease,color .3s ease; }
.capability-tab:hover,.capability-tab:focus-visible { color:#075f83; transform:translateX(4px); outline:none; }
.capability-tab.is-active { color:#073c65; background:rgba(255,255,255,.94); border-color:rgba(90,203,216,.48); box-shadow:0 12px 28px rgba(7,75,105,.11),0 0 0 3px rgba(0,215,235,.05); transform:translateX(6px); }
.capability-tab-number { display:grid; place-items:center; width:38px; height:38px; color:#26788d; background:#e7f7fa; border:1px solid #bae4e9; border-radius:12px; font-size:11px; font-weight:800; transition:color .3s ease,background .3s ease,box-shadow .3s ease; }
.capability-tab.is-active .capability-tab-number { color:#073b5c; background:linear-gradient(145deg,#58dce8,#87eea1); border-color:transparent; box-shadow:0 6px 14px rgba(0,185,204,.22); }
.capability-tab b,.capability-tab small { display:block; }
.capability-tab b { font-size:clamp(13px,1.05vw,16px); line-height:1.2; }
.capability-tab small { margin-top:5px; color:#7690a1; font-size:10px; }
.capability-tab svg { width:16px; height:16px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; opacity:.45; transition:opacity .3s ease,transform .3s ease; }
.capability-tab.is-active svg { opacity:1; transform:translateX(2px); }

.capability-detail { display:grid; grid-template-columns:minmax(270px,.82fr) minmax(420px,1.18fr); min-width:0; }
.capability-copy { position:relative; z-index:4; align-self:center; padding:clamp(28px,4vw,62px) clamp(25px,3.8vw,56px); }
.capability-label { margin:0 0 13px; color:#0787a1; font-size:11px; font-weight:800; letter-spacing:.14em; }
.capability-copy h3 { margin:0; color:#082f5d; font-size:clamp(28px,3.1vw,46px); line-height:1.08; letter-spacing:-.035em; }
.capability-description { margin:17px 0 0; color:#5e7689; font-size:clamp(13px,1.08vw,16px); line-height:1.62; }
.capability-points { display:grid; gap:10px; margin:23px 0 0; padding:0; list-style:none; }
.capability-points li { position:relative; padding-left:22px; color:#2f566d; font-size:clamp(12px,.94vw,14px); line-height:1.4; }
.capability-points li::before { content:""; position:absolute; top:.38em; left:0; width:9px; height:9px; background:#77eb25; border:2px solid #fff; border-radius:50%; box-shadow:0 0 0 2px rgba(61,187,128,.2),0 0 9px rgba(119,235,37,.42); }
.capability-link { display:inline-flex; align-items:center; gap:8px; min-height:43px; margin-top:26px; padding:0 15px; color:#fff; background:linear-gradient(135deg,#073f70,#087393); border:1px solid #22bed1; border-radius:11px; font-size:12px; font-weight:750; text-decoration:none; box-shadow:0 9px 20px rgba(7,62,96,.17); transition:transform .25s ease,box-shadow .25s ease; }
.capability-link svg { width:16px; height:16px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.capability-link:hover,.capability-link:focus-visible { transform:translateY(-3px); box-shadow:0 13px 28px rgba(7,62,96,.24),0 0 0 4px rgba(0,215,235,.08); outline:none; }

.capability-visual { --cap-primary:#0c8bce; --cap-secondary:#00d7eb; position:relative; min-width:0; overflow:hidden; background:radial-gradient(circle at 48% 46%,rgba(0,215,235,.12),transparent 33%),linear-gradient(150deg,#e8f7fb,#f9fcfd 58%,#eaf7f3); border-left:1px solid rgba(183,218,228,.7); isolation:isolate; transition:background .5s ease; }
.capability-lab[data-active="hardware"] .capability-visual { --cap-primary:#07548b; --cap-secondary:#77eb25; background:radial-gradient(circle at 48% 46%,rgba(119,235,37,.11),transparent 34%),linear-gradient(150deg,#e5f5fa,#f8fcfd 58%,#eff9e9); }
.capability-lab[data-active="industrial"] .capability-visual { --cap-primary:#08798b; --cap-secondary:#42d89c; background:radial-gradient(circle at 48% 46%,rgba(58,217,162,.13),transparent 34%),linear-gradient(150deg,#e5f7f5,#f9fcfd 58%,#eaf8ef); }
.capability-lab[data-active="enterprise"] .capability-visual { --cap-primary:#244f93; --cap-secondary:#6f95ee; background:radial-gradient(circle at 48% 46%,rgba(90,132,224,.13),transparent 34%),linear-gradient(150deg,#e8f1fb,#f9fcfd 58%,#eef4fb); }
.capability-grid { position:absolute; inset:0; z-index:-2; opacity:.32; background-image:linear-gradient(rgba(14,130,158,.1) 1px,transparent 1px),linear-gradient(90deg,rgba(14,130,158,.1) 1px,transparent 1px); background-size:34px 34px; mask-image:radial-gradient(ellipse,#000,transparent 72%); }
.capability-map { position:absolute; z-index:0; inset:9% 3%; width:94%; height:82%; overflow:visible; filter:drop-shadow(0 0 7px color-mix(in srgb,var(--cap-secondary) 50%,transparent)); }
.capability-map-base,.capability-map-light { fill:none; stroke-linecap:round; }
.capability-map-base { stroke:rgba(13,137,165,.17); stroke-width:2; }
.capability-map-light { stroke:var(--cap-secondary); stroke-width:3; stroke-dasharray:.14 .86; stroke-dashoffset:1; opacity:.92; }
.capability-visual.is-switching .capability-map-light { animation:capability-flow 1.15s cubic-bezier(.4,0,.2,1) both; }
.capability-node { position:absolute; z-index:4; display:flex; flex-direction:column; align-items:center; color:#17465f; text-align:center; transition:transform .55s cubic-bezier(.16,1,.3,1); }
.capability-node b { margin-top:8px; font-size:10px; }
.capability-source { left:4%; bottom:23%; }
.source-screen { display:flex; align-items:center; justify-content:center; gap:4px; width:89px; height:62px; background:linear-gradient(145deg,#fff,#cde7ee); border:5px solid #17465b; border-radius:8px; box-shadow:0 15px 26px rgba(7,59,83,.2); }
.source-screen::after { content:""; position:absolute; top:63px; width:34px; height:7px; background:#8aa3ad; border-radius:0 0 8px 8px; }
.source-screen i { width:16px; height:27px; background:linear-gradient(180deg,var(--cap-primary),var(--cap-secondary)); border-radius:3px; opacity:.8; }
.capability-result { right:4%; top:18%; min-width:132px; padding:13px 14px; background:rgba(255,255,255,.9); border:1px solid rgba(121,204,215,.68); border-radius:13px; box-shadow:0 13px 27px rgba(7,66,91,.13); backdrop-filter:blur(10px); }
.capability-result b { margin:0; font-size:9px; }
.capability-result small { margin-top:4px; color:#7391a0; font-size:6px; }
.result-dot { width:9px; height:9px; margin-bottom:5px; background:var(--cap-secondary); border:2px solid #fff; border-radius:50%; box-shadow:0 0 0 4px color-mix(in srgb,var(--cap-secondary) 20%,transparent),0 0 12px var(--cap-secondary); }
.capability-hub { position:absolute; z-index:5; left:48%; top:52%; width:min(45%,310px); aspect-ratio:1.1; transform:translate(-50%,-50%); }
.hub-product { position:absolute; z-index:4; right:-2%; bottom:-2%; width:54%; margin:0; opacity:0; transform:translateY(12px) scale(.86); transition:opacity .5s ease,transform .55s cubic-bezier(.16,1,.3,1); }
.hub-product img { display:block; width:100%; height:auto; filter:drop-shadow(0 16px 16px rgba(0,32,48,.28)); }
.hub-screen { position:absolute; z-index:3; top:13%; left:5%; display:flex; flex-direction:column; width:75%; height:57%; padding:17px; color:#e8faff; background:linear-gradient(145deg,#073b5e,#081b33); border:6px solid #183b4d; border-bottom-width:11px; border-radius:11px; box-shadow:0 23px 40px rgba(1,41,60,.3); }
.hub-screen::after { content:""; position:absolute; top:100%; left:42%; width:18%; height:25%; background:linear-gradient(90deg,#8a9ca4,#d6e0e4 48%,#8799a1); clip-path:polygon(20% 0,80% 0,100% 100%,0 100%); }
.hub-screen span { color:#6fe1ea; font-size:7px; font-weight:800; letter-spacing:.12em; }
.hub-screen b { margin:8px 0 17px; font-size:14px; }
.hub-screen i { width:76%; height:5px; margin-bottom:9px; background:rgba(119,213,224,.31); border-radius:4px; }
.hub-screen i:nth-of-type(2) { width:55%; background:var(--cap-secondary); }
.hub-screen i:nth-of-type(3) { width:67%; }
.hub-signal { position:absolute; z-index:1; inset:6% 3% 7%; border:1px solid color-mix(in srgb,var(--cap-secondary) 34%,transparent); border-radius:50%; animation:hub-orbit 8s linear infinite; }
.hub-signal::before,.hub-signal::after { content:""; position:absolute; inset:12%; border:1px solid color-mix(in srgb,var(--cap-primary) 25%,transparent); border-radius:50%; transform:rotate(17deg); }
.hub-signal::after { inset:27%; transform:rotate(-13deg); }
.hub-signal i { position:absolute; width:7px; height:7px; background:var(--cap-secondary); border-radius:50%; box-shadow:0 0 11px var(--cap-secondary); }
.hub-signal i:first-child { top:8%; left:29%; }.hub-signal i:nth-child(2){right:5%;top:48%;}.hub-signal i:nth-child(3){bottom:4%;left:43%;}
.hub-name { position:absolute; z-index:7; bottom:4%; left:34%; padding:6px 12px; color:#fff; background:#07516c; border:1px solid #36d5d8; border-radius:999px; font-size:8px; font-weight:800; box-shadow:0 8px 18px rgba(4,58,78,.2); }
.capability-pulse { position:absolute; z-index:-1; left:48%; top:52%; width:45%; aspect-ratio:1; background:radial-gradient(circle,color-mix(in srgb,var(--cap-secondary) 18%,transparent),transparent 65%); border-radius:50%; transform:translate(-50%,-50%); animation:capability-breathe 3.3s ease-in-out infinite; }

.capability-lab[data-active="hardware"] .hub-product,.capability-lab[data-active="industrial"] .hub-product,.capability-lab[data-active="enterprise"] .hub-product { opacity:1; transform:translateY(0) scale(1); }
.capability-lab[data-active="software"] .hub-screen { width:85%; height:63%; }
.capability-lab[data-active="hardware"] .hub-screen { background:linear-gradient(145deg,#0b2e64,#060e20); }
.capability-lab[data-active="industrial"] .hub-screen { background:linear-gradient(145deg,#075668,#092c42); }
.capability-lab[data-active="enterprise"] .hub-screen { background:linear-gradient(145deg,#173d76,#101d3d); }
.capability-visual.is-switching .capability-source { animation:cap-node-left .55s cubic-bezier(.16,1,.3,1) both; }
.capability-visual.is-switching .capability-result { animation:cap-node-right .58s .2s cubic-bezier(.16,1,.3,1) both; }
.capability-visual.is-switching .capability-hub { animation:cap-hub-pop .62s .08s cubic-bezier(.16,1,.3,1) both; }

.scroll-reveal.is-visible .capability-header,.scroll-reveal.is-visible .capability-lab { animation:section-child-rise .76s cubic-bezier(.2,.72,.2,1) both; }
.scroll-reveal.is-visible .capability-lab { animation-delay:.13s; }

@keyframes capability-flow { from{stroke-dashoffset:1;opacity:0}18%{opacity:.95}to{stroke-dashoffset:0;opacity:.9} }
@keyframes cap-node-left { from{opacity:.25;transform:translateX(-18px) scale(.94)}to{opacity:1;transform:none} }
@keyframes cap-node-right { from{opacity:.25;transform:translateX(18px) scale(.94)}to{opacity:1;transform:none} }
@keyframes cap-hub-pop { from{opacity:.5;transform:translate(-50%,-47%) scale(.94)}to{opacity:1;transform:translate(-50%,-50%) scale(1)} }
@keyframes hub-orbit { to{transform:rotate(360deg)} }
@keyframes capability-breathe { 50%{transform:translate(-50%,-50%) scale(1.08);opacity:.68} }

@media(max-width:1050px){
  .capability-lab{grid-template-columns:1fr;}
  .capability-rail{display:grid;grid-template-columns:repeat(4,1fr);padding:16px;border-right:0;border-bottom:1px solid #d8e9ef;}
  .capability-rail::before{display:none}.capability-tab{grid-template-columns:34px 1fr;min-height:78px}.capability-tab svg{display:none}.capability-tab.is-active{transform:translateY(-3px)}.capability-tab:hover,.capability-tab:focus-visible{transform:translateY(-2px)}
  .capability-detail{min-height:520px;}
}
@media(max-width:760px){
  .capability-section{padding-inline:12px}.capability-eyebrow{font-size:10px}.capability-header h2{font-size:clamp(32px,10vw,46px)}
  .capability-lab{border-radius:24px}.capability-rail{grid-template-columns:1fr 1fr;gap:7px}.capability-tab{min-height:67px;padding:8px}.capability-tab-number{width:32px;height:32px}.capability-tab small{display:none}
  .capability-detail{grid-template-columns:1fr}.capability-copy{padding:29px 23px}.capability-visual{min-height:450px;border-left:0;border-top:1px solid rgba(183,218,228,.7)}
  .capability-source{left:3%}.capability-result{right:2%}.capability-hub{width:58%}.capability-copy h3{font-size:30px}
}
@media(prefers-reduced-motion:reduce){.hub-signal,.capability-pulse{animation:none}.capability-map-light{stroke-dashoffset:0}.capability-visual.is-switching>*{animation:none!important}}

/* Revision 8: four purpose-built visual scenes for the capability screen. */
.capability-visual {
  min-height: 100%;
  background:
    radial-gradient(circle at 48% 45%, rgba(0, 215, 235, .11), transparent 34%),
    linear-gradient(150deg, #eaf8fb, #fbfdfe 58%, #ebf8f3);
}

.capability-scene {
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(.985);
  transition:
    opacity .46s ease,
    transform .62s cubic-bezier(.16, 1, .3, 1),
    visibility 0s linear .5s;
}

.capability-lab[data-active="software"] .scene-software,
.capability-lab[data-active="hardware"] .scene-hardware,
.capability-lab[data-active="industrial"] .scene-industrial,
.capability-lab[data-active="enterprise"] .scene-enterprise {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition-delay: 0s;
}

.scene-beams {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 0 7px rgba(0, 215, 235, .52));
  pointer-events: none;
}

.scene-beams path {
  fill: none;
  stroke-linecap: round;
}

.beam-ghost {
  stroke: rgba(10, 145, 183, .17);
  stroke-width: 2;
}

.beam-active {
  stroke: #21d8df;
  stroke-width: 3;
  stroke-dasharray: .12 .88;
  stroke-dashoffset: 1;
  opacity: 0;
}

.capability-visual.is-switching .capability-scene[style],
.capability-lab[data-active="software"] .capability-visual.is-switching .beam-software,
.capability-lab[data-active="hardware"] .capability-visual.is-switching .beam-hardware-a,
.capability-lab[data-active="hardware"] .capability-visual.is-switching .beam-hardware-b,
.capability-lab[data-active="industrial"] .capability-visual.is-switching .beam-industrial-a,
.capability-lab[data-active="industrial"] .capability-visual.is-switching .beam-industrial-b,
.capability-lab[data-active="industrial"] .capability-visual.is-switching .beam-industrial-c,
.capability-lab[data-active="enterprise"] .capability-visual.is-switching .beam-enterprise-a,
.capability-lab[data-active="enterprise"] .capability-visual.is-switching .beam-enterprise-b,
.capability-lab[data-active="enterprise"] .capability-visual.is-switching .beam-enterprise-c,
.capability-lab[data-active="enterprise"] .capability-visual.is-switching .beam-enterprise-d {
  animation: capability-scene-beam 1.28s cubic-bezier(.4, 0, .2, 1) both;
}

.beam-hardware-b,
.beam-industrial-b,
.beam-enterprise-b { animation-delay: .16s !important; }
.beam-industrial-c,
.beam-enterprise-c { animation-delay: .3s !important; }
.beam-enterprise-d { animation-delay: .44s !important; }

.scene-note {
  position: absolute;
  z-index: 14;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 0 8px;
  min-width: 210px;
  padding: 11px 14px;
  color: #16465f;
  background: rgba(255, 255, 255, .91);
  border: 1px solid rgba(103, 205, 217, .68);
  border-radius: 13px;
  box-shadow: 0 14px 30px rgba(7, 61, 86, .14), inset 0 1px 0 #fff;
  backdrop-filter: blur(12px);
}

.scene-note > i {
  grid-row: 1 / 3;
  width: 9px;
  height: 9px;
  background: #77eb25;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(119, 235, 37, .14), 0 0 12px rgba(119, 235, 37, .64);
}

.scene-note span { font-size: 9px; font-weight: 800; }
.scene-note small { margin-top: 3px; color: #78909e; font-size: 6px; }

/* 01 — windowed software control */
.scene-software {
  background:
    radial-gradient(circle at 58% 43%, rgba(0, 215, 235, .13), transparent 32%),
    linear-gradient(150deg, #e9f7fb, #fafdfe 58%, #eaf7f3);
}

.software-controller {
  position: absolute;
  z-index: 6;
  left: 4.5%;
  bottom: 16%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #27536b;
  text-align: center;
}

.software-controller > span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 82px;
  height: 55px;
  background: linear-gradient(145deg, #fff, #d1e9ef);
  border: 4px solid #15455c;
  border-radius: 8px;
  box-shadow: 0 13px 25px rgba(4, 58, 81, .19);
}

.software-controller > span::after {
  content: "";
  position: absolute;
  top: 55px;
  width: 31px;
  height: 7px;
  background: #8fa6af;
  border-radius: 0 0 7px 7px;
}

.software-controller > span i {
  width: 14px;
  height: 27px;
  background: linear-gradient(180deg, #178ccb, #31dcc0);
  border-radius: 3px;
}

.software-controller b { margin-top: 9px; font-size: 8px; }
.software-controller small { margin-top: 2px; color: #76909f; font-size: 6px; }

.software-computer {
  position: absolute;
  z-index: 5;
  top: 13%;
  left: 54%;
  width: min(68%, 505px);
  aspect-ratio: 1.42;
  transform: translateX(-50%);
}

.software-monitor {
  position: relative;
  width: 100%;
  height: 78%;
  padding: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #183345, #071722);
  border: 1px solid #6a7c87;
  border-radius: 15px;
  box-shadow: 0 27px 48px rgba(4, 46, 67, .27), inset 0 0 0 2px #0d1d27;
}

.software-wallpaper {
  position: absolute;
  inset: 10px;
  overflow: hidden;
  background: linear-gradient(135deg, #0e70b5, #0fb7ca 58%, #2cd799);
  border-radius: 8px;
}

.software-wallpaper::before,
.software-wallpaper::after {
  content: "";
  position: absolute;
  width: 75%;
  height: 125%;
  border: 22px solid rgba(255,255,255,.16);
  border-radius: 50%;
  transform: rotate(-27deg);
}
.software-wallpaper::before { right: -18%; bottom: -54%; }
.software-wallpaper::after { left: -30%; top: -75%; opacity: .5; }
.software-wallpaper i { position: absolute; width: 15px; height: 15px; background: rgba(255,255,255,.88); border-radius: 3px; box-shadow: 0 0 0 1px rgba(0,65,95,.12); }
.software-wallpaper i:first-child { left: 17px; top: 20px; }.software-wallpaper i:nth-child(2){left:17px;top:48px}.software-wallpaper i:nth-child(3){left:17px;top:76px}

.software-window {
  position: absolute;
  z-index: 4;
  top: 15%;
  left: 19%;
  width: 66%;
  height: 66%;
  overflow: hidden;
  background: rgba(249, 253, 255, .97);
  border: 1px solid rgba(203, 224, 233, .95);
  border-radius: 8px;
  box-shadow: 0 15px 31px rgba(2, 39, 61, .26);
}

.software-console-reference {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.software-window-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 24px;
  padding: 0 9px;
  color: #41677c;
  background: #f5fafc;
  border-bottom: 1px solid #dae9ef;
  font-size: 6px;
}
.software-window-top span { display:flex;align-items:center;gap:5px;font-weight:800; }
.software-window-top span i { width:8px;height:8px;background:linear-gradient(145deg,#00d7eb,#77eb25);border-radius:3px; }
.software-window-top b { letter-spacing:5px; }
.software-window-body { display:grid;grid-template-columns:25% 1fr;height:calc(100% - 24px); }
.software-sidebar { padding:12px 8px;background:linear-gradient(180deg,#0c3454,#092743); }
.software-sidebar i { display:block;width:80%;height:5px;margin-bottom:13px;background:rgba(143,203,218,.3);border-radius:3px; }
.software-sidebar i:first-child { background:#35d4df; }
.software-dashboard { padding:12px;color:#234d66; }
.software-dashboard strong { font-size:9px; }.software-dashboard>small{float:right;color:#7f98a5;font-size:5px; }
.software-device-row { display:grid;grid-template-columns:8px 1fr auto;align-items:center;gap:6px;height:28px;margin-top:8px;padding:0 7px;background:#fff;border:1px solid #dfebf0;border-radius:5px;font-size:5px; }
.software-device-row>i { width:6px;height:6px;background:#77eb25;border-radius:50%;box-shadow:0 0 6px rgba(119,235,37,.6); }
.software-device-row b { color:#087ea1;font-size:5px; }
.software-taskbar { position:absolute;z-index:4;right:10px;bottom:10px;left:10px;display:flex;align-items:center;justify-content:center;gap:7px;height:15px;background:rgba(242,248,250,.88);border-radius:0 0 7px 7px; }
.software-taskbar i { width:7px;height:7px;background:#168dcc;border-radius:2px; }.software-taskbar i:nth-child(2){background:#23bd95}.software-taskbar i:nth-child(3){background:#f3bd4c}.software-taskbar i:nth-child(4){background:#fff;border:1px solid #8db3c2}
.software-cursor { position:absolute;z-index:7;top:47%;left:67%;width:0;height:0;border-top:12px solid #073f6c;border-right:7px solid transparent;filter:drop-shadow(0 2px 2px rgba(0,0,0,.25));transform:rotate(-17deg); }
.software-stand { width:17%;height:18%;margin:-1px auto 0;background:linear-gradient(90deg,#9caab1,#e5ecef 47%,#99a7ad);clip-path:polygon(20% 0,80% 0,92% 100%,8% 100%); }
.software-stand::after { content:"";display:block;position:relative;top:98%;left:-45%;width:190%;height:8px;background:linear-gradient(180deg,#dce5e8,#8e9ba1);border-radius:50% 50% 3px 3px;box-shadow:0 8px 12px rgba(5,45,70,.14); }
.software-note { top:6%;right:4%; }
.capability-lab[data-active="software"] .capability-visual.is-switching .software-window { animation:scene-window-pop .65s .16s cubic-bezier(.16,1,.3,1) both; }
.capability-lab[data-active="software"] .capability-visual.is-switching .software-cursor { animation:scene-cursor 1.2s .62s ease both; }

/* 02 — hardware console and recovery */
.scene-hardware {
  background:
    radial-gradient(circle at 50% 60%, rgba(119,235,37,.11), transparent 34%),
    radial-gradient(circle at 32% 33%, rgba(0,215,235,.1), transparent 28%),
    linear-gradient(145deg,#e8f5fa,#fbfdfe 58%,#eef9e9);
}
.scene-orbit { position:absolute;z-index:1;left:49%;bottom:7%;width:48%;aspect-ratio:1;border:1px solid rgba(25,191,195,.24);border-radius:50%;transform:translateX(-50%) rotate(-9deg); }
.scene-orbit::before,.scene-orbit::after{content:"";position:absolute;inset:13%;border:1px solid rgba(11,130,172,.18);border-radius:50%;transform:rotate(18deg)}.scene-orbit::after{inset:29%;transform:rotate(-14deg)}
.scene-orbit i{position:absolute;width:7px;height:7px;background:#77eb25;border-radius:50%;box-shadow:0 0 11px #77eb25}.scene-orbit i:first-child{top:8%;left:31%}.scene-orbit i:nth-child(2){right:5%;top:52%}.scene-orbit i:nth-child(3){bottom:4%;left:43%}
.hardware-target { position:absolute;z-index:6;left:4%;top:37%;display:flex;flex-direction:column;align-items:center;color:#345d71; }
.hardware-target-screen { width:134px;height:92px;padding:17px;color:#eaf7fa;background:linear-gradient(145deg,#173144,#091722);border:6px solid #173b4d;border-radius:9px;box-shadow:0 18px 31px rgba(4,44,63,.25); }
.hardware-target-screen span { color:#ffad69;font-size:6px;font-weight:800;letter-spacing:.1em; }.hardware-target-screen b{display:block;margin:8px 0 11px;font-size:10px}.hardware-target-screen i{display:block;width:76%;height:4px;margin-bottom:7px;background:rgba(255,162,91,.4);border-radius:3px}
.hardware-target-base{width:47px;height:20px;background:linear-gradient(90deg,#95a5ac,#d9e1e4 48%,#91a1a8);clip-path:polygon(22% 0,78% 0,100% 100%,0 100%)}.hardware-target>small{margin-top:5px;font-size:7px;font-weight:700}
.hardware-product { position:absolute;z-index:8;left:48%;bottom:4%;width:min(37%,245px);margin:0;text-align:center;transform:translateX(-50%); }
.hardware-product img{display:block;width:100%;filter:drop-shadow(0 18px 17px rgba(0,31,45,.34))}.hardware-product figcaption{display:inline-flex;align-items:center;gap:5px;margin-top:-12px;padding:5px 10px;color:#eafaff;background:rgba(5,57,73,.92);border:1px solid rgba(61,216,210,.62);border-radius:8px;font-size:6px;font-weight:800;box-shadow:0 8px 16px rgba(0,35,48,.21)}.hardware-product figcaption i{width:6px;height:6px;background:#77eb25;border-radius:50%;box-shadow:0 0 8px #77eb25}
.hardware-recovery-panel { position:absolute;z-index:7;top:14%;right:4%;width:min(35%,210px);padding:13px;color:#dff8fb;background:linear-gradient(145deg,rgba(5,48,83,.97),rgba(5,82,94,.95));border:1px solid rgba(49,218,222,.75);border-radius:13px;box-shadow:0 17px 34px rgba(1,35,52,.23),0 0 0 3px rgba(0,215,235,.055); }
.recovery-panel-top{display:flex;align-items:center;gap:6px;padding-bottom:9px;border-bottom:1px solid rgba(139,226,232,.18);font-size:6px}.recovery-panel-top i{width:8px;height:8px;background:linear-gradient(145deg,#00d7eb,#77eb25);border-radius:3px}.hardware-recovery-panel>strong{display:block;margin:12px 0 9px;font-size:11px}.recovery-option{display:grid;grid-template-columns:8px 1fr;align-items:center;gap:6px;margin-top:6px;padding:7px;color:#9acbd4;background:rgba(255,255,255,.04);border:1px solid transparent;border-radius:6px;font-size:6px}.recovery-option i{width:6px;height:6px;background:#4d8898;border-radius:50%}.recovery-option.is-selected{color:#e9ffff;border-color:rgba(77,221,221,.35);background:rgba(42,201,200,.11)}.recovery-option.is-selected i{background:#77eb25;box-shadow:0 0 7px #77eb25}
.hardware-note{right:5%;bottom:7%}.capability-lab[data-active="hardware"] .capability-visual.is-switching .hardware-product{animation:hardware-product-rise .7s .2s cubic-bezier(.16,1,.3,1) both}.capability-lab[data-active="hardware"] .capability-visual.is-switching .hardware-recovery-panel{animation:scene-note-pop .58s .7s cubic-bezier(.16,1,.3,1) both}

/* 03 — industrial remote operations; deliberately no product hardware. */
.scene-industrial { background:#dceff2; }
.industrial-scene-photo { display:none; }
.industrial-scene-photo::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(232,249,251,.08),rgba(3,59,79,.13)),radial-gradient(circle at 50% 47%,transparent 25%,rgba(231,249,251,.24) 100%)}
.industrial-hud { position:absolute;z-index:7;top:7%;left:7%;width:min(39%,235px);overflow:hidden;color:#dff8fb;background:linear-gradient(145deg,rgba(5,50,80,.94),rgba(4,93,102,.91));border:1px solid rgba(43,220,218,.72);border-radius:13px;box-shadow:0 16px 32px rgba(1,34,50,.22);backdrop-filter:blur(7px)}
.industrial-hud-top{display:flex;align-items:center;gap:6px;height:28px;padding:0 10px;border-bottom:1px solid rgba(126,225,230,.18);font-size:6px}.industrial-hud-top i{width:7px;height:7px;background:#77eb25;border-radius:50%;box-shadow:0 0 7px #77eb25}.industrial-hud-top b{margin-left:auto;color:#87e8d5;font-size:5px}.industrial-hud-body{padding:13px}.industrial-hud-body strong,.industrial-hud-body small{display:block}.industrial-hud-body strong{font-size:11px}.industrial-hud-body small{margin-top:4px;color:#9fced5;font-size:6px}.industrial-hud-body div{display:flex;gap:5px;margin-top:13px}.industrial-hud-body div i{width:20%;height:26px;background:linear-gradient(180deg,rgba(0,215,235,.45),rgba(119,235,37,.35));border:1px solid rgba(141,235,230,.2);border-radius:4px}
.factory-node { position:absolute;z-index:9;display:flex;flex-direction:column;align-items:center;color:#17465c;text-align:center;text-shadow:0 1px 2px rgba(255,255,255,.9); }
.factory-node>span{display:grid;place-items:center;width:77px;height:58px;background:linear-gradient(145deg,rgba(249,254,255,.96),rgba(185,222,227,.94));border:2px solid rgba(10,116,139,.75);border-radius:9px;box-shadow:0 13px 25px rgba(0,40,56,.21),0 0 0 2px rgba(255,255,255,.44)}.factory-node>strong{margin-top:6px;font-size:7px}.factory-node>small{margin-top:2px;color:#277382;font-size:6px}
.factory-plc{left:43%;top:4%}.factory-hmi{left:5%;bottom:9%}.factory-cnc{right:4%;bottom:10%}.factory-sensor{right:8%;top:9%}
.factory-plc>span{grid-template-columns:repeat(3,8px);gap:5px}.factory-plc>span b{grid-column:1/4;font-size:9px}.factory-plc>span i{width:8px;height:20px;background:#187c92;border-radius:2px}.factory-plc>span i:nth-of-type(2){background:#77eb25}
.factory-hmi>span{grid-template-columns:1fr 1fr;gap:5px;padding:8px}.factory-hmi>span i{width:100%;height:19px;background:#157b91;border-radius:3px}.factory-hmi>span i:nth-child(2){background:#45b9a7}.factory-hmi>span b{grid-column:1/3;width:100%;height:6px;background:#8ab1ba;border-radius:2px}
.factory-cnc>span{grid-template-columns:1fr 1fr;gap:5px;padding:8px}.factory-cnc>span b{grid-column:1/3;width:45px;height:23px;background:#287788;border:5px solid #94b5ba;border-radius:3px}.factory-cnc>span i{width:19px;height:7px;background:#6f979f;border-radius:2px}
.factory-sensor>span{position:relative}.factory-sensor>span i{width:17px;height:17px;border:3px solid #19aab2;border-radius:50%;box-shadow:0 0 0 7px rgba(0,211,215,.1)}.factory-sensor>span b{position:absolute;width:43px;height:43px;border-top:2px solid #34cdb5;border-right:2px solid #34cdb5;border-radius:50%;transform:rotate(-45deg)}
.industrial-note{left:50%;bottom:5%;transform:translateX(-50%);color:#eaffff;background:linear-gradient(145deg,rgba(5,53,78,.94),rgba(6,93,98,.92));border-color:rgba(55,222,211,.72)}.industrial-note small{color:#9de2db}
.capability-lab[data-active="industrial"] .capability-visual.is-switching .factory-node{animation:factory-node-in .58s cubic-bezier(.16,1,.3,1) both}.capability-lab[data-active="industrial"] .capability-visual.is-switching .factory-plc{animation-delay:.13s}.capability-lab[data-active="industrial"] .capability-visual.is-switching .factory-cnc{animation-delay:.27s}.capability-lab[data-active="industrial"] .capability-visual.is-switching .factory-sensor{animation-delay:.4s}

/* 04 — governed enterprise environment. */
.scene-enterprise { background:radial-gradient(circle at 50% 48%,rgba(73,116,215,.13),transparent 34%),linear-gradient(145deg,#e9f2fb,#fbfdfe 58%,#eef4fb); }
.enterprise-console{position:absolute;z-index:8;top:28%;left:50%;width:min(46%,305px);height:42%;overflow:hidden;background:#f8fbfd;border:5px solid #183d58;border-radius:12px;box-shadow:0 23px 42px rgba(5,49,76,.25),0 0 0 2px rgba(99,147,221,.13);transform:translateX(-50%)}
.enterprise-console-top{display:flex;align-items:center;gap:6px;height:28px;padding:0 9px;color:#d9edf4;background:linear-gradient(90deg,#123c65,#1e4d87);font-size:6px}.enterprise-console-top i{width:8px;height:8px;background:linear-gradient(145deg,#00d7eb,#77eb25);border-radius:3px}.enterprise-console-top b{margin-left:auto;color:#9debba;font-size:5px}
.enterprise-console-body{display:grid;grid-template-columns:22% 1fr;height:calc(100% - 28px)}.enterprise-side{padding:12px 8px;background:#eaf2f7}.enterprise-side i{display:block;width:85%;height:5px;margin-bottom:12px;background:#92b2c1;border-radius:3px}.enterprise-side i:first-child{background:#347dc2}.enterprise-main{padding:13px;color:#234e69}.enterprise-main>strong,.enterprise-main>small{display:block}.enterprise-main>strong{font-size:10px}.enterprise-main>small{margin-top:3px;color:#8196a3;font-size:5px}.enterprise-metrics{display:grid;grid-template-columns:repeat(3,1fr);gap:6px;margin-top:13px}.enterprise-metrics i{height:34px;background:linear-gradient(145deg,#e1f5f7,#eef7fc);border:1px solid #c9e2e9;border-radius:5px}.enterprise-audit{margin-top:10px;padding:8px;background:#fff;border:1px solid #dce9ee;border-radius:6px}.enterprise-audit b{display:block;width:84%;height:4px;margin-bottom:6px;background:#9fc0ce;border-radius:3px}.enterprise-audit b:nth-child(2){width:63%;background:#52c89f}.enterprise-audit b:nth-child(3){width:75%}
.enterprise-node{position:absolute;z-index:9;display:flex;flex-direction:column;align-items:center;min-width:125px;padding:11px 12px;color:#284f6a;background:rgba(255,255,255,.91);border:1px solid rgba(111,162,215,.54);border-radius:13px;box-shadow:0 13px 27px rgba(8,57,92,.13);text-align:center;backdrop-filter:blur(10px)}.enterprise-node>b{margin-top:7px;font-size:8px}.enterprise-node>small{margin-top:3px;color:#7d91a0;font-size:6px}.enterprise-users{left:3%;top:9%}.enterprise-roles{left:3%;bottom:9%}.enterprise-audit-node{right:3%;top:8%}.enterprise-deploy{right:3%;bottom:8%}
.user-stack{position:relative;width:51px;height:22px}.user-stack i{position:absolute;top:0;width:18px;height:18px;background:linear-gradient(145deg,#5588d8,#31c7d7);border:2px solid #fff;border-radius:50%;box-shadow:0 4px 9px rgba(28,84,131,.17)}.user-stack i:first-child{left:0}.user-stack i:nth-child(2){left:16px;background:linear-gradient(145deg,#2cb7c8,#58daac)}.user-stack i:nth-child(3){left:32px;background:linear-gradient(145deg,#657fce,#8e9ee3)}
.role-shield{position:relative;width:30px;height:32px;background:linear-gradient(145deg,#3978c6,#6c91e7);clip-path:polygon(50% 0,94% 16%,86% 69%,50% 100%,14% 69%,6% 16%)}.role-shield i{position:absolute;top:10px;left:11px;width:8px;height:7px;border-right:2px solid #fff;border-bottom:2px solid #fff;transform:rotate(45deg)}
.audit-clock{position:relative;width:31px;height:31px;border:3px solid #3d87c7;border-radius:50%}.audit-clock i{position:absolute;left:13px;top:6px;width:2px;height:9px;background:#3d87c7;transform-origin:bottom}.audit-clock b{position:absolute;left:13px;top:14px;width:7px;height:2px;background:#3d87c7}
.deploy-cloud{position:relative;width:43px;height:27px;border:3px solid #3f84c6;border-radius:20px;border-bottom-color:transparent}.deploy-cloud::after{content:"";position:absolute;left:10px;bottom:-4px;width:18px;border-bottom:3px solid #3f84c6}.deploy-cloud i{position:absolute;left:17px;top:9px;width:8px;height:8px;border-top:2px solid #4bd09d;border-right:2px solid #4bd09d;transform:rotate(-45deg)}
.enterprise-note{left:50%;bottom:5%;transform:translateX(-50%)}.capability-lab[data-active="enterprise"] .capability-visual.is-switching .enterprise-node{animation:enterprise-node-in .58s cubic-bezier(.16,1,.3,1) both}.capability-lab[data-active="enterprise"] .capability-visual.is-switching .enterprise-roles{animation-delay:.12s}.capability-lab[data-active="enterprise"] .capability-visual.is-switching .enterprise-audit-node{animation-delay:.24s}.capability-lab[data-active="enterprise"] .capability-visual.is-switching .enterprise-deploy{animation-delay:.36s}

@keyframes capability-scene-beam { 0%{stroke-dashoffset:1;opacity:0}18%{opacity:.98}82%{opacity:.98}100%{stroke-dashoffset:0;opacity:.82} }
@keyframes scene-window-pop { from{opacity:.25;transform:translateY(15px) scale(.92)}to{opacity:1;transform:none} }
@keyframes scene-cursor { 0%{transform:translate(-22px,18px) rotate(-17deg);opacity:0}30%{opacity:1}100%{transform:translate(0,0) rotate(-17deg);opacity:1} }
@keyframes hardware-product-rise { from{opacity:.3;transform:translateX(-50%) translateY(18px) scale(.9)}to{opacity:1;transform:translateX(-50%) translateY(0) scale(1)} }
@keyframes scene-note-pop { from{opacity:0;transform:translateY(10px) scale(.94)}to{opacity:1;transform:none} }
@keyframes factory-node-in { from{opacity:.25;transform:translateY(12px) scale(.9);filter:brightness(.8)}to{opacity:1;transform:none;filter:brightness(1)} }
@keyframes enterprise-node-in { from{opacity:.2;transform:scale(.87);filter:blur(2px)}to{opacity:1;transform:scale(1);filter:blur(0)} }

@media (max-width: 1150px) {
  .scene-note { min-width: 180px; }
  .hardware-recovery-panel { width: 32%; }
  .enterprise-node { min-width: 110px; padding-inline: 8px; }
}

@media (max-width: 760px) {
  .capability-visual { min-height: 500px; }
  .software-computer { top: 18%; left: 56%; width: 84%; }
  .software-controller { left: 2%; bottom: 11%; transform: scale(.82); }
  .software-note { top: 4%; right: 3%; }
  .hardware-target { left: 1%; transform: scale(.78); transform-origin:left center; }
  .hardware-product { left: 50%; width: 42%; }
  .hardware-recovery-panel { top: 9%; right: 2%; width: 42%; }
  .hardware-note { right: 2%; bottom: 4%; }
  .industrial-hud { left: 3%; width: 48%; }
  .factory-node { transform: scale(.82); }
  .factory-plc { left: 38%; }.factory-hmi{left:0}.factory-cnc{right:0}.factory-sensor{right:1%}
  .industrial-note,.enterprise-note { min-width: 245px; }
  .enterprise-console { width: 58%; }
  .enterprise-node { min-width: 96px; transform: scale(.83); }
  .enterprise-users,.enterprise-roles { left:0 }.enterprise-audit-node,.enterprise-deploy{right:0}
}

@media (prefers-reduced-motion: reduce) {
  .capability-scene,
  .beam-active,
  .software-window,
  .software-cursor,
  .hardware-product,
  .hardware-recovery-panel,
  .factory-node,
  .enterprise-node { animation:none!important;transition:none!important; }
  .beam-active { stroke-dashoffset:0;opacity:.84; }
}

/* Revision 9: deepen the industrial digital-twin treatment without baking UI into the photo. */
.industrial-scene-photo {
  filter: saturate(.62) contrast(1.03) brightness(.92);
}

.industrial-scene-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(28, 213, 222, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 213, 222, .09) 1px, transparent 1px),
    linear-gradient(112deg, rgba(3, 67, 91, .18), transparent 45%, rgba(0, 215, 235, .08));
  background-size: 34px 34px, 34px 34px, 100% 100%;
  mix-blend-mode: multiply;
  opacity: .62;
}

.industrial-scene-photo::after {
  background:
    linear-gradient(180deg, rgba(223, 250, 252, .12), rgba(2, 55, 78, .22)),
    radial-gradient(circle at 50% 47%, transparent 21%, rgba(217, 249, 251, .28) 100%),
    linear-gradient(90deg, rgba(5, 113, 139, .13), transparent 48%, rgba(47, 218, 187, .1));
}

.scene-industrial::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: -18%;
  bottom: -18%;
  left: -28%;
  width: 22%;
  background: linear-gradient(90deg, transparent, rgba(108, 243, 232, .18), transparent);
  filter: blur(3px);
  transform: skewX(-12deg);
  pointer-events: none;
}

.capability-lab[data-active="industrial"] .capability-visual.is-switching .scene-industrial::after {
  animation: industrial-scan 1.55s .08s cubic-bezier(.4, 0, .2, 1) both;
}

.factory-node > span {
  background: linear-gradient(145deg, rgba(249, 254, 255, .98), rgba(173, 221, 228, .97));
  border-color: rgba(7, 120, 145, .9);
  box-shadow: 0 13px 25px rgba(0, 40, 56, .25), 0 0 0 2px rgba(255,255,255,.54), 0 0 22px rgba(19, 211, 211, .18);
}

@keyframes industrial-scan {
  from { left: -28%; opacity: 0; }
  14% { opacity: 1; }
  82% { opacity: .9; }
  to { left: 112%; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .scene-industrial::after { display: none; }
}

/* Revision 10: code-native industrial digital twin — no photographic background. */
.scene-industrial {
  background:
    radial-gradient(circle at 49% 52%, rgba(38, 209, 202, .17), transparent 35%),
    radial-gradient(circle at 85% 13%, rgba(119, 235, 37, .08), transparent 24%),
    linear-gradient(145deg, #edfafd, #f9fdfe 50%, #e1f5f0);
}

.industrial-digital-twin {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.industrial-digital-twin .factory-flow-line {
  stroke-dasharray: .1 .9;
  stroke-dashoffset: 1;
  opacity: .9;
  filter: drop-shadow(0 0 5px rgba(0, 215, 235, .72));
}

.capability-lab[data-active="industrial"] .capability-visual.is-switching .factory-flow-line {
  animation: factory-data-flow 1.7s .32s cubic-bezier(.4, 0, .2, 1) both;
}

.capability-lab[data-active="industrial"] .capability-visual.is-switching .factory-cabinet-illustration,
.capability-lab[data-active="industrial"] .capability-visual.is-switching .factory-conveyor,
.capability-lab[data-active="industrial"] .capability-visual.is-switching .factory-robot {
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: factory-asset-rise .72s cubic-bezier(.16, 1, .3, 1) both;
}

.capability-lab[data-active="industrial"] .capability-visual.is-switching .factory-conveyor { animation-delay: .12s; }
.capability-lab[data-active="industrial"] .capability-visual.is-switching .factory-robot { animation-delay: .22s; }

.capability-lab[data-active="industrial"] .cabinet-modules circle,
.capability-lab[data-active="industrial"] .factory-data-points circle {
  animation: factory-status-pulse 1.8s ease-in-out infinite;
}

.capability-lab[data-active="industrial"] .cabinet-modules circle:nth-of-type(2),
.capability-lab[data-active="industrial"] .factory-data-points circle:nth-of-type(2) { animation-delay: .32s; }
.capability-lab[data-active="industrial"] .cabinet-modules circle:nth-of-type(3),
.capability-lab[data-active="industrial"] .factory-data-points circle:nth-of-type(3) { animation-delay: .64s; }

.capability-lab[data-active="industrial"] .conveyor-packages {
  animation: conveyor-packages 2.8s ease-in-out infinite;
}

.capability-lab[data-active="industrial"] .factory-robot {
  transform-box: fill-box;
  transform-origin: 62% 88%;
  animation-name: factory-robot-rise, robot-maintenance;
  animation-duration: .72s, 4.5s;
  animation-delay: .22s, 1.1s;
  animation-timing-function: cubic-bezier(.16,1,.3,1), ease-in-out;
  animation-fill-mode: both, none;
  animation-iteration-count: 1, infinite;
}

.industrial-hud {
  top: 6%;
  left: 5%;
  width: min(36%, 218px);
}

.factory-plc { left: 44%; top: 4%; }
.factory-sensor { right: 5%; top: 10%; }
.factory-hmi { left: 4%; bottom: 8%; }
.factory-cnc { right: 3%; bottom: 9%; }

@keyframes factory-data-flow {
  from { stroke-dashoffset: 1; opacity: 0; }
  16% { opacity: 1; }
  to { stroke-dashoffset: 0; opacity: .9; }
}

@keyframes factory-asset-rise {
  from { opacity: 0; transform: translateY(18px) scale(.94); }
  to { opacity: 1; transform: none; }
}

@keyframes factory-robot-rise {
  from { opacity: 0; transform: translateY(18px) scale(.94); }
  to { opacity: 1; transform: none; }
}

@keyframes factory-status-pulse {
  50% { opacity: .45; transform: scale(.74); }
}

@keyframes conveyor-packages {
  50% { transform: translate(12px, 6px); }
}

@keyframes robot-maintenance {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(-2.4deg); }
}

@media (max-width: 760px) {
  .industrial-digital-twin { transform: scale(1.06); transform-origin: center center; }
  .industrial-hud { left: 3%; width: 45%; }
}

@media (prefers-reduced-motion: reduce) {
  .industrial-digital-twin *,
  .factory-flow-line { animation: none !important; }
  .factory-flow-line { stroke-dashoffset: 0; }
}

/* Revision 11: one visual language across all four capability scenes. */
.scene-software,
.scene-hardware,
.scene-enterprise {
  background:
    radial-gradient(circle at 49% 52%, rgba(33, 201, 208, .14), transparent 35%),
    radial-gradient(circle at 86% 12%, rgba(119, 235, 37, .07), transparent 24%),
    linear-gradient(145deg, #eefafd, #fbfdfe 52%, #e7f5f0);
}

.scene-enterprise {
  background:
    radial-gradient(circle at 49% 52%, rgba(78, 132, 207, .13), transparent 35%),
    radial-gradient(circle at 86% 12%, rgba(0, 215, 235, .07), transparent 24%),
    linear-gradient(145deg, #eef6fc, #fbfdfe 52%, #e7f1fa);
}

.layer-digital-twin {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.scene-data-card {
  position: absolute;
  z-index: 10;
  display: flex;
  flex-direction: column;
  min-width: 164px;
  padding: 12px 14px;
  color: #eaffff;
  background: linear-gradient(145deg, rgba(5, 53, 80, .96), rgba(7, 102, 108, .94));
  border: 1px solid rgba(55, 222, 211, .72);
  border-radius: 13px;
  box-shadow: 0 15px 30px rgba(1, 38, 55, .18), 0 0 0 3px rgba(0, 215, 235, .045);
  backdrop-filter: blur(9px);
}

.scene-data-card::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  width: 7px;
  height: 7px;
  background: #77eb25;
  border: 2px solid rgba(255,255,255,.9);
  border-radius: 50%;
  box-shadow: 0 0 9px #77eb25;
}

.scene-data-card span,
.scene-data-card strong,
.scene-data-card small { display: block; padding-left: 14px; }
.scene-data-card span { color: #8ee8e3; font-size: 6px; font-weight: 800; letter-spacing: .12em; }
.scene-data-card strong { margin-top: 7px; color: #fff; font-size: 10px; }
.scene-data-card small { margin-top: 4px; color: #a5d4d7; font-size: 6px; }

.software-card-devices { top: 6%; left: 4%; }
.software-card-support { top: 7%; right: 4%; }
.software-note { top: auto; right: 5%; bottom: 5%; }

.hardware-card-power { top: 6%; left: 4%; }
.hardware-card-recovery { top: 6%; right: 4%; }
.hardware-note { right: 4%; bottom: 4%; }
.hardware-product-v2 {
  z-index: 9;
  left: 50%;
  bottom: 2.5%;
  width: min(31%, 205px);
}
.hardware-product-v2 img { filter: drop-shadow(0 15px 14px rgba(0,31,45,.28)); }
.hardware-product-v2 figcaption { margin-top: -8px; }

.enterprise-card-roles { top: 6%; left: 3%; }
.enterprise-card-audit { top: 6%; right: 3%; }
.enterprise-card-deploy { right: 3%; bottom: 18%; }
.enterprise-note { left: 50%; bottom: 4%; transform: translateX(-50%); }

.software-link,
.hardware-link,
.enterprise-link {
  stroke-dasharray: .11 .89;
  stroke-dashoffset: 1;
  opacity: .9;
  filter: drop-shadow(0 0 5px rgba(0, 215, 235, .72));
}

.capability-lab[data-active="software"] .capability-visual.is-switching .software-link,
.capability-lab[data-active="hardware"] .capability-visual.is-switching .hardware-link,
.capability-lab[data-active="enterprise"] .capability-visual.is-switching .enterprise-link {
  animation: layer-link-flow 1.35s .28s cubic-bezier(.4, 0, .2, 1) both;
}

.capability-lab[data-active="software"] .capability-visual.is-switching .software-workstation,
.capability-lab[data-active="software"] .capability-visual.is-switching .software-phone,
.capability-lab[data-active="software"] .capability-visual.is-switching .software-laptop,
.capability-lab[data-active="hardware"] .capability-visual.is-switching .failed-workstation,
.capability-lab[data-active="hardware"] .capability-visual.is-switching .bios-console,
.capability-lab[data-active="enterprise"] .capability-visual.is-switching .enterprise-control-center,
.capability-lab[data-active="enterprise"] .capability-visual.is-switching .enterprise-team,
.capability-lab[data-active="enterprise"] .capability-visual.is-switching .enterprise-private-cloud {
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: layer-asset-rise .68s cubic-bezier(.16,1,.3,1) both;
}

.capability-lab[data-active="software"] .capability-visual.is-switching .software-phone,
.capability-lab[data-active="hardware"] .capability-visual.is-switching .bios-console,
.capability-lab[data-active="enterprise"] .capability-visual.is-switching .enterprise-team { animation-delay: .12s; }
.capability-lab[data-active="software"] .capability-visual.is-switching .software-laptop,
.capability-lab[data-active="enterprise"] .capability-visual.is-switching .enterprise-private-cloud { animation-delay: .22s; }

.capability-lab[data-active="software"] .capability-visual.is-switching .scene-data-card,
.capability-lab[data-active="hardware"] .capability-visual.is-switching .scene-data-card,
.capability-lab[data-active="enterprise"] .capability-visual.is-switching .scene-data-card {
  animation: scene-note-pop .58s .5s cubic-bezier(.16,1,.3,1) both;
}

/* Industrial information should label every tile instead of leaving empty boxes. */
.industrial-hud-body div i {
  position: relative;
  display: grid;
  place-items: center;
  height: 30px;
  color: #eaffff;
  font-size: 6px;
  font-style: normal;
  font-weight: 800;
}
.industrial-hud-body div i::after { content: attr(data-metric); }

/* Status points belong to devices; remove free-floating decorative balls. */
.factory-data-points { display: none; }
.capability-lab[data-active="industrial"] .cabinet-modules circle { animation: factory-status-pulse 1.8s ease-in-out infinite; }

/* Products travel in the actual belt direction: upper-right toward lower-left. */
.capability-lab[data-active="industrial"] .conveyor-packages { animation: none; }
.capability-lab[data-active="industrial"] .conveyor-package {
  transform-box: fill-box;
  transform-origin: center;
  animation: conveyor-travel 4.4s linear infinite;
}
.capability-lab[data-active="industrial"] .package-b { animation-delay: -2.2s; }

/* The arm follows the belt cycle instead of floating independently. */
.capability-lab[data-active="industrial"] .factory-robot {
  animation: robot-service-cycle 4.4s ease-in-out infinite;
}

.capability-lab[data-active="industrial"] .capability-visual.is-switching .factory-robot {
  animation-name: factory-robot-rise, robot-service-cycle;
  animation-duration: .72s, 4.4s;
  animation-delay: .22s, 0s;
  animation-timing-function: cubic-bezier(.16,1,.3,1), ease-in-out;
  animation-fill-mode: both, none;
  animation-iteration-count: 1, infinite;
}

@keyframes layer-link-flow {
  from { stroke-dashoffset: 1; opacity: 0; }
  18% { opacity: 1; }
  to { stroke-dashoffset: 0; opacity: .9; }
}
@keyframes layer-asset-rise {
  from { opacity: 0; transform: translateY(18px) scale(.94); }
  to { opacity: 1; transform: none; }
}
@keyframes conveyor-travel {
  0% { transform: translate(18px, -10px); opacity: 0; }
  12% { opacity: 1; }
  82% { opacity: 1; }
  100% { transform: translate(-30px, 16px); opacity: 0; }
}
@keyframes robot-service-cycle {
  0%, 28%, 72%, 100% { transform: rotate(0deg); }
  42%, 58% { transform: rotate(-3deg); }
}

@media (max-width: 760px) {
  .layer-digital-twin { transform: scale(1.06); transform-origin: center center; }
  .scene-data-card { min-width: 138px; padding: 9px 10px; }
  .scene-data-card strong { font-size: 8px; }
  .scene-data-card small { font-size: 5px; }
  .software-card-devices,.hardware-card-power,.enterprise-card-roles { left: 2%; }
  .software-card-support,.hardware-card-recovery,.enterprise-card-audit { right: 2%; }
  .hardware-product-v2 { width: 36%; }
}

@media (prefers-reduced-motion: reduce) {
  .layer-digital-twin *,
  .scene-data-card,
  .conveyor-package { animation: none !important; }
  .software-link,.hardware-link,.enterprise-link { stroke-dashoffset: 0; }
}

/* Revision 12: deterministic capability motion. One connection, one pass, then still. */
.scene-industrial::after,
.industrial-beams,
.factory-data-points {
  display: none !important;
}

.software-link,
.hardware-link,
.enterprise-link,
.factory-flow-line {
  stroke-dasharray: 1 !important;
  stroke-dashoffset: 0;
  opacity: .72;
  animation: none;
}

.capability-lab[data-active="software"] .capability-visual.is-switching .software-link-main,
.capability-lab[data-active="hardware"] .capability-visual.is-switching .hardware-link-main,
.capability-lab[data-active="industrial"] .capability-visual.is-switching .factory-flow-line,
.capability-lab[data-active="enterprise"] .capability-visual.is-switching .enterprise-link-main {
  animation: main-connection-draw .78s .18s cubic-bezier(.4, 0, .2, 1) both !important;
}

/* Indicator lights communicate state in place; they never travel or resize. */
.scene-data-card::before,
.scene-note > i,
.cabinet-modules circle,
.factory-node i,
.industrial-hud i,
.hardware-product figcaption i {
  animation: none !important;
  transform: none !important;
}

/* The arm stays parked. Only the two packages move, along the belt axis. */
.capability-lab[data-active="industrial"] .factory-robot,
.capability-lab[data-active="industrial"] .capability-visual.is-switching .factory-robot {
  animation: none !important;
  transform: none !important;
}

.capability-lab[data-active="industrial"] .factory-cabinet-illustration,
.capability-lab[data-active="industrial"] .factory-conveyor,
.capability-lab[data-active="industrial"] .factory-node {
  animation: none !important;
}

@keyframes main-connection-draw {
  0% { stroke-dashoffset: 1; opacity: 0; }
  18% { opacity: .82; }
  100% { stroke-dashoffset: 0; opacity: .72; }
}

/* Revision 13: capability scenes enter cleanly without connection-line drawing. */
.software-connections,
.software-link,
.hardware-link,
.factory-flow-line,
.enterprise-link,
.scene-beams {
  display: none !important;
  animation: none !important;
}

/* Revision 14: user-supplied photographic capability scenes. */
.capability-scene-photo {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  opacity: .98;
  filter: saturate(.9) contrast(1.02) brightness(1.03);
  transform: scale(1.015);
  transform-origin: center;
  transition: transform 1.05s cubic-bezier(.16, 1, .3, 1), filter .55s ease;
}

/* A soft ambient layer fills the negative space around the portrait frame so
   the source never reads as a pasted rectangle on the pale canvas. */
.scene-software { --capability-photo: url("assets/scenes/capability-software-office.webp"); }
.scene-hardware { --capability-photo: url("assets/scenes/capability-hardware-datacenter.webp"); }
.scene-industrial { --capability-photo: url("assets/scenes/capability-industrial-field.webp"); }
.scene-enterprise { --capability-photo: url("assets/scenes/capability-enterprise-control.webp"); }

.capability-scene::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -28px;
  display: block !important;
  background-image: var(--capability-photo);
  background-position: center;
  background-size: cover;
  filter: blur(22px) saturate(.72) brightness(1.08);
  opacity: .26;
  transform: scale(1.08);
  pointer-events: none;
  animation: none !important;
}

.capability-scene-photo {
  -webkit-mask-image: radial-gradient(ellipse at center, #000 57%, rgba(0,0,0,.93) 73%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, #000 57%, rgba(0,0,0,.93) 73%, transparent 100%);
}

.capability-scene-photo-software { object-position: 48% 58%; }
.capability-scene-photo-hardware { object-position: 53% 50%; }
.capability-scene-photo-industrial { object-position: 47% 48%; }
.capability-scene-photo-enterprise { object-position: 51% 45%; }

.capability-scene::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(232, 247, 251, .13), rgba(4, 35, 56, .03) 46%, rgba(4, 35, 56, .15)),
    radial-gradient(ellipse at 50% 48%, transparent 47%, rgba(233, 248, 251, .22) 100%);
  pointer-events: none;
}

.scene-software::before {
  background:
    linear-gradient(180deg, rgba(244, 252, 254, .21), rgba(4, 45, 68, .01) 50%, rgba(4, 45, 68, .08)),
    radial-gradient(ellipse at 50% 48%, transparent 46%, rgba(235, 249, 252, .25) 100%);
}

.scene-enterprise::before {
  background:
    linear-gradient(180deg, rgba(220, 240, 250, .09), rgba(3, 29, 50, .02) 44%, rgba(3, 29, 50, .16)),
    radial-gradient(ellipse at 50% 48%, transparent 48%, rgba(219, 239, 248, .18) 100%);
}

/* Retire the previous inline illustrations while preserving each scene's existing
   switch state, markup, and fallback content. */
.capability-scene > .layer-digital-twin,
.capability-scene > .industrial-digital-twin,
.capability-scene > .hardware-product,
.capability-scene > .scene-data-card,
.capability-scene > .industrial-hud,
.capability-scene > .factory-node {
  display: none;
}

.capability-lab[data-active="software"] .capability-visual.is-switching .scene-software .capability-scene-photo,
.capability-lab[data-active="hardware"] .capability-visual.is-switching .scene-hardware .capability-scene-photo,
.capability-lab[data-active="industrial"] .capability-visual.is-switching .scene-industrial .capability-scene-photo,
.capability-lab[data-active="enterprise"] .capability-visual.is-switching .scene-enterprise .capability-scene-photo {
  animation: capability-photo-rise .72s cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes capability-photo-rise {
  from { opacity: .15; transform: translateY(22px) scale(1.045); filter: saturate(.78) contrast(.98) brightness(1.08) blur(2px); }
  to { opacity: .98; transform: translateY(0) scale(1.015); filter: saturate(.9) contrast(1.02) brightness(1.03) blur(0); }
}

@media (max-width: 760px) {
  .capability-visual {
    min-height: clamp(520px, 108vw, 700px);
  }
  .capability-scene-photo-software { object-position: 50% 55%; }
  .capability-scene-photo-hardware { object-position: 55% 50%; }
  .capability-scene-photo-industrial { object-position: 48% 48%; }
  .capability-scene-photo-enterprise { object-position: 51% 43%; }
}

@media (prefers-reduced-motion: reduce) {
  .capability-scene-photo { animation: none !important; transition: none !important; }
}

/* Closing call to action and site footer */
.closing-section {
  position: relative;
  padding: clamp(72px, 8vw, 128px) clamp(16px, 4vw, 64px) clamp(26px, 3.5vw, 52px);
  overflow: hidden;
  background:
    radial-gradient(circle at 13% 18%, rgba(0, 215, 235, .12), transparent 27%),
    radial-gradient(circle at 88% 74%, rgba(119, 235, 37, .09), transparent 25%),
    linear-gradient(180deg, #f6fbfd 0%, #eaf6f8 100%);
  border-top: 1px solid rgba(117, 186, 207, .2);
  isolation: isolate;
}

.closing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .28;
  background-image:
    linear-gradient(rgba(25, 127, 157, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 127, 157, .055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.closing-shell {
  position: relative;
  width: min(1420px, 100%);
  margin: 0 auto;
  padding: clamp(44px, 5vw, 78px) clamp(28px, 5vw, 76px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(0, 215, 235, .12), transparent 28%),
    radial-gradient(circle at 84% 74%, rgba(119, 235, 37, .09), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(245, 252, 253, .94));
  border: 1px solid rgba(157, 207, 218, .72);
  border-radius: clamp(24px, 2.8vw, 40px);
  box-shadow:
    0 36px 88px rgba(7, 58, 91, .14),
    0 6px 20px rgba(7, 58, 91, .05),
    inset 0 1px 0 #fff;
  isolation: isolate;
}

.closing-shell::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 215, 235, .84), rgba(119, 235, 37, .62), transparent);
}

.closing-orbit {
  position: absolute;
  z-index: -1;
  width: clamp(280px, 31vw, 470px);
  aspect-ratio: 1;
  border: 1px solid rgba(0, 164, 190, .11);
  border-radius: 50%;
  box-shadow:
    0 0 0 48px rgba(0, 184, 199, .026),
    0 0 0 102px rgba(119, 235, 37, .014);
  pointer-events: none;
}

.closing-orbit-one { top: -34%; left: -12%; }
.closing-orbit-two { right: -13%; bottom: -30%; }

.closing-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr);
  align-items: center;
  gap: clamp(34px, 6vw, 92px);
  padding-bottom: clamp(46px, 5vw, 72px);
}

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

.closing-eyebrow {
  display: block;
  margin: 0 0 15px;
  color: #0785a2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
}

.closing-copy h2 {
  max-width: 760px;
  margin: 0;
  color: #062a59;
  font-size: clamp(38px, 4.6vw, 72px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
  text-wrap: balance;
}

.closing-lead {
  margin: 18px 0 0;
  color: #087a96;
  font-size: clamp(18px, 1.7vw, 26px);
  font-weight: 700;
  line-height: 1.3;
}

.closing-description {
  max-width: 680px;
  margin: 13px 0 0;
  color: #5b7487;
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.75;
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(28px, 3vw, 42px);
}

.closing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  transition:
    color .25s ease,
    background .25s ease,
    border-color .25s ease,
    box-shadow .3s ease,
    transform .3s cubic-bezier(.16, 1, .3, 1);
}

.closing-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .3s ease;
}

.closing-button-primary {
  color: #fff;
  background: linear-gradient(110deg, #07548b, #0789a2 74%, #19aa8d);
  border-color: #087b98;
  box-shadow: 0 12px 26px rgba(7, 100, 137, .22);
}

.closing-button-secondary {
  color: #075679;
  background: rgba(255, 255, 255, .78);
  border-color: rgba(77, 171, 190, .45);
  box-shadow: 0 8px 20px rgba(7, 58, 91, .07);
}

.closing-button:hover,
.closing-button:focus-visible { transform: translateY(-3px); outline: none; }
.closing-button-primary:hover,
.closing-button-primary:focus-visible { box-shadow: 0 17px 34px rgba(7, 100, 137, .28); }
.closing-button-secondary:hover,
.closing-button-secondary:focus-visible { color: #064a69; background: #fff; border-color: #39bcc7; box-shadow: 0 13px 28px rgba(7, 58, 91, .11); }
.closing-button-secondary:hover svg,
.closing-button-secondary:focus-visible svg { transform: translateX(3px); }

.closing-assurance {
  display: block;
  max-width: 620px;
  margin: 23px 0 0;
  color: #718894;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.55;
}

.closing-contact-card {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: clamp(20px, 2.4vw, 34px);
  overflow: hidden;
  color: inherit;
  font-style: normal;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(234, 248, 249, .86));
  border: 1px solid rgba(114, 195, 206, .48);
  border-radius: 8px;
  box-shadow:
    0 25px 58px rgba(7, 72, 94, .14),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
}

.closing-contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--green));
}

.closing-contact-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 28px;
  padding: 0 2px 15px;
  color: #08758a;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .15em;
}

.closing-contact-heading i {
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 215, 235, .2), var(--green));
}

.closing-contact-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 13px;
  min-height: 75px;
  padding: 10px 8px;
  color: #173e58;
  border-top: 1px solid rgba(99, 164, 180, .18);
  text-decoration: none;
  transition: color .25s ease, background .25s ease, transform .3s cubic-bezier(.16, 1, .3, 1);
}

.closing-contact-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #077793;
  background: linear-gradient(145deg, #e6f9fb, #f8fffb);
  border: 1px solid rgba(81, 184, 196, .34);
  border-radius: 8px;
  transition: color .25s ease, background .25s ease, border-color .25s ease;
}

.closing-contact-icon svg,
.closing-contact-arrow {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.closing-contact-icon svg { width: 19px; height: 19px; }
.closing-contact-item > span:nth-child(2) { min-width: 0; }
.closing-contact-item small,
.closing-contact-item strong { display: block; }
.closing-contact-item small { color: #7d949f; font-size: 8px; font-weight: 800; letter-spacing: .13em; }
.closing-contact-item strong { margin-top: 5px; overflow-wrap: anywhere; font-size: clamp(11px, .9vw, 14px); font-weight: 750; line-height: 1.25; }
.closing-contact-arrow { width: 17px; height: 17px; opacity: .4; transition: opacity .25s ease, transform .3s ease; }

.closing-contact-item:hover,
.closing-contact-item:focus-visible {
  color: #075b75;
  background: rgba(255, 255, 255, .72);
  transform: translateX(3px);
  outline: none;
}

.closing-contact-item:hover .closing-contact-icon,
.closing-contact-item:focus-visible .closing-contact-icon { color: #075178; background: #fff; border-color: #6ad3d3; }
.closing-contact-item:hover .closing-contact-arrow,
.closing-contact-item:focus-visible .closing-contact-arrow { opacity: 1; transform: translateX(3px); }

.closing-contact-status {
  display: block;
  padding: 16px 8px 1px;
  color: #65808d;
  border-top: 1px solid rgba(99, 164, 180, .18);
  font-size: 9px;
  font-weight: 650;
  line-height: 1.5;
}

.closing-footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(150px, .85fr) minmax(310px, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 2.4vw, 36px);
  min-height: 88px;
  padding: 18px 0;
  color: #68808f;
  border-top: 1px solid rgba(99, 164, 180, .22);
  font-size: 10px;
}

.closing-brand { display: block; width: clamp(118px, 10vw, 155px); }
.closing-brand img { display: block; width: 100%; height: auto; }
.closing-footer p { margin: 0; }
.closing-footer nav { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: clamp(13px, 1.8vw, 26px); }
.closing-footer nav a { color: #486879; font-size: 10px; font-weight: 700; text-decoration: none; transition: color .22s ease, transform .25s ease; }
.closing-footer nav a:hover,
.closing-footer nav a:focus-visible { color: #067b92; transform: translateY(-2px); outline: none; }
.closing-copyright { text-align: right; white-space: nowrap; }

.scroll-reveal.is-visible .closing-copy,
.scroll-reveal.is-visible .closing-contact-card,
.scroll-reveal.is-visible .closing-footer {
  animation: closing-child-rise .78s cubic-bezier(.2, .72, .2, 1) both;
}

.scroll-reveal.is-visible .closing-copy > *,
.scroll-reveal.is-visible .closing-contact-card > *,
.scroll-reveal.is-visible .closing-footer > * {
  animation: closing-subitem-rise .68s cubic-bezier(.2, .72, .2, 1) both;
}

.scroll-reveal.is-visible .closing-copy > *:nth-child(1) { animation-delay: .06s; }
.scroll-reveal.is-visible .closing-copy > *:nth-child(2) { animation-delay: .12s; }
.scroll-reveal.is-visible .closing-copy > *:nth-child(3) { animation-delay: .18s; }
.scroll-reveal.is-visible .closing-copy > *:nth-child(4) { animation-delay: .24s; }
.scroll-reveal.is-visible .closing-copy > *:nth-child(5) { animation-delay: .3s; }
.scroll-reveal.is-visible .closing-copy > *:nth-child(6) { animation-delay: .36s; }
.scroll-reveal.is-visible .closing-contact-card > *:nth-child(1) { animation-delay: .16s; }
.scroll-reveal.is-visible .closing-contact-card > *:nth-child(2) { animation-delay: .23s; }
.scroll-reveal.is-visible .closing-contact-card > *:nth-child(3) { animation-delay: .3s; }
.scroll-reveal.is-visible .closing-contact-card > *:nth-child(4) { animation-delay: .37s; }
.scroll-reveal.is-visible .closing-contact-card > *:nth-child(5) { animation-delay: .44s; }
.scroll-reveal.is-visible .closing-footer > *:nth-child(1) { animation-delay: .3s; }
.scroll-reveal.is-visible .closing-footer > *:nth-child(2) { animation-delay: .36s; }
.scroll-reveal.is-visible .closing-footer > *:nth-child(3) { animation-delay: .42s; }
.scroll-reveal.is-visible .closing-footer > *:nth-child(4) { animation-delay: .48s; }

.scroll-reveal.is-visible .closing-contact-card { animation-delay: .14s; }
.scroll-reveal.is-visible .closing-footer { animation-delay: .28s; }

@keyframes closing-child-rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes closing-subitem-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1040px) {
  .closing-content { grid-template-columns: 1fr; align-items: stretch; }
  .closing-copy { max-width: 820px; }
  .closing-contact-card { width: min(720px, 100%); }
  .closing-footer { grid-template-columns: auto 1fr auto; }
  .closing-footer > p:not(.closing-copyright) { display: none; }
}

@media (max-width: 720px) {
  .closing-section { padding: 60px 12px 20px; }
  .closing-shell { padding: 38px 18px 0; border-radius: 24px; }
  .closing-content { gap: 34px; padding-bottom: 36px; }
  .closing-eyebrow { font-size: 9px; }
  .closing-copy h2 { font-size: clamp(34px, 10vw, 48px); }
  .closing-lead { font-size: 18px; }
  .closing-description { font-size: 14px; }
  .closing-actions { display: grid; grid-template-columns: 1fr; }
  .closing-button { width: 100%; }
  .closing-contact-card { padding: 17px 14px; }
  .closing-contact-item { grid-template-columns: 38px minmax(0, 1fr) 16px; gap: 10px; min-height: 70px; padding-inline: 3px; }
  .closing-contact-icon { width: 36px; height: 36px; }
  .closing-contact-item strong { font-size: 11px; }
  .closing-footer { grid-template-columns: 1fr auto; gap: 13px; min-height: 0; padding: 22px 0; }
  .closing-footer nav { grid-column: 1 / -1; grid-row: 1; justify-content: flex-start; gap: 12px 18px; padding-bottom: 17px; border-bottom: 1px solid rgba(99, 164, 180, .17); }
  .closing-brand { grid-column: 1; grid-row: 2; width: 112px; }
  .closing-copyright { grid-column: 2; grid-row: 2; }
}

@media (max-width: 390px) {
  .closing-shell { padding-inline: 14px; }
  .closing-contact-card { padding-inline: 11px; }
  .closing-contact-item { grid-template-columns: 34px minmax(0, 1fr); }
  .closing-contact-icon { width: 32px; height: 32px; }
  .closing-contact-arrow { display: none; }
  .closing-footer { grid-template-columns: 1fr; }
  .closing-brand,
  .closing-copyright { grid-column: 1; }
  .closing-copyright { grid-row: 3; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  .closing-shell.scroll-reveal,
  .closing-orbit,
  .closing-button,
  .closing-button svg,
  .closing-contact-item,
  .closing-contact-icon,
  .closing-contact-arrow,
  .closing-footer nav a { transition: none; }

  .scroll-reveal.is-visible .closing-copy,
  .scroll-reveal.is-visible .closing-contact-card,
  .scroll-reveal.is-visible .closing-footer,
  .scroll-reveal.is-visible .closing-copy > *,
  .scroll-reveal.is-visible .closing-contact-card > *,
  .scroll-reveal.is-visible .closing-footer > * { animation: none; }

  .closing-button:hover,
  .closing-button:focus-visible,
  .closing-button-secondary:hover svg,
  .closing-button-secondary:focus-visible svg,
  .closing-contact-item:hover,
  .closing-contact-item:focus-visible,
  .closing-contact-item:hover .closing-contact-arrow,
  .closing-contact-item:focus-visible .closing-contact-arrow,
  .closing-footer nav a:hover,
  .closing-footer nav a:focus-visible { transform: none; }
}

/* Final closing-screen direction: open, full-bleed and commercially restrained. */
.closing-section{
  display:flex;
  align-items:center;
  min-height:100svh;
  padding:clamp(84px,9vw,142px) clamp(24px,7vw,120px) 34px;
  background:linear-gradient(112deg,#e8f9fc 0%,#f8fcfd 43%,#f5fcf8 100%);
}
.closing-section::before{
  opacity:.18;
  background-size:58px 58px;
  -webkit-mask-image:linear-gradient(90deg,#000,transparent 70%);
  mask-image:linear-gradient(90deg,#000,transparent 70%);
}
.closing-shell{
  width:min(1480px,100%);
  min-height:min(760px,calc(100svh - 118px));
  padding:clamp(12px,2vw,30px) 0 0;
  overflow:visible;
  background:transparent;
  border:0;
  border-radius:0;
  box-shadow:none;
}
.closing-shell::before{top:0;right:0;left:0;width:auto;height:1px;background:linear-gradient(90deg,rgba(10,172,187,.65),rgba(10,172,187,.12) 44%,rgba(119,235,37,.52))}
.closing-scene{position:absolute;z-index:0;inset:0;overflow:hidden;pointer-events:none}
.closing-scene::before{content:"";position:absolute;top:-18%;right:-8%;width:min(62vw,920px);aspect-ratio:1.22;border:1px solid rgba(0,155,180,.16);border-radius:50%;transform:rotate(-14deg) scaleY(.66);box-shadow:0 0 0 48px rgba(0,178,193,.035),0 0 0 112px rgba(119,235,37,.025),0 0 0 200px rgba(0,178,193,.018)}
.closing-scene::after{content:"";position:absolute;right:-16%;bottom:-35%;width:min(56vw,820px);aspect-ratio:1;border:1px solid rgba(0,155,180,.1);border-radius:50%;transform:rotate(22deg) scaleY(.54)}
.closing-scene-line{position:absolute;height:1px;background:linear-gradient(90deg,transparent,rgba(0,159,181,.35),transparent);transform-origin:left center;opacity:.7}
.closing-scene-line-one{top:23%;right:-3%;width:58%;transform:rotate(-18deg)}
.closing-scene-line-two{right:6%;bottom:25%;width:45%;transform:rotate(18deg);background:linear-gradient(90deg,transparent,rgba(119,205,121,.32),transparent)}
.closing-scene-node{position:absolute;width:8px;height:8px;border:1px solid #16aeb7;border-radius:50%;background:#f7ffff;box-shadow:0 0 0 5px rgba(22,174,183,.08),0 0 16px rgba(22,174,183,.3)}
.closing-scene-node-one{top:21%;right:37%}
.closing-scene-node-two{right:15%;bottom:23%;border-color:#75c957;box-shadow:0 0 0 5px rgba(117,201,87,.1),0 0 15px rgba(117,201,87,.25)}
.closing-orbit{display:none}
.closing-content{grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr);gap:clamp(70px,10vw,180px);min-height:calc(min(760px,100svh - 118px) - 74px);padding:clamp(42px,7vw,106px) 0 clamp(42px,6vw,88px)}
.closing-copy{max-width:760px}
.closing-eyebrow{margin-bottom:22px;font-size:11px;letter-spacing:.18em}
.closing-copy h2{font-size:clamp(48px,6.2vw,96px);font-weight:670;line-height:.99;letter-spacing:0}
.closing-lead{margin-top:28px;font-size:clamp(19px,1.7vw,28px)}
.closing-description{max-width:650px;margin-top:16px}
.closing-actions{margin-top:clamp(32px,3.6vw,48px)}
.closing-button{min-height:52px;padding-inline:clamp(22px,1.75vw,31px);border-radius:999px;box-shadow:none}
.closing-button-primary{background:linear-gradient(135deg,#082d62 0%,#0873a5 100%);border-color:rgba(0,220,238,.78);box-shadow:0 10px 22px rgba(5,60,99,.27),0 0 0 3px rgba(0,215,235,.08),inset 0 1px 0 rgba(255,255,255,.18)}
.closing-button-primary:hover,.closing-button-primary:focus-visible{background:linear-gradient(135deg,#082d62 0%,#0873a5 100%);box-shadow:0 14px 30px rgba(5,60,99,.25),0 0 0 4px rgba(0,215,235,.12)}
.closing-button-secondary{color:#16496d;background:rgba(247,252,255,.98);border:2px solid #176a93;box-shadow:0 8px 18px rgba(7,59,91,.1)}
.closing-assurance{margin-top:24px;letter-spacing:0}
.closing-contact-card{display:block;width:auto;min-width:0;margin:0;padding:0 0 0 clamp(26px,3.5vw,58px);overflow:visible;background:transparent;border:0;border-radius:0;box-shadow:none;backdrop-filter:none}
.closing-contact-card::before{top:0;bottom:0;left:0;right:auto;width:1px;height:auto;background:linear-gradient(180deg,transparent,#55c7cc 18%,rgba(85,199,204,.34) 82%,transparent)}
.closing-contact-heading{display:block;min-height:0;padding:0 0 26px;letter-spacing:.16em}
.closing-contact-heading::after{content:"";display:block;width:100%;height:1px;margin-top:22px;background:linear-gradient(90deg,rgba(99,164,180,.28),transparent)}
.closing-contact-heading span{display:block}
.closing-contact-heading strong{display:block;margin-top:20px;color:#062a59;font-size:clamp(26px,2.3vw,38px);font-weight:650;line-height:1.12;letter-spacing:0}
.closing-contact-heading i{display:none}
.closing-contact-item{grid-template-columns:42px minmax(0,1fr) 18px;gap:14px;min-height:82px;padding:14px 0;background:transparent}
.closing-contact-item:first-of-type{border-top:0}
.closing-contact-icon{border-radius:50%;background:rgba(229,249,251,.72);border-color:rgba(81,184,196,.42)}
.closing-contact-item strong{font-size:clamp(12px,.95vw,15px);letter-spacing:.02em}
.closing-contact-item:hover,.closing-contact-item:focus-visible{background:rgba(255,255,255,.32);transform:translateX(7px)}
.closing-button:focus-visible,.closing-contact-item:focus-visible,.closing-footer a:focus-visible{outline:2px solid rgba(0,143,165,.72);outline-offset:4px}
.closing-contact-status{padding:20px 0 0}
.closing-footer{grid-template-columns:auto minmax(150px,.85fr) minmax(310px,1fr) auto;min-height:76px;padding:18px 0 0;background:transparent}
.closing-footer nav a,.closing-copyright{letter-spacing:0}
@media(min-width:761px) and (max-height:980px){
  .closing-section{padding-top:clamp(58px,7vh,76px);padding-bottom:22px}
  .closing-shell{min-height:calc(100svh - 98px);padding-top:14px}
  .closing-content{min-height:0;padding:clamp(42px,6vh,56px) 0 clamp(32px,4.6vh,44px)}
  .closing-copy h2{font-size:clamp(54px,5.3vw,76px);line-height:1}
  .closing-eyebrow{margin-bottom:16px}
  .closing-lead{margin-top:20px;font-size:clamp(18px,1.5vw,24px)}
  .closing-description{margin-top:12px;line-height:1.58}
  .closing-actions{margin-top:28px}
  .closing-assurance{margin-top:17px}
  .closing-contact-heading{padding-bottom:18px}
  .closing-contact-heading strong{margin-top:14px;font-size:clamp(25px,2.1vw,33px)}
  .closing-contact-heading::after{margin-top:16px}
  .closing-contact-item{min-height:70px;padding-block:9px}
  .closing-contact-status{padding-top:14px}
  .closing-footer{min-height:64px;padding-top:14px}
}
@media(max-width:1040px){
  .closing-section{padding-inline:clamp(24px,5vw,60px)}
  .closing-content{grid-template-columns:minmax(0,1fr) minmax(310px,.76fr);gap:clamp(42px,6vw,78px)}
  .closing-copy h2{font-size:clamp(48px,7vw,76px)}
  .closing-contact-heading strong{font-size:28px}
  .closing-contact-card{width:auto}
}
@media(max-width:760px){
  .closing-section{display:block;min-height:0;padding:74px 20px 24px}
  .closing-shell{min-height:0;padding:12px 0 0;border-radius:0}
  .closing-content{display:block;min-height:0;padding:54px 0 42px}
  .closing-copy h2{font-size:clamp(43px,12vw,68px);line-height:1.02}
  .closing-lead{margin-top:22px;font-size:20px}
  .closing-contact-card{margin-top:64px;padding:34px 0 0;border-top:1px solid rgba(85,199,204,.34)}
  .closing-contact-card::before{top:0;right:0;bottom:auto;left:0;width:34%;height:2px;background:linear-gradient(90deg,#0ab4c2,#73d946)}
  .closing-contact-heading{padding-bottom:18px}
  .closing-contact-heading strong{font-size:27px}
  .closing-footer{grid-template-columns:1fr auto;gap:14px;min-height:0;padding:22px 0 0}
  .closing-footer>p:not(.closing-copyright){display:none}
  .closing-footer nav{grid-column:1/-1;grid-row:1;justify-content:flex-start;padding-bottom:16px;border-bottom:1px solid rgba(99,164,180,.17)}
  .closing-brand{grid-column:1;grid-row:2;width:112px}
  .closing-copyright{grid-column:2;grid-row:2}
}
@media(max-width:390px){
  .closing-section{padding-inline:14px}
  .closing-copy h2{font-size:clamp(39px,12vw,52px)}
  .closing-actions{display:grid;grid-template-columns:1fr}
  .closing-button{width:100%}
  .closing-contact-item{grid-template-columns:36px minmax(0,1fr);gap:11px;min-height:74px;padding-inline:0}
  .closing-contact-icon{width:34px;height:34px}
  .closing-contact-arrow{display:none}
  .closing-footer{grid-template-columns:1fr}
  .closing-brand,.closing-copyright{grid-column:1}
  .closing-copyright{grid-row:3;text-align:left}
}
@media(prefers-reduced-motion:reduce){
  .closing-scene-line,.closing-contact-item,.closing-button,.closing-footer nav a{transition:none!important;animation:none!important}
}


/* Contact actions: copy phone/email and keep the website link explicit. */
.closing-contact-item {
  grid-template-columns: 42px minmax(0, 1fr) 36px;
}

.closing-contact-heading + .closing-contact-item {
  border-top: 0;
}

.closing-contact-details {
  min-width: 0;
}

.closing-contact-action {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: #668692;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 50%;
  appearance: none;
  cursor: pointer;
  text-decoration: none;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.closing-contact-action svg {
  grid-area: 1 / 1;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.closing-contact-copy-icon {
  opacity: .58;
  transition: opacity .2s ease;
}

.closing-contact-check-icon {
  display: none;
}

.closing-contact-link .closing-contact-arrow {
  display: block;
}

.closing-contact-action:hover,
.closing-contact-action:focus-visible {
  color: #075b75;
  background: rgba(255, 255, 255, .88);
  border-color: rgba(81, 184, 196, .55);
  outline: none;
}

.closing-contact-action:focus-visible {
  outline: 2px solid rgba(0, 143, 165, .72);
  outline-offset: 3px;
}

.closing-contact-action:hover .closing-contact-copy-icon,
.closing-contact-action:focus-visible .closing-contact-copy-icon {
  opacity: 1;
}

.closing-contact-action:hover .closing-contact-arrow,
.closing-contact-action:focus-visible .closing-contact-arrow {
  opacity: 1;
  transform: translateX(3px);
}

.closing-contact-copy.is-copied {
  color: #087555;
  background: rgba(224, 249, 239, .94);
  border-color: rgba(40, 164, 120, .42);
}

.closing-contact-copy.has-copy-error {
  color: #9b3f38;
  background: rgba(255, 239, 237, .94);
  border-color: rgba(187, 84, 73, .38);
}

.closing-contact-copy.is-copied .closing-contact-copy-icon {
  display: none;
}

.closing-contact-copy.is-copied .closing-contact-check-icon {
  display: block;
}

.closing-contact-item:focus-within {
  color: #075b75;
  background: rgba(255, 255, 255, .32);
  transform: translateX(7px);
}

.closing-contact-item:focus-within .closing-contact-icon {
  color: #075178;
  background: #fff;
  border-color: #6ad3d3;
}

.closing-contact-announcement {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 390px) {
  .closing-contact-item {
    grid-template-columns: 34px minmax(0, 1fr) 32px;
  }

  .closing-contact-action {
    width: 32px;
    height: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .closing-contact-action,
  .closing-contact-action svg {
    transition: none;
  }
}

/* Platform download showcase: open composition, click-led tabs and product-first typography. */
.device-access-section {
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: clamp(76px, 8vw, 128px) clamp(22px, 5vw, 84px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 84, 139, .035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 84, 139, .028) 1px, transparent 1px),
    linear-gradient(118deg, #f5fbfd 0%, #eef9fc 46%, #f8fcfa 100%);
  background-size: 72px 72px, 72px 72px, auto;
}

.device-access-section::before {
  display: block;
  top: 17%;
  left: auto;
  right: -18%;
  width: 74%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 174, 202, .3), rgba(112, 211, 81, .2), transparent);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: none;
  transform: rotate(-14deg);
}

.device-access-section::after { display: none; }

.device-access-shell {
  width: min(1440px, 100%);
  padding: 0;
}

.device-access-shell::before {
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 189, 218, .52) 22%, rgba(0, 189, 218, .13) 70%, transparent);
}

.device-access-header { max-width: 900px; }

.device-access-eyebrow {
  margin-bottom: 13px;
  color: #067f99 !important;
  font-size: 11px !important;
  letter-spacing: .17em;
}

.device-access-header h2 {
  color: #062a59;
  font-size: clamp(40px, 4.6vw, 68px);
  font-weight: 660;
  line-height: 1.02;
}

.device-access-header > p:last-child {
  margin-top: 14px;
  color: #627c8d;
  font-size: clamp(14px, 1.25vw, 19px);
}

.platform-tabs {
  margin-top: clamp(26px, 3vw, 40px);
  padding: 5px;
  background: rgba(237, 246, 250, .9);
  border-color: rgba(126, 171, 193, .38);
  box-shadow: inset 0 1px 3px rgba(7, 54, 86, .05), 0 13px 34px rgba(7, 73, 105, .07);
  backdrop-filter: blur(16px);
}

.platform-tab {
  min-height: 44px;
  padding-inline: clamp(16px, 1.8vw, 25px);
  font-size: clamp(13px, 1vw, 16px);
  transition: color .24s ease, background .24s ease, box-shadow .24s ease;
}

.platform-tab:hover {
  color: #056e96;
  transform: none;
}

.platform-tab:focus-visible {
  color: #056e96;
  outline: 2px solid rgba(0, 151, 180, .62);
  outline-offset: 3px;
  transform: none;
}

.platform-tab.is-active {
  color: #07548b;
  background: #fff;
  box-shadow: 0 11px 26px rgba(5, 83, 130, .14), 0 0 0 1px rgba(0, 192, 224, .2);
}

.device-stage.device-video-slot {
  display: grid;
  grid-template-columns: minmax(420px, .94fr) minmax(520px, 1.06fr);
  align-items: center;
  gap: clamp(46px, 7vw, 112px);
  width: min(1280px, 100%);
  max-width: 1280px;
  min-height: clamp(430px, 43vw, 570px);
  height: auto;
  margin: clamp(34px, 4.8vw, 66px) auto 0;
  padding: 0 clamp(4px, 1vw, 14px);
  overflow: visible;
  isolation: isolate;
}

.device-stage.device-video-slot::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 7%;
  right: -4%;
  width: 65%;
  height: 88%;
  background:
    linear-gradient(132deg, rgba(0, 187, 213, .07), transparent 46%),
    repeating-linear-gradient(90deg, transparent 0 46px, rgba(7, 84, 139, .045) 46px 47px);
  border-top: 1px solid rgba(51, 170, 190, .17);
  border-bottom: 1px solid rgba(51, 170, 190, .1);
  transform: skewX(-7deg);
}

.device-stage.device-video-slot::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 17%;
  right: -8%;
  width: 47%;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 181, 209, .5), rgba(111, 207, 81, .24), transparent);
  transform: rotate(-12deg);
}

.platform-download-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  max-width: 600px;
  padding: 16px 0 18px clamp(12px, 2vw, 30px);
}

.platform-download-copy::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 2px;
  background: linear-gradient(180deg, #00b8d4, rgba(0, 184, 212, .22) 64%, #77d34d);
}

.platform-download-index {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: #668696;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}

.platform-download-index span {
  color: #0693aa;
  font-size: 12px;
}

.platform-download-index b { font: inherit; }

.platform-download-copy h3 {
  max-width: 620px;
  margin: 0;
  color: #062a59;
  font-size: clamp(36px, 4.1vw, 60px);
  font-weight: 660;
  line-height: 1.02;
  letter-spacing: 0;
}

.platform-download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 186px;
  min-height: 54px;
  margin-top: clamp(28px, 3.1vw, 42px);
  padding: 0 24px;
  color: #fff;
  background: #07548b;
  border: 1px solid #07548b;
  border-radius: 4px;
  box-shadow: 0 15px 30px rgba(7, 84, 139, .2);
  font-size: 14px;
  font-weight: 780;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.platform-download-button:hover,
.platform-download-button:focus-visible {
  background: #064a79;
  box-shadow: 0 19px 36px rgba(7, 84, 139, .28);
  transform: translateY(-3px);
  outline: none;
}

.platform-download-button:focus-visible {
  outline: 2px solid rgba(0, 151, 180, .72);
  outline-offset: 4px;
}

.platform-download-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.platform-download-button[data-unavailable="true"] {
  color: #708495;
  background: #dfe8ed;
  border-color: #c8d6de;
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
}

.platform-download-button[data-unavailable="true"] svg {
  display: none;
}

.platform-download-button.is-notice {
  animation: platform-button-notice .4s ease both;
}

.platform-download-note {
  max-width: 420px;
  margin: 18px 0 0;
  color: #698392;
  font-size: clamp(12px, .92vw, 14px);
  line-height: 1.55;
}

.platform-product-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 440px;
  padding: 10px clamp(10px, 2vw, 28px);
  isolation: isolate;
}

.platform-product-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 9% 2% 8%;
  background: radial-gradient(ellipse at center, rgba(224, 246, 250, .92) 0%, rgba(235, 248, 250, .58) 52%, transparent 77%);
  filter: blur(8px);
  pointer-events: none;
}

.platform-visual-orbit {
  position: absolute;
  border: 1px solid rgba(0, 180, 204, .22);
  border-radius: 50%;
  transform: rotate(-18deg) scaleY(.58);
  pointer-events: none;
}

.platform-visual-orbit-one {
  width: 92%;
  aspect-ratio: 1.42;
  box-shadow: 0 0 0 32px rgba(0, 180, 204, .035), 0 0 0 76px rgba(0, 180, 204, .018);
}

.platform-visual-orbit-two {
  width: 76%;
  aspect-ratio: 1.34;
  border-color: rgba(119, 210, 80, .24);
  transform: rotate(18deg) scaleY(.57);
}

.platform-visual-status {
  position: absolute;
  top: 4%;
  right: 3%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #517b83;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .14em;
}

.platform-visual-status i,
.software-preview-session span i {
  width: 7px;
  height: 7px;
  background: #72ca4f;
  border: 1px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(114, 202, 79, .14);
}

.platform-software-preview {
  position: relative;
  width: min(100%, 620px);
  transform: perspective(1200px) rotateY(-8deg) rotateX(2deg) rotateZ(1deg);
  filter: drop-shadow(0 28px 32px rgba(7, 69, 99, .16));
  transition: transform .6s cubic-bezier(.2, .8, .2, 1), opacity .45s ease;
}

.platform-software-preview:hover {
  transform: perspective(1200px) rotateY(-4deg) rotateX(1deg) rotateZ(.4deg) translateY(-5px);
}

.software-preview-window {
  overflow: hidden;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(133, 186, 202, .68);
  border-radius: 13px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95);
}

.software-preview-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  padding: 0 17px;
  background: linear-gradient(180deg, #f8fcfd, #edf6f8);
  border-bottom: 1px solid #d5e8ed;
}

.software-preview-brand img {
  display: block;
  width: 118px;
  height: auto;
}

.software-preview-window-controls {
  display: inline-flex;
  gap: 6px;
}

.software-preview-window-controls i {
  width: 7px;
  height: 7px;
  background: #9dbbc4;
  border-radius: 50%;
}

.software-preview-window-controls i:last-child { background: #74cf55; }

.software-preview-body {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 168px;
  min-height: 300px;
  background: linear-gradient(135deg, #fff, #f1f9fa);
}

.software-preview-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  background: #0b4163;
}

.software-preview-nav i {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(210, 243, 246, .55);
  border-radius: 7px;
  opacity: .58;
}

.software-preview-nav i:nth-child(2) { border-radius: 50%; }
.software-preview-nav i:nth-child(3) { border-radius: 4px; }
.software-preview-nav i:nth-child(4) { border-radius: 50% 50% 5px 5px; }

.software-preview-nav i.is-active {
  background: #05b4cb;
  border-color: #05b4cb;
  box-shadow: 0 0 0 5px rgba(5, 180, 203, .14);
  opacity: 1;
}

.software-preview-main {
  padding: 28px 24px;
  color: #153e57;
}

.software-preview-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid #dcebef;
}

.software-preview-heading span {
  font-size: 18px;
  font-weight: 750;
}

.software-preview-heading b {
  color: #0a98a8;
  font-size: 9px;
  letter-spacing: .12em;
}

.software-preview-device {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 63px;
  border-bottom: 1px solid #e0edf0;
}

.software-preview-device > i {
  position: relative;
  width: 24px;
  height: 17px;
  border: 1.5px solid #2c7890;
  border-radius: 4px;
}

.software-preview-device > i::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: -5px;
  left: 6px;
  border-top: 1.5px solid #2c7890;
}

.software-preview-device span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.software-preview-device b {
  color: #214d65;
  font-size: 12px;
}

.software-preview-device small {
  color: #8ba3ad;
  font-size: 9px;
}

.software-preview-device em {
  width: 7px;
  height: 7px;
  margin-left: auto;
  background: #a9c1c8;
  border-radius: 50%;
}

.software-preview-device.is-live em {
  background: #63cb52;
  box-shadow: 0 0 0 4px rgba(99, 203, 82, .13);
}

.software-preview-session {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 25px 18px 25px 0;
  padding: 20px 17px;
  color: #dffbff;
  background: linear-gradient(150deg, #084365, #0a6e87);
  border-radius: 9px;
  box-shadow: 0 13px 24px rgba(7, 71, 101, .15);
}

.software-preview-session small {
  color: #8fd9de;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .14em;
}

.software-preview-session strong {
  font-size: 14px;
  line-height: 1.35;
}

.software-preview-session span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b4e6d1;
  font-size: 10px;
}

.software-preview-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 17px;
  color: #6c8b98;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.software-preview-caption span { color: #078da4; }
.platform-product-image {
  position: relative;
  z-index: 1;
  display: block;
  width: min(110%, 760px);
  max-height: 500px;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 24px 30px rgba(7, 69, 99, .12));
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-composite: intersect;
  transition: opacity .35s ease, transform .6s cubic-bezier(.2, .8, .2, 1);
}

/* The Linux artwork carries a cool-blue canvas in the source image. The
   dedicated alpha feather keeps the dashboard and login panel crisp while
   dissolving that canvas into the section's icy background. */
.device-stage[data-platform="linux"] .platform-product-image {
  opacity: .96;
  filter:
    saturate(.82)
    brightness(1.04)
    contrast(.98)
    drop-shadow(0 24px 30px rgba(7, 69, 99, .1));
  /* The dedicated asset already contains a soft alpha feather. Keep a light
     safety mask at the viewport edge without cutting into the UI panels. */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%), linear-gradient(180deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%), linear-gradient(180deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

/* A platform change is a coordinated composition transition. The copy and
   visual stage rise together; the image itself stays unanimated so it does
   not double-transform inside its parent. */
.is-switching .platform-download-copy,
.is-switching .platform-product-visual {
  animation: platform-composition-rise .72s cubic-bezier(.16, 1, .3, 1) both;
}

.is-switching .platform-product-visual {
  animation-delay: .06s;
}

.is-switching .platform-product-image,
.is-switching .platform-software-preview {
  animation: none;
}

@keyframes platform-composition-rise {
  from {
    opacity: 0;
    transform: translateY(34px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes platform-button-notice {
  0%, 100% { transform: translateY(0); }
  45% { transform: translateY(-3px); }
}

@media (max-width: 980px) {
  .device-stage.device-video-slot {
    grid-template-columns: minmax(300px, .86fr) minmax(380px, 1.14fr);
    gap: 34px;
  }
  .platform-download-copy h3 { font-size: clamp(34px, 4.9vw, 54px); }
  .software-preview-body { grid-template-columns: 56px minmax(0, 1fr) 136px; }
  .software-preview-main { padding: 22px 16px; }
  .software-preview-session { margin-right: 13px; padding: 16px 12px; }
}

@media (max-width: 760px) {
  .device-access-section {
    display: block;
    min-height: 0;
    padding: 70px 18px 82px;
  }
  .device-access-header { text-align: left; }
  .device-access-header h2 { font-size: clamp(39px, 11vw, 58px); }
  .platform-tabs { width: 100%; justify-content: flex-start; }
  .platform-tab { flex: 0 0 auto; padding-inline: 14px; }
  .device-stage.device-video-slot {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 26px;
    min-height: 0;
    margin-top: 42px;
    padding-inline: 0;
  }
  .device-stage.device-video-slot::before {
    top: 33%;
    right: -15%;
    width: 125%;
    height: 58%;
  }
  .platform-download-copy { padding: 10px 0 0 16px; }
  .platform-download-copy::before { top: 11px; bottom: 8px; }
  .platform-download-copy h3 { font-size: clamp(36px, 9vw, 52px); }
  .platform-download-button { margin-top: 25px; }
  .platform-product-visual { min-height: 340px; }
  .platform-visual-status { top: 0; right: 2%; font-size: 8px; }
  .platform-product-image,
  .platform-software-preview { width: min(110%, 620px); margin: 0 auto; }
  .software-preview-body { grid-template-columns: 50px minmax(0, 1fr) 128px; min-height: 260px; }
  .software-preview-main { padding: 20px 13px; }
  .software-preview-heading span { font-size: 15px; }
  .software-preview-device { min-height: 54px; }
  .software-preview-session { margin-top: 18px; margin-bottom: 18px; }
}

@media (max-width: 480px) {
  .device-access-section { padding-inline: 14px; }
  .device-access-shell { padding-inline: 0; }
  .device-access-eyebrow { font-size: 9px !important; letter-spacing: .13em; }
  .platform-tabs { overflow-x: auto; }
  .platform-tab { min-height: 40px; padding-inline: 12px; font-size: 12px; }
  .platform-icon { width: 17px; height: 17px; }
  .platform-download-copy h3 { font-size: clamp(34px, 10vw, 46px); }
  .platform-download-index { margin-bottom: 16px; }
  .platform-download-button { width: min(100%, 230px); }
  .platform-product-visual { min-height: 275px; }
  .platform-product-image { width: 112%; }
  .software-preview-topbar { height: 38px; padding-inline: 11px; }
  .software-preview-brand img { width: 90px; }
  .software-preview-body { grid-template-columns: 36px minmax(0, 1fr); min-height: 220px; }
  .software-preview-nav { gap: 14px; padding-top: 17px; }
  .software-preview-nav i { width: 16px; height: 16px; border-radius: 5px; }
  .software-preview-main { padding: 17px 11px; }
  .software-preview-heading { padding-bottom: 11px; }
  .software-preview-heading span { font-size: 12px; }
  .software-preview-heading b { font-size: 7px; }
  .software-preview-device { min-height: 44px; gap: 7px; }
  .software-preview-device > i { width: 18px; height: 13px; }
  .software-preview-device > i::after { right: 4px; bottom: -4px; left: 4px; }
  .software-preview-device b { font-size: 9px; }
  .software-preview-device small { font-size: 7px; }
  .software-preview-session { display: none; }
  .software-preview-caption { font-size: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-intro-video { display: none; }
  .hero-intro-final-frame { z-index: 2; }
  .platform-software-preview,
  .platform-product-image,
  .platform-download-button,
  .platform-tab { transition: none; }
  .is-switching .platform-download-copy,
  .is-switching .platform-product-visual,
  .is-switching .platform-product-image,
  .is-switching .platform-software-preview { animation: none; }
  .platform-download-button.is-notice { animation: none; }
}
