.page-products {
  font-family: var(--font-body);
  background: var(--space);
  color: var(--pearl);
}

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

.page-products h1,
.page-products h2 {
  font-family: var(--font-headline);
  font-weight: 400;
  letter-spacing: .01em;
}

.page-products h1 {
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.05;
  margin: 14px 0 18px;
}

.page-products h2 {
  font-size: clamp(22px, 3.4vw, 34px);
  line-height: 1.12;
  margin: 8px 0 14px;
}

.page-products .products-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 56px) 0 clamp(40px, 6vw, 72px);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(720px 280px at 85% 0%, rgba(0, 212, 255, .16), transparent 65%),
    radial-gradient(500px 260px at 4% 88%, rgba(0, 255, 135, .1), transparent 60%);
}

.page-products .products-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 135, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 135, .06) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 70%);
  mask-image: linear-gradient(90deg, transparent, #000 70%);
  pointer-events: none;
}

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

.page-products .hero-grid {
  display: grid;
  gap: clamp(20px, 3vw, 36px);
}

.page-products .hero-deck {
  color: var(--slate);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 0 22px;
}

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

.page-products .hero-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.page-products .hero-stat {
  background: rgba(18, 32, 64, .72);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  box-shadow: var(--shadow-md);
}

.page-products .hero-stat dt {
  font-family: var(--font-data);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1;
  color: var(--mint);
  font-weight: 700;
}

.page-products .hero-stat dd {
  margin: 8px 0 0;
  color: var(--slate);
  font-size: 13px;
}

.page-products .products-toc {
  position: sticky;
  top: var(--header-h);
  z-index: 30;
  background: rgba(10, 17, 40, .88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.page-products .toc-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  overflow-x: auto;
  padding-top: 12px;
  padding-bottom: 12px;
}

.page-products .toc-label {
  color: var(--amber);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  flex: 0 0 auto;
}

.page-products .toc-inner ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 18px;
  white-space: nowrap;
}

.page-products .toc-inner a {
  color: var(--slate);
  font-size: 13px;
  text-decoration: none;
  transition: color .2s ease;
}

.page-products .toc-inner a:hover,
.page-products .toc-inner a:focus-visible {
  color: var(--mint);
}

.page-products .products-feature {
  padding: clamp(40px, 7vw, 84px) 0;
}

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

.page-products .feature-copy p {
  color: var(--slate);
  line-height: 1.8;
  margin: 0 0 16px;
  font-size: 15px;
}

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

.page-products .feature-points li {
  display: grid;
  gap: 4px;
  background: rgba(18, 32, 64, .55);
  border: 1px solid var(--border);
  border-left: 3px solid var(--ice);
  border-radius: 8px;
  padding: 12px 14px;
}

.page-products .feature-points strong {
  color: var(--ice);
  font-size: 14px;
}

.page-products .feature-points span {
  color: var(--slate);
  font-size: 13px;
  line-height: 1.6;
}

.page-products .feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.page-products .feature-figure {
  position: relative;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.page-products .feature-figure figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  margin: 0;
  padding: 26px 16px 12px;
  font-size: 13px;
  color: var(--pearl);
  background: linear-gradient(transparent, rgba(10, 17, 40, .88));
}

.page-products .play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 34px rgba(255, 122, 0, .5);
  border: 2px solid rgba(255, 255, 255, .25);
}

.page-products .play-badge svg {
  width: 20px;
  height: 20px;
  margin-left: 3px;
}

.page-products .products-replay {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(18, 32, 64, .35) 0%, rgba(10, 17, 40, 0) 100%);
  padding: clamp(40px, 7vw, 80px) 0;
}

.page-products .replay-head {
  display: grid;
  gap: 10px 32px;
  margin-bottom: 24px;
}

.page-products .replay-intro {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
  max-width: 560px;
}

.page-products .replay-title-group h2 {
  margin: 0;
}

.page-products .replay-figure {
  margin: 0 0 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

.page-products .replay-figure figcaption {
  margin: 0;
  padding: 10px 14px;
  font-size: 12px;
  color: var(--slate);
  background: var(--trench);
  border-top: 1px solid var(--border);
}

.page-products .replay-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-products .replay-point {
  background: var(--trench);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-md);
}

.page-products .replay-point-index {
  font-family: var(--font-headline);
  font-size: 24px;
  color: var(--amber);
  display: block;
}

.page-products .replay-point h3 {
  margin: 8px 0 6px;
  font-size: 16px;
}

.page-products .replay-point p {
  margin: 0;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.65;
}

.page-products .products-metrics {
  padding: clamp(44px, 8vw, 88px) 0;
  background:
    radial-gradient(700px 300px at 8% 10%, rgba(255, 122, 0, .08), transparent 60%),
    radial-gradient(640px 320px at 95% 84%, rgba(0, 255, 135, .07), transparent 60%);
}

.page-products .metrics-head {
  max-width: 760px;
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.page-products .metrics-intro {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

.page-products .metrics-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.page-products .metrics-figure {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--trench);
  padding: 14px;
  box-shadow: var(--shadow-md);
}

.page-products .metrics-figure img {
  display: block;
  border-radius: 10px;
  width: 100%;
  height: auto;
}

.page-products .metrics-figure figcaption {
  margin: 0;
  padding: 10px 4px 2px;
  color: var(--slate);
  font-size: 12px;
}

.page-products .metric-groups {
  display: grid;
  gap: 12px;
}

.page-products .metric-group {
  background: rgba(18, 32, 64, .8);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: var(--shadow-md);
}

.page-products .metric-group h3 {
  margin: 0 0 12px;
  font-size: 15px;
  color: var(--pearl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.page-products .metric-group h3::after {
  content: "−";
  font-family: var(--font-data);
  font-size: 22px;
  line-height: 1;
  color: var(--mint);
}

.page-products .metric-group[data-open="false"] h3::after {
  content: "+";
  color: var(--orange);
}

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

.page-products .metric-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(42, 59, 90, .7);
}

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

.page-products .metric-list strong {
  font-family: var(--font-data);
  font-size: 14px;
  color: var(--ice);
  flex: 0 0 auto;
}

.page-products .metric-list span {
  color: var(--slate);
  font-size: 13px;
  line-height: 1.55;
  text-align: right;
}

.page-products .products-data {
  padding: clamp(44px, 8vw, 88px) 0;
  border-top: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(0, 255, 135, .04) 0%, transparent 45%);
}

.page-products .data-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.page-products .data-figure {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.page-products .data-figure figcaption {
  margin: 0;
  padding: 10px 14px;
  font-size: 12px;
  color: var(--slate);
  background: rgba(10, 17, 40, .85);
}

.page-products .data-copy p {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 16px;
}

.page-products .data-points {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-products .data-points li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  background: rgba(18, 32, 64, .5);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
}

.page-products .data-points li span:first-child {
  font-family: var(--font-data);
  font-weight: 700;
  color: var(--mint);
  font-size: 14px;
  flex: 0 0 auto;
}

.page-products .data-points li span:last-child {
  color: var(--slate);
  font-size: 13px;
  text-align: right;
}

.page-products .data-cert {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.page-products .products-pricing {
  background: var(--trench);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(44px, 8vw, 88px) 0;
}

.page-products .pricing-head {
  max-width: 680px;
  margin-bottom: 28px;
}

.page-products .pricing-deck {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

.page-products .pricing-steps {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-products .pricing-steps li {
  background: var(--space);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.page-products .step-num {
  font-family: var(--font-headline);
  font-size: 26px;
  display: block;
  color: var(--orange);
}

.page-products .pricing-steps h3 {
  margin: 10px 0 6px;
  font-size: 16px;
}

.page-products .pricing-steps p {
  margin: 0;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.65;
}

.page-products .pricing-include {
  background: rgba(0, 255, 135, .07);
  border: 1px dashed rgba(0, 255, 135, .4);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 0 0 22px;
}

.page-products .pricing-include h3 {
  margin: 0 0 6px;
  font-size: 15px;
  color: var(--mint);
}

.page-products .pricing-include p {
  margin: 0;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.7;
}

.page-products .pricing-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-products .products-cta {
  padding: clamp(40px, 7vw, 80px) 0 0;
}

.page-products .cta-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.page-products .cta-banner {
  margin: 0;
  border: 1px solid var(--border);
  border-bottom: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}

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

.page-products .cta-panel {
  background: var(--trench);
  border: 1px solid var(--border);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 28px 20px 32px;
  text-align: center;
}

.page-products .cta-panel h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 3.6vw, 34px);
}

.page-products .cta-panel p {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.8;
  margin: 0 auto 20px;
  max-width: 620px;
}

.page-products .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

@media (min-width: 720px) {
  .page-products .replay-head {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

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

  .page-products .pricing-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

  .page-products .cta-panel {
    padding: 36px 32px 44px;
  }
}

@media (min-width: 860px) {
  .page-products .hero-grid {
    grid-template-columns: 1.15fr .85fr;
    gap: 48px;
    align-items: end;
  }

  .page-products .feature-grid {
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
  }

  .page-products .metrics-body {
    grid-template-columns: .85fr 1.15fr;
    gap: 32px;
  }

  .page-products .data-grid {
    grid-template-columns: .95fr 1.05fr;
    gap: 44px;
    align-items: center;
  }
}
