.page-products {
  --local-font-display: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
  --local-font-mono: "SF Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", "Roboto Mono", "Courier New", monospace;
  display: block;
}

.page-products .products-hero {
  padding: 136px 0 56px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 78% 20%, rgba(157, 0, 255, 0.16) 0%, transparent 52%),
    radial-gradient(ellipse at 18% 80%, rgba(0, 212, 255, 0.10) 0%, transparent 45%),
    #0A0E27;
}

.page-products .products-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.page-products .products-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-sig);
  opacity: 0.7;
}

.page-products .products-hero__inner {
  position: relative;
  z-index: 1;
}

.page-products .products-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-products .products-hero__content {
  max-width: 720px;
}

.page-products .products-hero__title {
  font-family: var(--local-font-display);
  font-weight: 900;
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #F0F4F8;
  margin: 20px 0 0;
  transform: skewX(-5deg);
  transform-origin: left center;
}

.page-products .products-hero__title-accent {
  display: block;
  background: linear-gradient(120deg, #00D4FF 0%, #9D00FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.page-products .products-hero__lead {
  font-family: var(--local-font-mono);
  font-size: 16px;
  line-height: 1.8;
  color: #B0C4DE;
  margin: 28px 0 0;
  max-width: 560px;
}

.page-products .products-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.page-products .console-panel {
  background: rgba(26, 30, 46, 0.8);
  border: 1px solid rgba(176, 196, 222, 0.16);
  border-radius: 4px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04), 0 24px 48px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  max-width: 460px;
  margin-left: auto;
  position: relative;
  overflow: hidden;
}

.page-products .console-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-sig);
}

.page-products .console-panel__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px 12px;
  border-bottom: 1px solid rgba(176, 196, 222, 0.12);
}

.page-products .console-panel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #39FF14;
  box-shadow: 0 0 8px rgba(57, 255, 20, 0.6);
}

.page-products .console-panel__dot--calm {
  background: #00D4FF;
  box-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}

.page-products .console-panel__dot--hot {
  background: #FF4D00;
  box-shadow: 0 0 8px rgba(255, 77, 0, 0.5);
}

.page-products .console-panel__label {
  margin-left: auto;
  font-family: var(--local-font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #B0C4DE;
}

.page-products .console-panel__body {
  padding: 20px;
  display: grid;
  gap: 16px;
}

.page-products .console-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--local-font-mono);
  font-size: 14px;
}

.page-products .console-line__key {
  color: #B0C4DE;
}

.page-products .console-line__value {
  color: #39FF14;
  font-weight: 600;
  text-shadow: 0 0 12px rgba(57, 255, 20, 0.3);
}

.page-products .console-line__value--hot {
  color: #FF4D00;
  text-shadow: 0 0 12px rgba(255, 77, 0, 0.3);
}

.page-products .console-scan {
  margin-top: 8px;
  height: 2px;
  background: rgba(0, 212, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.page-products .console-scan__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00D4FF, transparent);
  animation: product-scan-move 3s ease-in-out infinite alternate;
}

@keyframes product-scan-move {
  0% { transform: translateX(-40%); }
  100% { transform: translateX(120%); }
}

.page-products .products-overview {
  padding: 80px 0 64px;
}

.page-products .product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}

.page-products .product-card {
  background: #1A1E2E;
  border: 1px solid rgba(176, 196, 222, 0.12);
  border-left: 3px solid transparent;
  border-radius: 4px;
  padding: 28px 24px 24px;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.page-products .product-card:hover {
  border-left-color: #00D4FF;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.page-products .product-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.page-products .product-card__icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(176, 196, 222, 0.18);
  border-radius: 4px;
  background: rgba(10, 14, 39, 0.5);
  color: #00D4FF;
}

.page-products .product-card__no {
  font-family: var(--local-font-mono);
  font-size: 14px;
  color: #B0C4DE;
  opacity: 0.7;
}

.page-products .product-card__title {
  font-family: var(--local-font-display);
  font-size: 22px;
  font-weight: 800;
  color: #F0F4F8;
  margin: 0 0 10px;
  transform: skewX(-4deg);
}

.page-products .product-card__desc {
  font-family: var(--local-font-mono);
  font-size: 14px;
  line-height: 1.75;
  color: #B0C4DE;
  margin: 0 0 16px;
}

.page-products .product-card__spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.page-products .product-card__spec-list li {
  font-family: var(--local-font-mono);
  font-size: 13px;
  color: #B0C4DE;
  padding-left: 14px;
  position: relative;
}

.page-products .product-card__spec-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #39FF14;
  transform: translateY(-50%);
}

.page-products .product-card--home .product-card__icon {
  color: #00D4FF;
}

.page-products .product-card--home:hover {
  border-left-color: #00D4FF;
}

.page-products .product-card--entry .product-card__icon {
  color: #39FF14;
}

.page-products .product-card--entry:hover {
  border-left-color: #39FF14;
}

.page-products .product-card--report .product-card__icon {
  color: #9D00FF;
}

.page-products .product-card--report:hover {
  border-left-color: #9D00FF;
}

.page-products .product-card--data .product-card__icon {
  color: #FF4D00;
}

.page-products .product-card--data:hover {
  border-left-color: #FF4D00;
}

.page-products .product-card--archive .product-card__icon {
  color: #B0C4DE;
}

.page-products .product-card--archive:hover {
  border-left-color: #B0C4DE;
}

.page-products .product-card--subscribe .product-card__icon {
  color: #00D4FF;
}

.page-products .product-card--subscribe:hover {
  border-left-color: #00D4FF;
}

.page-products .products-stable {
  padding: 80px 0;
}

.page-products .products-stable__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-products .feature-list {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.page-products .feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(26, 30, 46, 0.6);
  border: 1px solid rgba(176, 196, 222, 0.10);
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.page-products .feature-item:hover {
  border-color: rgba(0, 212, 255, 0.4);
}

.page-products .feature-item__marker {
  font-family: var(--local-font-mono);
  font-size: 16px;
  font-weight: 700;
  color: #00D4FF;
  line-height: 1.4;
}

.page-products .feature-item__body h4 {
  font-family: var(--local-font-display);
  font-size: 18px;
  font-weight: 700;
  color: #F0F4F8;
  margin: 0 0 6px;
}

.page-products .feature-item__body p {
  font-family: var(--local-font-mono);
  font-size: 14px;
  line-height: 1.7;
  color: #B0C4DE;
  margin: 0;
}

.page-products .products-entry {
  padding: 80px 0;
}

.page-products .products-entry__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-products .flow-steps {
  display: grid;
  gap: 12px;
}

.page-products .flow-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 18px;
  background: rgba(26, 30, 46, 0.5);
  border: 1px solid rgba(176, 196, 222, 0.10);
  border-radius: 4px;
}

.page-products .flow-step__num {
  font-family: var(--local-font-mono);
  font-size: 15px;
  font-weight: 700;
  color: #39FF14;
  line-height: 1.6;
}

.page-products .flow-step__text {
  font-family: var(--local-font-mono);
  font-size: 14px;
  line-height: 1.7;
  color: #B0C4DE;
  margin: 0;
}

.page-products .entry-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 20px;
  padding: 16px 18px;
  border: 1px dashed rgba(0, 212, 255, 0.3);
  border-radius: 4px;
}

.page-products .entry-note__icon {
  color: #FF4D00;
  flex-shrink: 0;
}

.page-products .entry-note__text {
  font-family: var(--local-font-mono);
  font-size: 13px;
  line-height: 1.6;
  color: #B0C4DE;
  margin: 0;
}

.page-products .entry-note__text a {
  color: #00D4FF;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 212, 255, 0.4);
  transition: border-color 0.3s ease;
}

.page-products .entry-note__text a:hover {
  border-bottom-color: #00D4FF;
}

.page-products .products-report {
  padding: 80px 0;
}

.page-products .products-report__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-products .report-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 20px 0;
}

.page-products .report-flow__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--local-font-mono);
  font-size: 13px;
  color: #F0F4F8;
  background: rgba(157, 0, 255, 0.12);
  border: 1px solid rgba(157, 0, 255, 0.3);
  padding: 8px 12px;
  border-radius: 4px;
}

.page-products .report-flow__arrow {
  color: #9D00FF;
  font-family: var(--local-font-mono);
  font-size: 16px;
}

.page-products .report-points {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 10px;
}

.page-products .report-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--local-font-mono);
  font-size: 14px;
  color: #B0C4DE;
}

.page-products .report-point__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9D00FF;
  box-shadow: 0 0 8px rgba(157, 0, 255, 0.5);
  flex-shrink: 0;
}

.page-products .products-archive {
  padding: 80px 0;
}

.page-products .products-archive__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-products .archive-panel__title {
  font-family: var(--local-font-display);
  font-size: 20px;
  font-weight: 700;
  color: #F0F4F8;
  margin: 0 0 16px;
  transform: skewX(-4deg);
}

.page-products .archive-fold {
  display: grid;
  gap: 8px;
}

.page-products .archive-fold__item {
  border: 1px solid rgba(176, 196, 222, 0.12);
  border-radius: 4px;
  background: rgba(26, 30, 46, 0.5);
  transition: border-color 0.3s ease;
}

.page-products .archive-fold__item:hover {
  border-color: rgba(0, 212, 255, 0.35);
}

.page-products .archive-fold__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
  font-family: var(--local-font-mono);
  font-size: 14px;
  color: #F0F4F8;
}

.page-products .archive-fold__summary::-webkit-details-marker {
  display: none;
}

.page-products .archive-fold__summary::after {
  content: "+";
  font-size: 20px;
  color: #00D4FF;
  transition: transform 0.3s ease;
}

.page-products .archive-fold__item[open] .archive-fold__summary::after {
  transform: rotate(45deg);
}

.page-products .archive-fold__meta {
  color: #B0C4DE;
  font-size: 12px;
}

.page-products .archive-fold__body {
  padding: 0 18px 16px;
  font-family: var(--local-font-mono);
  font-size: 13px;
  line-height: 1.7;
  color: #B0C4DE;
}

.page-products .archive-tip {
  font-family: var(--local-font-mono);
  font-size: 13px;
  line-height: 1.7;
  color: #B0C4DE;
  margin-top: 16px;
}

.page-products .archive-tip a {
  color: #00D4FF;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 212, 255, 0.4);
}

.page-products .products-subscribe {
  padding: 80px 0;
}

.page-products .products-subscribe__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-products .subscribe-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.page-products .metric {
  background: rgba(26, 30, 46, 0.6);
  border: 1px solid rgba(176, 196, 222, 0.10);
  border-radius: 4px;
  padding: 20px 16px;
  text-align: center;
}

.page-products .metric__value {
  display: block;
  font-family: var(--local-font-display);
  font-size: 32px;
  font-weight: 900;
  color: #39FF14;
  line-height: 1.1;
}

.page-products .metric__unit {
  font-size: 16px;
  color: #B0C4DE;
  margin-left: 4px;
}

.page-products .metric__label {
  display: block;
  font-family: var(--local-font-mono);
  font-size: 12px;
  color: #B0C4DE;
  margin-top: 6px;
}

.page-products .subscribe-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.page-products .subscribe-tag {
  display: inline-block;
  font-family: var(--local-font-mono);
  font-size: 12px;
  color: #B0C4DE;
  border: 1px solid rgba(176, 196, 222, 0.18);
  border-radius: 999px;
  padding: 6px 12px;
}

.page-products .subscribe-tag--hot {
  color: #FF4D00;
  border-color: rgba(255, 77, 0, 0.4);
}

.page-products .products-cta {
  padding: 64px 0 96px;
}

.page-products .products-cta__banner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  background:
    radial-gradient(ellipse at 90% 20%, rgba(157, 0, 255, 0.12) 0%, transparent 50%),
    linear-gradient(120deg, #141827 0%, #1A1E2E 60%, #0A0E27 100%);
  border: 1px solid rgba(176, 196, 222, 0.12);
  border-radius: 6px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}

.page-products .products-cta__banner::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(0, 212, 255, 0.04), 0 0 0 48px rgba(0, 212, 255, 0.02);
}

.page-products .products-cta__info {
  position: relative;
  z-index: 1;
}

.page-products .products-cta__title {
  font-family: var(--local-font-display);
  font-size: 26px;
  font-weight: 800;
  color: #F0F4F8;
  margin: 8px 0 0;
  transform: skewX(-4deg);
}

.page-products .products-cta__text {
  font-family: var(--local-font-mono);
  font-size: 14px;
  line-height: 1.7;
  color: #B0C4DE;
  margin: 12px 0 0;
  max-width: 480px;
}

.page-products .products-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.page-products .section-index--light {
  color: #00D4FF;
}

.page-products .section-index {
  display: inline-block;
  font-family: var(--local-font-mono);
  font-size: 22px;
  font-weight: 700;
  color: #00D4FF;
  line-height: 1;
  padding-bottom: 8px;
  position: relative;
}

.page-products .section-index::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gradient-sig);
}

.page-products .section-title {
  font-family: var(--local-font-display);
  font-weight: 900;
  font-size: 32px;
  line-height: 1.2;
  color: #F0F4F8;
  margin: 12px 0 0;
  transform: skewX(-5deg);
  transform-origin: left center;
}

.page-products .section-lead {
  font-family: var(--local-font-mono);
  font-size: 15px;
  line-height: 1.75;
  color: #B0C4DE;
  margin: 16px 0 0;
  max-width: 620px;
}

.page-products .image-frame {
  display: block;
  position: relative;
  background: #141827;
  border: 1px solid rgba(176, 196, 222, 0.12);
  border-radius: 4px;
  overflow: hidden;
  margin: 0;
}

.page-products .image-frame--wide {
  position: relative;
}

.page-products .image-frame--wide img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  display: block;
}

.page-products .image-frame--square img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  display: block;
}

.page-products .image-frame--portrait img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  display: block;
}

.page-products .image-frame::before {
  content: "";
  display: block;
  padding-bottom: 0;
}

.page-products .image-caption {
  font-family: var(--local-font-mono);
  font-size: 12px;
  color: #B0C4DE;
  background: rgba(10, 14, 39, 0.75);
  border-top: 1px solid rgba(176, 196, 222, 0.10);
  padding: 8px 14px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.page-products .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.page-products .section {
  padding: 64px 0;
}

.page-products .section--dim {
  background: #060A1A;
}

.page-products .section__head {
  margin-bottom: 36px;
}

.page-products .breadcrumb {
  margin-bottom: 0;
}

.page-products .breadcrumb__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
  font-family: var(--local-font-mono);
  font-size: 13px;
}

.page-products .breadcrumb__item {
  display: inline-flex;
  align-items: center;
}

.page-products .breadcrumb__item + .breadcrumb__item::before {
  content: "/";
  color: #B0C4DE;
  margin-right: 8px;
  opacity: 0.5;
}

.page-products .breadcrumb__link {
  color: #00D4FF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-products .breadcrumb__link:hover {
  color: #39FF14;
}

.page-products .breadcrumb__current {
  color: #B0C4DE;
}

.page-products .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 4px;
  font-family: var(--local-font-mono);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-products .btn--primary {
  background: linear-gradient(120deg, #00D4FF, #9D00FF);
  color: #0A0E27;
  border: 1px solid transparent;
}

.page-products .btn--primary:hover {
  background: linear-gradient(120deg, #39FF14, #00D4FF);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.25);
}

.page-products .btn--ghost {
  background: transparent;
  border: 1px solid rgba(0, 212, 255, 0.5);
  color: #00D4FF;
}

.page-products .btn--ghost:hover {
  border-color: #00D4FF;
  background: rgba(0, 212, 255, 0.08);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .page-products [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .page-products .console-scan__bar {
    animation: none;
  }
}

@media (min-width: 640px) {
  .page-products .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-products .products-hero__title {
    font-size: 52px;
  }

  .page-products .section-title {
    font-size: 36px;
  }
}

@media (min-width: 900px) {
  .page-products .products-hero {
    padding: 160px 0 80px;
  }

  .page-products .products-hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
  }

  .page-products .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .page-products .products-stable__grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }

  .page-products .products-entry__grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 56px;
  }

  .page-products .products-report__grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }

  .page-products .products-archive__layout {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }

  .page-products .products-subscribe__grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }

  .page-products .products-cta__banner {
    flex-direction: row;
    align-items: center;
    padding: 48px 56px;
  }

  .page-products .products-cta__title {
    font-size: 30px;
  }

  .page-products .section {
    padding: 80px 0;
  }
}

@media (min-width: 1200px) {
  .page-products .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}
