.page-products {
  --card-glow: 0 8px 28px rgba(0, 255, 163, 0.08);
  --cyan-glow: 0 0 18px rgba(0, 229, 255, 0.12);
  --hero-card-radius: 24px;
  --section-pad-mobile: 64px 0;
  --section-pad-desktop: 100px 0;
  --scanline-opacity: 0.03;
  width: 100%;
  background: var(--space-bg);
  color: var(--near-white);
  overflow-x: hidden;
}

.page-products .container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 20px;
}

.page-products .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted-blue);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.page-products .breadcrumb a {
  color: var(--muted-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-products .breadcrumb a:hover {
  color: var(--neon-green);
}

.page-products .crumb-sep {
  color: var(--metal-silver);
  opacity: 0.5;
}

.page-products .crumb-current {
  color: var(--neon-green);
  font-weight: 600;
}

.page-products .hero-zone {
  position: relative;
  padding: calc(var(--header-h) + 48px) 0 56px;
  background:
    radial-gradient(900px 500px at 82% -10%, rgba(0, 255, 163, 0.12), transparent 60%),
    radial-gradient(700px 420px at 8% 115%, rgba(0, 229, 255, 0.08), transparent 60%),
    var(--space-bg);
}

.page-products .hero-zone::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    180deg,
    transparent 0px,
    transparent 3px,
    rgba(0, 229, 255, var(--scanline-opacity)) 3px,
    rgba(0, 229, 255, var(--scanline-opacity)) 4px
  );
  pointer-events: none;
}

.page-products .hero-zone .container {
  position: relative;
  z-index: 1;
}

.page-products .hero-copy {
  max-width: 820px;
}

.page-products .kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--neon-cyan);
  text-transform: uppercase;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.18);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 16px;
}

.page-products h1 {
  font-size: 34px;
  line-height: 1.2;
  color: var(--near-white);
  margin: 0 0 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-products .hero-intro {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted-blue);
  margin: 0;
  max-width: 720px;
}

.page-products .hero-cards {
  display: grid;
  gap: 20px;
  margin-top: 48px;
}

.page-products .hero-card {
  background: linear-gradient(145deg, rgba(16, 27, 58, 0.92), rgba(26, 36, 64, 0.82));
  border: 1px solid rgba(0, 255, 163, 0.14);
  border-radius: var(--hero-card-radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.page-products .hero-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 72px;
  height: 72px;
  background: radial-gradient(circle at top right, rgba(0, 255, 163, 0.12), transparent 70%);
  pointer-events: none;
}

.page-products .hero-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-glow);
  border-color: rgba(0, 255, 163, 0.35);
}

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

.page-products .hero-card-index {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--neon-green);
  line-height: 1;
  opacity: 0.9;
}

.page-products .hero-card-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--metal-silver);
  text-transform: uppercase;
  border: 1px solid rgba(174, 182, 194, 0.25);
  border-radius: 4px;
  padding: 4px 8px;
}

.page-products .hero-card h2 {
  font-size: 22px;
  line-height: 1.3;
  color: var(--near-white);
  margin: 0 0 12px;
  font-weight: 700;
}

.page-products .hero-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted-blue);
  margin: 0 0 20px;
}

.page-products .section {
  padding: var(--section-pad-mobile);
}

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

.page-products .section-head .section-desc {
  font-size: 15px;
  color: var(--metal-silver);
  margin: 8px 0 0;
}

.page-products h2 {
  font-size: 30px;
  line-height: 1.2;
  color: var(--near-white);
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.page-products .solution-section {
  background: linear-gradient(180deg, var(--space-bg) 0%, var(--space-bg-2) 100%);
  border-top: 1px solid rgba(0, 229, 255, 0.06);
}

.page-products .solution-nav-section {
  background: var(--space-bg);
}

.page-products .solution-sync-section {
  background: linear-gradient(180deg, var(--space-bg-2) 0%, var(--space-bg) 50%, var(--space-bg-2) 100%);
  border-bottom: 1px solid rgba(0, 229, 255, 0.06);
}

.page-products .solution-layout {
  display: grid;
  gap: 32px;
  align-items: center;
}

.page-products .solution-copy .lead-copy {
  font-size: 15px;
  line-height: 1.8;
  color: var(--near-white);
  margin: 0 0 20px;
}

.page-products .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
}

.page-products .feature-list li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted-blue);
}

.page-products .feature-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 7px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--neon-green);
  border-bottom: 2px solid var(--neon-green);
  transform: rotate(-45deg);
}

.page-products .metric-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.page-products .metric {
  background: rgba(16, 27, 58, 0.7);
  border: 1px solid rgba(0, 229, 255, 0.12);
  border-radius: 16px;
  padding: 16px 14px;
  text-align: center;
}

.page-products .metric-value {
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 700;
  color: var(--neon-green);
  line-height: 1.15;
}

.page-products .metric-unit {
  font-size: 14px;
  font-weight: 400;
  color: var(--metal-silver);
  margin-left: 2px;
}

.page-products .metric-label {
  font-size: 12px;
  color: var(--muted-blue);
  margin-top: 6px;
}

.page-products .solution-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.12);
  background: var(--space-bg-2);
  box-shadow: var(--cyan-glow);
}

.page-products .solution-media img {
  display: block;
  width: 100%;
  height: auto;
}

.page-products .solution-media-center {
  max-width: 520px;
  margin: 0 auto;
}

.page-products .sync-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.page-products .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  padding: 10px 20px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid transparent;
}

.page-products .btn-primary {
  background: var(--neon-green);
  color: var(--space-bg);
}

.page-products .btn-primary:hover {
  background: var(--soft-green);
  box-shadow: 0 0 20px rgba(0, 255, 163, 0.25);
}

.page-products .btn-ghost {
  background: transparent;
  color: var(--neon-cyan);
  border-color: rgba(0, 229, 255, 0.35);
}

.page-products .btn-ghost:hover {
  background: rgba(0, 229, 255, 0.08);
  border-color: var(--neon-cyan);
}

.page-products .tool-icon {
  font-size: 16px;
  line-height: 1;
}

.page-products .scenario-section {
  background: var(--space-bg);
}

.page-products .scenario-media {
  margin: 0 0 32px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 163, 0.1);
}

.page-products .scenario-media img {
  display: block;
  width: 100%;
  height: auto;
}

.page-products .scenario-timeline {
  display: grid;
  gap: 20px;
}

.page-products .timeline-item {
  position: relative;
  background: rgba(16, 27, 58, 0.6);
  border: 1px solid rgba(0, 255, 163, 0.12);
  border-radius: 18px;
  padding: 24px 22px;
}

.page-products .timeline-item::before {
  content: "";
  position: absolute;
  top: 24px;
  left: -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 0 4px rgba(0, 255, 163, 0.15), 0 0 14px rgba(0, 255, 163, 0.4);
}

.page-products .timeline-time {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--neon-cyan);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.page-products .timeline-content h3 {
  font-size: 18px;
  line-height: 1.4;
  color: var(--near-white);
  margin: 0 0 8px;
  font-weight: 700;
}

.page-products .timeline-content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted-blue);
  margin: 0;
}

.page-products .version-section {
  background: linear-gradient(180deg, var(--space-bg-2) 0%, var(--space-bg) 100%);
  border-top: 1px solid rgba(0, 229, 255, 0.08);
}

.page-products .version-grid {
  display: grid;
  gap: 32px;
  align-items: start;
}

.page-products .version-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 18px;
  border: 1px solid rgba(0, 229, 255, 0.12);
  background: rgba(16, 27, 58, 0.55);
}

.page-products .version-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 14px;
}

.page-products .version-table th,
.page-products .version-table td {
  padding: 16px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 229, 255, 0.08);
}

.page-products .version-table thead th {
  background: rgba(26, 36, 64, 0.8);
  color: var(--near-white);
  font-weight: 700;
  font-size: 13px;
}

.page-products .version-table tbody tr:last-child th,
.page-products .version-table tbody tr:last-child td {
  border-bottom: none;
}

.page-products .version-table tbody th {
  color: var(--metal-silver);
  font-weight: 500;
  white-space: nowrap;
  background: rgba(16, 27, 58, 0.4);
}

.page-products .version-table tbody td {
  color: var(--muted-blue);
}

.page-products .version-table .col-version-new {
  background: rgba(0, 255, 163, 0.06);
  border-left: 2px solid var(--neon-green);
  border-right: 1px solid rgba(0, 229, 255, 0.08);
  position: relative;
}

.page-products .version-table td:nth-child(2) {
  background: rgba(0, 255, 163, 0.04);
  border-left: 2px solid var(--neon-green);
  color: var(--near-white);
}

.page-products .tag-new {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--neon-green);
  color: var(--space-bg);
  font-size: 12px;
  font-weight: 700;
  vertical-align: middle;
  margin-left: 6px;
  letter-spacing: 0.02em;
}

.page-products .recommended-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-green);
  margin-right: 6px;
  box-shadow: 0 0 8px rgba(0, 255, 163, 0.5);
}

.page-products .version-note {
  margin-top: 18px;
  padding: 16px 18px;
  background: rgba(0, 255, 163, 0.06);
  border-left: 3px solid var(--neon-green);
  border-radius: 0 12px 12px 0;
}

.page-products .version-note p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--near-white);
  margin: 0;
}

.page-products .version-media {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 163, 0.12);
  background: var(--space-bg-2);
}

.page-products .version-media img {
  display: block;
  width: 100%;
  height: auto;
}

.page-products .resource-section {
  background: var(--space-bg);
  padding-bottom: 72px;
}

.page-products .resource-bar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: linear-gradient(135deg, rgba(26, 36, 64, 0.9), rgba(16, 27, 58, 0.9));
  border: 1px solid rgba(0, 229, 255, 0.14);
  border-radius: 24px;
  padding: 32px 28px;
}

.page-products .resource-copy p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted-blue);
  margin: 12px 0 0;
  max-width: 560px;
}

.page-products .resource-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (min-width: 640px) {
  .page-products {
    --scanline-opacity: 0.04;
  }

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

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

  .page-products .resource-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 900px) {
  .page-products h1 {
    font-size: 44px;
  }

  .page-products .hero-zone {
    padding: calc(var(--header-h) + 64px) 0 80px;
  }

  .page-products .hero-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
  }

  .page-products .hero-card {
    padding: 36px 30px;
  }

  .page-products .hero-card:nth-child(2) {
    margin-top: 28px;
  }

  .page-products .hero-card:nth-child(2)::after {
    background: radial-gradient(circle at top right, rgba(0, 229, 255, 0.14), transparent 70%);
  }

  .page-products .section {
    padding: var(--section-pad-desktop);
  }

  .page-products .section-head {
    margin-bottom: 48px;
    max-width: 720px;
  }

  .page-products .solution-layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
  }

  .page-products .solution-layout-reverse .solution-media {
    order: 1;
  }

  .page-products .solution-layout-reverse .solution-copy {
    order: 2;
  }

  .page-products .solution-media {
    border-radius: 24px;
  }

  .page-products .solution-copy .lead-copy {
    font-size: 16px;
  }

  .page-products .scenario-media {
    margin-bottom: 48px;
  }

  .page-products .scenario-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    padding-top: 20px;
  }

  .page-products .scenario-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-cyan), var(--neon-green));
    opacity: 0.3;
    border-radius: 2px;
  }

  .page-products .timeline-item {
    border-radius: 20px;
    padding: 32px 28px;
  }

  .page-products .timeline-item::before {
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
  }

  .page-products .timeline-time {
    font-size: 14px;
  }

  .page-products .version-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
  }

  .page-products .version-table th,
  .page-products .version-table td {
    padding: 18px 16px;
  }

  .page-products .resource-section {
    padding-bottom: 88px;
  }
}

@media (min-width: 1200px) {
  .page-products .hero-card h2 {
    font-size: 24px;
  }

  .page-products .hero-card p {
    font-size: 15px;
  }

  .page-products .metric-value {
    font-size: 34px;
  }

  .page-products .version-note {
    padding: 18px 22px;
  }
}
