:root {
  color-scheme: dark;
  --cyan: #57e8ff;
  --violet: #8b5cf6;
  --ink: #030712;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: #f7fbff;
  background:
    radial-gradient(
      circle at 13% 8%,
      rgba(68, 218, 255, 0.11),
      transparent 26%
    ),
    radial-gradient(
      circle at 89% 22%,
      rgba(139, 92, 246, 0.14),
      transparent 29%
    ),
    linear-gradient(180deg, #030712, #07111f 48%, #030712);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "PingFang SC",
    "Microsoft YaHei",
    sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
.product-page-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  height: 74px;
  padding: 0 clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(151, 196, 255, 0.11);
  background: rgba(3, 7, 18, 0.72);
  backdrop-filter: blur(18px);
}
.product-page-header .brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}
.product-page-header .brand img {
  display: block;
  width: clamp(150px, 18vw, 210px);
  height: 42px;
  object-fit: contain;
  object-position: left center;
}
.product-page-header .back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border: 1px solid rgba(157, 207, 255, 0.17);
  border-radius: 999px;
  color: rgba(232, 244, 255, 0.82);
  background: rgba(255, 255, 255, 0.035);
  font-size: 13px;
  transition: 0.25s ease;
}
.product-page-header .back-link:hover {
  transform: translateY(-1px);
  border-color: rgba(61, 216, 255, 0.48);
  color: #fff;
  background: rgba(39, 216, 255, 0.08);
}
.product-page-header .back-link svg {
  width: 15px;
  height: 15px;
}
.products-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(270px, 0.75fr);
  gap: clamp(48px, 8vw, 130px);
  align-items: end;
  min-height: 680px;
  padding: clamp(160px, 18vh, 220px) clamp(24px, 7vw, 110px) 94px;
  overflow: hidden;
  border-bottom: 1px solid rgba(130, 199, 255, 0.1);
  isolation: isolate;
}
.products-hero:before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(103, 174, 225, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 174, 225, 0.045) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(180deg, #000, transparent 90%);
  content: "";
}
.hero-orbit {
  position: absolute;
  top: 44%;
  right: -12vw;
  z-index: -1;
  width: min(62vw, 880px);
  aspect-ratio: 1;
  border: 1px solid rgba(93, 229, 255, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 100px rgba(86, 219, 255, 0.07),
    inset 0 0 120px rgba(139, 92, 246, 0.05);
}
.hero-orbit:before,
.hero-orbit:after {
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(133, 119, 255, 0.17);
  border-radius: 50%;
  content: "";
}
.hero-orbit:after {
  inset: 29%;
  border-style: solid;
  border-color: rgba(87, 232, 255, 0.13);
}
.products-hero-copy {
  max-width: 900px;
  min-width: 0;
}
.products-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: rgba(151, 224, 249, 0.76);
  font:
    800 11px/1.2 ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace;
  letter-spacing: 0.2em;
}
.products-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5cecff;
  box-shadow: 0 0 18px #5cecff;
}
.products-hero h1 {
  margin: 0;
  color: #f6fbff;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  overflow-wrap: anywhere;
}
.products-hero h1 em {
  color: transparent;
  background: linear-gradient(95deg, #7cecff 5%, #a692ff 82%);
  background-clip: text;
  -webkit-background-clip: text;
  font-style: normal;
}
.products-hero-copy > p:not(.products-kicker) {
  max-width: 780px;
  margin: 28px 0 0;
  color: rgba(205, 225, 241, 0.68);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.82;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}
.hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(122, 218, 255, 0.28);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  transition: 0.25s ease;
}
.hero-actions a:hover {
  transform: translateY(-2px);
}
.primary-action {
  color: #04111b;
  background: linear-gradient(90deg, #64e8ff, #9ac7ff);
  box-shadow: 0 14px 42px rgba(72, 215, 255, 0.16);
}
.secondary-action {
  color: rgba(237, 247, 255, 0.9);
  background: rgba(255, 255, 255, 0.035);
}
.products-summary {
  display: grid;
  gap: 12px;
  min-width: 0;
}
.products-summary div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px 20px;
  align-items: center;
  padding: 21px 24px;
  border: 1px solid rgba(120, 201, 255, 0.14);
  border-radius: 18px;
  background: rgba(7, 16, 33, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(15px);
}
.products-summary strong {
  color: #f6fbff;
  font:
    700 clamp(30px, 3.4vw, 44px)/1 ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace;
}
.products-summary span {
  color: rgba(201, 224, 240, 0.64);
  font-size: 14px;
  line-height: 1.45;
}
.product-directory {
  width: min(1540px, 100%);
  margin: auto;
  padding: 88px clamp(20px, 4vw, 68px) 108px;
}
.directory-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 44px;
}
.directory-heading > div > span {
  display: block;
  margin-bottom: 10px;
  color: #70e8ff;
  font:
    800 11px/1.2 ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace;
  letter-spacing: 0.16em;
}
.directory-heading h2 {
  margin: 0;
  font-size: clamp(32px, 3.4vw, 48px);
  letter-spacing: -0.045em;
}
.directory-heading > p {
  max-width: 480px;
  margin: 0;
  color: rgba(195, 217, 235, 0.6);
  font-size: 15px;
  line-height: 1.8;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: 24px;
  background: linear-gradient(
    150deg,
    rgba(11, 25, 45, 0.96),
    rgba(4, 10, 21, 0.99)
  );
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--accent-rgb), 0.48);
  box-shadow:
    0 34px 95px rgba(0, 0, 0, 0.4),
    0 0 35px rgba(var(--accent-rgb), 0.08);
}
.product-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #07101d;
}
.product-media:after {
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(3, 9, 18, 0.7));
  pointer-events: none;
  content: "";
}
.product-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition:
    transform 0.65s cubic-bezier(0.2, 0.75, 0.2, 1),
    filter 0.3s ease;
}
.product-card:hover .product-media img {
  transform: scale(1.025);
  filter: saturate(1.06);
}
.product-media-mobile {
  padding: 24px 24px 18px;
  background:
    radial-gradient(circle at 18% 20%, rgba(46, 230, 166, 0.14), transparent 36%),
    radial-gradient(circle at 82% 78%, rgba(74, 156, 255, 0.14), transparent 38%),
    #07101d;
}
.product-media-mobile:after {
  height: 22%;
}
.product-app-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
  height: 100%;
}
.product-app-gallery figure {
  min-width: 0;
  margin: 0;
}
.product-app-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 414/780;
  border: 1px solid rgba(126, 236, 255, 0.18);
  border-radius: 12px;
  object-fit: contain;
  object-position: top center;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.34);
}
.product-app-gallery figcaption {
  margin-top: 7px;
  color: rgba(215, 239, 246, 0.68);
  font-size: 10px;
  line-height: 1.2;
  text-align: center;
}
.product-status {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(var(--accent-rgb), 0.34);
  border-radius: 999px;
  color: rgba(243, 252, 255, 0.9);
  background: rgba(2, 8, 18, 0.68);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}
.product-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}
.product-status.is-test {
  border-color: rgba(255, 190, 94, 0.38);
}
.product-status.is-test i {
  background: #ffbd62;
  box-shadow: 0 0 12px #ffbd62;
}
.product-number {
  position: absolute;
  right: 17px;
  bottom: 13px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.82);
  font:
    700 13px/1 ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace;
  letter-spacing: 0.16em;
}
.product-copy {
  padding: 24px 26px 26px;
}
.product-type {
  margin: 0 0 10px !important;
  color: var(--accent) !important;
  font:
    800 10px/1.2 ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace !important;
  letter-spacing: 0.15em;
}
.product-copy h2 {
  margin: 0;
  color: #f8fcff;
  font-size: clamp(22px, 1.7vw, 27px);
  line-height: 1.28;
  letter-spacing: -0.025em;
}
.product-copy h2 a { transition: color 0.2s ease, text-shadow 0.2s ease; }
.product-copy h2 a:hover { color: var(--accent); text-shadow: 0 0 18px rgba(var(--accent-rgb), 0.24); }
.product-copy h3 {
  margin: 11px 0 0;
  color: rgba(229, 241, 250, 0.86);
  font-size: 15px;
  line-height: 1.6;
}
.product-copy > p {
  margin: 11px 0 0;
  color: rgba(190, 213, 231, 0.64);
  font-size: 14px;
  line-height: 1.75;
}
.product-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 20px;
  padding: 0;
  list-style: none;
}
.product-copy li {
  padding: 7px 10px;
  border: 1px solid rgba(var(--accent-rgb), 0.18);
  border-radius: 8px;
  color: rgba(215, 235, 247, 0.72);
  background: rgba(var(--accent-rgb), 0.055);
  font-size: 12px;
}
.product-link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 48px;
  padding: 0 17px;
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  border-radius: 13px;
  color: #f4fbff;
  background: linear-gradient(
    90deg,
    rgba(var(--accent-rgb), 0.11),
    rgba(var(--accent-rgb), 0.025)
  );
  font-size: 14px;
  font-weight: 800;
  transition: 0.24s ease;
}
.product-link span {
  overflow: hidden;
  color: rgba(185, 215, 233, 0.48);
  font:
    500 11px/1.3 ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-link b {
  color: var(--accent);
  font-size: 20px;
}
.product-link:hover {
  border-color: rgba(var(--accent-rgb), 0.58);
  background: rgba(var(--accent-rgb), 0.14);
}
.products-cta {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr auto;
  gap: clamp(30px, 5vw, 82px);
  align-items: end;
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto 100px;
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid rgba(113, 209, 255, 0.19);
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(138, 92, 246, 0.13),
      transparent 34%
    ),
    linear-gradient(120deg, rgba(13, 31, 54, 0.9), rgba(5, 13, 27, 0.96));
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.35);
}
.products-cta > div span {
  color: #70e8ff;
  font:
    800 10px/1.2 ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace;
  letter-spacing: 0.17em;
}
.products-cta h2 {
  max-width: 720px;
  margin: 12px 0 0;
  font-size: clamp(30px, 3.5vw, 50px);
  line-height: 1.2;
  letter-spacing: -0.04em;
}
.products-cta > p {
  margin: 0;
  color: rgba(198, 220, 238, 0.62);
  font-size: 15px;
  line-height: 1.85;
}
.products-cta > a {
  display: grid;
  gap: 4px;
  min-width: 205px;
  padding: 17px 20px;
  border: 1px solid rgba(91, 227, 255, 0.3);
  border-radius: 16px;
  background: rgba(84, 225, 255, 0.08);
}
.products-cta > a small {
  color: rgba(187, 220, 237, 0.58);
  font-size: 11px;
}
.products-cta > a strong {
  font:
    700 17px/1.35 ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace;
}
.products-cta > a b {
  grid-column: 2;
  grid-row: 1/3;
  align-self: center;
  color: #69eaff;
  font-size: 22px;
}
.products-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 30px clamp(24px, 6vw, 90px);
  border-top: 1px solid rgba(125, 197, 255, 0.1);
  color: rgba(189, 213, 231, 0.48);
  font-size: 12px;
}
.products-footer img {
  display: block;
  width: 170px;
  height: 38px;
  object-fit: contain;
  object-position: left center;
}
.products-footer p {
  margin: 0;
}
.products-footer span {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
}
@media (max-width: 1080px) {
  .products-hero {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .products-summary {
    grid-template-columns: repeat(3, 1fr);
  }
  .products-summary div {
    display: block;
  }
  .products-summary span {
    display: block;
    margin-top: 10px;
  }
  .products-cta {
    grid-template-columns: 1fr 1fr;
  }
  .products-cta > a {
    grid-column: 1/-1;
    width: max-content;
  }
  .product-copy {
    padding: 24px;
  }
  .product-copy h3 {
    font-size: 16px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 72px;
  }
  .product-page-header {
    height: 64px;
    padding-inline: 18px;
  }
  .product-page-header .brand img {
    width: 145px;
  }
  .products-hero {
    min-height: auto;
    padding: 122px 20px 68px;
  }
  .products-hero h1 {
    font-size: clamp(31px, 8.8vw, 42px);
    line-height: 1.13;
  }
  .products-hero-copy > p:not(.products-kicker) {
    font-size: 15px;
    line-height: 1.8;
  }
  .hero-actions a {
    width: 100%;
  }
  .products-summary {
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .products-summary div {
    display: grid;
    grid-template-columns: 76px 1fr;
    padding: 16px 18px;
  }
  .products-summary span {
    margin: 0;
  }
  .hero-orbit {
    top: 15%;
    right: -45vw;
    width: 120vw;
  }
  .product-directory {
    padding: 76px 15px 86px;
  }
  .directory-heading {
    display: block;
    margin-bottom: 28px;
  }
  .directory-heading > p {
    margin-top: 16px;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .product-card {
    border-radius: 18px;
  }
  .product-copy {
    padding: 22px 20px 23px;
  }
  .product-copy h2 {
    font-size: 23px;
  }
  .product-copy h3 {
    font-size: 15px;
  }
  .product-copy > p {
    font-size: 13px;
    line-height: 1.8;
  }
  .product-link {
    grid-template-columns: 1fr auto;
  }
  .product-link span {
    display: none;
  }
  .product-media-mobile {
    padding: 18px 15px 14px;
  }
  .product-app-gallery {
    grid-auto-flow: column;
    grid-auto-columns: minmax(96px, 1fr);
    grid-template-columns: none;
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }
  .product-app-gallery::-webkit-scrollbar {
    display: none;
  }
  .products-cta {
    display: block;
    width: calc(100% - 30px);
    margin-bottom: 64px;
    padding: 28px 22px;
  }
  .products-cta > p {
    margin-top: 20px;
  }
  .products-cta > a {
    width: 100%;
    margin-top: 24px;
  }
  .products-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 25px 20px;
  }
  .products-footer p {
    display: none;
  }
}

@media (max-width: 430px) {
  .product-status {
    top: 10px;
    left: 10px;
    padding: 7px 9px;
    font-size: 10px;
  }
  .product-number {
    right: 10px;
    bottom: 9px;
  }
  .product-page-header {
    padding-inline: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .product-card,
  .product-media img,
  .hero-actions a {
    transition: none;
  }
}
