.page-products {
  --page-max: 1200px;
  --rust-soft: rgba(163, 59, 46, 0.16);
  --gold-soft: rgba(201, 160, 99, 0.12);
  --cyan-glow: 0 0 18px rgba(0, 212, 255, 0.45);
  background: var(--bg-black);
  color: var(--text-white);
  font-family: var(--font-body);
  overflow-x: hidden;
  padding-bottom: 72px;
}

.page-products a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-fast);
}

.page-products a:hover {
  border-bottom-color: var(--cyan);
}

.page-products .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 36px 20px 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-gray);
  text-transform: uppercase;
}

.page-products .crumb-sep {
  color: var(--rust);
}

.page-products .hero-terminal {
  max-width: var(--page-max);
  margin: 30px auto 0;
  padding: 0 20px;
  display: grid;
  gap: 28px;
}

.page-products .terminal-window {
  background: var(--panel-gray);
  border: 1px solid var(--border-rust);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.page-products .terminal-head {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 16px;
  background: #1d1a18;
  border-bottom: 1px solid var(--border-rust);
}

.page-products .terminal-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rust);
  flex-shrink: 0;
}

.page-products .terminal-dot::before,
.page-products .terminal-dot::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  top: 0;
}

.page-products .terminal-dot::before {
  left: 16px;
  background: var(--gold);
}

.page-products .terminal-dot::after {
  left: 32px;
  background: var(--cyan);
}

.page-products .terminal-title {
  font-size: 13px;
  color: var(--text-gray);
  letter-spacing: 0.04em;
  margin-left: 42px;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-products .terminal-ver {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.page-products .terminal-body {
  position: relative;
}

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

.page-products .terminal-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px 20px 16px;
  background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.92) 72%);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--text-gray);
  letter-spacing: 0.05em;
}

.page-products .terminal-overlay span {
  background: rgba(10, 10, 10, 0.6);
  padding: 4px 10px;
  border-left: 2px solid var(--rust);
}

.page-products .download-panel {
  background: linear-gradient(135deg, #12100d 0%, #1a120d 55%, #130a0a 100%);
  border: 1px solid var(--border-rust);
  border-radius: var(--radius);
  padding: 28px 24px 32px;
  position: relative;
  box-shadow: inset 0 0 64px rgba(163, 59, 46, 0.06);
}

.page-products .download-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 132px;
  height: 4px;
  background: linear-gradient(90deg, var(--rust), var(--gold));
}

.page-products .download-panel h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  margin: 14px 0 16px;
  color: var(--text-white);
}

.page-products .hero-lead {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-gray);
  margin-bottom: 22px;
}

.page-products .version-meta {
  display: grid;
  gap: 0;
  margin: 0 0 24px;
  padding: 0;
}

.page-products .version-meta div {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(92, 42, 42, 0.55);
}

.page-products .version-meta dt {
  color: var(--text-gray);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-products .version-meta dd {
  color: var(--text-white);
  font-size: 15px;
  letter-spacing: -0.01em;
  text-align: right;
}

.page-products .download-box {
  margin-bottom: 14px;
}

.page-products .download-box summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--cyan);
  color: #061a1f;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 30px;
  border: 1px solid rgba(0, 212, 255, 0.6);
  border-radius: var(--radius);
  box-shadow: var(--cyan-glow);
  transition: background var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.page-products .download-box summary:hover {
  background: var(--glitch-cyan);
  box-shadow: 0 0 28px rgba(0, 212, 255, 0.7);
  transform: translateY(-2px);
}

.page-products .download-box summary::-webkit-details-marker {
  display: none;
}

.page-products .download-reveal {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  background: rgba(0, 212, 255, 0.05);
}

.page-products .download-reveal img {
  width: 120px;
  max-width: 100%;
  height: auto;
  border: 1px solid rgba(0, 212, 255, 0.35);
  margin-bottom: 12px;
  display: block;
}

.page-products .download-reveal p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-gray);
  margin: 0;
}

.page-products .muted-note {
  font-size: 12px;
  color: var(--text-gray);
  opacity: 0.85;
  margin: 0;
}

.page-products .feature-compare {
  max-width: var(--page-max);
  margin: 64px auto 0;
  padding: 0 20px;
}

.page-products .section-heading {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.page-products .section-heading h2,
.page-products .guide-left h2,
.page-products .legacy-copy h2,
.page-products .sync-copy h2,
.page-products .vh-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--text-white);
  margin: 0;
}

.page-products .compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--border-rust);
  background: var(--panel-gray);
}

.page-products .compare-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 13px;
}

.page-products .compare-table th {
  background: var(--rust);
  color: #fff;
  font-weight: 600;
  text-align: left;
  padding: 12px 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 12px;
}

.page-products .compare-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(92, 42, 42, 0.45);
  color: var(--text-gray);
}

.page-products .compare-table td:first-child {
  color: var(--gold);
  font-weight: 600;
}

.page-products .compare-table td:last-child {
  color: var(--text-white);
}

.page-products .compare-table tbody tr:hover td {
  background: var(--rust-soft);
}

.aside-note,
.page-products .aside-note {
  margin-top: 18px;
}

.page-products .aside-note p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-gray);
  margin: 0;
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}

.page-products .install-guide {
  max-width: var(--page-max);
  margin: 64px auto 0;
  padding: 0 20px;
  display: grid;
  gap: 32px;
}

.page-products .guide-left {
  position: relative;
}

.page-products .guide-left h2 {
  margin: 10px 0 24px;
}

.page-products .install-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.page-products .install-steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-gray);
  background: var(--panel-gray);
  padding: 14px 16px;
  border-left: 3px solid var(--rust);
}

.page-products .install-steps li span {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--cyan);
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.page-products .guide-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--gold);
  border: 1px dashed rgba(201, 160, 99, 0.4);
  padding: 10px 12px;
  background: var(--gold-soft);
}

.page-products .sys-req {
  background: var(--panel-gray);
  border: 1px solid var(--border-rust);
  padding: 24px;
}

.page-products .sys-req h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--rust);
  margin: 0 0 16px;
}

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

.page-products .req-list li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.5;
}

.page-products .req-list li span {
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
  min-width: 44px;
  letter-spacing: 0.04em;
}

.page-products .sys-req img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 1px solid rgba(92, 42, 42, 0.5);
}

.page-products .legacy-section {
  max-width: var(--page-max);
  margin: 64px auto 0;
  padding: 0 20px;
  display: grid;
  gap: 28px;
}

.page-products .legacy-copy {
  background: linear-gradient(135deg, var(--panel-gray), #0d0d0d);
  padding: 28px 24px;
  border-left: 4px solid var(--gold);
}

.page-products .legacy-copy p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-gray);
  margin: 14px 0;
}

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

.page-products .legacy-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--text-white);
  line-height: 1.5;
}

.page-products .legacy-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.page-products .legacy-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 1px solid var(--border-rust);
}

.page-products .sync-section {
  max-width: var(--page-max);
  margin: 64px auto 0;
  padding: 0 20px;
  display: grid;
  gap: 28px;
}

.page-products .sync-copy {
  background: linear-gradient(135deg, #101314, #0a0f12);
  padding: 28px 24px;
  border-right: 4px solid var(--cyan);
}

.page-products .sync-copy p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-gray);
  margin: 14px 0;
}

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

.page-products .sync-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--text-white);
  line-height: 1.5;
}

.page-products .sync-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--cyan);
}

.page-products .sync-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 1px solid var(--border-rust);
}

.page-products .version-history {
  max-width: var(--page-max);
  margin: 64px auto 0;
  padding: 0 20px;
}

.page-products .vh-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.page-products .vh-grid {
  display: grid;
  gap: 28px;
}

.page-products .vh-photo img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 1px solid var(--border-rust);
}

.page-products .vh-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.page-products .vh-list li {
  position: relative;
  padding: 0 0 22px 24px;
  border-left: 2px solid rgba(163, 59, 46, 0.5);
}

.page-products .vh-list li:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.page-products .vh-list li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: var(--rust);
  transform: rotate(45deg);
}

.page-products .vh-ver {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  background: rgba(201, 160, 99, 0.08);
  padding: 3px 10px;
  letter-spacing: 0.02em;
}

.page-products .vh-list li p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-gray);
  margin: 8px 0 0;
}

.page-products .vh-footer-note {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--border-rust);
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-gray);
}

@media (min-width: 960px) {
  .page-products .hero-terminal {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 40px;
    align-items: center;
    margin-top: 48px;
  }

  .page-products .feature-compare {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 40px;
    align-items: start;
  }

  .page-products .section-heading {
    grid-column: 1 / -1;
  }

  .page-products .aside-note {
    margin-top: 0;
  }

  .page-products .install-guide {
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: 48px;
    align-items: start;
  }

  .page-products .legacy-section {
    grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
    gap: 48px;
    align-items: center;
  }

  .page-products .sync-section {
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: 48px;
    align-items: center;
  }

  .page-products .sync-visual {
    order: 1;
  }

  .page-products .vh-grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: 48px;
    align-items: center;
  }
}
