:root {
  --bg: #050c10;
  --panel: #10181d;
  --panel-2: #172127;
  --text: #eaf6f8;
  --muted: #8da3a9;
  --line: rgba(255, 255, 255, .12);
  --cyan: #00d8e8;
  --cyan-2: #25fff2;
  --red: #e53135;
  --paper: #f5f8f9;
  --ink: #0d171b;
  --gray: #64757b;
  --max: 1180px;
  --header: 78px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --shadow-soft: 0 18px 48px rgba(0,0,0,.18);
  --shadow-strong: 0 28px 90px rgba(0,0,0,.34);
  font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  gap: 22px;
  background: #03090c;
  transition: opacity .55s ease, visibility .55s ease;
}
.loader.is-hidden { opacity: 0; visibility: hidden; }
.loader__mark {
  color: #fff;
  font-size: 28px;
  letter-spacing: 0;
  font-weight: 700;
}
.loader__bar {
  width: min(320px, 64vw);
  height: 2px;
  overflow: hidden;
  background: rgba(255,255,255,.12);
}
.loader__bar span {
  display: block;
  width: 46%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--red));
  animation: loading 1.3s ease-in-out infinite;
}
@keyframes loading {
  from { transform: translateX(-120%); }
  to { transform: translateX(240%); }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: var(--header);
  z-index: 80;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  padding: 0 clamp(18px, 4vw, 60px);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .25s ease, height .25s ease, color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  height: 66px;
  background: rgba(5, 12, 16, .86);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 36px rgba(0,0,0,.22);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  font-weight: 700;
}
.brand__symbol {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: conic-gradient(from 225deg, var(--red), var(--red) 34%, #fff 34% 43%, #0aa7b8 43%, #0aa7b8);
  box-shadow: 0 0 28px rgba(0,216,232,.32);
}
.brand__text {
  font-size: 18px;
  letter-spacing: 0;
}
.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.8vw, 26px);
}
.main-nav a {
  position: relative;
  padding: 29px 0;
  color: rgba(255,255,255,.86);
  font-size: 15px;
  font-weight: 500;
  transition: color .22s ease;
}
.main-nav a:hover { color: #fff; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--cyan);
  transition: transform .22s ease;
}
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }
.icon-btn, .menu-toggle, .hero-arrow, .case-arrow, .floating-actions button {
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  background: rgba(255,255,255,.06);
}
.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 24px;
  backdrop-filter: blur(10px);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border-radius: 0;
  padding: 12px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: currentColor;
  transition: transform .25s ease;
}
.menu-toggle.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mega-panel {
  position: fixed;
  top: var(--header);
  left: clamp(18px, 4vw, 60px);
  right: clamp(18px, 4vw, 60px);
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: .24s ease;
}
.mega-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mega-panel__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 34px;
  padding: 28px;
  color: #fff;
  background: rgba(7, 18, 23, .94);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(24px);
  box-shadow: 0 28px 70px rgba(0,0,0,.38);
}
.mega-panel h2 { margin: 6px 0 0; font-size: 28px; line-height: 1.25; }
.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.mega-grid a {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
}
.mega-grid a:hover { border-color: var(--cyan); color: var(--cyan-2); }

.section {
  position: relative;
  padding: clamp(76px, 8vw, 118px) clamp(18px, 4vw, 60px);
}
.section-head {
  width: min(var(--max), 100%);
  margin: 0 auto clamp(30px, 5vw, 58px);
}
.section-head h2 {
  max-width: 820px;
  margin: 10px 0 0;
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.1;
  font-weight: 700;
}
.eyebrow {
  margin: 0;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: .96;
}
[data-theme="dark"] {
  color: var(--text);
  background: var(--bg);
}
[data-theme="muted"] { background: #e9eef0; }

.hero {
  height: 100vh;
  min-height: 660px;
  padding: 0;
  overflow: hidden;
  background: #03090c;
}
.hero__slides, .hero-slide {
  position: absolute;
  inset: 0;
}
.hero-slide {
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity .8s ease, transform 1.1s ease;
  background-image: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.45) 46%, rgba(0,0,0,.08) 100%), var(--bg);
  background-size: cover;
  background-position: center;
}
.hero-slide--portal {
  justify-content: center;
  background-image: linear-gradient(180deg, rgba(2,6,10,.18), rgba(2,6,10,.44) 38%, rgba(2,6,10,.78)), var(--bg);
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,216,232,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,216,232,.07) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.45), transparent 78%);
}
.hero-slide--portal::before {
  background-image:
    radial-gradient(circle at 50% 50%, rgba(137, 201, 255, .24), transparent 22%),
    linear-gradient(rgba(125,190,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125,190,255,.04) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  opacity: .9;
}
.hero-slide--portal::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  width: min(54vw, 760px);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -46%);
  background:
    radial-gradient(circle, rgba(0,0,0,0) 28%, rgba(240,248,255,.96) 30%, rgba(240,248,255,.16) 32%, rgba(0,0,0,0) 34%),
    radial-gradient(circle, rgba(0,0,0,0) 46%, rgba(235,244,255,.92) 48%, rgba(235,244,255,.12) 50%, rgba(0,0,0,0) 52%),
    radial-gradient(circle, rgba(104,177,255,.2), rgba(7,16,24,0) 58%);
  box-shadow:
    0 0 46px rgba(146, 212, 255, .4),
    0 0 110px rgba(109, 186, 255, .25),
    inset 0 0 56px rgba(155, 216, 255, .24);
  filter: blur(.3px);
  animation: portalPulse 5.4s ease-in-out infinite;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
.hero-slide__content {
  position: relative;
  width: min(760px, 86vw);
  margin-left: clamp(22px, 8vw, 120px);
  padding-top: 36px;
  z-index: 1;
}
.hero-slide__content--center {
  width: min(1320px, 96vw);
  margin: 0 auto;
  padding-top: 0;
  text-align: center;
}
.hero-kicker {
  margin: 8px 0 18px;
  color: rgba(255,255,255,.82);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.5;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.hero h1 {
  margin: 14px 0 18px;
  color: #fff;
  font-size: clamp(42px, 6.5vw, 78px);
  line-height: 1.04;
  font-weight: 700;
}
.hero-slide--portal h1 {
  margin: 0;
  display: inline-block;
  max-width: none;
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1.02;
  white-space: nowrap;
  text-shadow: 0 10px 26px rgba(0,0,0,.32);
}
.hero p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255,255,255,.78);
  font-size: clamp(36px, 1.8vw, 20px);
  line-height: 1.72;
}
.hero-slide--portal p:not(.eyebrow) {
  max-width: none;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.hero-actions--center {
  justify-content: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  color: #001418;
  background: var(--cyan-2);
  border-color: var(--cyan-2);
  box-shadow: 0 0 34px rgba(0,216,232,.2);
}
.btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,.36);
  background: rgba(255,255,255,.04);
}
.btn--accent-outline {
  min-width: 150px;
  color: #fff;
  /*border-color: rgba(255, 105, 56, .92);*/
  border-color: rgba(0, 159, 158, 0.5);
  /*background: rgba(0, 159, 158, 0.5);*/
  background: rgba(8, 15, 22, .22);
  /*box-shadow: inset 0 0 0 1px rgba(0, 159, 158, 0.5), 0 0 28px rgba(0, 159, 158, 0.5);*/
  backdrop-filter: blur(8px);
}
.btn--accent-outline:hover {
  border-color: rgba(255, 128, 84, 1);
  background: rgba(255, 105, 56, .12);
}
.hero-control {
  position: absolute;
  left: clamp(22px, 8vw, 120px);
  bottom: 58px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-arrow, .case-arrow {
  width: 46px;
  height: 46px;
  font-size: 30px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(10px);
}
.hero-dots {
  display: flex;
  gap: 10px;
  min-width: 120px;
}
.hero-dots button {
  width: 34px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255,255,255,.26);
}
.hero-dots button.is-active { background: var(--cyan); }
.scroll-cue {
  position: absolute;
  right: clamp(20px, 4vw, 60px);
  bottom: 58px;
  color: rgba(255,255,255,.64);
  writing-mode: vertical-rl;
  font-size: 12px;
}
.scroll-cue::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 54px;
  margin-top: 12px;
  background: var(--cyan);
  animation: cue 1.4s ease-in-out infinite;
}
@keyframes cue {
  0%, 100% { transform: translateY(0); opacity: .45; }
  50% { transform: translateY(12px); opacity: 1; }
}

@keyframes portalPulse {
  0%, 100% {
    transform: translate(-50%, -46%) scale(.98);
    opacity: .94;
  }
  50% {
    transform: translate(-50%, -46%) scale(1.02);
    opacity: 1;
  }
}

.about {
  color: #fff;
  background-image: linear-gradient(90deg, rgba(5,12,16,.58), rgba(5,12,16,.46) 38%, rgba(5,12,16,.62)), var(--screen-bg, url('../assets/p02_00_d4dd0eb512.jpg'));
  background-size: cover;
  background-position: center;
}

#smart-lab {
  background-repeat: no-repeat, no-repeat;
  background-size: 100% 100%, cover;
  background-position: 0 0, center;
}

.about__grid, .business__wrap, .solution-stage, .footer__top, .resource-band {
  width: min(var(--max), 100%);
  margin: 0 auto;
}
.about__panel {
  width: min(var(--max), 100%);
  margin: 0 auto;
}
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(300px, .84fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
}
.about__copy h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(34px, 4.4vw, 48px);
  line-height: 1.08;
}
.about__copy p {
  color: rgba(255,255,255,.78);
  font-size: 16px;
  line-height: 1.88;
}
.about__news {
  align-self: stretch;
}
.about__news h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(24px, 2.6vw, 30px);
  line-height: 1.1;
}
.about__news-list {
  display: grid;
  gap: 12px;
}
.about__news-list a {
  position: relative;
  padding-left: 18px;
  color: rgba(255,255,255,.88);
  font-size: 15px;
  line-height: 1.65;
}
.about__news-list a::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 1px;
  background: currentColor;
  opacity: .72;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
  background: transparent;
}
.stat-row div {
  padding: 24px 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
}
.stat-row strong {
  display: block;
  color: #fff;
  font-size: clamp(36px, 5vw, 40px);
  line-height: 1;
}
.stat-row strong::after {
  content: "+";
  /*color: var(--red);*/
  color: #ffffff;
  font-size: .48em;
}
.stat-row span {
  display: block;
  margin-top: 9px;
  color: rgba(255,255,255,.72);
}
.about__logos {
  margin-top: clamp(28px, 4vw, 42px);
  overflow: hidden;
}
.logo-marquee {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}
.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(5,12,16,1), rgba(5,12,16,0));
}
.logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(5,12,16,1), rgba(5,12,16,0));
}
.logo-marquee__track {
  display: flex;
  width: max-content;
  animation: logo-marquee 28s linear infinite;
}
.logo-marquee__group {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
}
.logo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 126px;
  height: 58px;
  padding: 0 20px;
  color: #25363d;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(12,24,29,.08);
}
.logo-chip--image {
  width: 180px;
  min-width: 180px;
  max-width: 180px;
  padding: 0;
  background: rgba(255,255,255,.9);
}
.logo-chip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.95);
}
@keyframes logo-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
.about__media {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: #0b1519;
}
.about__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.media-label {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 15px 18px;
  color: #fff;
  background: rgba(5,12,16,.74);
  border-left: 3px solid var(--cyan);
  backdrop-filter: blur(14px);
}

.solutions {
  overflow: hidden;
  background-image: linear-gradient(180deg, rgba(5,12,16,.34), rgba(5,12,16,.5) 32%, rgba(5,12,16,.72)), var(--screen-bg, url('../assets/p03_00_5cb0d7f826.jpg'));
  background-size: cover;
  background-position: center;
}
.solution-tabs button, .news-tools button {
  min-width: max-content;
  padding: 12px 18px;
  color: inherit;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.solution-tabs button.is-active, .news-tools button.is-active {
  color: #001418;
  background: var(--cyan-2);
  border-color: var(--cyan-2);
}
.showcase {
  width: min(1320px, 92vw);
  margin: 0 auto;
}
.showcase__head {
  text-align: center;
}
.showcase__head h2 {
  margin: 10px 0 10px;
  color: #fff;
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1.08;
}
.showcase__head p:not(.eyebrow) {
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.7;
}
.showcase__stage {
  position: relative;
  display: grid;
  grid-template-columns: .74fr 1.18fr .74fr;
  gap: clamp(14px, 2vw, 28px);
  align-items: center;
  min-height: 56vh;
  margin-top: clamp(28px, 4vw, 42px);
}
.showcase__stage::before {
  content: "";
  position: absolute;
  left: -2vw;
  right: -2vw;
  bottom: -5vh;
  height: 30vh;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,216,232,.08) 54%, rgba(0,0,0,.2));
  opacity: .42;
  pointer-events: none;
}
.showcase-card {
  position: relative;
  z-index: 1;
  grid-row: 1;
  align-self: center;
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  transform: scale(.88);
  opacity: .58;
  filter: saturate(.82);
  transition: transform .7s cubic-bezier(.2,.82,.2,1), opacity .45s ease, filter .45s ease, box-shadow .45s ease;
}
.showcase-card.is-left {
  grid-column: 1;
}
.showcase-card.is-active {
  grid-column: 2;
}
.showcase-card.is-right {
  grid-column: 3;
}
.showcase-card.is-active {
  transform: scale(1);
  opacity: 1;
  filter: saturate(1);
  box-shadow: var(--shadow-strong);
}
.showcase-card__media {
  position: relative;
  aspect-ratio: 1.55;
  background: #071014;
}
.showcase-card__media img,
.showcase-card__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showcase-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 38%, rgba(0,0,0,.56) 100%);
}
.showcase-card__copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
}
.showcase-card__copy h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.18;
}
.showcase-card__copy p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.65;
}
.showcase__pager {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.showcase__pager button {
  width: 34px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255,255,255,.24);
}
.showcase__pager button.is-active {
  background: var(--cyan-2);
}

.media-gallery {
  width: min(1360px, 94vw);
  margin: 0 auto;
}
.media-gallery__frame {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr 64px;
  align-items: center;
  gap: 18px;
}
.media-gallery__viewport {
  position: relative;
  min-height: 62vh;
}
.media-gallery__viewport::before {
  content: "";
  position: absolute;
  left: -10vw;
  right: -10vw;
  bottom: -7vh;
  height: 34vh;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.12)), url('../assets/p04_02_459dc74c31.jpg') center bottom / cover no-repeat;
  opacity: .92;
  pointer-events: none;
}
.media-gallery__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: scale(.985);
  transition: opacity .55s ease, transform .55s ease;
  pointer-events: none;
}
.media-gallery__slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.media-gallery__poster {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1.95;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-strong);
  background: rgba(255,255,255,.05);
  cursor: pointer;
}
.media-gallery__poster img,
.media-gallery__poster video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-gallery__poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 48%, rgba(0,0,0,.42) 100%);
  pointer-events: none;
}
.media-gallery__poster::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, .42);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 14px 34px rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
  pointer-events: none;
}
.media-gallery__slide.is-active .media-gallery__poster:hover::before {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(0,216,232,.24);
  border-color: rgba(255,255,255,.34);
}
.media-gallery__play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  transform: translate(-34%, -50%);
  pointer-events: none;
}
.media-gallery__label {
  position: absolute;
  right: 34px;
  bottom: 28px;
  z-index: 2;
  text-align: right;
  color: #fff;
  pointer-events: none;
}
.media-gallery__label h3 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.08;
}
.media-gallery__label p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.7;
}
.media-gallery__arrow {
  position: relative;
  z-index: 3;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  background: rgba(255,255,255,.04);
  font-size: 36px;
  line-height: 1;
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}
.media-gallery__arrow:hover {
  background: rgba(0,216,232,.18);
  border-color: rgba(0,216,232,.5);
  transform: scale(1.04);
}
.media-gallery__dots {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}
.media-gallery__dots button {
  width: 36px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255,255,255,.24);
}
.media-gallery__dots button.is-active {
  background: var(--cyan-2);
}

.product-grid, .service-grid, .news-list, .case-rail {
  width: min(var(--max), 100%);
  margin: 0 auto;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #d4dde0;
  border-left: 1px solid #d4dde0;
}
.product-card {
  min-height: 285px;
  padding: 30px 24px;
  border-right: 1px solid #d4dde0;
  border-bottom: 1px solid #d4dde0;
  background: #fff;
  transition: transform .22s ease, background .22s ease, color .22s ease;
}
.product-card:hover {
  color: #fff;
  background: #0c181d;
  transform: translateY(-8px);
}
.product-card span {
  color: var(--red);
  font-weight: 700;
}
.product-card h3 {
  margin: 54px 0 16px;
  font-size: 22px;
  line-height: 1.35;
}
.product-card p {
  color: #65777d;
  line-height: 1.75;
}
.product-card:hover p { color: rgba(255,255,255,.7); }

.case-rail {
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  gap: 18px;
  align-items: center;
}
.case-arrow { color: var(--ink); border-color: #cdd8dc; background: #fff; }
.case-window { overflow: hidden; }
.case-track {
  display: flex;
  transition: transform .45s ease;
}
.case-card {
  flex: 0 0 calc((100% - 48px) / 3);
  margin-right: 24px;
  color: #fff;
  background: #0d171b;
  overflow: hidden;
}
.case-card img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  filter: saturate(.96);
}
.case-card div { padding: 24px; }
.case-card h3 { margin: 0 0 10px; font-size: 23px; }
.case-card p { margin: 0; color: rgba(255,255,255,.68); line-height: 1.7; }

.business__wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 560px;
  background: #071014;
  color: #fff;
}
.business-preview {
  position: relative;
  overflow: hidden;
}
.business-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .86;
  transition: transform .45s ease;
}
.business-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 24%, rgba(0,0,0,.82));
}
.business-preview div {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 2;
}
.business-preview span {
  color: var(--cyan-2);
  font-weight: 700;
}
.business-preview h3 {
  margin: 12px 0 0;
  max-width: 620px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.18;
}
.business-list {
  display: grid;
  align-content: stretch;
  border-left: 1px solid rgba(255,255,255,.12);
}
.business-list button {
  padding: 24px 30px;
  color: rgba(255,255,255,.76);
  text-align: left;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: transparent;
  transition: background .2s ease, color .2s ease, padding .2s ease;
}
.business-list button:hover,
.business-list button.is-active {
  padding-left: 42px;
  color: #fff;
  background: rgba(0,216,232,.12);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  min-height: 240px;
  padding: 34px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.service-card h3 { margin: 0 0 18px; font-size: 26px; }
.service-card p { color: rgba(255,255,255,.67); line-height: 1.75; }

.business-grid-section {
  background-image: linear-gradient(180deg, rgba(5,12,16,.22), rgba(5,12,16,.48) 28%, rgba(5,12,16,.76)), var(--screen-bg, url('../assets/p05_00_0a62465969.jpg'));
  background-size: cover;
  background-position: center;
}
.business-grid-shell {
  width: min(1320px, 92vw);
  margin: 0 auto;
}
.business-grid-head {
  margin-bottom: clamp(34px, 5vw, 52px);
  text-align: center;
}
.business-grid-head h2 {
  margin: 10px 0 0;
  color: #fff;
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 1.08;
}
.business-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 22px;
}
.business-tile {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 180px;
  padding: 24px 18px;
  color: #fff;
  text-align: center;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(10px);
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}
.business-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0, rgba(0,216,232,.22), transparent 58%);
  opacity: 0;
  transition: opacity .28s ease;
}
.business-tile:hover {
  transform: translateY(-8px);
  border-color: rgba(0,216,232,.42);
  background: rgba(0,216,232,.08);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}
.business-tile:hover::before {
  opacity: 1;
}
.business-tile__icon,
.business-tile__title {
  position: relative;
  z-index: 1;
}
.business-tile__icon {
  display: inline-grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 16px;
}
.business-tile__icon svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(255,255,255,.14));
}
.business-tile__title {
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 700;
  line-height: 1.42;
}

.news-tools {
  width: min(var(--max), 100%);
  display: flex;
  gap: 10px;
  margin: 0 auto 24px;
}
.news-tools button { color: var(--ink); background: #fff; border-color: #d4dde0; }
.news-list {
  display: grid;
  border-top: 1px solid #d4dde0;
}
.news-list a {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 76px;
  border-bottom: 1px solid #d4dde0;
  color: #263940;
  transition: color .2s ease, padding .2s ease;
}
.news-list a:hover {
  padding-left: 18px;
  color: #007d8a;
}
.news-list span {
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
}
.news-list a.is-hidden { display: none; }

.resource-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 28px;
  padding: clamp(36px, 6vw, 62px);
  color: #fff;
  background-image: linear-gradient(90deg, rgba(5,12,16,.94), rgba(5,12,16,.62)), url('../assets/p04_01_5cb0d7f826.jpg');
  background-size: cover;
  background-position: center;
}
.resource-band h2 {
  margin: 8px 0 12px;
  font-size: clamp(34px, 5vw, 58px);
}
.resource-band p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255,255,255,.72);
  line-height: 1.8;
}

.site-footer {
  color: rgba(255,255,255,.72);
  background:
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    #202426;
  background-size: 100px 100%, 100% 100px, auto;
}
.footer-contact-strip,
.footer-main,
.footer__bottom {
  width: min(1320px, calc(100vw - 36px));
  margin: 0 auto;
}
.footer-contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-contact-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 108px;
  padding: 18px 24px;
  color: #fff;
  border-right: 1px solid rgba(255,255,255,.08);
}
.footer-contact-card:last-child {
  border-right: 0;
}
.footer-contact-card:hover {
  background: rgba(255,255,255,.03);
}
.footer-contact-card__icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
}
.footer-contact-card__icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-contact-card__meta {
  display: grid;
  gap: 4px;
}
.footer-contact-card__meta small {
  color: rgba(255,255,255,.52);
  font-size: 13px;
}
.footer-contact-card__meta strong {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}
.footer-main {
  display: grid;
  grid-template-columns: .95fr .95fr 1.05fr auto;
  gap: 54px;
  align-items: start;
  padding: 50px 0 74px;
}
.footer-column {
  display: grid;
  gap: 10px;
}
.footer-column h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 16px;
}
.footer-column a {
  position: relative;
  padding-left: 14px;
  color: rgba(255,255,255,.74);
  font-size: 14px;
}
.footer-column a::before {
  content: "鈥?;
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(255,255,255,.4);
}
.footer-column a:hover {
  color: var(--cyan);
}
.footer-column h3 {
  font-size: 17px;
}
.footer-column a {
  line-height: 1.75;
}
.footer-column a::before {
  content: ">";
}
.footer-qr-group {
  display: flex;
  gap: 22px;
}
.footer-qr-group button {
  width: 96px;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
}
.footer-qr-group img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  background: #fff;
}
.footer-qr-group span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
}
.footer__bottom {
  padding: 0 0 24px;
  color: rgba(255,255,255,.36);
  text-align: center;
  font-size: 13px;
  line-height: 1.7;
}

.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 60;
  display: grid;
  gap: 10px;
}
.floating-actions button {
  width: 46px;
  height: 46px;
  color: #fff;
  border-radius: var(--radius-sm);
  background: rgba(5,12,16,.82);
  backdrop-filter: blur(14px);
}

.modal, .search-layer {
  position: fixed;
  inset: 0;
  z-index: 120;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.modal.is-open, .search-layer.is-open {
  opacity: 1;
  pointer-events: auto;
}
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 5vw, 72px);
  background: rgba(0,0,0,.78);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.video-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.video-lightbox__stage {
  width: min(78vw, 1280px);
  height: min(43.875vw, calc(100vh - 110px), 720px);
  background: #000;
  box-shadow: 0 28px 90px rgba(0,0,0,.5);
}
.video-lightbox__stage video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}
.video-lightbox__close {
  position: fixed;
  top: 18px;
  right: 20px;
  z-index: 141;
  width: 42px;
  height: 42px;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 34px;
  line-height: 1;
}
.modal__mask {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.62);
}
.modal__panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(520px, calc(100vw - 36px));
  max-height: calc(100vh - 36px);
  overflow: auto;
  transform: translate(-50%, -46%);
  padding: 36px;
  color: var(--ink);
  background: #fff;
  transition: transform .25s ease;
}
.modal.is-open .modal__panel { transform: translate(-50%, -50%); }
.modal__panel h2 { margin: 8px 0 24px; font-size: 30px; }
.modal__close, .search-layer__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 0;
  color: currentColor;
  background: transparent;
  font-size: 30px;
}
.contact-form {
  display: grid;
  gap: 14px;
}
.contact-form label {
  display: grid;
  gap: 7px;
  color: #53666d;
  font-size: 14px;
}
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  border: 1px solid #d6e0e4;
  padding: 12px 13px;
  color: var(--ink);
  background: #f8fbfc;
}
.modal__panel--qr { width: min(430px, calc(100vw - 36px)); }
.modal__panel--qr img { width: 100%; }

.search-layer {
  display: grid;
  place-items: center;
  padding: 24px;
  color: #fff;
  background: rgba(4, 11, 14, .96);
}
.search-layer label {
  width: min(760px, 94vw);
  display: grid;
  gap: 16px;
}
.search-layer span { color: var(--cyan); font-weight: 700; }
.search-layer input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.22);
  padding: 18px 0;
  color: #fff;
  background: transparent;
  font-size: clamp(30px, 6vw, 62px);
  outline: 0;
}
.search-layer__quick {
  width: min(760px, 94vw);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: -18vh;
}
.search-layer__quick a {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.18);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    padding-inline: 16px;
  }
  .main-nav {
    position: fixed;
    top: var(--header);
    right: 0;
    bottom: 0;
    width: 100vw;
    max-width: 100vw;
    display: grid;
    align-content: start;
    justify-content: stretch;
    gap: 0;
    padding: 14px 18px 28px;
    background: rgba(5,12,16,.96);
    transform: translateX(100%);
    transition: transform .28s ease;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav a {
    padding: 16px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .main-nav a::after { bottom: 12px; }
  .menu-toggle { display: block; }
  .mega-panel { display: none; }
  .section {
    padding: 56px 18px;
  }
  .section:not(.hero),
  .site-footer {
    min-height: auto;
  }
  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .case-card { flex-basis: calc((100% - 24px) / 2); }
  .footer__top { grid-template-columns: 1fr; padding-inline: clamp(18px, 4vw, 60px); }
  .qr-set { justify-content: flex-start; flex-wrap: wrap; }
}

@media (max-width: 760px) {
  :root { --header: 66px; }
  .site-header {
    gap: 10px;
    padding-inline: 12px;
  }
  .brand {
    gap: 8px;
    min-width: 0;
  }
  .brand__symbol {
    width: 30px;
    height: 30px;
  }
  .brand__text {
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .search-trigger { display: none; }
  .hero {
    min-height: 100svh;
  }
  .hero-slide__content {
    width: calc(100vw - 36px);
    margin-left: 18px;
    margin-right: 18px;
    padding-top: 84px;
  }
  .hero h1 { font-size: 34px; }
  .hero p:not(.eyebrow) {
    max-width: none;
    font-size: 19px;
    line-height: 1.7;
  }
  .hero-slide--portal::after {
    width: min(92vw, 430px);
    top: 46%;
    transform: translate(-50%, -44%);
  }
  .hero-slide__content--center {
    width: calc(100vw - 36px);
    padding-top: 120px;
  }
  .hero-kicker {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.55;
  }
  .hero-slide--portal h1 {
    font-size: 42px;
    line-height: 1.1;
    white-space: normal;
  }
  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }
  .btn {
    min-height: 44px;
    padding: 0 16px;
    font-size: 14px;
  }
  .hero-control {
    left: 18px;
    bottom: 18px;
    gap: 10px;
  }
  .hero-dots {
    min-width: 0;
    gap: 6px;
  }
  .hero-dots button {
    width: 20px;
  }
  .scroll-cue { display: none; }
  #smart-lab {
    background-image: linear-gradient(180deg, rgba(5,12,16,.48), rgba(5,12,16,.62)), var(--screen-bg, url('../assets/p02_00_d4dd0eb512.jpg'));
    background-repeat: no-repeat, no-repeat;
    background-size: 100% 100%, cover;
    background-position: 0 0, center;
  }
  .about__grid,
  .business__wrap,
  .resource-band {
    grid-template-columns: 1fr;
  }
  .about__copy h2,
  .showcase__head h2,
  .business-grid-head h2 {
    font-size: 30px;
  }
  .about__copy p,
  .about__news-list a {
    font-size: 14px;
    line-height: 1.8;
  }
  .about__news h3 {
    font-size: 24px;
  }
  .about__news { margin-top: 12px; }
  .stat-row,
  .product-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }
  .stat-row {
    gap: 10px;
    margin-top: 24px;
  }
  .stat-row div {
    padding: 18px 16px;
  }
  .stat-row strong {
    font-size: 42px;
  }
  .logo-chip {
    min-width: 110px;
    height: 52px;
    padding: 0 16px;
    font-size: 14px;
  }
  .logo-chip--image {
    width: 132px;
    min-width: 132px;
    max-width: 132px;
  }
  .showcase {
    width: min(94vw, 760px);
  }
  .showcase__stage {
    grid-template-columns: 1fr;
    min-height: clamp(320px, 94vw, 460px);
    margin-top: 20px;
  }
  .showcase__stage::before {
    left: -18px;
    right: -18px;
    height: 24vh;
    bottom: -4vh;
  }
  .showcase-card {
    grid-column: 1;
    grid-row: 1;
    transform: none;
  }
  .showcase-card.is-left,
  .showcase-card.is-active,
  .showcase-card.is-right {
    grid-column: 1;
  }
  .showcase-card:not(.is-active) {
    display: none;
    opacity: 0;
    pointer-events: none;
  }
  .showcase-card__copy {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
  .showcase-card__copy h3 {
    font-size: 24px;
  }
  .showcase-card__copy p {
    font-size: 14px;
    line-height: 1.7;
  }
  .showcase-card__media {
    aspect-ratio: 1.24;
  }
  .media-gallery {
    width: min(94vw, 900px);
  }
  .media-gallery__frame {
    grid-template-columns: 42px 1fr 42px;
    gap: 8px;
  }
  .media-gallery__viewport {
    min-height: clamp(260px, 78vw, 380px);
  }
  .media-gallery__viewport::before {
    left: -18px;
    right: -18px;
    height: 24vh;
    bottom: -5vh;
  }
  .media-gallery__poster {
    aspect-ratio: 1.28;
  }
  .media-gallery__label {
    left: 18px;
    right: 18px;
    bottom: 18px;
    text-align: left;
  }
  .media-gallery__label h3 {
    font-size: 26px;
  }
  .media-gallery__label p {
    font-size: 14px;
    line-height: 1.7;
  }
  .media-gallery__arrow {
    width: 42px;
    height: 42px;
    font-size: 28px;
  }
  .business-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .business-tile {
    min-height: 170px;
    padding: 20px 14px;
  }
  .business-tile__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 14px;
  }
  .business-tile__icon svg {
    width: 52px;
    height: 52px;
  }
  .business-tile__title {
    font-size: 18px;
  }
  .footer-contact-strip {
    grid-template-columns: 1fr;
  }
  .footer-contact-card {
    justify-content: flex-start;
    min-height: 84px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 0 48px;
  }
  .footer-qr-group {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px;
  }
  .footer-qr-group button {
    width: 84px;
  }
  .footer-qr-group img {
    width: 84px;
    height: 84px;
  }
  .footer-qr-group span {
    font-size: 13px;
  }
  .footer__bottom {
    padding: 0 0 82px;
    line-height: 1.7;
  }
  .business__wrap { min-height: 0; }
  .business-preview { min-height: 360px; }
  .business-list { border-left: 0; }
  .case-rail {
    grid-template-columns: 38px 1fr 38px;
    gap: 10px;
  }
  .case-arrow { width: 38px; height: 38px; }
  .case-card { flex-basis: 100%; margin-right: 16px; }
  .news-list a {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 0;
  }
  .resource-band { align-items: start; }
  .floating-actions {
    right: 12px;
    bottom: 14px;
    gap: 8px;
  }
  .floating-actions button {
    width: 40px;
    height: 40px;
  }
  .modal__panel { padding: 28px 18px; }
  .search-layer {
    padding: 18px;
  }
  .search-layer__quick {
    margin-top: 18px;
  }
}

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

/* MEGAROBO-like full-screen split layout */
@media (min-width: 1025px) {
  html.fullpage-enabled,
  html.fullpage-enabled body {
    height: 100%;
    overflow: hidden !important;
  }

  .fullpage-enabled .section,
  .fullpage-enabled .site-footer {
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
  }

  .fullpage-enabled .fullpage-track {
    position: fixed;
    inset: 0;
    z-index: 1;
    width: 100%;
    transition: transform 1000ms cubic-bezier(.72, 0, .22, 1);
    will-change: transform;
  }

  .fullpage-enabled .section:not(.hero),
  .fullpage-enabled .site-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 98px;
    padding-bottom: 58px;
    color: #fff;
    background-color: #050c10;
  }

  .fullpage-enabled .section:not(.hero) {
    flex-direction: column;
  }

  .fullpage-enabled .section:not(.hero)::before,
  .fullpage-enabled .site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(90deg, rgba(2,7,10,.88), rgba(2,7,10,.62) 48%, rgba(2,7,10,.86));
    pointer-events: none;
  }

  .fullpage-enabled .section:not(.hero)::after,
  .fullpage-enabled .site-footer::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
      radial-gradient(circle at 68% 22%, rgba(0,216,232,.18), transparent 28%),
      linear-gradient(rgba(0,216,232,.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,216,232,.07) 1px, transparent 1px);
    background-size: auto, 82px 82px, 82px 82px;
    opacity: .65;
    mask-image: linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.2), rgba(0,0,0,.82));
    pointer-events: none;
  }

  .fullpage-enabled .section > *,
  .fullpage-enabled .site-footer > * {
    position: relative;
    z-index: 1;
  }

  .fullpage-enabled .hero__slides,
  .fullpage-enabled .hero-slide {
    position: absolute;
    z-index: auto;
  }

  .fullpage-enabled .hero-slide__content,
  .fullpage-enabled .hero-control,
  .fullpage-enabled .scroll-cue {
    position: relative;
    z-index: 2;
  }

  .fullpage-enabled .hero-control,
  .fullpage-enabled .scroll-cue {
    position: absolute;
  }

  .fullpage-enabled #smart-lab {
    background-image: linear-gradient(90deg, rgba(5,12,16,.5), rgba(5,12,16,.38) 38%, rgba(5,12,16,.58)), var(--screen-bg, url('../assets/p02_00_d4dd0eb512.jpg'));
    background-repeat: no-repeat, no-repeat;
    background-size: 100% 100%, cover;
    background-position: 0 0, center;
  }

  .fullpage-enabled #smart-lab::before {
    background: linear-gradient(90deg, rgba(2,7,10,.34), rgba(2,7,10,.16) 48%, rgba(2,7,10,.38));
  }

  .fullpage-enabled #smart-lab::after {
    opacity: .34;
  }

  .fullpage-enabled #solutions {
    background-image: linear-gradient(180deg, rgba(5,12,16,.28), rgba(5,12,16,.44) 30%, rgba(5,12,16,.7)), var(--screen-bg, url('../assets/p03_00_5cb0d7f826.jpg'));
    background-size: cover;
    background-position: center;
  }

  .fullpage-enabled #solutions::before {
    background: linear-gradient(90deg, rgba(2,7,10,.36), rgba(2,7,10,.16) 48%, rgba(2,7,10,.4));
  }

  .fullpage-enabled #solutions::after {
    opacity: .34;
  }

  .fullpage-enabled #products {
    background-image: linear-gradient(180deg, rgba(5,12,16,.52), rgba(5,12,16,.82) 22%, rgba(5,12,16,.95)), var(--screen-bg, url('../assets/p04_01_5cb0d7f826.jpg'));
    background-size: cover;
    background-position: center;
  }

  .fullpage-enabled #business {
    background-image: linear-gradient(180deg, rgba(5,12,16,.2), rgba(5,12,16,.42) 24%, rgba(5,12,16,.72)), var(--screen-bg, url('../assets/p05_00_0a62465969.jpg'));
    background-size: cover;
    background-position: center;
  }

  .fullpage-enabled #business::before {
    background: linear-gradient(90deg, rgba(2,7,10,.36), rgba(2,7,10,.18) 48%, rgba(2,7,10,.42));
  }

  .fullpage-enabled #business::after {
    opacity: .38;
  }

  .fullpage-enabled #cases {
    background-image: linear-gradient(90deg, rgba(5,12,16,.86), rgba(5,12,16,.64)), url('../assets/p04_00_0a62465969.jpg');
    background-size: cover;
    background-position: center;
  }

  .fullpage-enabled #services {
    background-image: linear-gradient(90deg, rgba(5,12,16,.9), rgba(5,12,16,.72)), url('../assets/p06_00_0a62465969.jpg');
    background-size: cover;
    background-position: center;
  }

  .fullpage-enabled #news {
    background-image: linear-gradient(90deg, rgba(5,12,16,.88), rgba(5,12,16,.7)), url('../assets/p03_00_5cb0d7f826.jpg');
    background-size: cover;
    background-position: center;
  }

  .fullpage-enabled #resources {
    background-image: linear-gradient(90deg, rgba(5,12,16,.86), rgba(5,12,16,.64)), url('../assets/p01_00_d4dd0eb512.jpg');
    background-size: cover;
    background-position: center;
  }

  .fullpage-enabled .site-footer {
    position: relative;
    padding-left: clamp(18px, 4vw, 60px);
    padding-right: clamp(18px, 4vw, 60px);
  }

  .fullpage-enabled .section-head {
    margin-bottom: clamp(22px, 3.8vw, 42px);
  }

  .fullpage-enabled .section-head h2 {
    color: #fff;
    font-size: clamp(36px, 4.4vw, 62px);
    line-height: 1.08;
  }

  .fullpage-enabled .about__grid,
  .fullpage-enabled .business__wrap,
  .fullpage-enabled .product-grid,
  .fullpage-enabled .service-grid,
  .fullpage-enabled .news-list,
  .fullpage-enabled .case-rail,
  .fullpage-enabled .resource-band,
  .fullpage-enabled .footer__top {
    width: min(1280px, 88vw);
  }

  .fullpage-enabled .about__grid {
    grid-template-columns: 1.14fr .86fr;
  }

  .fullpage-enabled .about__panel {
    width: min(1290px, 89vw);
  }

  .fullpage-enabled .about__copy h2,
  .fullpage-enabled .about__news h3 {
    color: #fff;
  }

  .fullpage-enabled .about__copy p {
    color: rgba(255,255,255,.72);
    font-size: 16px;
    line-height: 1.9;
  }

  .fullpage-enabled .about__news-list a {
    color: rgba(255,255,255,.9);
    font-size: 15px;
  }

  .fullpage-enabled .about__news-list a::before {
    background: rgba(255,255,255,.82);
  }

  .fullpage-enabled .stat-row {
    margin-top: 28px;
    background: transparent;
  }

  .fullpage-enabled .stat-row div,
  .fullpage-enabled .product-card,
  .fullpage-enabled .service-card {
    border-color: rgba(255,255,255,.14);
    color: #fff;
    background: rgba(255,255,255,.055);
    backdrop-filter: blur(18px);
  }

  .fullpage-enabled .stat-row strong,
  .fullpage-enabled .news-list a {
    color: #fff;
  }

  .fullpage-enabled .stat-row div {
    padding: 18px 8px 18px 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .fullpage-enabled .stat-row span,
  .fullpage-enabled .product-card p,
  .fullpage-enabled .service-card p,
  .fullpage-enabled .news-list a {
    color: rgba(255,255,255,.68);
  }

  .fullpage-enabled .about__logos {
    margin-top: 40px;
    width: min(1290px, 89vw);
  }

  .fullpage-enabled .logo-marquee::before {
    background: linear-gradient(90deg, rgba(5,12,16,1), rgba(5,12,16,0));
  }

  .fullpage-enabled .logo-marquee::after {
    background: linear-gradient(270deg, rgba(5,12,16,1), rgba(5,12,16,0));
  }

  .fullpage-enabled .logo-chip {
    min-width: 148px;
    height: 64px;
    color: rgba(255,255,255,.92);
    background: rgba(255,255,255,.05);
    border-color: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
  }

  .fullpage-enabled .logo-chip--image {
    width: 184px;
    min-width: 184px;
    max-width: 184px;
    background: rgba(255,255,255,.1);
  }

  .fullpage-enabled .logo-chip img {
    filter: brightness(1.06) saturate(.96);
  }

  .fullpage-enabled .about__media,
  .fullpage-enabled .solution-visual {
    min-height: 52vh;
    max-height: 58vh;
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 24px 90px rgba(0,0,0,.32);
  }

  .fullpage-enabled .showcase {
    width: min(1360px, 94vw);
  }

  .fullpage-enabled .showcase__stage {
    min-height: 58vh;
    margin-top: 24px;
  }

  .fullpage-enabled .showcase-card {
    border-radius: 0;
  }

  .fullpage-enabled .showcase-card.is-active {
    transform: scale(1.02);
  }

  .fullpage-enabled .media-gallery {
    width: min(1400px, 96vw);
  }

  .fullpage-enabled #products .media-gallery {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - 156px);
    transform: translateY(-12px);
  }

  .fullpage-enabled .media-gallery__viewport {
    min-height: clamp(420px, 56vh, 560px);
  }

  .fullpage-enabled .media-gallery__poster {
    aspect-ratio: 2.35;
    background: rgba(255,255,255,.03);
  }

  .fullpage-enabled .business-grid-shell {
    width: min(1380px, 95vw);
  }

  .fullpage-enabled .business-tile {
    min-height: 176px;
    background: transparent;
    border-color: transparent;
    backdrop-filter: none;
  }

  .fullpage-enabled .business-tile:hover {
    background: rgba(255,255,255,.04);
    border-color: rgba(0,216,232,.24);
  }

  .fullpage-enabled .product-grid {
    border-color: rgba(255,255,255,.14);
  }

  .fullpage-enabled .product-card {
    min-height: 36vh;
  }

  .fullpage-enabled .case-card {
    background: rgba(5,12,16,.76);
    backdrop-filter: blur(16px);
  }

  .fullpage-enabled .business__wrap,
  .fullpage-enabled .solution-stage,
  .fullpage-enabled .resource-band {
    max-height: 68vh;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(5,12,16,.58);
    backdrop-filter: blur(16px);
  }

  .fullpage-enabled .news-tools button {
    color: #fff;
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.14);
  }

  .fullpage-enabled .news-tools button.is-active {
    color: #001418;
    background: var(--cyan-2);
  }

  .fullpage-enabled .news-list {
    border-color: rgba(255,255,255,.14);
  }

  .fullpage-enabled .news-list a {
    border-color: rgba(255,255,255,.12);
  }

  .fullpage-enabled .resource-band {
    align-items: center;
    background-image: linear-gradient(90deg, rgba(5,12,16,.84), rgba(5,12,16,.52)), url('../assets/p04_01_5cb0d7f826.jpg');
  }

  .fullpage-enabled .footer__bottom {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
  }

  .fullpage-enabled .site-footer {
    background:
      linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
      linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
      #202426;
    background-size: 120px 100%, 100% 120px, auto;
    display: block;
  }

  .fullpage-enabled .footer-contact-strip,
  .fullpage-enabled .footer-main,
  .fullpage-enabled .footer__bottom {
    width: min(1380px, 94vw);
  }

  .fullpage-enabled .footer-contact-strip {
    margin-top: 8px;
  }

  .fullpage-enabled .footer-main {
    padding-top: 42px;
    padding-bottom: 88px;
  }

  .screen-pagination {
    position: fixed;
    top: 50%;
    right: 28px;
    z-index: 90;
    display: grid;
    gap: 14px;
    transform: translateY(-50%);
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .screen-pagination button {
    position: relative;
    display: block;
    width: 18px;
    height: 18px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .screen-pagination button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,.42);
    transition: .25s ease;
  }

  .screen-pagination button::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid var(--cyan);
    border-radius: 50%;
    opacity: 0;
    transform: scale(.55);
    transition: .25s ease;
  }

  .screen-pagination button.is-active::before {
    background: var(--cyan-2);
  }

  .screen-pagination button.is-active::after {
    opacity: 1;
    transform: scale(1);
  }

  .screen-name {
    position: fixed;
    left: clamp(18px, 4vw, 60px);
    bottom: 28px;
    z-index: 90;
    color: rgba(255,255,255,.62);
    font-size: 12px;
    letter-spacing: 0;
    text-transform: uppercase;
  }
}

@media (max-width: 1024px) {
  html.fullpage-enabled,
  html.fullpage-enabled body {
    overflow: auto !important;
  }

  .screen-pagination,
  .screen-name {
    display: none;
  }

  .section:not(.hero),
  .site-footer {
    min-height: auto;
  }
}
