.page-products {
  --pp-rail: rgba(74, 158, 255, 0.1);
  --pp-stripe: rgba(255, 140, 66, 0.08);
  background:
    radial-gradient(ellipse at 85% 2%, rgba(74, 158, 255, 0.12), transparent 40%),
    linear-gradient(180deg, var(--color-deep-space) 0%, var(--color-faint) 42%, var(--color-deep-space) 100%);
}

.page-products .page-products-container {
  width: min(var(--container-w), calc(100% - 40px));
  margin-inline: auto;
}

.page-products .page-products-breadcrumb {
  padding: 18px 0 8px;
}

.page-products .page-products-breadcrumb .page-products-container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-ash);
}

.page-products .crumb-link {
  color: var(--color-ash);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-products .crumb-link:hover {
  color: var(--color-data);
}

.page-products .crumb-sep {
  opacity: 0.6;
}

.page-products .crumb-current {
  color: var(--color-cream);
  font-weight: 700;
}

.page-products section {
  position: relative;
  padding: 40px 0;
}

.page-products .service-hero {
  padding: 8px 0 60px;
  overflow: hidden;
}

.page-products .service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, var(--pp-rail) 0 1px, transparent 1px 28px);
  pointer-events: none;
}

.page-products .service-hero::after {
  content: "";
  position: absolute;
  top: 6%;
  bottom: 6%;
  left: 50%;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(255, 140, 66, 0.7) 50%, transparent);
  transform: rotate(28deg);
  transform-origin: center;
  opacity: 0;
  pointer-events: none;
}

.page-products .service-hero-grid {
  display: grid;
  gap: 32px;
  align-items: start;
  position: relative;
}

.page-products .download-card {
  position: relative;
  padding: 26px;
  background:
    linear-gradient(160deg, var(--pp-stripe), transparent 45%),
    var(--color-surface);
  border: 1px solid rgba(167, 183, 200, 0.16);
}

.page-products .download-number {
  position: absolute;
  top: -14px;
  right: 10px;
  font-family: var(--font-heading);
  font-size: 120px;
  font-weight: 900;
  line-height: 1;
  color: rgba(74, 158, 255, 0.08);
  pointer-events: none;
  z-index: 0;
}

.page-products .download-card .tag {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
}

.page-products .hero-title {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: clamp(24px, 4.2vw, 38px);
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-cream);
}

.page-products .hero-lead {
  margin: 0 0 22px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-ash);
}

.page-products .hero-figure,
.page-products .flow-figure,
.page-products .category-figure,
.page-products .opt-figure,
.page-products .sync-figure {
  margin: 0;
}

.page-products .hero-img,
.page-products .flow-img,
.page-products .category-img,
.page-products .opt-img,
.page-products .sync-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  background: var(--color-deep-space);
  object-fit: cover;
}

.page-products .figure-caption {
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-ash);
  letter-spacing: 0.02em;
}

.page-products .platform-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.page-products .platform-chip {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-cream);
  background: rgba(74, 158, 255, 0.12);
  border: 1px solid rgba(74, 158, 255, 0.28);
  padding: 6px 12px;
  border-radius: 999px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.page-products .platform-chip:hover {
  background: rgba(74, 158, 255, 0.22);
  border-color: rgba(74, 158, 255, 0.5);
}

.page-products .speed-panel {
  position: relative;
  z-index: 1;
  margin: 18px 0;
  padding: 16px;
  border: 1px solid rgba(167, 183, 200, 0.14);
  border-radius: 10px;
  background: rgba(10, 26, 47, 0.42);
}

.page-products .speed-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(167, 183, 200, 0.16);
  overflow: hidden;
}

.page-products .speed-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.14) 0 6px, transparent 6px 12px),
    linear-gradient(90deg, var(--color-vital), #ffb37d);
}

.page-products .speed-meta {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 10px;
}

.page-products .speed-value {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-vital);
}

.page-products .speed-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-ash);
}

.page-products .version-note {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  padding: 12px 14px;
  margin-bottom: 18px;
  background: rgba(154, 184, 122, 0.08);
  border-left: 3px solid var(--color-moss);
  border-radius: 0 8px 8px 0;
  opacity: 0.62;
  transition: opacity 0.25s ease, background 0.25s ease;
}

.page-products .download-card:hover .version-note {
  opacity: 1;
  background: rgba(154, 184, 122, 0.14);
}

.page-products .version-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-moss);
}

.page-products .version-text {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-cream);
}

.page-products .version-sub {
  flex-basis: 100%;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-ash);
}

.page-products .btn-download {
  position: relative;
  z-index: 1;
  width: 100%;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.page-products .btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 140, 66, 0.28);
}

.page-products .login-flow {
  position: relative;
  padding: 30px 20px 24px;
  background:
    linear-gradient(180deg, rgba(74, 158, 255, 0.07), transparent 130px),
    rgba(16, 35, 58, 0.55);
  border: 1px solid rgba(74, 158, 255, 0.16);
  border-radius: 16px;
  overflow: hidden;
}

.page-products .flow-number {
  position: absolute;
  top: -18px;
  right: -6px;
  font-family: var(--font-heading);
  font-size: 120px;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 140, 66, 0.09);
  pointer-events: none;
}

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

.page-products .flow-kicker {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-vital);
}

.page-products .flow-title {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--color-cream);
}

.page-products .flow-lead {
  margin: 0 0 20px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-ash);
}

.page-products .flow-figure {
  max-width: 320px;
  margin-inline: auto;
}

.page-products .step-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.page-products .step-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 14px;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.page-products .step-item + .step-item {
  margin-top: 10px;
}

.page-products .step-item:hover {
  background: rgba(74, 158, 255, 0.07);
  border-color: rgba(74, 158, 255, 0.22);
  transform: translateX(4px);
}

.page-products .step-index {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(255, 140, 66, 0.14);
  color: var(--color-vital);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
}

.page-products .step-body {
  min-width: 0;
}

.page-products .step-title {
  margin: 0 0 4px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-cream);
}

.page-products .step-desc {
  margin: 0;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.6;
  color: var(--color-ash);
}

.page-products .sync-capacity {
  margin: 14px 0 6px;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.6;
  color: var(--color-moss);
  background: rgba(154, 184, 122, 0.08);
  border-left: 3px solid var(--color-moss);
  border-radius: 0 8px 8px 0;
}

.page-products .text-link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-data);
  text-decoration: none;
  border-bottom: 1px solid rgba(74, 158, 255, 0.4);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-products .text-link:hover {
  color: var(--color-vital);
  border-color: var(--color-vital);
}

.page-products .section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.page-products .section-number {
  flex: 0 0 auto;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--color-vital);
  line-height: 1;
  padding: 8px 10px;
  border: 1px solid rgba(255, 140, 66, 0.32);
  border-radius: 8px;
  background: rgba(255, 140, 66, 0.08);
}

.page-products .section-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--color-cream);
}

.page-products .section-lead {
  margin: 0 0 22px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-ash);
  max-width: 68ch;
}

.page-products .category-section {
  padding-top: 16px;
}

.page-products .category-figure {
  margin-bottom: 26px;
}

.page-products .category-browser {
  border: 1px solid rgba(167, 183, 200, 0.16);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(16, 35, 58, 0.5);
}

.page-products .category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 12px;
  background: rgba(10, 26, 47, 0.55);
  border-bottom: 1px solid rgba(167, 183, 200, 0.1);
}

.page-products .category-tab {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-ash);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.page-products .category-tab:hover {
  color: var(--color-cream);
  background: rgba(74, 158, 255, 0.1);
}

.page-products .category-browser:not(:has(:target)) .category-tab:nth-child(1),
.page-products .category-browser:has(#cat-basic:target) .category-tab:nth-child(1),
.page-products .category-browser:has(#cat-version:target) .category-tab:nth-child(2),
.page-products .category-browser:has(#cat-guide:target) .category-tab:nth-child(3),
.page-products .category-browser:has(#cat-member:target) .category-tab:nth-child(4),
.page-products .category-browser:has(#cat-support:target) .category-tab:nth-child(5) {
  color: var(--color-cream);
  background: rgba(255, 140, 66, 0.12);
  border-color: rgba(255, 140, 66, 0.35);
}

.page-products .category-panel {
  display: none;
  padding: 22px;
  border-top: 3px solid var(--color-vital);
}

.page-products #cat-basic {
  display: block;
}

.page-products .category-panel:target {
  display: block;
}

.page-products .category-panels:has(:target) .category-panel:not(:target) {
  display: none;
}

.page-products .panel-title {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-cream);
}

.page-products .panel-desc {
  margin: 0 0 16px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-ash);
  max-width: 62ch;
}

.page-products .panel-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.page-products .panel-list li {
  position: relative;
  padding: 7px 0 7px 20px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-cream);
  border-bottom: 1px dashed rgba(167, 183, 200, 0.12);
}

.page-products .panel-list li:last-child {
  border-bottom: 0;
}

.page-products .panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--color-vital);
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  transform: translateY(-50%);
}

.page-products .optimization-section {
  padding-top: 16px;
}

.page-products .opt-panel {
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255, 140, 66, 0.06), transparent 42%),
    var(--color-surface);
  border: 1px solid rgba(167, 183, 200, 0.14);
}

.page-products .opt-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.page-products .opt-head-text {
  display: grid;
  gap: 2px;
}

.page-products .opt-kicker {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-vital);
}

.page-products .opt-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--color-cream);
}

.page-products .opt-grid {
  display: grid;
  gap: 24px;
}

.page-products .opt-figure {
  margin: 0;
}

.page-products .opt-points {
  display: grid;
  gap: 14px;
}

.page-products .opt-stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(10, 26, 47, 0.4);
  border-radius: 10px;
  border-left: 3px solid var(--color-vital);
}

.page-products .stat-num {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 900;
  color: var(--color-vital);
  line-height: 1;
}

.page-products .stat-label {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--color-ash);
}

.page-products .opt-note {
  margin: 4px 0 0;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.7;
  color: var(--color-ash);
}

.page-products .support-section {
  padding-top: 16px;
}

.page-products .support-grid {
  display: grid;
  gap: 16px;
}

.page-products .support-card {
  padding: 22px;
  background: var(--color-surface);
  border: 1px solid rgba(167, 183, 200, 0.14);
}

.page-products .support-card-title {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--color-cream);
}

.page-products .support-card-desc {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.7;
  color: var(--color-ash);
}

.page-products .support-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-products .support-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-cream);
}

.page-products .support-icon {
  display: inline-flex;
  width: 8px;
  height: 8px;
  background: var(--color-vital);
  clip-path: polygon(100% 50%, 0 0, 0 100%);
}

.page-products .support-capacity {
  margin: 12px 0 0;
  padding-top: 10px;
  border-top: 1px dashed rgba(167, 183, 200, 0.14);
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-moss);
}

.page-products .sync-figure {
  max-width: 720px;
  margin: 34px auto 0;
  text-align: center;
}

.page-products .contact-outro {
  padding: 40px 0 72px;
}

.page-products .contact-panel {
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(74, 158, 255, 0.1), transparent 60%),
    var(--color-surface);
  border-left: 4px solid var(--color-vital);
}

.page-products .contact-kicker {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-vital);
}

.page-products .contact-title {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--color-cream);
}

.page-products .contact-lead {
  margin: 0 0 18px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.75;
  color: var(--color-ash);
  max-width: 66ch;
}

.page-products .contact-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.page-products .contact-list li {
  position: relative;
  padding-left: 18px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-cream);
}

.page-products .contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  background: var(--color-data);
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  transform: translateY(-50%);
}

.page-products .btn-contact {
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.page-products .btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 140, 66, 0.28);
}

@media (min-width: 920px) {
  .page-products .service-hero {
    padding: 16px 0 80px;
  }

  .page-products .service-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: stretch;
  }

  .page-products .service-hero::after {
    opacity: 0.55;
  }

  .page-products .download-card {
    padding: 32px;
  }

  .page-products .login-flow {
    padding: 34px 30px 28px;
  }

  .page-products .category-section,
  .page-products .optimization-section,
  .page-products .support-section {
    padding-top: 52px;
  }

  .page-products .category-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .page-products .category-tab {
    flex: 1 0 auto;
    text-align: center;
  }

  .page-products .category-panel {
    padding: 28px 30px;
  }

  .page-products .opt-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

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

  .page-products .support-card {
    padding: 26px;
  }

  .page-products .contact-outro {
    padding: 60px 0 88px;
  }

  .page-products .contact-panel {
    padding: 36px 40px;
  }
}
