.page-products {
  --product-radius: 18px;
  --product-space: 64px;
  overflow-x: hidden;
  background: var(--color-white);
}

.page-products .mono {
  font-family: var(--font-mono);
}

.page-products .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: .8125rem;
  color: var(--color-gray-500);
  margin-bottom: 26px;
}

.page-products .breadcrumb a {
  color: var(--color-cyan);
  text-decoration: none;
  transition: color .2s ease;
}

.page-products .breadcrumb a:hover {
  color: var(--color-orange);
}

.page-products .breadcrumb-sep {
  color: var(--color-gray-500);
}

.page-products .product-hero {
  background:
    radial-gradient(1200px 480px at 110% -10%, rgba(0, 180, 216, .22), transparent 55%),
    radial-gradient(760px 360px at -10% 110%, rgba(123, 44, 191, .16), transparent 60%),
    var(--color-navy-900);
  color: var(--color-white);
  padding: 36px 0 44px;
  position: relative;
}

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

.page-products .hero-copy .section-kicker {
  color: var(--color-cyan);
  display: block;
  margin-bottom: 14px;
}

.page-products .hero-copy h1 {
  font-size: clamp(1.75rem, 5vw, 3rem);
  line-height: 1.2;
  font-weight: 900;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}

.page-products .hero-lead {
  color: #c7d3e3;
  font-size: 1rem;
  line-height: 1.85;
  max-width: 64ch;
  margin-bottom: 28px;
}

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

.page-products .hero-stats {
  margin-top: 28px;
}

.page-products .hero-stats .stat-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.page-products .hero-stats .stat-cell {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
}

.page-products .hero-stats .data-number {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-orange);
  line-height: 1.2;
}

.page-products .hero-stats .data-label {
  display: block;
  margin-top: 6px;
  color: var(--color-gray-500);
  font-size: .8125rem;
}

.page-products .section-header h2 {
  font-size: 1.75rem;
  font-weight: 900;
  margin: 8px 0 10px;
}

.page-products .section-header p {
  color: var(--color-gray-500);
  line-height: 1.75;
  max-width: 70ch;
}

.page-products .product-matrix-section {
  padding: var(--product-space) 0;
}

.page-products .matrix-grid {
  display: grid;
  gap: 24px;
  margin-top: 36px;
}

.page-products .product-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--product-radius);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.page-products .product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.page-products .product-card .media-frame {
  overflow: hidden;
  background: #0e1b2e;
}

.page-products .product-card-mobile .media-frame {
  aspect-ratio: 9 / 14;
}

.page-products .product-card-panel .media-frame,
.page-products .product-card-beta .media-frame {
  aspect-ratio: 16 / 9;
}

.page-products .product-card .media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-products .product-card-mobile .media-frame img {
  object-position: top center;
}

.page-products .product-card-body {
  padding: 24px;
  flex: 1;
}

.page-products .product-card-body h3 {
  font-size: 1.375rem;
  font-weight: 900;
  margin: 10px 0 10px;
}

.page-products .product-card-body p {
  color: var(--color-gray-500);
  line-height: 1.75;
  font-size: .9375rem;
  margin-bottom: 14px;
}

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

.page-products .product-check-list li {
  position: relative;
  padding-left: 22px;
  font-size: .875rem;
  color: var(--color-gray-900);
  line-height: 1.6;
}

.page-products .product-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--color-orange);
  border-bottom: 2px solid var(--color-orange);
  transform: rotate(-45deg);
}

.page-products .card-dark .product-card-body p {
  color: #b8c6d8;
}

.page-products .card-dark .product-check-list li {
  color: var(--color-white);
}

.page-products .matrix-more {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--color-gray-100);
  border-radius: var(--radius);
  border-left: 4px solid var(--color-electric);
  color: var(--color-gray-500);
  font-size: .9375rem;
  line-height: 1.8;
}

.page-products .matrix-more a {
  color: var(--color-electric);
  text-decoration: none;
  font-weight: 700;
}

.page-products .matrix-more a:hover {
  color: var(--color-orange);
  text-decoration: underline;
}

.page-products .features-section {
  background: var(--color-gray-100);
  padding: var(--product-space) 0;
}

.page-products .features-layout {
  display: grid;
  gap: 36px;
  margin-top: 36px;
  align-items: center;
}

.page-products .features-phone {
  display: flex;
  justify-content: center;
}

.page-products .features-phone img {
  border-radius: 28px;
  box-shadow: 0 20px 45px rgba(10, 18, 32, .2);
  max-width: 220px;
  height: auto;
}

.page-products .features-list {
  display: grid;
  gap: 20px;
}

.page-products .feature-item {
  display: flex;
  gap: 18px;
  padding: 20px;
  background: var(--color-white);
  border-radius: var(--radius);
  border-left: 4px solid var(--color-electric);
  align-items: flex-start;
}

.page-products .feature-index {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-orange);
  line-height: 1.2;
  min-width: 36px;
}

.page-products .feature-text h3 {
  font-size: 1.125rem;
  font-weight: 900;
  margin: 0 0 6px;
}

.page-products .feature-text p {
  color: var(--color-gray-500);
  line-height: 1.7;
  font-size: .875rem;
  margin: 0;
}

.page-products .download-section {
  padding: var(--product-space) 0;
}

.page-products .download-layout {
  display: grid;
  gap: 36px;
  margin-top: 36px;
}

.page-products .download-steps {
  display: grid;
  gap: 0;
}

.page-products .download-steps .path-step {
  position: relative;
  padding: 0 0 36px 44px;
}

.page-products .download-steps .path-step::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-electric), var(--color-purple));
}

.page-products .download-steps .path-step:last-child::before {
  display: none;
}

.page-products .step-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-navy-800);
  color: var(--color-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
}

.page-products .path-step-title {
  font-size: 1.125rem;
  font-weight: 900;
  margin: 0 0 6px;
}

.page-products .path-step-body p {
  color: var(--color-gray-500);
  font-size: .875rem;
  line-height: 1.75;
  margin: 0;
}

.page-products .download-card {
  text-align: center;
  padding: 28px 24px;
  align-self: start;
  border: 1px solid var(--color-gray-300);
}

.page-products .download-card img {
  display: block;
  margin: 0 auto 12px;
  border-radius: 12px;
  max-width: 160px;
  height: auto;
}

.page-products .download-card p {
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--color-gray-900);
}

.page-products .sys-req {
  margin-top: 40px;
  background: var(--color-gray-100);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.page-products .sys-req h3 {
  font-size: 1.25rem;
  font-weight: 900;
  margin: 0 0 18px;
  color: var(--color-gray-900);
}

.page-products .sys-detail {
  border: 1px solid var(--color-gray-300);
  border-radius: 12px;
  background: var(--color-white);
  margin-bottom: 10px;
  overflow: hidden;
}

.page-products .sys-detail summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 700;
  font-size: .9375rem;
  color: var(--color-navy-800);
  position: relative;
  padding-right: 42px;
  list-style: none;
}

.page-products .sys-detail summary::-webkit-details-marker {
  display: none;
}

.page-products .sys-detail summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--color-orange);
}

.page-products .sys-detail[open] summary::after {
  content: "−";
}

.page-products .sys-detail p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--color-gray-500);
  font-size: .875rem;
  line-height: 1.7;
}

.page-products .pricing-section {
  background:
    radial-gradient(900px 400px at 90% 0%, rgba(0, 180, 216, .14), transparent 55%),
    var(--color-navy-900);
  color: var(--color-white);
  padding: var(--product-space) 0;
}

.page-products .pricing-section .section-header h2 {
  color: var(--color-white);
}

.page-products .pricing-section .section-header p {
  color: #b8c6d8;
}

.page-products .pricing-grid {
  display: grid;
  gap: 24px;
  margin-top: 36px;
}

.page-products .pricing-card {
  background: var(--color-navy-700);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  padding: 26px;
}

.page-products .pricing-card h3 {
  font-size: 1.25rem;
  font-weight: 900;
  margin: 0 0 16px;
  color: var(--color-cyan);
}

.page-products .pricing-card-accent {
  background: linear-gradient(135deg, rgba(255, 107, 53, .16), rgba(0, 180, 216, .08)), var(--color-navy-700);
  border-color: rgba(255, 107, 53, .35);
}

.page-products .pricing-card-accent h3 {
  color: var(--color-orange);
}

.page-products .pricing-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-products .pricing-card li {
  position: relative;
  padding-left: 20px;
  color: #d4ddea;
  font-size: .875rem;
  line-height: 1.6;
}

.page-products .pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-orange);
}

.page-products .pricing-faq {
  margin-top: 36px;
  display: grid;
  gap: 14px;
}

.page-products .pricing-detail {
  background: var(--color-navy-700);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  overflow: hidden;
}

.page-products .pricing-detail summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 700;
  color: var(--color-white);
  position: relative;
  padding-right: 44px;
  list-style: none;
}

.page-products .pricing-detail summary::-webkit-details-marker {
  display: none;
}

.page-products .pricing-detail summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 1.25rem;
  color: var(--color-orange);
}

.page-products .pricing-detail[open] summary::after {
  content: "−";
}

.page-products .detail-body {
  padding: 0 20px 18px;
  color: #b8c6d8;
  font-size: .875rem;
  line-height: 1.75;
}

.page-products .detail-body p {
  margin: 0;
}

.page-products .pricing-tip {
  margin-top: 28px;
  color: #b8c6d8;
  font-size: .875rem;
  line-height: 1.7;
}

.page-products .link-light {
  color: var(--color-cyan);
  text-decoration: none;
  font-weight: 700;
}

.page-products .link-light:hover {
  color: var(--color-orange);
  text-decoration: underline;
}

.page-products .matrix-more-section {
  padding: 32px 0 56px;
}

.page-products .matrix-more-section .matrix-more {
  margin-top: 0;
}

@media (min-width: 760px) {
  .page-products .product-hero {
    padding: 48px 0 64px;
  }

  .page-products .hero-grid {
    grid-template-columns: 1.15fr .85fr;
    gap: 40px;
    align-items: end;
  }

  .page-products .hero-stats {
    margin-top: 0;
  }

  .page-products .hero-stats .stat-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .page-products .hero-stats .data-number {
    font-size: 1.8rem;
  }

  .page-products .matrix-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }

  .page-products .features-layout {
    grid-template-columns: .85fr 1.15fr;
    gap: 40px;
  }

  .page-products .download-layout {
    grid-template-columns: 1.4fr .6fr;
    gap: 40px;
    align-items: start;
  }

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

@media (min-width: 1024px) {
  .page-products .product-hero {
    padding: 64px 0 80px;
  }

  .page-products .hero-copy h1 {
    font-size: 2.75rem;
  }

  .page-products .hero-stats .stat-strip {
    gap: 16px;
  }

  .page-products .features-layout {
    grid-template-columns: .7fr 1.3fr;
    align-items: center;
  }

  .page-products .features-phone img {
    max-width: 240px;
  }

  .page-products .features-list {
    max-width: 640px;
  }

  .page-products .sys-req {
    padding: 32px 36px;
  }
}
