.page-products {
  --panel-gap: clamp(1.5rem, 4vw, 3rem);
  --hero-pad: clamp(2rem, 6vw, 4.5rem);
  --panel-pad: clamp(1.25rem, 3vw, 2.25rem);
  overflow-x: hidden;
}

.page-products .breadcrumb {
  margin: 1.25rem var(--gutter) 0;
  font-family: var(--font-index);
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  color: var(--silver);
  text-transform: uppercase;
}

.page-products .breadcrumb a {
  color: var(--mid-blue);
  text-decoration: none;
}

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

.page-products .breadcrumb-sep {
  margin: 0 0.5rem;
  color: var(--silver);
}

.page-products .products-hero {
  position: relative;
  margin: clamp(1.5rem, 4vw, 3rem) var(--gutter) 0;
  padding: var(--hero-pad);
  background-color: var(--ink);
  background-image:
    linear-gradient(rgba(176, 183, 192, 0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(176, 183, 192, 0.10) 1px, transparent 1px);
  background-size: 28px 28px;
  color: var(--paper);
  border-bottom: 4px solid var(--neon);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  display: grid;
  gap: var(--panel-gap);
}

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

.page-products .products-hero .section-label {
  color: var(--neon);
}

.page-products .products-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 14ch;
  color: var(--paper);
  text-wrap: balance;
}

.page-products .hero-lede {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245, 240, 230, 0.78);
  max-width: 58ch;
  margin: 0;
}

.page-products .hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem clamp(1.25rem, 4vw, 3.5rem);
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
}

.page-products .metric {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.page-products .metric-value {
  font-family: var(--font-data);
  font-size: clamp(1.75rem, 4vw, 2.875rem);
  font-weight: 700;
  color: var(--neon);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.page-products .metric-label {
  font-size: 0.875rem;
  color: rgba(245, 240, 230, 0.62);
  margin: 0;
}

.page-products .hero-visual {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: flex-start;
}

.page-products .hero-media {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  background: var(--deep-ink);
  border: 1px solid rgba(176, 183, 192, 0.24);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  overflow: hidden;
  transform: rotate(0.6deg);
}

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

.page-products .media-tag {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  background: var(--neon);
  color: var(--ink);
  font-family: var(--font-data);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.6rem;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

.page-products .hero-note {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-index);
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  color: rgba(245, 240, 230, 0.72);
  margin-left: auto;
}

.page-products .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--neon);
  flex: 0 0 auto;
}

.page-products .products-layout {
  display: grid;
  gap: var(--panel-gap);
  margin: clamp(3rem, 7vw, 5.5rem) var(--gutter) 0;
  align-items: start;
}

.page-products .section-index {
  position: relative;
  background: var(--rice);
  border: 1px solid var(--silver);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page-products .index-title {
  font-family: var(--font-index);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  color: var(--silver);
  text-transform: uppercase;
  margin: 0;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--silver);
}

.page-products .index-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.page-products .index-item a {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.55rem 0.6rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}

.page-products .index-item a:hover,
.page-products .index-item a.is-active {
  background: var(--neon);
  color: var(--ink);
}

.page-products .index-no {
  font-family: var(--font-data);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--silver);
  transition: color var(--dur) var(--ease);
}

.page-products .index-item a.is-active .index-no {
  color: var(--ink);
}

.page-products .index-name {
  font-size: 0.9375rem;
}

.page-products .index-foot {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-index);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--silver);
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--silver);
}

.page-products .index-svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--silver);
  flex: 0 0 auto;
}

.page-products .products-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.page-products .feature-panel {
  background: var(--rice);
  border: 1px solid var(--silver);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  padding: var(--panel-pad);
  box-shadow: 8px 8px 0 rgba(10, 29, 46, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.page-products .feature-panel--video {
  background: var(--deep-ink);
  border-color: var(--deep-ink);
  color: var(--paper);
}

.page-products .feature-panel--video .panel-heading h2,
.page-products .feature-panel--video .panel-kicker {
  color: var(--paper);
}

.page-products .feature-panel--video .panel-icon {
  color: var(--silver);
}

.page-products .feature-panel--video .panel-copy > p {
  color: rgba(245, 240, 230, 0.78);
}

.page-products .feature-panel--video .feature-list li {
  color: rgba(245, 240, 230, 0.82);
}

.page-products .feature-panel--video .feature-list .list-symbol {
  color: var(--neon);
}

.page-products .panel-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
}

.page-products .panel-no {
  font-family: var(--font-data);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--silver);
  line-height: 1;
  flex: 0 0 auto;
  letter-spacing: -0.04em;
}

.page-products .panel-heading {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1 1 auto;
}

.page-products .panel-kicker {
  font-family: var(--font-index);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--silver);
  text-transform: uppercase;
  margin: 0;
}

.page-products .panel-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.page-products .panel-icon {
  width: 2.75rem;
  height: 2.75rem;
  color: var(--silver);
  flex: 0 0 auto;
  display: none;
}

.page-products .panel-content {
  display: grid;
  gap: 1.5rem;
}

.page-products .panel-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page-products .panel-copy > p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(26, 27, 30, 0.82);
}

.page-products .feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.page-products .feature-list li {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink);
  display: flex;
  gap: 0.55rem;
}

.page-products .list-symbol {
  font-family: var(--font-data);
  font-weight: 700;
  color: var(--mid-blue);
  flex: 0 0 auto;
}

.page-products .mini-stat {
  margin-top: 0.5rem;
  padding: 0.9rem 1rem;
  background: rgba(192, 255, 0, 0.16);
  border-left: 4px solid var(--neon);
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.page-products .mini-stat-value {
  font-family: var(--font-data);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.page-products .mini-stat-label {
  font-size: 0.8125rem;
  color: rgba(26, 27, 30, 0.72);
}

.page-products .panel-media {
  overflow: hidden;
  background: var(--silver);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

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

.page-products .panel-media--wide img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  object-position: center;
}

.page-products .feature-panel--schedule .panel-media {
  max-width: 260px;
  margin: 0 auto;
}

.page-products .feature-panel--schedule .panel-media img {
  max-height: 520px;
  object-fit: cover;
  object-position: center top;
}

.page-products .feature-panel--report .panel-media {
  max-width: 560px;
  margin: 0 auto;
}

.page-products .feature-panel--report .panel-media img {
  max-height: 300px;
  object-fit: cover;
  object-position: center;
}

.page-products .feature-panel--heatmap .panel-media {
  max-width: 560px;
  margin: 0 auto;
}

.page-products .feature-panel--heatmap .panel-media img {
  max-height: 280px;
  object-fit: cover;
  object-position: center;
}

.page-products .heatmap-states {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.page-products .heatmap-state {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.85rem 0.9rem;
  background: var(--paper);
  border-left: 3px solid var(--silver);
}

.page-products .state-dot {
  flex: 0 0 auto;
  width: 0.85rem;
  height: 0.85rem;
  margin-top: 0.15rem;
  border-radius: 2px;
}

.page-products .state-dot--lead {
  background: var(--mid-blue);
}

.page-products .state-dot--draw {
  background: var(--neon);
  border: 1px solid rgba(10, 29, 46, 0.4);
}

.page-products .state-dot--lag {
  background: var(--alert);
}

.page-products .state-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.page-products .state-copy strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink);
}

.page-products .state-copy span {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(26, 27, 30, 0.7);
}

.page-products .download-section {
  margin: clamp(3rem, 7vw, 5.5rem) var(--gutter) 0;
  background: var(--ink);
  color: var(--paper);
  border-top: 4px solid var(--neon);
  border-bottom: 4px solid var(--neon);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.page-products .download-inner {
  padding: clamp(2rem, 6vw, 4rem) clamp(1.25rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.page-products .download-section .section-label {
  color: var(--neon);
}

.page-products .download-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 900;
  margin: 0;
  color: var(--paper);
  letter-spacing: -0.01em;
}

.page-products .download-lede {
  max-width: 62ch;
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245, 240, 230, 0.78);
}

.page-products .platform-grid {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  width: 100%;
  max-width: 920px;
}

.page-products .platform-card {
  background: var(--deep-ink);
  border: 1px solid rgba(176, 183, 192, 0.24);
  padding: 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.page-products .platform-card:hover {
  transform: translateY(-3px);
  border-color: var(--neon);
}

.page-products .platform-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--paper);
  letter-spacing: -0.01em;
}

.page-products .platform-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(245, 240, 230, 0.7);
}

.page-products .download-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.page-products .trust-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8125rem;
  font-family: var(--font-index);
  color: rgba(245, 240, 230, 0.62);
  margin-top: 0.5rem;
  text-align: left;
}

.page-products .next-links {
  border-top: 1px solid rgba(176, 183, 192, 0.2);
  display: flex;
  flex-wrap: wrap;
}

.page-products .next-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.25rem;
  color: var(--paper);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: background-color var(--dur) var(--ease);
  flex: 1 1 200px;
}

.page-products .next-link:hover {
  background: rgba(192, 255, 0, 0.12);
}

.page-products .next-link-index {
  font-family: var(--font-data);
  color: var(--neon);
  font-size: 1.1rem;
  font-weight: 700;
}

@media (min-width: 960px) {
  .page-products .products-hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: center;
  }

  .page-products .products-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.75rem);
  }

  .page-products .products-layout {
    grid-template-columns: 230px minmax(0, 1fr);
  }

  .page-products .section-index {
    position: sticky;
    top: 150px;
  }

  .page-products .panel-icon {
    display: block;
  }

  .page-products .panel-no {
    font-size: clamp(2.75rem, 5vw, 4.5rem);
  }

  .page-products .feature-panel--schedule .panel-content,
  .page-products .feature-panel--report .panel-content {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
  }

  .page-products .feature-panel--schedule .panel-content {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .page-products .feature-panel--report .panel-content {
    grid-template-columns: minmax(0, 1fr) 360px;
  }

  .page-products .feature-panel--schedule .panel-media {
    margin: 0;
  }

  .page-products .feature-panel--report .panel-media {
    margin: 0;
  }

  .page-products .feature-panel--video .panel-content {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
    align-items: center;
  }

  .page-products .feature-panel--video .panel-media {
    order: 2;
  }

  .page-products .feature-panel--video .panel-copy {
    order: 1;
  }

  .page-products .panel-media--wide img {
    max-height: none;
  }

  .page-products .feature-panel--heatmap .panel-content {
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
  }

  .page-products .feature-panel--heatmap .panel-media {
    margin: 0;
  }

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

  .page-products .download-inner {
    gap: 1rem;
  }

  .page-products .next-links {
    justify-content: flex-end;
  }

  .page-products .next-link {
    flex: 0 1 auto;
  }
}
