:root {
  --ink: #15151c;
  --muted: #676a75;
  --line: #e7e8ee;
  --paper: #fbfbfd;
  --white: #ffffff;
  --violet: #b79cff;
  --v6: #7d35ff;
  --v6-deep: #a58cff;
  --v6-soft: #eadcff;
  --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;
  flex-direction: column;
  align-items: center;
  position: relative;
  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, #7d35ff, #c7a6ff);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(125, 53, 255, 0.24);
  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(125, 53, 255, 0.72);
  background: linear-gradient(135deg, #d8b8ff, #b779ff, #7d35ff);
  color: #fff;
  box-shadow:
    0 16px 34px rgba(125, 53, 255, 0.24),
    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(125, 53, 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(125, 53, 255, 0.24);
  box-shadow:
    0 20px 48px rgba(125, 53, 255, 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(125, 53, 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(125, 53, 255, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.sub-menu a.sub-menu-button:hover {
  background: linear-gradient(135deg, #d8b8ff, #b779ff, #7d35ff);
  color: #fff;
  box-shadow:
    0 12px 26px rgba(125, 53, 255, 0.24),
    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);
}

.hero-logo-subtitle {
  margin-bottom: 18px;
  color: #24135f !important;
  font-size: clamp(13px, 1.25vw, 18px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
  text-shadow: none;
}

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: 1426 / 2914;
  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: 0;
  border: 0;
  border-radius: 24px;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.backend-showcase img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 12px;
  background: transparent;
  box-shadow: none;
  filter: none;
}

@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: #d8b8ff;
  transform: rotate(45deg);
}

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

.module-icon-two::after {
  right: 20px;
  bottom: 23px;
  width: 14px;
  height: 14px;
  border: 3px solid #6c5cd8;
  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 #6c5cd8;
  border-radius: 9px;
  background: #fff;
  transform: rotate(14deg);
}

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


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

.section-head h2 {
  white-space: pre-line;
}

.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: 32px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(0, 184, 255, 0.1);
  color: var(--v6-deep);
  font-size: clamp(15px, 1.05vw, 17px);
  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, #d8b8ff, #b79cff 58%, #7d35ff);
  color: #fff;
  box-shadow: 0 12px 28px rgba(125, 53, 255, 0.18);
}

.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, #d8b8ff, #eadcff);
}

.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: #b79cff;
}

.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, #b779ff, #7d35ff);
  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, #b79cff, #7d35ff);
}

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

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

.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, #0a1830, #334a8f 52%, #b05dd6);
  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, #b779ff, #7d35ff);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 20px rgba(125, 53, 255, 0.18);
}

.material-item:nth-child(3) .material-no,
.material-item:nth-child(6) .material-no {
  background: linear-gradient(135deg, #b79cff, #7d35ff);
}

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

.material-item:nth-child(5) .material-no {
  background: linear-gradient(135deg, #ebd3e7, #c2aff2);
}

.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, #0a1830, #334a8f 52%, #b05dd6);
  color: #fff;
  box-shadow: 0 14px 32px rgba(125, 53, 255, 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-image {
    display: none;
    z-index: 0;
  }

  .hero-content {
    z-index: 2;
  }

  .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;
  }

  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: 0;
    border-width: 0;
    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-word;
  }

  .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;
  }
}

/* Pastel purple product theme */
:root {
  --ink: #24135f;
  --muted: #685594;
  --paper: rgba(255, 255, 255, 0.74);
  --v6: #7d35ff;
  --v6-deep: #5220d8;
  --v6-soft: rgba(132, 73, 255, 0.16);
  --macaron-bg: #c2aff2;
  --macaron-surface: rgba(255, 255, 255, 0.74);
  --macaron-surface-deep: rgba(244, 235, 255, 0.68);
  --macaron-line: rgba(112, 66, 232, 0.24);
  --macaron-cyan: #b779ff;
  --macaron-blue: #7d35ff;
  --macaron-lavender: #8b55ff;
  --macaron-pink: #c7a6ff;
  --macaron-mint: #d8b8ff;
  --macaron-peach: #eadcff;
  --macaron-glow-cyan: rgba(125, 53, 255, 0.26);
  --macaron-glow-pink: rgba(125, 53, 255, 0.24);
}

body {
  background: var(--macaron-bg);
  color: var(--ink);
}

.site-header {
  color: #2a146c;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-bottom: 1px solid var(--macaron-line);
  background: rgba(255, 255, 255, 0.78);
  color: #24135f;
  box-shadow: 0 18px 48px rgba(84, 43, 173, 0.18);
}

.brand {
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 36px rgba(116, 64, 224, 0.14);
}

.nav-links a {
  border-color: var(--macaron-line);
  background: rgba(255, 255, 255, 0.46);
  color: #2a146c;
  box-shadow:
    0 12px 24px rgba(116, 64, 224, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.nav-links a:hover,
.nav-links a.is-active {
  border-color: rgba(125, 53, 255, 0.56);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(236, 214, 255, 0.5));
  color: #4a1ec8;
  box-shadow:
    0 0 24px rgba(255, 255, 255, 0.72),
    0 12px 30px rgba(125, 53, 255, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.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, #9b42ff 0%, #7d35ff 52%, #c7a6ff 100%);
  color: #ffffff;
  box-shadow:
    0 12px 30px rgba(112, 69, 245, 0.28),
    0 0 24px rgba(255, 255, 255, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.36);
}

.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, #b56cff 0%, #8b55ff 52%, #d8b8ff 100%);
  box-shadow:
    0 14px 36px rgba(112, 69, 245, 0.32),
    0 0 34px rgba(255, 255, 255, 0.56),
    inset 0 0 0 1px rgba(255, 255, 255, 0.34);
}

.sub-menu {
  border-color: var(--macaron-line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow:
    0 22px 54px rgba(116, 64, 224, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(18px);
}

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

.sub-menu a:hover {
  background: rgba(125, 53, 255, 0.1);
  color: #4a1ec8;
}

.hero,
.module-showcase,
.demo-section,
.feature-band,
.play-section,
.scene-section,
.product-section,
.comparison-section,
.contact-section {
  background: var(--macaron-bg);
  color: var(--ink);
}

.hero-overlay {
  background: rgba(147, 108, 255, 0.88);
}

.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: #24135f !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: #5e28e8;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.76);
}

.module-showcase-title::after {
  background: linear-gradient(90deg, var(--macaron-cyan), var(--macaron-pink));
  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 var(--macaron-glow-cyan);
}

.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 var(--macaron-glow-pink);
}

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

.module-carousel-dots button.is-active {
  background: var(--macaron-pink);
  box-shadow: 0 0 16px var(--macaron-glow-pink);
}

.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(255, 255, 255, 0.66);
  background:
    linear-gradient(180deg, var(--macaron-surface), var(--macaron-surface-deep)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(125, 53, 255, 0.1));
  color: var(--ink);
  box-shadow:
    0 18px 48px rgba(116, 64, 224, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.58);
}

.delivery-steps article::before {
  background: linear-gradient(90deg, var(--macaron-cyan), var(--macaron-lavender), var(--macaron-pink));
}

.delivery-steps article::after {
  background: linear-gradient(90deg, rgba(125, 53, 255, 0.38), rgba(199, 166, 255, 0.5));
}

.module-no,
.delivery-steps span,
.feature-item span,
.timeline span {
  background: linear-gradient(135deg, #7d35ff, #c7a6ff);
  color: #ffffff;
  box-shadow:
    inset 0 -7px 0 rgba(255, 255, 255, 0.24),
    0 10px 24px rgba(125, 53, 255, 0.24);
}

.module-icon-card,
.contact-material-icon {
  border-color: rgba(255, 255, 255, 0.66);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(236, 214, 255, 0.72)),
    #ffffff;
  color: #4a1ec8;
  box-shadow:
    0 14px 30px rgba(116, 64, 224, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.68);
}

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

.module-icon-one::before {
  border-color: #4a1ec8;
  background: #ffffff;
  box-shadow:
    28px 0 0 #ffffff,
    0 28px 0 #ffffff,
    28px 28px 0 #ffffff,
    0 0 14px rgba(125, 53, 255, 0.16);
}

.module-icon-one::after {
  border-color: #4a1ec8;
  background: linear-gradient(135deg, var(--macaron-cyan), var(--macaron-pink));
  box-shadow: 0 0 18px rgba(125, 53, 255, 0.24);
}

.module-icon-two::before {
  top: 29px;
  left: 35px;
  width: 13px;
  height: 36px;
  border-color: #4a1ec8;
  background: linear-gradient(180deg, #ffffff 0 28%, var(--macaron-blue) 28% 100%);
  box-shadow: 0 0 12px rgba(125, 53, 255, 0.16);
}

.module-icon-two::after {
  right: 23px;
  bottom: 34px;
  border-color: var(--macaron-pink);
  background: #ffffff;
  box-shadow: 0 0 14px rgba(125, 53, 255, 0.24);
}

.module-icon-three::before {
  border-color: var(--macaron-lavender);
  border-right-color: var(--macaron-cyan);
  border-bottom-color: var(--macaron-lavender);
  box-shadow: 0 0 16px rgba(125, 53, 255, 0.18);
}

.module-icon-three::after {
  border-left-color: var(--macaron-pink);
  filter: drop-shadow(0 0 10px rgba(125, 53, 255, 0.22));
}

.module-icon-four::before {
  border-color: var(--macaron-cyan);
  background: linear-gradient(180deg, #ffffff, #f4eaff);
  box-shadow: 0 0 18px rgba(125, 53, 255, 0.16);
}

.module-icon-four::after {
  background: linear-gradient(135deg, var(--macaron-cyan), var(--macaron-pink));
  box-shadow: 0 0 14px rgba(125, 53, 255, 0.24);
}

.button.ghost,
.demo-copy-button {
  border-color: rgba(125, 53, 255, 0.28);
  background: rgba(255, 255, 255, 0.5);
  color: #4a1ec8;
}

.button.ghost:hover,
.demo-copy-button:hover,
.demo-copy-button:focus-visible,
.demo-copy-button.is-copied {
  border-color: rgba(125, 53, 255, 0.42);
  background: rgba(125, 53, 255, 0.12);
  color: #4a1ec8;
}

.comparison-scroller {
  border: 1px solid rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.58);
  box-shadow:
    0 24px 60px rgba(116, 64, 224, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.52);
}

.comparison-table {
  border-color: rgba(112, 66, 232, 0.16);
  background: rgba(255, 255, 255, 0.72);
}

.comparison-header {
  background: rgba(236, 214, 255, 0.8);
}

.comparison-header > div {
  border-color: rgba(112, 66, 232, 0.14);
  background: rgba(236, 214, 255, 0.8);
  color: #4a1ec8 !important;
  font-weight: 900;
  text-shadow: none;
  box-shadow: inset 0 -2px 0 rgba(125, 53, 255, 0.34);
}

.comparison-row {
  border-top-color: rgba(112, 66, 232, 0.14);
}

.comparison-row:nth-child(odd):not(.comparison-header) {
  background: rgba(255, 255, 255, 0.62);
}

.comparison-row:nth-child(even):not(.comparison-header) {
  background: rgba(247, 237, 255, 0.72);
}

.comparison-row > div,
.comparison-cell {
  border-color: rgba(112, 66, 232, 0.1);
}

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

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

.comparison-label {
  background: rgba(236, 214, 255, 0.82);
  color: #4a1ec8 !important;
  font-weight: 900;
  text-shadow: none;
  box-shadow:
    inset 1px 0 0 rgba(125, 53, 255, 0.18),
    inset -1px 0 0 rgba(255, 255, 255, 0.38);
}

.comparison-badge {
  border: 0;
  background: linear-gradient(135deg, var(--macaron-cyan) 0%, var(--macaron-lavender) 52%, var(--macaron-pink) 100%);
  color: #ffffff;
  box-shadow:
    0 0 18px var(--macaron-glow-pink),
    inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.contact-material-no,
.material-no {
  background: linear-gradient(135deg, var(--macaron-cyan), var(--macaron-blue));
  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, var(--macaron-lavender), var(--macaron-pink));
}

.contact-material-card:nth-child(4) .contact-material-no,
.material-item:nth-child(4) .material-no {
  background: linear-gradient(135deg, var(--macaron-mint), var(--macaron-cyan));
}

.contact-material-card:nth-child(5) .contact-material-no,
.material-item:nth-child(5) .material-no {
  background: linear-gradient(135deg, var(--macaron-peach), var(--macaron-pink));
}

.contact-material-note,
.material-note {
  border-color: rgba(255, 213, 159, 0.34);
  background: rgba(255, 213, 159, 0.08);
}

.contact-material-note strong,
.material-note strong {
  color: var(--macaron-peach);
}

.contact-material-note li::before,
.material-note li::before {
  background: var(--macaron-peach);
}

.contact-material-support,
.material-support {
  background: linear-gradient(135deg, #0a1830, #334a8f 52%, #b05dd6);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.demo-link {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(244, 235, 255, 0.66)),
    linear-gradient(90deg, rgba(125, 53, 255, 0.12), rgba(199, 166, 255, 0.12));
}

.demo-link:hover,
.demo-link:focus-within {
  border-color: rgba(125, 53, 255, 0.36);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(242, 229, 255, 0.78)),
    linear-gradient(90deg, rgba(125, 53, 255, 0.16), rgba(199, 166, 255, 0.16));
}

.demo-credential-item {
  background: rgba(125, 53, 255, 0.08);
}

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

.site-footer {
  border-top-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
}

@media (max-width: 980px) {
  .site-header.is-open .nav-links {
    border-color: rgba(125, 53, 255, 0.18);
    background: rgba(255, 255, 255, 0.9);
    color: #24135f;
  }

  .site-header.is-open .sub-menu a {
    border-color: rgba(125, 53, 255, 0.14);
    background: rgba(125, 53, 255, 0.08);
  }
}

/* Premium V6MAX purple polish */
:root {
  --premium-bg: #8d6bc2;
  --premium-ink: #21104f;
  --premium-muted: #5f4d8d;
  --premium-deep: #3a1288;
  --premium-mid: #7d35ff;
  --premium-soft: #d9c7ff;
  --premium-card: rgba(255, 255, 255, 0.76);
  --premium-card-strong: rgba(255, 255, 255, 0.86);
  --premium-line: rgba(255, 255, 255, 0.5);
  --premium-purple-line: rgba(78, 31, 173, 0.18);
  --premium-shadow: 0 24px 70px rgba(46, 15, 120, 0.22);
}

body {
  background: var(--premium-bg);
}

.hero,
.module-showcase,
.demo-section,
.feature-band,
.play-section,
.scene-section,
.product-section,
.comparison-section,
.contact-section,
.cases,
.process {
  background: var(--premium-bg) !important;
}

.hero {
  min-height: min(860px, 100svh);
  color: #fff;
}

.hero-overlay {
  background: var(--premium-bg) !important;
}

.hero-image {
  filter: drop-shadow(0 34px 70px rgba(43, 11, 111, 0.28));
}

.site-header {
  min-height: 78px;
  color: #fff;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(63, 25, 146, 0.68);
  color: #fff;
  box-shadow: 0 18px 46px rgba(46, 15, 120, 0.18);
  backdrop-filter: blur(22px) saturate(1.08);
}

.brand {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
}

.nav-links a {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.nav-links a:hover,
.nav-links a.is-active {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.24);
  color: #fff;
  box-shadow:
    0 16px 32px rgba(55, 18, 137, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.nav-links a.nav-featured,
.header-action,
.button.primary,
.sub-menu a.sub-menu-button,
.demo-link-action,
.contact-materials-head span,
.comparison-badge {
  border-color: rgba(255, 255, 255, 0.38);
  background: linear-gradient(135deg, #4f1bb8 0%, #7d35ff 58%, #b99cff 100%);
  color: #fff;
  box-shadow:
    0 16px 34px rgba(55, 18, 137, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.26);
}

.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,
.button.primary:hover {
  background: linear-gradient(135deg, #5b22c8 0%, #8c52ff 56%, #d7c5ff 100%);
  box-shadow:
    0 20px 42px rgba(55, 18, 137, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.sub-menu {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(246, 240, 255, 0.92);
  box-shadow: var(--premium-shadow);
}

.module-showcase-title,
.section-head h2,
.delivery-head h3,
.contact-copy h2,
.contact-materials-head h3,
.contact-panel > span {
  color: #fff !important;
  text-shadow: 0 12px 34px rgba(48, 14, 118, 0.28);
}

.module-showcase-title::after {
  height: 0.18em;
  background: rgba(255, 255, 255, 0.42);
}

.hero-modules-head p:not(.eyebrow),
.module-showcase-subtitle,
.section-head p:not(.eyebrow),
.feature-band .section-head p:not(.eyebrow),
.contact-copy p:not(.eyebrow),
.delivery-head p,
.play-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow,
.hero .eyebrow,
.contact-copy .eyebrow {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: none;
}

.hero-modules-grid article,
.value-grid article,
.feature-item,
.scene-grid article,
.play-panel,
.comparison-scroller,
.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: 1px solid var(--premium-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, var(--premium-card-strong), var(--premium-card)),
    rgba(255, 255, 255, 0.72);
  color: var(--premium-ink);
  box-shadow:
    0 22px 58px rgba(55, 18, 137, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px);
}

.hero-modules-grid article,
.value-grid article,
.feature-item,
.scene-grid article,
.delivery-steps article,
.contact-material-card,
.material-item,
.demo-link {
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.hero-modules-grid article:hover,
.value-grid article:hover,
.feature-item:hover,
.scene-grid article:hover,
.delivery-steps article:hover,
.contact-material-card:hover,
.material-item:hover,
.demo-link:hover {
  border-color: rgba(255, 255, 255, 0.74);
  box-shadow:
    0 28px 72px rgba(55, 18, 137, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  transform: translateY(-4px);
}

.hero-modules-grid h3,
.value-grid h3,
.feature-item h3,
.scene-grid strong,
.delivery-steps h3,
.contact-material-card h4,
.material-copy h3,
.demo-group h3,
.comparison-header > div,
.comparison-label {
  color: var(--premium-ink) !important;
}

.hero-modules-grid p,
.value-grid p,
.feature-item p,
.scene-grid p,
.delivery-steps p,
.contact-material-card li,
.material-note li,
.contact-panel > ul li,
.demo-group p,
.demo-link small,
.comparison-line,
.metric-grid span,
.timeline p,
.phone-card small,
.phone-card span {
  color: var(--premium-muted);
}

.module-no,
.icon-box,
.delivery-steps span,
.feature-item span,
.timeline span,
.contact-material-no,
.material-no {
  background: linear-gradient(135deg, var(--premium-deep), var(--premium-mid));
  color: #fff;
  box-shadow:
    inset 0 -7px 0 rgba(255, 255, 255, 0.16),
    0 12px 28px rgba(55, 18, 137, 0.22);
}

.module-icon-card,
.contact-material-icon {
  border-color: rgba(255, 255, 255, 0.76);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(229, 218, 255, 0.86)),
    #fff;
  color: var(--premium-deep);
  box-shadow:
    0 16px 34px rgba(55, 18, 137, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.78);
}

.module-carousel-viewport {
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.module-carousel-slide img {
  filter: drop-shadow(0 22px 36px rgba(48, 14, 118, 0.2));
}

.module-carousel-slide.slot--center img {
  filter: drop-shadow(0 32px 54px rgba(48, 14, 118, 0.28));
}

.module-carousel-slide figcaption,
.module-carousel-slide.slot--center figcaption {
  color: #fff;
  text-shadow: 0 8px 24px rgba(48, 14, 118, 0.36);
}

.module-carousel-button {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.76);
  box-shadow:
    0 18px 38px rgba(48, 14, 118, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(16px);
}

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

.module-carousel-dots button.is-active {
  background: #fff;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.46);
}

.backend-showcase {
  width: min(1240px, calc(100% - 80px));
  margin-bottom: clamp(62px, 8vw, 96px);
}

.backend-showcase img {
  border-radius: 0;
}

.scene-grid span,
.demo-points span,
.demo-credential-item,
.comparison-header,
.comparison-header > div,
.comparison-label,
.comparison-row:nth-child(odd):not(.comparison-header),
.comparison-row:nth-child(even):not(.comparison-header) {
  border-color: var(--premium-purple-line);
  background: rgba(255, 255, 255, 0.58);
}

.button.ghost,
.demo-copy-button {
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.72);
  color: var(--premium-deep);
  box-shadow: 0 12px 26px rgba(55, 18, 137, 0.12);
}

.button.ghost:hover,
.demo-copy-button:hover,
.demo-copy-button:focus-visible,
.demo-copy-button.is-copied {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.9);
  color: var(--premium-deep);
}

.play-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(231, 220, 255, 0.72)),
    rgba(255, 255, 255, 0.72);
}

.blind-box:nth-child(3) {
  background: var(--premium-soft);
  color: var(--premium-ink);
}

.goods-mini-grid 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, var(--premium-deep), var(--premium-mid));
}

.delivery-section {
  border-top-color: rgba(255, 255, 255, 0.26);
}

.delivery-section::before {
  display: none;
}

.delivery-steps article::before {
  background: linear-gradient(90deg, var(--premium-deep), var(--premium-mid), var(--premium-soft));
}

.delivery-steps article::after {
  background: rgba(255, 255, 255, 0.54);
}

.contact-material-note,
.material-note {
  border-color: rgba(125, 53, 255, 0.2);
  background: rgba(125, 53, 255, 0.08);
}

.contact-material-note strong,
.material-note strong,
.demo-credential-item strong,
.demo-link strong,
.contact-panel > ul li::before,
.contact-material-card li::before,
.material-note li::before {
  color: var(--premium-deep);
}

.contact-material-note li::before,
.material-note li::before {
  background: var(--premium-deep);
}

.contact-material-support,
.material-support {
  background: linear-gradient(135deg, #2b0b68 0%, #5121b2 58%, #8d5bff 100%);
  box-shadow: 0 20px 48px rgba(37, 11, 91, 0.28);
}

.site-footer {
  border-top-color: rgba(255, 255, 255, 0.28);
  background: rgba(64, 25, 146, 0.28);
  color: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
}

.footer-links a {
  color: #fff;
}

.hero h1 {
  color: #fff;
  text-shadow: 0 16px 42px rgba(48, 14, 118, 0.3);
}

.contact-copy h2,
.contact-materials-head h3,
.contact-panel > span {
  color: var(--premium-ink) !important;
  text-shadow: none;
}

.brand {
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  overflow: visible;
}

.brand picture {
  border-radius: 8px;
  background: #f7f9ff;
  overflow: hidden;
}

.brand-logo {
  display: block;
  width: clamp(214px, 15vw, 268px);
  height: auto;
  filter: none;
}

.site-header {
  color: #24135f;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: #24135f;
}

.nav-links a {
  border-color: rgba(82, 32, 216, 0.22);
  background: rgba(255, 255, 255, 0.44);
  color: #24135f;
  text-shadow: none;
  box-shadow:
    0 10px 24px rgba(55, 18, 137, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.nav-links a:hover,
.nav-links a.is-active {
  border-color: rgba(82, 32, 216, 0.46);
  background: rgba(255, 255, 255, 0.7);
  color: #3a1288;
  box-shadow:
    0 14px 30px rgba(55, 18, 137, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.74);
}

.nav-links a.nav-featured {
  color: #fff;
}

.sub-menu {
  background: rgba(255, 255, 255, 0.94);
}

.sub-menu a,
.nav-featured-group .sub-menu a {
  color: #3a1288;
  text-shadow: none;
}

.sub-menu a:hover {
  background: rgba(125, 53, 255, 0.1);
  color: #24135f;
}

.demo-group {
  padding: 22px 24px 20px;
}

.demo-group:first-child {
  padding-top: 22px;
}

.demo-group h3,
.demo-group p,
.demo-link-list,
.demo-credential-list,
.demo-note {
  position: relative;
  z-index: 1;
}

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

@media (max-width: 1180px) and (min-width: 981px) {
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .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%;
  }

  .site-header.is-open .nav-links {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(68, 28, 153, 0.94);
    color: #fff;
  }

  .site-header.is-open .sub-menu a {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
  }

  .module-carousel-viewport {
    mask-image: none;
  }

  .hero-modules-grid article:hover,
  .value-grid article:hover,
  .feature-item:hover,
  .scene-grid article:hover,
  .delivery-steps article:hover,
  .contact-material-card:hover,
  .material-item:hover,
  .demo-link:hover {
    transform: none;
  }

  .demo-group,
  .demo-group:first-child {
    padding: 18px 18px 16px;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    width: clamp(178px, 48vw, 218px);
  }

  .backend-showcase {
    width: 100%;
  }

  .site-header.is-open .nav-links a:not(.nav-featured),
  .site-header.is-open .sub-menu a:not(.sub-menu-button) {
    border-color: rgba(82, 32, 216, 0.24);
    background: rgba(255, 255, 255, 0.74);
    color: #24135f;
    text-shadow: none;
  }

  .site-header.is-open .nav-links a:not(.nav-featured):hover,
  .site-header.is-open .sub-menu a:not(.sub-menu-button):hover {
    background: rgba(255, 255, 255, 0.9);
    color: #3a1288;
  }
}

@media (max-width: 640px) {
  .hero-modules-head p:not(.eyebrow) {
    word-break: break-all;
    line-break: anywhere;
  }

  .hero-modules-grid p {
    word-break: break-all;
    line-break: anywhere;
  }
}

.site-header,
.site-header.is-scrolled,
.site-header.is-open,
.site-footer {
  background: #9b83d6;
  backdrop-filter: none;
}

.site-header .nav-links a,
.site-header .sub-menu a,
.button.ghost,
.demo-copy-button {
  color: #24135f;
  text-shadow: none;
}

.site-header .nav-links a,
.site-header .nav-links a.nav-featured,
.site-header .sub-menu a,
.site-header .sub-menu a.sub-menu-button {
  border-color: rgba(82, 32, 216, 0.24);
  background: rgba(255, 255, 255, 0.68);
  color: #24135f;
  box-shadow:
    0 10px 24px rgba(55, 18, 137, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.54);
}

.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,
.site-header .sub-menu a:hover,
.site-header .sub-menu a.sub-menu-button:hover {
  border-color: rgba(82, 32, 216, 0.5);
  background: rgba(229, 214, 255, 0.94);
  color: #3a1288;
  box-shadow:
    0 12px 28px rgba(55, 18, 137, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.site-header .nav-links a.is-active,
.site-header .nav-links a:hover,
.site-header .nav-links a:focus-visible,
.site-header .nav-links a:active,
.site-header .nav-links a.nav-featured.is-active,
.site-header .nav-links a.nav-featured:hover,
.site-header .nav-links a.nav-featured:focus-visible,
.site-header .nav-links a.nav-featured:active {
  border-color: rgba(95, 27, 215, 0.62);
  background: linear-gradient(90deg, #5f1bd7 0%, #a979ff 100%);
  color: #fff;
  box-shadow:
    0 12px 28px rgba(95, 27, 215, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.36);
}

.site-header .sub-menu {
  background: rgba(255, 255, 255, 0.96);
}

.site-header .sub-menu a:hover,
.site-header .sub-menu a.sub-menu-button:hover {
  background: rgba(214, 191, 255, 0.78);
}

.button.primary,
.demo-link-action,
.header-action {
  background: linear-gradient(90deg, #5f1bd7 0%, #a979ff 100%);
  color: #fff;
  text-shadow: none;
}

.button.primary:hover,
.button.primary:focus-visible,
.demo-link-action:hover,
.demo-link-action:focus-visible,
.header-action:hover,
.header-action:focus-visible {
  background: linear-gradient(90deg, #5f1bd7 0%, #a979ff 100%);
}

.button.primary:active,
.demo-link-action:active,
.header-action:active {
  background: linear-gradient(90deg, #5a18ce 0%, #9f6ff4 100%);
  transform: translateY(1px);
}

.backend-showcase,
.backend-showcase img {
  box-shadow: none;
  filter: none;
}

.backend-showcase {
  position: relative;
  width: min(1320px, calc(100% - 80px));
  aspect-ratio: 1530 / 810;
  margin-inline: auto;
  padding: clamp(18px, 1.8vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background: linear-gradient(180deg, #20252c 0%, #101318 100%);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.035);
}

.backend-showcase picture {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: #f7f8fb;
}

.backend-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module-showcase-title::after {
  display: none;
}

body,
#product-template-root,
main,
.hero,
.hero-overlay,
.module-showcase,
.section,
.intro,
.demo-section,
.feature-band,
.play-section,
.scene-section,
.product-section,
.comparison-section,
.contact-section,
.cases,
.process,
.site-footer {
  background: #fff !important;
}

.hero {
  color: #24135f;
}

.hero h1,
.module-showcase-title,
.section-head h2,
.delivery-head h3,
.contact-copy h2,
.contact-materials-head h3,
.contact-panel > span {
  color: #24135f !important;
  text-shadow: none;
}

.hero-modules-head p:not(.eyebrow),
.module-showcase-subtitle,
.section-head p:not(.eyebrow),
.feature-band .section-head p:not(.eyebrow),
.contact-copy p:not(.eyebrow),
.delivery-head p,
.play-copy p {
  color: #685594;
}

.site-footer {
  border-top-color: rgba(82, 32, 216, 0.14);
  color: #685594;
}

.site-header,
.site-header.is-scrolled,
.site-header.is-open,
.site-header.is-open .nav-links,
.site-header .sub-menu {
  background: #fff !important;
  color: #24135f;
  backdrop-filter: none;
}

.site-header,
.site-header.is-scrolled,
.site-header.is-open {
  border-bottom-color: rgba(82, 32, 216, 0.14);
  box-shadow: 0 10px 28px rgba(36, 19, 95, 0.08);
}

.module-carousel-slide figcaption,
.module-carousel-slide.slot--center figcaption {
  color: #24135f !important;
  text-shadow: 0 8px 24px rgba(36, 19, 95, 0.16);
}

/* 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;
  }
}
