.page-products {
  --products-blue: #00BFFF;
  --products-blue-soft: rgba(0, 191, 255, 0.12);
  --products-gold-soft: rgba(212, 175, 55, 0.12);
  --products-line: rgba(212, 175, 55, 0.26);
  --products-card-bg: rgba(255, 255, 255, 0.025);
  position: relative;
  overflow: clip;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(1200px 520px at 8% 0%, rgba(0, 191, 255, 0.08), transparent 62%),
    radial-gradient(900px 380px at 96% 24%, rgba(212, 175, 55, 0.08), transparent 60%),
    var(--black);
}

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

.page-products a:focus-visible,
.page-products summary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.page-products .breadcrumb {
  max-width: var(--container-width);
  margin-inline: auto;
  padding: 5rem 1.25rem 0;
}

.page-products .breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.7rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--muted);
}

.page-products .breadcrumb-link {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.24s ease;
}

.page-products .breadcrumb-link:hover {
  color: var(--cream);
}

.products-hero {
  display: grid;
  gap: 2rem;
  max-width: var(--container-width);
  margin-inline: auto;
  padding: 3rem 1.25rem 2.5rem;
  position: relative;
}

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

.products-hero-copy,
.products-download-panel {
  position: relative;
  z-index: 1;
}

.products-chip {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--products-line);
  padding: 0.42rem 0.85rem;
  border-radius: var(--pill);
  text-transform: uppercase;
}

.products-hero h1 {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: var(--gold);
  margin: 1.1rem 0 1.2rem;
  text-wrap: balance;
}

.products-hero-lead {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--cream);
  max-width: 56ch;
  margin: 0;
}

.products-download-panel {
  background:
    linear-gradient(160deg, rgba(212, 175, 55, 0.16), rgba(0, 191, 255, 0.05) 70%),
    rgba(0, 0, 0, 0.42);
  border: 1px solid var(--border);
  padding: 1.4rem;
  position: relative;
}

.products-download-panel::before {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  width: 76px;
  height: 76px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--blue);
  pointer-events: none;
}

.products-download-panel::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 76px;
  height: 76px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--gold);
  pointer-events: none;
}

.products-download-stage {
  position: relative;
  margin: 0 0 1.25rem;
  overflow: hidden;
}

.products-download-stage img {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-inline: auto;
}

.products-version-tag {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  background: var(--gold-grad);
  color: var(--black);
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  padding: 0.5rem 1rem;
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.35);
}

.products-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}

.download-verify {
  position: relative;
  display: inline-block;
}

.download-verify summary {
  list-style: none;
  cursor: pointer;
}

.download-verify summary::-webkit-details-marker {
  display: none;
}

.download-verify summary.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--gold-grad);
  border: none;
  color: var(--black);
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.9rem 1.45rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.download-verify summary.btn:hover {
  transform: translateY(-2px);
}

.download-verify[open] summary.btn {
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.22);
}

.download-pulse {
  animation: products-pulse 2.4s ease-out infinite;
}

@keyframes products-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5);
  }
  55% {
    box-shadow: 0 0 0 14px rgba(212, 175, 55, 0);
  }
}

.download-verify-pop {
  position: absolute;
  top: calc(100% + 0.7rem);
  left: 0;
  z-index: 8;
  width: min(300px, 78vw);
  background: #101010;
  border: 1px solid var(--border);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 191, 255, 0.07);
  padding: 1.2rem 1.3rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--cream);
}

.download-verify-pop strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.download-verify-pop p {
  margin: 0 0 0.85rem;
}

.download-verify-pop .btn-outline {
  font-size: 0.88rem;
  display: inline-block;
  padding: 0.6rem 1rem;
  text-decoration: none;
  border: 1px solid var(--products-line);
  color: var(--gold);
  background: transparent;
  transition: background 0.24s ease, color 0.24s ease;
}

.download-verify-pop .btn-outline:hover {
  background: var(--products-gold-soft);
  color: var(--cream);
}

.products-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: var(--container-width);
  margin-inline: auto;
  padding: 0 1.25rem 3.5rem;
}

.products-rail {
  background:
    linear-gradient(165deg, rgba(212, 175, 55, 0.08), rgba(0, 191, 255, 0.03)),
    rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  padding: 1.25rem 1.25rem 1.5rem;
}

.products-rail-label {
  display: block;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--products-line);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.products-rail-list {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  list-style: none;
  margin: 0;
  padding: 0.2rem 0 0.4rem;
  scrollbar-width: none;
}

.products-rail-list::-webkit-scrollbar {
  display: none;
}

.products-rail-list a {
  display: block;
  white-space: nowrap;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--cream);
  text-decoration: none;
  border: 1px solid var(--products-line);
  border-radius: var(--pill);
  padding: 0.48rem 0.95rem;
  transition: background 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.products-rail-list a:hover {
  background: var(--products-gold-soft);
  border-color: var(--gold);
  color: var(--gold);
}

.products-rail-help {
  margin-top: 1.2rem;
  border-top: 1px solid rgba(139, 134, 130, 0.2);
  padding-top: 1.1rem;
}

.products-rail-help p {
  margin: 0 0 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--muted);
}

.products-rail-help .btn-outline {
  display: inline-block;
  margin: 0 0.5rem 0.5rem 0;
  font-size: 0.88rem;
  padding: 0.55rem 1rem;
  border: 1px solid var(--products-line);
  color: var(--gold);
  text-decoration: none;
  background: transparent;
  transition: background 0.24s ease;
}

.products-rail-help .btn-outline:hover {
  background: var(--products-gold-soft);
}

.products-content {
  display: grid;
  gap: 3.2rem;
}

.products-section {
  position: relative;
  border-top: 1px solid var(--products-line);
  padding-top: 2.2rem;
}

.products-section-head {
  margin-bottom: 1.8rem;
}

.products-section-head .section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--blue);
  text-transform: uppercase;
  border-left: 2px solid var(--blue);
  padding-left: 0.65rem;
  margin-bottom: 0.55rem;
}

.products-section-head h2 {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  line-height: 1.25;
  color: var(--gold);
  margin: 0 0 0.7rem;
  letter-spacing: 0.015em;
}

.products-section-head p {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  max-width: 64ch;
  margin: 0;
}

.choices-layout {
  display: grid;
  gap: 1.5rem;
}

.choices-cards {
  display: grid;
  gap: 1rem;
}

.choice-card {
  position: relative;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.65), rgba(139, 101, 8, 0.5));
  padding: 2px;
  transition: transform 0.24s ease, filter 0.24s ease;
}

.choice-card:hover {
  transform: translateY(-4px);
  filter: brightness(1.08);
}

.choice-card-inner {
  background:
    linear-gradient(160deg, rgba(212, 175, 55, 0.08), rgba(0, 191, 255, 0.03)),
    var(--black);
  padding: 1.4rem 1.4rem 1.6rem;
}

.choice-card-num {
  display: inline-block;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  opacity: 0.45;
  margin-bottom: 0.8rem;
}

.choice-card h3 {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 0.55rem;
}

.choice-card p {
  font-family: var(--font-sans);
  font-size: 0.93rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--cream);
  margin: 0 0 1rem;
}

.choice-card a {
  color: var(--blue);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 191, 255, 0.4);
  padding-bottom: 2px;
  transition: color 0.24s ease, border-color 0.24s ease;
}

.choice-card a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.choices-visual {
  margin: 0;
  position: relative;
  background:
    linear-gradient(135deg, rgba(0, 191, 255, 0.12), transparent 55%),
    rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  overflow: hidden;
}

.choices-visual img {
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transform: scale(0.94);
}

.choices-visual figcaption {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--muted);
  text-align: right;
  padding: 0.35rem 0.9rem 0.7rem;
}

.products-section-gold {
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.07), transparent 70%);
  border-top-color: rgba(212, 175, 55, 0.38);
  padding: 2.2rem 1.1rem 0.9rem;
}

.update-list {
  display: grid;
  gap: 0;
}

.update-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.update-item:last-child {
  border-bottom: none;
}

.update-badge {
  display: inline-block;
  background: var(--gold-grad);
  color: var(--black);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  padding: 0.22rem 0.55rem;
  align-self: start;
  border-radius: 2px;
  white-space: nowrap;
}

.update-item-copy h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--cream);
  margin: 0 0 0.3rem;
}

.update-item-copy p {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.steps-visual {
  margin: 0 0 1.4rem;
  border: 1px solid var(--border);
  background: rgba(0, 191, 255, 0.04);
  padding: 0.6rem;
}

.steps-visual img {
  width: 100%;
  aspect-ratio: 3 / 1;
  object-fit: cover;
}

.steps-list {
  display: grid;
  gap: 0.7rem;
}

.step-item {
  background: var(--products-card-bg);
  border: 1px solid var(--border);
  transition: border-color 0.24s ease, background 0.24s ease;
}

.step-item[open] {
  border-color: rgba(212, 175, 55, 0.55);
  background: rgba(212, 175, 55, 0.045);
}

.step-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 1rem 1.2rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--cream);
}

.step-item summary::-webkit-details-marker {
  display: none;
}

.step-num {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.9rem;
}

.step-item p {
  margin: 0;
  padding: 0 1.2rem 1.2rem 3.2rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--stone);
}

.steps-note {
  margin: 1.4rem 0 0;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--muted);
  border-left: 2px solid var(--terracotta);
  padding-left: 0.9rem;
}

.steps-note a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
}

.steps-note a:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.products-section-ruby {
  border-top-color: rgba(224, 17, 95, 0.45);
  padding-top: 2.2rem;
}

.products-section-ruby .section-label {
  border-color: var(--ruby);
  color: var(--ruby);
}

.activity-layout {
  display: grid;
  gap: 1.6rem;
}

.activity-content h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--gold);
  margin: 1.6rem 0 0.5rem;
}

.activity-content h3:first-child {
  margin-top: 0;
}

.activity-content p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--cream);
  margin: 0;
}

.activity-content strong {
  color: var(--gold);
  font-weight: 700;
}

.activity-steps {
  margin: 0.3rem 0 0;
  padding-left: 1.4rem;
  font-family: var(--font-sans);
  font-size: 0.94rem;
  line-height: 2;
  color: var(--cream);
}

.activity-steps li::marker {
  color: var(--ruby);
  font-weight: 700;
}

.activity-disclaimer {
  margin-top: 1.4rem !important;
  border: 1px solid rgba(224, 17, 95, 0.3);
  background: rgba(224, 17, 95, 0.05);
  padding: 0.85rem 1rem;
  color: var(--muted) !important;
  font-size: 0.88rem !important;
}

.activity-visual {
  margin: 0;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 30% 60%, rgba(224, 17, 95, 0.08), transparent 55%),
    rgba(0, 0, 0, 0.3);
}

.activity-visual img {
  width: 100%;
  aspect-ratio: 8 / 5;
  object-fit: cover;
}

.activity-visual figcaption {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--muted);
  padding: 0.45rem 0.9rem 0.7rem;
}

.track-layout {
  display: grid;
  gap: 1.6rem;
}

.track-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-bottom: 1.3rem;
}

.track-stat {
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(4, 106, 56, 0.14), rgba(0, 0, 0, 0.3));
  padding: 0.95rem 0.7rem;
  text-align: center;
}

.track-stat-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.track-stat-num {
  display: block;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--jade);
}

.track-summary p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--cream);
  margin: 0 0 1.2rem;
}

.track-chart {
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.3);
  margin-bottom: 1.2rem;
}

.track-chart-grid {
  fill: none;
  stroke: rgba(212, 175, 55, 0.16);
  stroke-dasharray: 3 5;
}

.track-chart-line {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.5;
  stroke-linecap: round;
}

.track-chart-dots circle {
  fill: var(--blue);
  stroke: var(--black);
  stroke-width: 1.5;
}

.track-chart-labels text {
  fill: var(--muted);
  font-family: var(--font-sans);
  font-size: 10px;
}

.track-visual {
  margin: 0;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(0, 191, 255, 0.06), transparent 60%);
}

.track-visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
}

.track-visual figcaption {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--muted);
  padding: 0.45rem 0.9rem 0.7rem;
}

.products-bottom-cta {
  background:
    radial-gradient(circle at 85% 20%, rgba(212, 175, 55, 0.15), transparent 260px),
    rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  padding: 2rem 1.6rem;
  text-align: center;
}

.products-bottom-cta p {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--cream);
  max-width: 48ch;
  margin: 0 auto 1.4rem;
}

.products-bottom-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.products-bottom-actions .btn-primary,
.products-bottom-actions .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.94rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.products-bottom-actions .btn-primary:hover,
.products-bottom-actions .btn-outline:hover {
  transform: translateY(-2px);
}

.products-bottom-actions .btn-primary {
  background: var(--gold-grad);
  border: 1px solid transparent;
  color: var(--black);
}

.products-bottom-actions .btn-outline {
  border: 1px solid var(--products-line);
  color: var(--gold);
  background: transparent;
}

.products-bottom-actions .btn-outline:hover {
  background: var(--products-gold-soft);
}

@media (min-width: 768px) {
  .page-products .breadcrumb {
    padding-top: 6rem;
  }

  .products-hero {
    grid-template-columns: 1fr 0.92fr;
    align-items: center;
    gap: 2.5rem;
    padding: 4.5rem 2rem 3rem;
  }

  .products-hero h1 {
    font-size: clamp(2.4rem, 4.2vw, 3.5rem);
  }

  .products-hero-lead {
    font-size: 1.12rem;
  }

  .choices-layout {
    grid-template-columns: 1fr 0.75fr;
    align-items: center;
  }

  .choices-cards {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .choices-visual {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .choices-visual img {
    max-width: 360px;
  }

  .activity-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .track-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .track-stats {
    grid-template-columns: 1fr;
  }

  .track-stat {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    text-align: left;
    padding: 0.9rem 1rem;
  }

  .track-stat-num {
    font-size: 1.5rem;
  }

  .products-download-panel {
    padding: 1.8rem;
  }
}

@media (min-width: 1024px) {
  .products-hero {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .products-split {
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
  }

  .products-rail {
    position: sticky;
    top: calc(var(--header-height) + 1.2rem);
    margin-bottom: 0;
    padding: 1.5rem 1.4rem;
  }

  .products-rail-list {
    flex-direction: column;
    overflow: visible;
    gap: 0;
    padding: 0;
  }

  .products-rail-list li {
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  }

  .products-rail-list a {
    white-space: normal;
    border: none;
    border-left: 2px solid transparent;
    border-radius: 0;
    padding: 0.75rem 0.4rem;
    font-size: 0.94rem;
  }

  .products-rail-list a:hover {
    background: transparent;
    border-left-color: var(--gold);
    color: var(--gold);
  }

  .products-content {
    gap: 4rem;
  }
}
