.page-products {
  --prod-gap: 16px;
  --prod-pad: 20px;
  --prod-border: 2px solid rgba(200, 204, 208, 0.28);
  background: var(--c-void);
  color: var(--c-paper);
}

.page-products .products-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--prod-pad);
}

/* ===== Hero ===== */
.page-products .product-hero {
  position: relative;
  background: linear-gradient(115deg, var(--c-void) 58%, var(--c-space) 58.5%, var(--c-space) 100%);
  padding: 52px 0;
  border-bottom: 2px solid rgba(0, 255, 157, 0.4);
}

.page-products .product-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 8px;
  background: var(--c-fluor);
  z-index: 1;
}

.page-products .hero-inner {
  display: grid;
  gap: 28px;
  align-items: center;
}

.page-products .hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.page-products .product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--c-muted);
}

.page-products .product-breadcrumb a {
  color: var(--c-fluor);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.page-products .product-breadcrumb a:hover {
  border-color: var(--c-fluor);
}

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

.page-products .product-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-data);
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--c-fluor);
  text-transform: uppercase;
  margin: 0;
}

.page-products .hero-copy h1 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 5vw, 3.15rem);
  line-height: 1.18;
  margin: 0;
}

.page-products .hero-lead {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--c-silver);
  max-width: 54ch;
  margin: 0;
}

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

.page-products .hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  border-top: 2px solid rgba(0, 255, 157, 0.25);
  padding-top: 18px;
  margin-top: 8px;
  width: 100%;
}

.page-products .hero-stats .stat {
  display: flex;
  flex-direction: column;
}

.page-products .hero-stats .stat-value {
  font-family: var(--font-data);
  font-size: 2rem;
  line-height: 1;
  color: var(--c-fluor);
  font-weight: 700;
}

.page-products .hero-stats .stat-label {
  font-size: 13px;
  color: var(--c-muted);
  margin-top: 6px;
}

.page-products .hero-media {
  position: relative;
  border-left: 6px solid var(--c-fluor);
  box-shadow: var(--shadow);
}

.page-products .hero-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ===== Section base ===== */
.page-products .products-section {
  padding: 64px 0;
  position: relative;
}

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

.page-products .tab-chip {
  display: inline-block;
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 1px;
  padding: 6px 12px;
  border: 2px solid var(--c-fluor);
  color: var(--c-fluor);
  margin-bottom: 14px;
}

.page-products .tab-chip--orange {
  border-color: var(--c-orange);
  color: var(--c-orange);
}

.page-products .products-section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.6vw, 2.25rem);
  line-height: 1.25;
  margin: 0 0 10px;
}

.page-products .section-summary {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--c-muted);
  max-width: 64ch;
  margin: 0;
}

/* ===== Features ===== */
.page-products .feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--prod-gap);
}

.page-products .feature-card {
  position: relative;
  background: var(--c-card);
  border: var(--prod-border);
  padding: 26px 22px 22px;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.page-products .feature-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: 100%;
  height: 5px;
  background: var(--c-fluor);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.page-products .feature-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.4);
}

.page-products .feature-card:hover::before {
  transform: scaleX(1);
}

.page-products .feature-num {
  display: block;
  font-family: var(--font-data);
  font-size: 2.6rem;
  line-height: 1;
  color: rgba(0, 255, 157, 0.35);
  margin-bottom: 14px;
  font-weight: 700;
}

.page-products .feature-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  line-height: 1.4;
  margin: 0 0 10px;
  color: var(--c-paper);
}

.page-products .feature-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--c-muted);
  margin: 0;
}

/* ===== Guide ===== */
.page-products .products-guide {
  background: var(--c-space);
}

.page-products .guide-layout {
  display: grid;
  gap: 32px;
}

.page-products .guide-content {
  min-width: 0;
}

.page-products .guide-steps {
  margin-top: 20px;
}

.page-products .guide-step {
  background: var(--c-card);
  border: var(--prod-border);
  margin-bottom: 12px;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.page-products .guide-step summary {
  cursor: pointer;
  padding: 16px 18px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.page-products .guide-step summary::-webkit-details-marker {
  display: none;
}

.page-products .guide-step summary::after {
  content: "+";
  font-family: var(--font-data);
  font-size: 1.4rem;
  color: var(--c-fluor);
  transition: transform 0.2s;
}

.page-products .guide-step[open] summary::after {
  transform: rotate(45deg);
}

.page-products .step-body {
  padding: 0 0 18px;
  border-top: 1px solid rgba(0, 255, 157, 0.25);
  margin: 0 18px;
}

.page-products .step-body p {
  margin: 14px 0 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--c-silver);
}

.page-products .step-body a {
  color: var(--c-fluor);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.page-products .step-body a:hover {
  border-color: var(--c-fluor);
}

.page-products .guide-media {
  min-width: 0;
}

.page-products .guide-media img {
  width: 100%;
  height: auto;
  display: block;
  border: var(--prod-border);
  box-shadow: var(--shadow);
}

.page-products .guide-flow {
  margin-top: 18px;
  padding: 12px;
  background: rgba(6, 10, 26, 0.6);
  border-left: 4px solid var(--c-fluor);
}

.page-products .guide-flow svg {
  width: 100%;
  height: auto;
  display: block;
}

.page-products .media-note {
  font-size: 13px;
  color: var(--c-muted);
  margin: 12px 0 0;
  line-height: 1.5;
}

/* ===== Compare ===== */
.page-products .products-compare {
  background: var(--c-void);
}

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

.page-products .compare-card {
  background: var(--c-card);
  border: var(--prod-border);
  box-shadow: var(--shadow);
  padding: 16px;
}

.page-products .compare-media {
  overflow: hidden;
  border-bottom: 2px solid rgba(0, 255, 157, 0.25);
  margin-bottom: 16px;
}

.page-products .compare-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-products .compare-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-products .compare-card--mobile h3::before {
  content: "M";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--c-fluor);
  color: var(--c-void);
  font-family: var(--font-data);
  font-weight: 700;
}

.page-products .compare-card--pc h3::before {
  content: "P";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--c-orange);
  color: var(--c-void);
  font-family: var(--font-data);
  font-weight: 700;
}

.page-products .compare-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-products .compare-card li {
  position: relative;
  padding: 6px 0 6px 18px;
  font-size: 0.95rem;
  color: var(--c-silver);
  border-bottom: 1px solid rgba(200, 204, 208, 0.1);
}

.page-products .compare-card li:last-child {
  border-bottom: 0;
}

.page-products .compare-card li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--c-fluor);
}

.page-products .compare-table-wrap {
  min-width: 0;
  overflow-x: auto;
  border: var(--prod-border);
  box-shadow: var(--shadow);
  background: var(--c-card);
}

.page-products .compare-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
}

.page-products .compare-table th,
.page-products .compare-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(200, 204, 208, 0.15);
  font-size: 0.92rem;
  line-height: 1.5;
}

.page-products .compare-table th {
  background: var(--c-fluor);
  color: var(--c-void);
  font-family: var(--font-head);
  font-size: 1rem;
  border-bottom: 0;
}

.page-products .compare-table td:first-child {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--c-paper);
  white-space: nowrap;
}

.page-products .table-note {
  font-size: 13px;
  color: var(--c-muted);
  margin: 10px 0 0;
  line-height: 1.5;
}

/* ===== Access ===== */
.page-products .products-access {
  background: var(--c-space);
}

.page-products .access-layout {
  display: grid;
  gap: 32px;
}

.page-products .access-card {
  background: var(--c-void);
  border: var(--prod-border);
  box-shadow: var(--shadow);
  display: grid;
  gap: 0;
}

.page-products .access-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-products .access-card-body {
  padding: 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.page-products .live-tag {
  display: inline-block;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 1px;
  padding: 4px 10px;
  background: var(--c-fluor);
  color: var(--c-void);
  font-weight: 700;
}

.page-products .access-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  margin: 0;
}

.page-products .access-card-body p {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--c-silver);
  margin: 0;
}

.page-products .access-card-body .btn {
  margin-top: 8px;
}

.page-products .access-list {
  background: var(--c-card);
  border: var(--prod-border);
  box-shadow: var(--shadow);
  padding: 28px 24px;
}

.page-products .access-list h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  margin: 0 0 18px;
  border-bottom: 2px solid rgba(0, 255, 157, 0.3);
  padding-bottom: 12px;
}

.page-products .access-list ul {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}

.page-products .access-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(200, 204, 208, 0.18);
  color: var(--c-silver);
  font-size: 0.96rem;
  line-height: 1.5;
}

.page-products .list-num {
  font-family: var(--font-data);
  color: var(--c-fluor);
  font-weight: 700;
  font-size: 1.1rem;
}

.page-products .access-tip {
  font-size: 0.9rem;
  color: var(--c-muted);
  line-height: 1.65;
  background: rgba(6, 10, 26, 0.5);
  border-left: 4px solid var(--c-orange);
  padding: 12px 16px;
  margin: 0 0 18px;
}

/* ===== Media queries ===== */
@media (min-width: 640px) {
  .page-products {
    --prod-pad: 28px;
  }

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

  .page-products .access-card {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .page-products .hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
  }

  .page-products .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-products .guide-layout {
    grid-template-columns: 1fr 0.85fr;
    gap: 48px;
    align-items: start;
  }

  .page-products .compare-grid {
    grid-template-columns: 0.85fr 1.15fr 0.85fr;
    align-items: start;
  }

  .page-products .access-layout {
    grid-template-columns: 1fr 0.9fr;
    gap: 48px;
    align-items: center;
  }

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