:root {
  --ink: #15151c;
  --muted: #676a75;
  --line: #e7e8ee;
  --paper: #fbfbfd;
  --white: #ffffff;
  --violet: #0878d7;
  --v6: #00b8ff;
  --v6-deep: #0878d7;
  --v6-soft: #dff5ff;
  --shadow: 0 20px 60px rgba(23, 24, 35, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--template-page-background, #dff2ff);
  color: var(--ink);
  font-family:
    "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.6;
}

#product-template-root {
  min-width: 0;
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(20px, 5vw, 72px);
  color: #2d2645;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 12px 40px rgba(20, 22, 32, 0.09);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 180px;
  white-space: nowrap;
}

.brand picture,
.module-carousel-slide picture,
.backend-showcase picture {
  display: block;
}

.brand-logo {
  display: block;
  width: clamp(150px, 12vw, 190px);
  height: auto;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #0878d7, #35e0ff);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(0, 184, 255, 0.35);
  font-size: 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(4px, 0.65vw, 8px);
  margin: 0 auto;
  font-size: 14px;
}

.nav-group {
  position: relative;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px clamp(9px, 0.85vw, 13px);
  border: 1px solid rgba(0, 184, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.nav-group > a::before {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 8px;
  border-top: 4px solid currentColor;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: "";
  order: 2;
  opacity: 0.66;
}

.nav-links a.nav-featured {
  min-height: 44px;
  padding-inline: clamp(16px, 1.35vw, 22px);
  border-color: rgba(0, 184, 255, 0.72);
  background: linear-gradient(135deg, var(--v6), var(--v6-deep));
  color: #fff;
  font-weight: 800;
  box-shadow:
    0 12px 28px rgba(0, 184, 255, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.nav-links a.nav-featured::after {
  display: none;
}

.nav-group > a.nav-featured::before {
  border-top-color: #fff;
  opacity: 0.92;
}

.nav-links a.nav-featured:hover,
.nav-links a.nav-featured.is-active {
  border-color: rgba(0, 184, 255, 0.9);
  background: linear-gradient(135deg, #12d5ff, #0878d7);
  color: #fff;
  box-shadow:
    0 16px 34px rgba(0, 184, 255, 0.36),
    inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 25;
  display: grid;
  min-width: 150px;
  padding: 8px;
  border: 1px solid rgba(0, 184, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(38, 30, 82, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.nav-featured-group .sub-menu {
  min-width: 166px;
  border-color: rgba(0, 184, 255, 0.32);
  box-shadow:
    0 20px 48px rgba(8, 120, 215, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.68);
}

.nav-featured-group .sub-menu a {
  color: #0d1b2a;
  font-weight: 700;
}

.nav-featured-group .sub-menu a:not(.sub-menu-button) {
  justify-content: center;
  text-align: center;
}

.nav-group:hover .sub-menu,
.nav-group:focus-within .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.sub-menu a {
  justify-content: center;
  min-height: 36px;
  padding: 7px 10px;
  border: 0;
  background: transparent;
  color: #3f3655;
  font-size: 14px;
  text-align: center;
  white-space: nowrap;
}

.sub-menu a:hover {
  background: rgba(0, 184, 255, 0.1);
  box-shadow: none;
}

.sub-menu a.sub-menu-button {
  justify-content: center;
  min-height: 38px;
  margin-bottom: 4px;
  padding: 8px 14px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--v6), var(--v6-deep));
  color: #fff;
  font-weight: 900;
  box-shadow:
    0 10px 22px rgba(0, 184, 255, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.sub-menu a.sub-menu-button:hover {
  background: linear-gradient(135deg, #12d5ff, #0878d7);
  color: #fff;
  box-shadow:
    0 12px 26px rgba(0, 184, 255, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.nav-links a,
.site-footer a,
.text-link {
  position: relative;
}

.nav-links a::after,
.site-footer a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after,
.site-footer a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
}

.nav-links a:hover,
.nav-links a.is-active {
  border-color: rgba(0, 184, 255, 0.42);
  background: rgba(0, 184, 255, 0.12);
  color: #0d1b2a;
  box-shadow: 0 10px 24px rgba(0, 184, 255, 0.1);
}

.header-action {
  padding: 10px 18px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--v6), var(--v6-deep));
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  color: inherit;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(820px, 100svh);
  overflow: hidden;
  background: linear-gradient(180deg, #f0fbff 0%, #dff2ff 100%);
  color: #0d1b2a;
}

.hero > picture {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
}

.hero-image {
  position: absolute;
  top: clamp(136px, 14vh, 152px);
  right: clamp(44px, 7vw, 144px);
  left: auto;
  width: clamp(760px, 44vw, 900px);
  height: auto;
  max-width: 48vw;
  max-height: calc(100% - 118px);
  object-fit: contain;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(240, 251, 255, 1) 0%, rgba(240, 251, 255, 0.96) 39%, rgba(156, 225, 255, 0.34) 55%, rgba(156, 225, 255, 0) 76%),
    radial-gradient(circle at 84% 28%, rgba(255, 255, 255, 0.14), transparent 30%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 40px));
  min-width: 0;
  align-self: center;
  margin-left: clamp(20px, 7vw, 96px);
  padding: 88px 0 44px;
}

.hero-modules-head {
  max-width: 700px;
  margin-bottom: 24px;
}

.hero-modules-head p:not(.eyebrow) {
  max-width: 640px;
  color: #5f6f82;
  font-size: clamp(16px, 1.6vw, 20px);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero-modules-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 14px;
  min-width: 0;
}

.hero-modules-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 136px;
  padding: 16px;
  border: 1px solid rgba(0, 184, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 38px rgba(18, 101, 148, 0.08);
  backdrop-filter: blur(10px);
  min-width: 0;
}

.hero-modules-grid .module-no {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 34px;
  height: 34px;
  font-size: 14px;
}

.hero-modules-grid .module-icon-card {
  grid-row: span 2;
  width: 68px;
  height: 68px;
  margin: 28px 0 0;
}

.hero-modules-grid h3 {
  align-self: end;
  margin: 20px 0 4px;
  font-size: 20px;
}

.hero-modules-grid p {
  align-self: start;
  margin-bottom: 0;
  color: #5f6f82;
  font-size: 14px;
  line-height: 1.48;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--v6);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--v6-deep);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
p,
li,
a,
button,
strong,
small {
  overflow-wrap: break-word;
}

h1 {
  max-width: 710px;
  margin-bottom: 22px;
  font-size: clamp(44px, 5.6vw, 68px);
  line-height: 1.12;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 32px;
  color: #4c4760;
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.button.primary {
  background: linear-gradient(135deg, var(--v6), var(--v6-deep));
  color: var(--white);
  box-shadow: 0 16px 34px rgba(0, 184, 255, 0.28);
}

.button.ghost {
  border-color: rgba(0, 184, 255, 0.24);
  background: rgba(255, 255, 255, 0.68);
  color: var(--v6-deep);
}

.hero-trust {
  position: absolute;
  right: clamp(18px, 4vw, 72px);
  bottom: 26px;
  left: clamp(18px, 4vw, 72px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 14px 18px;
  border: 1px solid rgba(0, 184, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(91, 64, 158, 0.12);
  backdrop-filter: blur(16px);
}

.hero-trust span {
  display: grid;
  gap: 4px;
  min-height: 54px;
  padding-left: 44px;
  position: relative;
}

.hero-trust span::before {
  position: absolute;
  top: 6px;
  left: 4px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  background: rgba(0, 184, 255, 0.12);
  color: var(--v6-deep);
  content: "◆";
  font-size: 13px;
}

.hero-trust strong {
  color: #2d2645;
  font-size: 15px;
}

.hero-trust small {
  color: #817a94;
  font-size: 12px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-stats span {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  min-height: 48px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.hero-stats strong {
  font-size: 26px;
  line-height: 1;
}

.section {
  padding: clamp(72px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.module-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  width: 100vw;
  margin: 0 auto clamp(44px, 6vw, 70px);
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: clamp(34px, 4.5vw, 58px) clamp(20px, 5vw, 72px) clamp(34px, 5vw, 58px);
  overflow: hidden;
  background: #dff2ff;
}

.module-showcase-title {
  position: relative;
  z-index: 0;
  display: inline-block;
  margin-bottom: 14px;
  color: #17151f;
  font-size: clamp(36px, 5.2vw, 62px);
  line-height: 1.08;
  isolation: isolate;
  text-align: center;
}

.module-showcase-title::after {
  position: absolute;
  right: 0.04em;
  bottom: 0.04em;
  left: 0.04em;
  z-index: -1;
  height: 0.24em;
  border-radius: 999px;
  background: #90e4ff;
  content: "";
}

.module-showcase-subtitle {
  margin: 0 0 clamp(22px, 2.8vw, 34px);
  color: #73717c;
  font-size: clamp(16px, 1.8vw, 24px);
  line-height: 1.35;
  text-align: center;
}

.module-carousel {
  position: relative;
  min-width: 0;
  width: min(1720px, calc(100vw - 48px));
  max-width: 100%;
  margin: 0 auto;
  --carousel-gap: clamp(26px, 2.7vw, 46px);
  --carousel-phone-width: clamp(198px, 14.4vw, 250px);
  --carousel-phone-center-width: clamp(232px, 17.4vw, 298px);
  --carousel-far-scale: 0.98;
  --carousel-side-scale: 1;
  --carousel-center-scale: 1.16;
  --carousel-view-width: 100%;
}

.module-carousel-viewport {
  position: relative;
  overflow: hidden;
  width: var(--carousel-view-width);
  height: clamp(520px, 42vw, 690px);
  margin: 0 auto;
  padding: 0;
}

.module-carousel-track {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: var(--carousel-gap);
  width: 100%;
  width: max-content;
  height: 100%;
  transform: translate3d(var(--carousel-track-x, 0px), 0, 0);
  will-change: transform;
}

.module-carousel-slide {
  position: relative;
  flex: 0 0 var(--carousel-phone-width);
  width: var(--carousel-phone-width);
  margin: 0;
  text-align: center;
  opacity: 0;
  transform: translateZ(0) scale(0.96);
  transform-origin: center top;
  transition: none;
  will-change: transform, opacity;
  backface-visibility: hidden;
  pointer-events: none;
}

.module-carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.module-carousel.is-ready .module-carousel-track {
  transition: transform 1.08s cubic-bezier(0.22, 1, 0.36, 1);
}

.module-carousel.is-jumping .module-carousel-track {
  transition: none;
}

.module-carousel.is-ready .module-carousel-slide {
  transition:
    opacity 0.56s ease,
    transform 1.04s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.56s ease;
}

.module-carousel-slide.slot--far-left,
.module-carousel-slide.slot--left,
.module-carousel-slide.slot--center,
.module-carousel-slide.slot--right,
.module-carousel-slide.slot--far-right {
  opacity: 1;
  pointer-events: auto;
}

.module-carousel-slide.slot--far-left {
  z-index: 1;
  opacity: 0.86;
  transform: translateZ(0) scale(var(--carousel-far-scale));
}

.module-carousel-slide.slot--left {
  z-index: 2;
  opacity: 0.96;
  transform: translateZ(0) scale(var(--carousel-side-scale));
}

.module-carousel-slide.slot--center {
  z-index: 3;
  opacity: 1;
  transform: translateZ(0) scale(var(--carousel-center-scale));
}

.module-carousel-slide.slot--right {
  z-index: 2;
  opacity: 0.96;
  transform: translateZ(0) scale(var(--carousel-side-scale));
}

.module-carousel-slide.slot--far-right {
  z-index: 1;
  opacity: 0.86;
  transform: translateZ(0) scale(var(--carousel-far-scale));
}

.module-carousel-slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 472 / 1024;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(72, 55, 132, 0.12));
  transition: filter 0.56s ease;
}

.module-carousel-slide.slot--center img {
  filter: drop-shadow(0 28px 46px rgba(72, 55, 132, 0.2));
}

.module-carousel-slide figcaption {
  min-height: 34px;
  margin-top: 18px;
  color: #6f667e;
  font-size: clamp(16px, 1.25vw, 21px);
  line-height: 1.35;
  text-align: center;
  transition:
    color 0.32s ease,
    font-size 0.32s ease,
    font-weight 0.32s ease;
}

.module-carousel-slide.slot--center figcaption {
  color: #17151f;
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 800;
}

.module-carousel-button {
  position: absolute;
  top: 45%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 184, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(72, 55, 132, 0.16);
  cursor: pointer;
  transform: translateY(-50%);
}

.module-carousel-button.prev {
  left: 0;
}

.module-carousel-button.next {
  right: 0;
}

.module-carousel-button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  border-top: 2px solid var(--v6-deep);
  border-right: 2px solid var(--v6-deep);
  content: "";
}

.module-carousel-button.prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.module-carousel-button.next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.module-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(8px, 1.4vw, 18px);
}

.module-carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(111, 69, 239, 0.24);
  cursor: pointer;
  transition:
    width 0.2s ease,
    background 0.2s ease,
    opacity 0.2s ease;
}

.module-carousel-dots button.is-active {
  width: 32px;
  height: 8px;
  background: var(--v6-deep);
}

.backend-showcase {
  width: min(1180px, 100%);
  margin: 0 auto clamp(54px, 7vw, 84px);
  padding: clamp(12px, 1.3vw, 18px);
  border: 5px solid #101216;
  border-radius: 24px;
  background: #1a1d22;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.08),
    0 28px 58px rgba(13, 27, 42, 0.22);
}

.backend-showcase img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: #fff;
}

@media (max-width: 1700px) and (min-width: 981px) {
  .hero-content {
    width: min(640px, calc(100% - 40px));
    margin-left: clamp(20px, 6vw, 72px);
  }

  .hero-image {
    right: clamp(24px, 3vw, 64px);
    width: clamp(560px, 44vw, 760px);
    max-width: 46vw;
  }
}

@media (max-width: 1280px) and (min-width: 981px) {
  .hero-content {
    width: min(600px, calc(100% - 40px));
    margin-left: clamp(20px, 6vw, 70px);
  }

  .hero-image {
    top: 152px;
    right: clamp(18px, 2vw, 28px);
    width: clamp(460px, 40vw, 520px);
    max-width: 42vw;
  }

  h1 {
    font-size: clamp(42px, 5.4vw, 62px);
  }
}

@media (max-width: 1080px) and (min-width: 981px) {
  .hero-image {
    display: none;
  }

  .hero-content {
    width: min(760px, calc(100% - 40px));
  }
}

@media (max-width: 1180px) {
  .module-carousel {
    width: 100%;
    --carousel-gap: clamp(18px, 3vw, 30px);
    --carousel-phone-width: clamp(150px, 21vw, 190px);
    --carousel-phone-center-width: clamp(198px, 27vw, 244px);
    --carousel-center-scale: 1.16;
    --carousel-view-width: min(100%, 860px);
  }

  .module-carousel-viewport {
    height: clamp(430px, 76vw, 610px);
  }

  .module-carousel-slide.slot--far-left,
  .module-carousel-slide.slot--far-right {
    opacity: 0;
    pointer-events: none;
  }

  .module-carousel-slide.slot--left,
  .module-carousel-slide.slot--right {
    opacity: 1;
    transform: translateZ(0) scale(var(--carousel-side-scale));
  }

  .module-carousel-slide.slot--center {
    opacity: 1;
    transform: translateZ(0) scale(var(--carousel-center-scale));
  }

  .module-carousel-button,
  .module-carousel-dots {
    display: flex;
  }
}

.module-no {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: #11131d;
  color: #fff;
  font-weight: 900;
  box-shadow: inset 0 -7px 0 var(--v6);
}

.module-icon-card {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 92px;
  height: 92px;
  margin: 28px 0 24px;
  border: 1px solid rgba(0, 184, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0) 34%),
    linear-gradient(145deg, #e8f8ff 0%, #c8efff 58%, #b7e9fb 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.34),
    0 10px 22px rgba(8, 120, 215, 0.1);
}

.module-icon-card::before,
.module-icon-card::after {
  position: absolute;
  content: "";
}

.module-icon-svg svg {
  display: block;
  width: 72%;
  height: 72%;
}

.module-icon-svg::before,
.module-icon-svg::after {
  display: none;
}

.module-icon-one::before {
  top: 28px;
  left: 20px;
  width: 22px;
  height: 22px;
  border: 3px solid #111;
  border-radius: 7px;
  background: #fff;
  box-shadow:
    28px 0 0 #fff,
    0 28px 0 #fff,
    28px 28px 0 #fff;
}

.module-icon-one::after {
  top: 24px;
  right: 18px;
  width: 26px;
  height: 26px;
  border: 3px solid #111;
  border-radius: 8px;
  background: #bdeeff;
  transform: rotate(45deg);
}

.module-icon-two::before {
  top: 22px;
  left: 32px;
  width: 15px;
  height: 54px;
  border: 3px solid #164070;
  border-radius: 10px;
  background: #fff;
  transform: rotate(42deg);
}

.module-icon-two::after {
  right: 20px;
  bottom: 23px;
  width: 14px;
  height: 14px;
  border: 3px solid #164070;
  border-radius: 50%;
  background: #fff;
}

.module-icon-three::before {
  top: 25px;
  left: 22px;
  width: 48px;
  height: 48px;
  border: 7px solid #fff;
  border-right-color: #111;
  border-bottom-color: #111;
  border-radius: 50%;
}

.module-icon-three::after {
  top: 18px;
  right: 19px;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 18px solid #111;
  transform: rotate(35deg);
}

.module-icon-four::before {
  top: 20px;
  left: 32px;
  width: 34px;
  height: 56px;
  border: 4px solid #164070;
  border-radius: 9px;
  background: #fff;
  transform: rotate(14deg);
}

.module-icon-four::after {
  top: 39px;
  left: 40px;
  width: 25px;
  height: 21px;
  background: #bdeeff;
  transform: rotate(14deg);
}


.section-head {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head.narrow {
  max-width: 960px;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.value-grid,
.feature-grid,
.metric-grid,
.scene-grid {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  gap: 18px;
}

.value-grid {
  grid-template-columns: repeat(3, 1fr);
}

.value-grid article {
  min-height: 218px;
  padding: 26px;
  border: 1px solid rgba(0, 184, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(18, 101, 148, 0.08);
  backdrop-filter: blur(10px);
}

.value-grid p,
.feature-item p,
.timeline p,
.play-copy p,
.demo-copy p {
  color: var(--muted);
}

.icon-box {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 8px;
  background: #10121c;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  box-shadow: inset 0 -7px 0 var(--v6);
}

.feature-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(240, 251, 255, 0.98), rgba(211, 240, 255, 0.94)),
    #dff2ff;
  color: #0d1b2a;
}

.scene-grid span {
  width: fit-content;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 184, 255, 0.1);
  color: var(--v6-deep);
  font-size: 13px;
  font-weight: 900;
}

.demo-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.72fr);
  gap: clamp(34px, 7vw, 98px);
  align-items: center;
  background:
    radial-gradient(circle at 86% 18%, rgba(0, 184, 255, 0.16), transparent 26%),
    var(--v6-soft);
}

.demo-copy {
  max-width: 620px;
}

.demo-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 20px;
}

.demo-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(0, 184, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--v6-deep);
  font-size: 14px;
  font-weight: 800;
}

.phone-stage {
  display: flex;
  justify-content: center;
}

.phone-shell {
  position: relative;
  width: min(360px, 100%);
  min-height: 690px;
  overflow: hidden;
  border: 10px solid #171922;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(234, 238, 255, 0.8), rgba(249, 249, 255, 1)),
    #f9f9f9;
  box-shadow: 0 24px 70px rgba(64, 54, 130, 0.28);
}

.phone-shell::before {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 86px;
  height: 22px;
  border-radius: 999px;
  background: #171922;
  content: "";
  transform: translateX(-50%);
  z-index: 2;
}

.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 42px 18px 14px;
  color: #262338;
  font-weight: 900;
}

.phone-status strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 24px;
  border: 1px solid #fff;
  border-radius: 999px;
  background: var(--v6-deep);
  color: #fff;
  font-size: 12px;
}

.phone-banner {
  display: grid;
  min-height: 142px;
  margin: 0 16px 14px;
  padding: 18px;
  border: 2px solid #fff;
  border-radius: 15px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent),
    linear-gradient(135deg, #0878d7, #00b8ff 58%, #35e0ff);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 184, 255, 0.2);
}

.phone-banner span {
  width: fit-content;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  font-size: 12px;
  font-weight: 800;
}

.phone-banner strong {
  align-self: end;
  font-size: 28px;
  line-height: 1.1;
}

.phone-banner small {
  color: rgba(255, 255, 255, 0.82);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 0 16px 14px;
}

.quick-grid span {
  display: grid;
  min-height: 58px;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--v6-deep);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.phone-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  margin: 0 16px 14px;
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f1ecff, #fff);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
}

.phone-card small,
.goods-mini-grid small {
  color: #999;
}

.phone-card strong {
  display: block;
  margin-top: 4px;
}

.phone-card em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #a478ff, #7c4dff);
  color: #fff;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.goods-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0 16px 82px;
}

.goods-mini-grid article {
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
}

.goods-mini-grid span {
  display: block;
  height: 112px;
  background:
    linear-gradient(90deg, transparent 42%, rgba(255, 255, 255, 0.78) 42% 58%, transparent 58%),
    linear-gradient(0deg, transparent 45%, rgba(255, 255, 255, 0.78) 45% 58%, transparent 58%),
    linear-gradient(135deg, var(--v6-deep), #90e4ff);
}

.goods-mini-grid article:nth-child(2) span {
  background:
    linear-gradient(90deg, transparent 42%, rgba(255, 255, 255, 0.78) 42% 58%, transparent 58%),
    linear-gradient(0deg, transparent 45%, rgba(255, 255, 255, 0.78) 45% 58%, transparent 58%),
    linear-gradient(135deg, #00b8ff, #bdeeff);
}

.goods-mini-grid strong,
.goods-mini-grid small {
  display: block;
  padding: 0 10px;
}

.goods-mini-grid strong {
  padding-top: 8px;
  font-size: 14px;
}

.goods-mini-grid small {
  padding-bottom: 10px;
  font-size: 12px;
}

.phone-tabs {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: 66px;
  padding-top: 10px;
  background: #fff;
  box-shadow: 0 -8px 22px rgba(0, 0, 0, 0.06);
}

.phone-tabs span {
  display: grid;
  place-items: center;
  color: #9da0aa;
  font-size: 12px;
  font-weight: 800;
}

.phone-tabs span::before {
  display: block;
  width: 20px;
  height: 20px;
  margin-bottom: 2px;
  border: 2px solid currentColor;
  border-radius: 6px;
  content: "";
}

.phone-tabs .active {
  color: #0878d7;
}

.feature-band .section-head p:not(.eyebrow) {
  color: #5f6f82;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-item {
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(0, 184, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(18, 101, 148, 0.08);
  backdrop-filter: blur(10px);
}

.feature-item span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 8px;
  background: #10121c;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  box-shadow: inset 0 -7px 0 var(--v6);
}

.timeline span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--v6);
  font-weight: 900;
}

.play-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding-right: 0;
  padding-left: 0;
}

.play-copy {
  max-width: 520px;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--v6-deep);
  font-weight: 900;
}

.play-panel {
  min-height: 420px;
  padding: clamp(22px, 4vw, 44px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 184, 255, 0.18), rgba(144, 228, 255, 0.24)),
    #ffffff;
  box-shadow: var(--shadow);
}

.box-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.blind-box {
  min-height: 122px;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.blind-box:nth-child(2) {
  background: var(--v6-deep);
}

.blind-box:nth-child(3) {
  background: #90e4ff;
  color: #0d1b2a;
}

.blind-box:hover,
.blind-box.active {
  transform: translateY(-6px);
}

.draw-result {
  min-height: 210px;
  padding: 34px;
  border-radius: 8px;
  background: var(--white);
  text-align: center;
}

.spark {
  display: inline-grid;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: #f7edf2;
  color: var(--v6);
  font-size: 28px;
}

.draw-result p {
  margin-bottom: 4px;
  color: var(--muted);
}

.draw-result strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(24px, 4vw, 34px);
}

.draw-result small {
  color: var(--muted);
}

.scene-section {
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(48px, 5vw, 76px);
  background:
    linear-gradient(180deg, rgba(223, 242, 255, 0.96), rgba(240, 251, 255, 0.98)),
    #dff2ff;
}

.scene-grid {
  grid-template-columns: repeat(5, 1fr);
}

.scene-grid article {
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(0, 184, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(18, 101, 148, 0.08);
  backdrop-filter: blur(10px);
}

.scene-grid strong {
  display: block;
  margin: 20px 0 12px;
  font-size: 23px;
  line-height: 1.18;
}

.scene-grid p {
  color: var(--muted);
}

.product-section {
  background:
    linear-gradient(180deg, rgba(240, 251, 255, 0.98), rgba(211, 240, 255, 0.96)),
    #dff2ff;
}

.combined-capabilities {
  margin-top: clamp(70px, 8vw, 110px);
}

.comparison-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(240, 251, 255, 0.98), rgba(223, 242, 255, 0.96)),
    #dff2ff;
}

.comparison-scroller {
  width: min(1480px, calc(100vw - 24px));
  margin: 0 auto;
  overflow-x: auto;
  border-radius: 8px;
  box-shadow: 0 20px 52px rgba(18, 101, 148, 0.1);
}

.comparison-table {
  min-width: 980px;
  border: 1px solid rgba(0, 184, 255, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
}

.comparison-row {
  display: grid;
  grid-template-columns: 178px repeat(4, minmax(178px, 1fr));
  min-height: 78px;
  border-top: 1px solid rgba(0, 184, 255, 0.1);
}

.comparison-row:first-child {
  border-top: 0;
}

.comparison-row > div {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 18px 20px;
  color: #5d5874;
  font-size: 18px;
  line-height: 1.5;
}

.comparison-header {
  min-height: 76px;
  background: rgba(255, 255, 255, 0.72);
}

.comparison-column-head {
  gap: 10px;
  flex-wrap: wrap;
}

.comparison-header > div,
.comparison-label {
  color: #29233e !important;
  font-weight: 900;
}

.comparison-cell {
  gap: 6px;
  flex-wrap: wrap;
}

.comparison-line {
  display: block;
  width: 100%;
}

.comparison-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--v6), var(--v6-deep));
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  box-shadow:
    0 8px 18px rgba(0, 184, 255, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.cases {
  background: var(--white);
}

.metric-grid {
  grid-template-columns: repeat(4, 1fr);
}

.metric-grid article {
  padding: 30px 22px;
  border-left: 1px solid var(--line);
  text-align: center;
}

.metric-grid article:first-child {
  border-left: 0;
}

.metric-grid strong {
  display: block;
  color: var(--v6-deep);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
}

.metric-grid span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.process {
  background: #f4f6fa;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0;
  gap: 16px;
  list-style: none;
}

.timeline li {
  min-height: 240px;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
}

.delivery-section {
  position: relative;
  margin-top: clamp(40px, 5.5vw, 66px);
  padding-top: clamp(34px, 4vw, 50px);
  border-top: 1px solid rgba(0, 184, 255, 0.12);
}

.delivery-section::before {
  position: absolute;
  inset: 0 50% auto;
  z-index: 0;
  width: 100vw;
  height: 100%;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(255, 255, 255, 0.28) 12% 12.08%, transparent 12.08% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 34%);
  opacity: 0.34;
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.delivery-section > * {
  position: relative;
  z-index: 1;
}

.delivery-head {
  max-width: 760px;
  margin-bottom: clamp(24px, 3.4vw, 36px);
}

.delivery-head h3 {
  margin-bottom: 14px;
  color: #17151f;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.08;
}

.delivery-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1180px, 100%);
  margin: 0 auto;
  gap: 20px;
}

.delivery-steps article {
  position: relative;
  min-height: 238px;
  padding: 26px 26px 28px;
  border: 1px solid rgba(0, 184, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px rgba(18, 101, 148, 0.09);
  overflow: visible;
  backdrop-filter: blur(10px);
}

.delivery-steps article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, var(--v6), #90e4ff);
  content: "";
}

.delivery-steps article::after {
  position: absolute;
  top: 49px;
  right: -22px;
  z-index: 0;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 184, 255, 0.36), rgba(144, 228, 255, 0.68));
  content: "";
}

.delivery-steps article:last-child::after {
  display: none;
}

.delivery-steps span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 8px;
  background: #10121c;
  color: #fff;
  font-weight: 900;
  box-shadow:
    inset 0 -8px 0 var(--v6),
    0 12px 24px rgba(8, 120, 215, 0.16);
}

.delivery-steps h3 {
  margin-bottom: 12px;
  color: #10121c;
  font-size: 22px;
  line-height: 1.25;
}

.delivery-steps p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.contact-section {
  padding-top: clamp(56px, 6vw, 88px);
  padding-bottom: clamp(76px, 9vw, 124px);
  background:
    linear-gradient(180deg, rgba(240, 251, 255, 0.98), rgba(223, 242, 255, 0.96)),
    #dff2ff;
  color: #0d1b2a;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  width: min(1180px, 100%);
  margin: 0 auto;
  gap: clamp(32px, 4.2vw, 56px);
  align-items: stretch;
  min-width: 0;
}

.contact-copy {
  position: relative;
  z-index: 1;
  isolation: isolate;
  width: 100%;
  max-width: 580px;
  min-width: 0;
  padding: 30px;
  border: 1px solid rgba(0, 184, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 46px rgba(18, 101, 148, 0.1);
}

.contact-copy .eyebrow {
  margin-bottom: 10px;
  color: var(--v6-deep);
}

.contact-copy h2 {
  max-width: 100%;
  margin-bottom: 12px;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.12;
}

.contact-copy p:not(.eyebrow) {
  max-width: 100%;
  color: #5f6f82;
  font-size: 18px;
}

.contact-materials {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.contact-materials-head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
}

.contact-materials-head span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--v6), #7258f5);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.contact-materials-head h3 {
  margin: 0;
  color: #10121c;
  font-size: 24px;
  line-height: 1.25;
}

.contact-materials-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-material-card {
  display: grid;
  grid-template-columns: 40px 30px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  min-width: 0;
  min-height: 118px;
  padding: 12px;
  border: 1px solid rgba(87, 141, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 26px rgba(8, 120, 215, 0.06);
}

.contact-material-icon {
  position: relative;
  display: grid;
  grid-row: 1 / span 2;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(225, 238, 255, 0.86)),
    #eaf3ff;
  color: var(--v6-deep);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  box-shadow:
    inset 0 0 0 1px rgba(0, 184, 255, 0.2),
    0 10px 18px rgba(8, 120, 215, 0.1);
}

.contact-material-icon::after {
  display: none;
}

.contact-material-no {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #0878d7, #00b8ff);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
}

.contact-material-card:nth-child(3) .contact-material-no,
.contact-material-card:nth-child(6) .contact-material-no {
  background: linear-gradient(135deg, #5f42d9, #8a63ff);
}

.contact-material-card:nth-child(4) .contact-material-no {
  background: linear-gradient(135deg, #17a94a, #4bd66a);
}

.contact-material-card:nth-child(5) .contact-material-no {
  background: linear-gradient(135deg, #008e9b, #00c7d6);
}

.contact-material-card h4 {
  align-self: center;
  margin: 0;
  color: #071a54;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.contact-material-points {
  grid-column: 2 / -1;
  min-width: 0;
}

.contact-material-card ul,
.contact-material-note ul {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-material-card li,
.contact-material-note li {
  position: relative;
  padding-left: 15px;
  color: #233047;
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.contact-material-card li::before,
.contact-material-note li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--v6-deep);
  content: "";
}

.contact-material-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(239, 114, 0, 0.24);
  border-radius: 8px;
  background: rgba(255, 248, 236, 0.86);
}

.contact-material-note strong {
  color: #ef7200;
  font-size: 18px;
  line-height: 1.4;
  white-space: nowrap;
}

.contact-material-note li::before {
  background: #ef7200;
}

.contact-material-support {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0878d7, #0050c8);
  color: #fff;
}

.contact-material-support strong {
  margin-right: 4px;
  font-size: 17px;
  font-weight: 900;
}

.contact-material-support span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 800;
}

.contact-panel {
  position: relative;
  z-index: 1;
  isolation: isolate;
  justify-self: stretch;
  width: 100%;
  height: 100%;
  max-width: 580px;
  min-width: 0;
  padding: 30px;
  border: 1px solid rgba(0, 184, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 46px rgba(18, 101, 148, 0.1);
}

.contact-panel > span {
  display: block;
  margin-bottom: 22px;
  color: #10121c;
  font-size: 22px;
  font-weight: 900;
}

.contact-panel > ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-panel > ul li {
  position: relative;
  padding-left: 24px;
  color: #5f6f82;
}

.contact-panel > ul li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--v6-deep);
  content: "";
}

.material-panel {
  padding: clamp(22px, 2.7vw, 30px);
}

.material-list {
  display: grid;
  gap: 10px;
}

.material-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(0, 184, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 251, 255, 0.84)),
    #ffffff;
  box-shadow: 0 10px 24px rgba(18, 101, 148, 0.06);
}

.material-no {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #0878d7, #00b8ff);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 20px rgba(8, 120, 215, 0.18);
}

.material-item:nth-child(3) .material-no,
.material-item:nth-child(6) .material-no {
  background: linear-gradient(135deg, #5f42d9, #8a63ff);
}

.material-item:nth-child(4) .material-no {
  background: linear-gradient(135deg, #17a94a, #4bd66a);
}

.material-item:nth-child(5) .material-no {
  background: linear-gradient(135deg, #008e9b, #00c7d6);
}

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

.material-copy h3 {
  margin-bottom: 6px;
  color: #10121c;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.2;
}

.material-copy ul,
.material-note ul {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.material-copy li,
.material-note li {
  position: relative;
  padding-left: 16px;
  color: #405166;
  font-size: 15px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.material-copy li::before,
.material-note li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--v6-deep);
  content: "";
}

.material-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 12px;
  padding: 15px;
  border: 1px solid rgba(255, 149, 0, 0.28);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.92);
}

.material-note strong {
  color: #ef7200;
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
}

.material-note li::before {
  background: #ef7200;
}

.material-support {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  padding: 14px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0878d7, #0050c8);
  color: #fff;
  box-shadow: 0 14px 32px rgba(8, 120, 215, 0.2);
}

.material-support strong {
  margin-right: 4px;
  font-size: 18px;
  font-weight: 900;
}

.material-support span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 14px;
  font-weight: 800;
}

.demo-group-list {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.demo-group {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 184, 255, 0.14);
}

.demo-group:first-child {
  padding-top: 0;
  border-top: 0;
}

.demo-group h3 {
  margin-bottom: 8px;
  color: #10121c;
  font-size: 19px;
}

.demo-group p {
  margin-bottom: 0;
  color: #5f6f82;
  font-size: 15px;
  line-height: 1.65;
}

.demo-link-list {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.demo-link {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  min-width: 0;
  max-width: 100%;
  padding: 12px;
  border: 1px solid rgba(0, 184, 255, 0.2);
  border-radius: 8px;
  background: rgba(240, 251, 255, 0.72);
  color: var(--v6-deep);
  box-shadow: 0 10px 24px rgba(8, 120, 215, 0.08);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.demo-link:hover,
.demo-link:focus-within {
  border-color: rgba(0, 184, 255, 0.42);
  background: rgba(223, 245, 255, 0.88);
  box-shadow: 0 14px 30px rgba(8, 120, 215, 0.16);
}

.demo-link-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.demo-link strong {
  font-size: 16px;
  line-height: 1.3;
}

.demo-link small {
  color: #5f6f82;
  font-size: 13px;
  overflow-wrap: anywhere;
  user-select: text;
}

.demo-link-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.demo-link-action,
.demo-copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.demo-link-action {
  background: linear-gradient(135deg, var(--v6), var(--v6-deep));
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 184, 255, 0.22);
}

.demo-copy-button {
  min-width: 96px;
  border: 1px solid rgba(0, 184, 255, 0.32);
  background: rgba(255, 255, 255, 0.82);
  color: var(--v6-deep);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.demo-link-action:hover,
.demo-link-action:focus-visible,
.demo-copy-button:hover,
.demo-copy-button:focus-visible {
  outline: 0;
}

.demo-copy-button:hover,
.demo-copy-button:focus-visible,
.demo-copy-button.is-copied {
  border-color: rgba(0, 184, 255, 0.5);
  background: rgba(0, 184, 255, 0.12);
  color: var(--v6-deep);
}

.demo-credential-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.demo-credential-item {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  gap: 8px;
  align-items: center;
  min-height: 38px;
  padding: 6px 8px 6px 12px;
  border-radius: 8px;
  background: rgba(0, 184, 255, 0.1);
  color: var(--v6-deep);
  font-weight: 800;
}

.demo-credential-item span {
  color: #5f6f82;
}

.demo-credential-item strong {
  color: var(--v6-deep);
  font-size: 16px;
  user-select: text;
}

.demo-credential-copy {
  min-width: 82px;
  min-height: 28px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}

.demo-note {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(0, 184, 255, 0.1);
  color: var(--v6-deep) !important;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 72px);
  border-top: 1px solid rgba(0, 184, 255, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: #5f6f82;
  backdrop-filter: blur(12px);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (max-width: 980px) {
  .nav-links,
  .header-action {
    display: none;
  }

  .menu-button {
    display: block;
    background: rgba(0, 184, 255, 0.12);
  }

  .site-header.is-open .nav-links {
    position: absolute;
    top: 72px;
    right: 20px;
    left: 20px;
    display: grid;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .nav-group {
    display: grid;
    gap: 6px;
  }

  .site-header.is-open .nav-group > a {
    justify-content: space-between;
  }

  .site-header.is-open .nav-links a.nav-featured {
    width: 100%;
  }

  .site-header.is-open .sub-menu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0 0 0 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-header.is-open .sub-menu a {
    min-height: 34px;
    border: 1px solid rgba(0, 184, 255, 0.12);
    background: rgba(0, 184, 255, 0.06);
  }

  .comparison-scroller {
    width: 100%;
  }

  .comparison-table {
    min-width: 860px;
  }

  .value-grid,
  .feature-grid,
  .metric-grid,
  .hero-modules-grid,
  .scene-grid,
  .delivery-steps,
  .contact-layout,
  .timeline,
  .play-section,
  .demo-section {
    grid-template-columns: 1fr;
  }

  .delivery-steps article::after {
    display: none;
  }

  .metric-grid article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .metric-grid article:first-child {
    border-top: 0;
  }

  .hero-trust {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    display: none;
    z-index: 0;
  }

  .hero-content {
    z-index: 2;
    width: min(calc(100% - 40px), 760px);
    max-width: 100%;
    margin: 0 auto;
    padding: 96px 0 56px;
  }

  .hero-modules,
  .hero-modules-head,
  .hero-modules-grid {
    min-width: 0;
    max-width: 100%;
  }

  .hero-modules-grid article {
    width: 100%;
    max-width: 100%;
  }

  .module-carousel {
    width: 100%;
    --carousel-gap: clamp(18px, 3vw, 28px);
    --carousel-phone-width: clamp(160px, 24vw, 198px);
    --carousel-phone-center-width: clamp(206px, 30vw, 238px);
    --carousel-center-scale: 1.16;
    --carousel-view-width: min(100%, 760px);
  }

  .module-carousel-viewport {
    height: clamp(430px, 76vw, 610px);
  }

  .module-carousel-slide.slot--far-left,
  .module-carousel-slide.slot--far-right {
    opacity: 0;
    pointer-events: none;
  }

  .module-carousel-slide.slot--left {
    opacity: 1;
    transform: translateZ(0) scale(var(--carousel-side-scale));
  }

  .module-carousel-slide.slot--center {
    opacity: 1;
    transform: translateZ(0) scale(var(--carousel-center-scale));
  }

  .module-carousel-slide.slot--right {
    opacity: 1;
    transform: translateZ(0) scale(var(--carousel-side-scale));
  }
}

@media (max-width: 760px) {
  .module-carousel {
    width: 100%;
    --carousel-gap: 20px;
    --carousel-phone-width: min(27vw, 175px);
    --carousel-phone-center-width: min(34vw, 220px);
    --carousel-center-scale: 1.18;
    --carousel-view-width: min(100%, 640px);
  }

  .module-carousel-viewport {
    height: min(86vw, 560px);
  }

  .module-carousel-slide.slot--left {
    opacity: 1;
    transform: translateZ(0) scale(var(--carousel-side-scale));
  }

  .module-carousel-slide.slot--center {
    opacity: 1;
    transform: translateZ(0) scale(var(--carousel-center-scale));
  }

  .module-carousel-slide.slot--right {
    opacity: 1;
    transform: translateZ(0) scale(var(--carousel-side-scale));
  }
}

@media (max-width: 640px) {
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    justify-content: space-between;
    min-height: 64px;
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    min-height: auto;
    overflow-x: hidden;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(239, 231, 255, 0.98) 0%, rgba(239, 231, 255, 0.86) 58%, rgba(222, 205, 255, 0.12) 100%),
      linear-gradient(90deg, rgba(239, 231, 255, 0.9), rgba(239, 231, 255, 0.1));
  }

  .hero-image {
    top: 76px;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    max-width: none;
    height: 320px;
    max-height: none;
    object-position: center top;
  }

  .hero-content {
    align-self: end;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 104px 20px 42px;
  }

  .hero-modules-head {
    max-width: 100%;
    margin-bottom: 22px;
  }

  .hero-modules-head p:not(.eyebrow) {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.65;
    overflow-wrap: anywhere;
    word-break: break-all;
    line-break: anywhere;
  }

  h1 {
    max-width: 100%;
    font-size: 30px;
    line-height: 1.1;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions,
  .hero-stats {
    display: grid;
  }

  .button,
  .hero-stats span {
    width: 100%;
  }

  .hero-trust {
    right: 18px;
    bottom: 20px;
    left: 18px;
    grid-template-columns: 1fr 1fr;
    padding: 12px;
  }

  .hero-trust span {
    min-height: 48px;
    padding-left: 36px;
  }

  .hero-trust span::before {
    width: 25px;
    height: 25px;
  }

  .section {
    padding: 64px 18px;
  }

  .module-showcase {
    margin-bottom: 30px;
    padding-top: 28px;
    padding-bottom: 30px;
  }

  .module-showcase-title {
    margin-bottom: 10px;
    font-size: 34px;
  }

  .module-showcase-subtitle {
    margin-bottom: 24px;
    font-size: 16px;
  }

  .module-carousel {
    width: 100%;
    --carousel-phone-width: min(68vw, 266px);
    --carousel-phone-center-width: min(68vw, 266px);
    --carousel-center-scale: 1;
    --carousel-view-width: min(100%, 340px);
  }

  .module-carousel-viewport {
    height: min(150vw, 620px);
  }

  .module-carousel-track {
    display: block;
    width: 100%;
    transform: none !important;
  }

  .module-carousel.is-ready .module-carousel-track {
    transition: none;
  }

  .module-carousel-slide {
    position: absolute;
    top: 0;
    left: 50%;
    width: var(--carousel-phone-width);
    opacity: 0;
    transform: translate3d(-50%, 0, 0) scale(0.98);
  }

  .module-carousel-slide img {
    height: auto;
  }

  .module-carousel-slide figcaption {
    min-height: 28px;
    margin-top: 14px;
    font-size: 16px;
  }

  .module-carousel-dots {
    margin-top: 8px;
  }

  .backend-showcase {
    width: 100%;
    margin-bottom: 46px;
    padding: 8px;
    border-width: 3px;
    border-radius: 16px;
  }

  .backend-showcase img {
    border-radius: 8px;
  }

  .module-carousel-button {
    width: 36px;
    height: 36px;
  }

  .module-carousel-button.prev {
    left: 8px;
  }

  .module-carousel-button.next {
    right: 8px;
  }

  .module-carousel.is-ready .module-carousel-slide {
    transition:
      opacity 0.45s ease,
      transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .module-carousel-slide.slot--far-left,
  .module-carousel-slide.slot--far-right {
    opacity: 0;
    pointer-events: none;
  }

  .module-carousel-slide.slot--left,
  .module-carousel-slide.slot--right {
    opacity: 0;
    pointer-events: none;
  }

  .module-carousel-slide.slot--left {
    transform: translate3d(-64%, 0, 0) scale(0.96);
  }

  .module-carousel-slide.slot--right {
    transform: translate3d(-36%, 0, 0) scale(0.96);
  }

  .module-carousel-slide.slot--center {
    opacity: 1;
    transform: translate3d(-50%, 0, 0) scale(var(--carousel-center-scale));
  }

  .hero-modules-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }

  .hero-modules-grid article {
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    min-height: auto;
    padding: 18px;
    overflow: hidden;
  }

  .hero-modules-grid h3 {
    margin-top: 4px;
    font-size: 22px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero-modules-grid p {
    max-width: 100%;
    font-size: 15px;
    overflow-wrap: anywhere;
    word-break: break-all;
    line-break: anywhere;
  }

  .hero-modules-grid .module-icon-card,
  .module-icon-card {
    width: 80px;
    height: 80px;
    margin: 28px 0 8px;
  }

  .box-row {
    grid-template-columns: 1fr;
  }

  .blind-box {
    min-height: 74px;
  }

  .site-footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .scene-grid article {
    min-height: auto;
  }

  .phone-shell {
    min-height: 650px;
    border-width: 8px;
    border-radius: 28px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    gap: 14px;
  }

  .contact-layout,
  .contact-copy,
  .contact-panel {
    max-width: 100%;
  }

  .contact-layout {
    width: 100%;
  }

  .contact-copy,
  .contact-panel {
    justify-self: start;
    width: calc(100% - 36px);
    max-width: 100%;
  }

  .contact-copy,
  .contact-panel {
    padding: 22px 18px;
  }

  .contact-materials {
    padding: 0;
  }

  .contact-materials-list {
    grid-template-columns: 1fr;
  }

  .contact-material-card {
    grid-template-columns: 38px 32px minmax(0, 1fr);
    gap: 8px;
    align-items: start;
    min-height: auto;
    padding: 10px;
  }

  .contact-material-icon {
    grid-row: 1 / span 2;
    width: 36px;
    height: 36px;
    font-size: 17px;
  }

  .contact-material-icon::after {
    display: none;
  }

  .contact-material-no {
    width: 30px;
    height: 30px;
    font-size: 17px;
  }

  .contact-material-card h4 {
    align-self: center;
    font-size: 18px;
  }

  .contact-material-points {
    grid-column: 2 / -1;
  }

  .contact-material-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-material-note strong {
    white-space: normal;
  }

  .contact-material-support strong {
    width: 100%;
  }

  .material-item {
    grid-template-columns: 52px minmax(0, 1fr);
    padding: 14px;
  }

  .material-copy h3 {
    font-size: 20px;
  }

  .material-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .material-note strong {
    white-space: normal;
  }

  .demo-link {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 12px;
  }

  .demo-link-actions {
    grid-template-columns: 1fr;
  }

  .demo-link-action,
  .demo-copy-button {
    width: 100%;
  }

  .demo-credential-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .demo-credential-item {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .demo-credential-copy {
    grid-column: 1 / -1;
  }
}

/* Dark high-tech product theme */
body {
  background:
    linear-gradient(90deg, rgba(0, 213, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(141, 92, 255, 0.03) 1px, transparent 1px),
    linear-gradient(135deg, #040711 0%, #07101d 42%, #0b1020 100%);
  background-size: 44px 44px, 44px 44px, 100% 100%;
  color: var(--ink);
}

.site-header {
  color: #dff7ff;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-bottom: 1px solid rgba(0, 213, 255, 0.18);
  background: rgba(5, 10, 20, 0.9);
  color: #eef8ff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

.brand {
  padding: 6px 12px;
  border: 1px solid rgba(0, 213, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0 24px rgba(0, 213, 255, 0.12);
}

.nav-links a {
  border-color: rgba(0, 213, 255, 0.28);
  background: rgba(8, 18, 34, 0.72);
  color: #dff7ff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.nav-links a:hover,
.nav-links a.is-active {
  border-color: rgba(0, 213, 255, 0.74);
  background: linear-gradient(180deg, rgba(0, 213, 255, 0.2), rgba(39, 108, 255, 0.12));
  color: #ffffff;
  box-shadow:
    0 0 22px rgba(0, 213, 255, 0.2),
    inset 0 0 0 1px rgba(0, 213, 255, 0.18);
}

.nav-links a.nav-featured,
.header-action,
.button.primary,
.sub-menu a.sub-menu-button,
.demo-link-action,
.contact-materials-head span,
.comparison-badge {
  background: linear-gradient(135deg, #00d5ff 0%, #276cff 58%, #8d5cff 100%);
  color: #ffffff;
  box-shadow:
    0 0 24px rgba(0, 213, 255, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.nav-links a.nav-featured:hover,
.nav-links a.nav-featured.is-active,
.sub-menu a.sub-menu-button:hover,
.demo-link-action:hover,
.demo-link-action:focus-visible {
  background: linear-gradient(135deg, #31e7ff 0%, #276cff 54%, #a46cff 100%);
  box-shadow:
    0 0 34px rgba(0, 213, 255, 0.38),
    inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.sub-menu {
  border-color: rgba(0, 213, 255, 0.28);
  background: rgba(7, 14, 27, 0.94);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
}

.sub-menu a,
.nav-featured-group .sub-menu a {
  color: #dff7ff;
}

.sub-menu a:hover {
  background: rgba(0, 213, 255, 0.14);
  color: #ffffff;
}

.hero,
.module-showcase,
.demo-section,
.feature-band,
.play-section,
.scene-section,
.product-section,
.comparison-section,
.contact-section {
  background:
    linear-gradient(180deg, rgba(7, 15, 29, 0.96), rgba(5, 10, 20, 0.98)),
    linear-gradient(90deg, rgba(0, 213, 255, 0.05) 1px, transparent 1px);
  color: var(--ink);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 7, 17, 0.98) 0%, rgba(4, 7, 17, 0.88) 38%, rgba(0, 213, 255, 0.12) 62%, rgba(4, 7, 17, 0.7) 100%),
    linear-gradient(135deg, rgba(141, 92, 255, 0.16), transparent 42%);
}

.module-showcase-title,
.section-head h2,
.delivery-head h3,
.contact-copy h2,
.contact-materials-head h3,
.contact-panel > span,
.demo-group h3,
.delivery-steps h3,
.feature-item h3,
.scene-grid strong,
.comparison-header > div,
.comparison-label,
.material-copy h3,
.contact-material-card h4 {
  color: #f4fbff !important;
}

.hero-modules-head p:not(.eyebrow),
.hero-copy,
.module-showcase-subtitle,
.section-head p:not(.eyebrow),
.feature-band .section-head p:not(.eyebrow),
.scene-grid p,
.delivery-steps p,
.contact-copy p:not(.eyebrow),
.contact-panel > ul li,
.contact-material-card li,
.contact-material-note li,
.material-note li,
.demo-group p,
.demo-link small,
.comparison-line,
.metric-grid span,
.timeline li,
.phone-card small,
.phone-card span {
  color: var(--muted);
}

.eyebrow,
.hero .eyebrow,
.contact-copy .eyebrow {
  color: #00d5ff;
  text-shadow: 0 0 18px rgba(0, 213, 255, 0.36);
}

.module-showcase-title::after {
  background: linear-gradient(90deg, #00d5ff, #8d5cff);
  opacity: 0.75;
}

.module-carousel-slide figcaption {
  color: rgba(223, 247, 255, 0.72);
  font-weight: 700;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.82),
    0 0 16px rgba(0, 213, 255, 0.18);
}

.module-carousel-slide.slot--center figcaption {
  color: #ffffff;
  font-weight: 900;
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.9),
    0 0 22px rgba(0, 213, 255, 0.46);
}

.module-carousel-dots button {
  background: rgba(141, 92, 255, 0.42);
}

.module-carousel-dots button.is-active {
  background: #00d5ff;
  box-shadow: 0 0 16px rgba(0, 213, 255, 0.48);
}

.hero-modules-grid article,
.value-grid article,
.feature-item,
.scene-grid article,
.play-panel,
.comparison-table,
.metric-grid article,
.timeline li,
.delivery-steps article,
.contact-copy,
.contact-panel,
.contact-material-card,
.material-item,
.demo-group,
.demo-link,
.demo-credential-item,
.phone-card,
.goods-mini-grid article {
  border-color: rgba(0, 213, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(16, 29, 48, 0.9), rgba(8, 17, 32, 0.86)),
    linear-gradient(135deg, rgba(0, 213, 255, 0.08), rgba(141, 92, 255, 0.06));
  color: var(--ink);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.26),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.delivery-steps article::before {
  background: linear-gradient(90deg, #00d5ff, #276cff, #8d5cff);
}

.delivery-steps article::after {
  background: linear-gradient(90deg, rgba(0, 213, 255, 0.45), rgba(141, 92, 255, 0.5));
}

.module-no,
.delivery-steps span,
.feature-item span,
.timeline span {
  background: #050914;
  color: #ffffff;
  box-shadow:
    inset 0 -7px 0 #00d5ff,
    0 0 20px rgba(0, 213, 255, 0.2);
}

.module-icon-card,
.contact-material-icon {
  border-color: rgba(0, 213, 255, 0.35);
  background:
    linear-gradient(145deg, rgba(0, 213, 255, 0.18), rgba(141, 92, 255, 0.14)),
    #0b1322;
  color: #dff7ff;
  box-shadow:
    0 0 24px rgba(0, 213, 255, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.module-icon-card::before,
.module-icon-card::after {
  opacity: 0.55;
}

.module-icon-one::before {
  border-color: #dff7ff;
  background: #08111f;
  box-shadow:
    28px 0 0 #08111f,
    0 28px 0 #08111f,
    28px 28px 0 #08111f,
    0 0 14px rgba(0, 213, 255, 0.28);
}

.module-icon-one::after {
  border-color: #dff7ff;
  background: linear-gradient(135deg, #00d5ff, #dff7ff);
  box-shadow: 0 0 18px rgba(0, 213, 255, 0.34);
}

.module-icon-two::before {
  top: 29px;
  left: 35px;
  width: 13px;
  height: 36px;
  border-color: #dff7ff;
  background: linear-gradient(180deg, #dff7ff 0 28%, #48c8ff 28% 100%);
  box-shadow: 0 0 12px rgba(0, 213, 255, 0.22);
}

.module-icon-two::after {
  right: 23px;
  bottom: 34px;
  border-color: #58b8ff;
  background: #dff7ff;
  box-shadow: 0 0 14px rgba(0, 213, 255, 0.3);
}

.module-icon-three::before {
  border-color: #276cff;
  border-right-color: #00d5ff;
  border-bottom-color: #276cff;
  box-shadow: 0 0 16px rgba(0, 213, 255, 0.24);
}

.module-icon-three::after {
  border-left-color: #276cff;
  filter: drop-shadow(0 0 10px rgba(39, 108, 255, 0.42));
}

.module-icon-four::before {
  border-color: #00d5ff;
  background: linear-gradient(180deg, #0a1528, #10243e);
  box-shadow: 0 0 18px rgba(0, 213, 255, 0.28);
}

.module-icon-four::after {
  background: linear-gradient(135deg, #00d5ff, #8d5cff);
  box-shadow: 0 0 14px rgba(0, 213, 255, 0.3);
}

.button.ghost,
.demo-copy-button {
  border-color: rgba(0, 213, 255, 0.32);
  background: rgba(8, 18, 34, 0.72);
  color: #8eeaff;
}

.button.ghost:hover,
.demo-copy-button:hover,
.demo-copy-button:focus-visible,
.demo-copy-button.is-copied {
  border-color: rgba(0, 213, 255, 0.62);
  background: rgba(0, 213, 255, 0.16);
  color: #ffffff;
}

.comparison-scroller {
  border: 1px solid rgba(68, 197, 255, 0.14);
  background: #06111f;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.comparison-table {
  border-color: rgba(68, 197, 255, 0.12);
  background: #071423;
}

.comparison-header {
  background: #0d2238;
}

.comparison-header > div {
  border-color: rgba(68, 197, 255, 0.12);
  background: #0d2238;
  color: #7feaff !important;
  font-weight: 900;
  text-shadow: none;
  box-shadow: inset 0 -2px 0 rgba(68, 197, 255, 0.52);
}

.comparison-row {
  border-top-color: rgba(68, 197, 255, 0.16);
}

.comparison-row:nth-child(odd):not(.comparison-header) {
  background: #081827;
}

.comparison-row:nth-child(even):not(.comparison-header) {
  background: #0a1c2d;
}

.comparison-row > div,
.comparison-cell {
  border-color: rgba(68, 197, 255, 0.1);
}

.comparison-row > div {
  color: #f4fbff;
  font-size: 18px;
  font-weight: 760;
  text-shadow: none;
}

.comparison-line {
  color: #f4fbff;
  font-weight: 760;
  letter-spacing: 0;
}

.comparison-label {
  background: #091f31;
  color: #a9d8e8 !important;
  font-weight: 900;
  text-shadow: none;
  box-shadow:
    inset 1px 0 0 rgba(68, 197, 255, 0.26),
    inset -1px 0 0 rgba(68, 197, 255, 0.08);
}

.comparison-badge {
  border: 0;
  background: linear-gradient(135deg, #00d5ff 0%, #276cff 58%, #8d5cff 100%);
  color: #ffffff;
  box-shadow:
    0 0 18px rgba(0, 213, 255, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.contact-material-no,
.material-no {
  background: linear-gradient(135deg, #00d5ff, #276cff);
  color: #ffffff;
}

.contact-material-card:nth-child(3) .contact-material-no,
.contact-material-card:nth-child(6) .contact-material-no,
.material-item:nth-child(6) .material-no {
  background: linear-gradient(135deg, #8d5cff, #bf7cff);
}

.contact-material-card:nth-child(4) .contact-material-no,
.material-item:nth-child(4) .material-no {
  background: linear-gradient(135deg, #10d98b, #00d5ff);
}

.contact-material-card:nth-child(5) .contact-material-no,
.material-item:nth-child(5) .material-no {
  background: linear-gradient(135deg, #f6c85f, #ff8f3d);
}

.contact-material-note,
.material-note {
  border-color: rgba(246, 200, 95, 0.34);
  background: rgba(246, 200, 95, 0.08);
}

.contact-material-note strong,
.material-note strong {
  color: #f6c85f;
}

.contact-material-note li::before,
.material-note li::before {
  background: #f6c85f;
}

.contact-material-support,
.material-support {
  background: linear-gradient(135deg, #06182c, #0c3e8a 54%, #5b33d6);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.demo-link {
  background:
    linear-gradient(180deg, rgba(13, 30, 51, 0.9), rgba(7, 17, 32, 0.9)),
    linear-gradient(90deg, rgba(0, 213, 255, 0.1), rgba(141, 92, 255, 0.08));
}

.demo-link:hover,
.demo-link:focus-within {
  border-color: rgba(0, 213, 255, 0.48);
  background:
    linear-gradient(180deg, rgba(16, 38, 64, 0.96), rgba(8, 20, 38, 0.94)),
    linear-gradient(90deg, rgba(0, 213, 255, 0.16), rgba(141, 92, 255, 0.12));
}

.demo-credential-item {
  background: rgba(0, 213, 255, 0.1);
}

.demo-credential-item strong,
.demo-link strong,
.contact-material-card li::before,
.contact-panel > ul li::before,
.material-note li::before {
  color: #00d5ff;
}

.site-footer {
  border-top-color: rgba(0, 213, 255, 0.18);
  background: rgba(5, 10, 20, 0.92);
  color: var(--muted);
}

@media (max-width: 980px) {
  .site-header.is-open .nav-links {
    border-color: rgba(0, 213, 255, 0.22);
    background: rgba(5, 10, 20, 0.96);
    color: #eef8ff;
  }

  .site-header.is-open .sub-menu a {
    border-color: rgba(0, 213, 255, 0.18);
    background: rgba(0, 213, 255, 0.08);
  }
}

/* Unified centered navigation override */
@media (min-width: 981px) {
  .site-header,
  .site-header.is-scrolled,
  .site-header.is-open {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    min-height: 76px;
    padding: 0 clamp(28px, 5vw, 72px);
    background: rgba(255, 255, 255, 0.94) !important;
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 10px 30px rgba(26, 32, 44, 0.06);
    backdrop-filter: blur(12px);
  }

  .site-header .brand {
    justify-self: start;
  }

  .site-header .brand-logo {
    max-height: 40px;
  }

  .site-header .nav-links {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 6px;
    border: 1px solid rgba(226, 232, 240, 0.88);
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.86);
    color: #475569;
  }

  .site-header .nav-links a,
  .site-header .nav-links a.nav-featured {
    min-height: 38px;
    padding: 0 12px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #475569;
    box-shadow: none;
    font-size: 14px;
    font-weight: 700;
  }

  .site-header .nav-links a:hover,
  .site-header .nav-links a.is-active,
  .site-header .nav-links a.nav-featured:hover,
  .site-header .nav-links a.nav-featured.is-active {
    background: rgba(118, 75, 162, 0.1);
    color: #6b46c1;
    box-shadow: none;
  }

  .site-header .nav-group::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
  }

  .site-header .sub-menu {
    top: calc(100% + 4px);
    min-width: 188px;
    padding: 8px;
    border: 1px solid rgba(226, 232, 240, 0.96);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  }

  .site-header .sub-menu a,
  .site-header .sub-menu a.sub-menu-button {
    min-height: 36px;
    padding: 0 12px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #475569;
    font-size: 14px;
    justify-content: flex-start;
  }

  .site-header .sub-menu a:hover,
  .site-header .sub-menu a.sub-menu-button:hover {
    background: rgba(118, 75, 162, 0.1);
    color: #6b46c1;
  }
}
