.page-products {
  --section-space: 3.5rem 1.25rem;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
}
.page-products .breadcrumb {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.25rem 0;
  font-size: 0.875rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.page-products .breadcrumb a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}
.page-products .breadcrumb a:hover {
  color: var(--green);
  text-decoration: underline;
}
.page-products .breadcrumb-current {
  color: var(--gray);
  font-weight: 600;
}
.page-products .products-hero {
  position: relative;
  margin: 1.25rem 1.25rem 2rem;
  padding: 2.5rem 1.25rem;
  background: var(--blue);
  border: 2px solid var(--ink);
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
  overflow: hidden;
}
.page-products .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}
.page-products .hero-content {
  position: relative;
  z-index: 1;
}
.page-products .hero-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.8rem;
  margin-bottom: 1.25rem;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.page-products .hero-content h1 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  color: var(--white);
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.page-products .hero-lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 46rem;
  margin: 0 0 1.75rem;
}
.page-products .hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.page-products .hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-right: 1.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.page-products .hero-stat:last-child {
  border-right: 0;
}
.page-products .hero-stat-num {
  font-family: var(--font-data);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.page-products .hero-stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
}
.page-products .quick-nav {
  display: flex;
  gap: 0.6rem;
  max-width: var(--max);
  margin: 0 auto 2.5rem;
  padding: 0 1.25rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.page-products .quick-nav::-webkit-scrollbar {
  display: none;
}
.page-products .quick-nav a {
  flex: 0 0 auto;
  display: inline-block;
  padding: 0.5rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.page-products .quick-nav a:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--ink);
}
.page-products .section {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--section-space);
}
.page-products section[id] {
  scroll-margin-top: 4.5rem;
}
.page-products .section-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.page-products .section-num {
  font-family: var(--font-data);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  flex: 0 0 auto;
  padding-top: 0.25rem;
}
.page-products .section-heading-box h2 {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  line-height: 1.15;
  margin: 0 0 0.5rem;
  color: var(--ink);
}
.page-products .section-heading-box p {
  color: var(--gray);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0;
}
.page-products .entry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.page-products .entry-card {
  position: relative;
  background: var(--white);
  border: 2px solid var(--ink);
  padding: 1.75rem 1.5rem 1.5rem;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.page-products .entry-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.page-products .entry-tag {
  display: inline-block;
  background: var(--sky);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.7rem;
  margin-bottom: 1.25rem;
}
.page-products .entry-icon {
  color: var(--blue);
  margin-bottom: 1rem;
  transition: color 0.2s ease, transform 0.2s ease;
}
.page-products .entry-card:hover .entry-icon {
  color: var(--green);
  transform: rotate(-6deg);
}
.page-products .entry-card h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  margin: 0 0 0.65rem;
  color: var(--ink);
}
.page-products .entry-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gray);
  margin: 0 0 1.25rem;
}
.page-products .entry-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  border-bottom: 2px solid var(--green);
  padding-bottom: 0.2rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.page-products .entry-link:hover {
  color: var(--green);
  border-color: var(--gold);
}
.page-products .fix-section {
  background: var(--white);
  border-block: 2px solid var(--line);
}
.page-products .fix-section .section {
  max-width: var(--max);
}
.page-products .fix-intro {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gray);
  margin: -1.5rem 0 2rem;
}
.page-products .fix-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.page-products .fix-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  position: relative;
}
.page-products .step-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.25rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.page-products .step-card:hover {
  border-color: var(--blue);
  background: var(--white);
}
.page-products .step-num {
  flex: 0 0 auto;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-data);
  font-size: 1.375rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}
.page-products .step-card:hover .step-num {
  background: var(--green);
  transform: scale(1.08);
}
.page-products .step-body {
  flex: 1;
}
.page-products .step-body h3 {
  font-family: var(--font-title);
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
  color: var(--ink);
}
.page-products .step-body p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--gray);
  margin: 0;
}
.page-products .fix-figure {
  margin: 0;
}
.page-products .fix-figure img,
.page-products .mobile-figure img,
.page-products .data-visual img,
.page-products .data-table-figure img {
  max-width: 100%;
  height: auto;
  display: block;
}
.page-products .fix-figure img {
  border: 2px solid var(--ink);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}
.page-products .fix-figure figcaption,
.page-products .data-visual figcaption,
.page-products .data-table-figure figcaption {
  font-size: 0.8125rem;
  color: var(--gray);
  margin-top: 0.65rem;
  padding-left: 0.75rem;
  border-left: 3px solid var(--green);
}
.page-products .mobile-section {
  background: var(--paper);
}
.page-products .mobile-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
.page-products .mobile-figure {
  margin: 0;
  max-width: 16rem;
  margin-inline: auto;
}
.page-products .mobile-figure img {
  border: 2px solid var(--ink);
  border-radius: 1rem;
  box-shadow: var(--shadow);
}
.page-products .mobile-content h3 {
  font-family: var(--font-title);
  font-size: 1.375rem;
  margin: 0 0 1rem;
  color: var(--ink);
}
.page-products .mobile-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.page-products .mobile-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--gray);
}
.page-products .mobile-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.6rem;
  height: 0.6rem;
  background: var(--green);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.page-products .mobile-content p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--gray);
  margin: 0 0 1.5rem;
}
.page-products .btn--green {
  display: inline-block;
  background: var(--green);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.7rem 1.4rem;
  text-decoration: none;
  border: 2px solid var(--green);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.page-products .btn--green:hover {
  background: var(--ink);
  color: var(--green);
  border-color: var(--ink);
}
.page-products .data-section {
  background: var(--sky);
  border-block: 2px solid var(--line);
}
.page-products .data-section .section {
  max-width: var(--max);
}
.page-products .data-visual {
  margin: 0 0 2.5rem;
}
.page-products .data-visual img {
  border: 2px solid var(--ink);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}
.page-products .data-table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 2px solid var(--ink);
  margin-bottom: 2rem;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}
.page-products .data-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-family: var(--font-body);
}
.page-products .data-table caption {
  text-align: left;
  font-family: var(--font-title);
  font-size: 1.125rem;
  padding: 1rem 1.25rem;
  background: var(--ink);
  color: var(--white);
}
.page-products .data-table thead th {
  background: var(--blue);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  text-align: left;
  padding: 0.75rem 1.25rem;
  white-space: nowrap;
}
.page-products .data-table tbody td {
  padding: 0.85rem 1.25rem;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  white-space: nowrap;
}
.page-products .data-table tbody tr:last-child td {
  border-bottom: 0;
}
.page-products .data-table tbody tr:nth-child(even) {
  background: var(--paper);
}
.page-products .data-table tbody tr:hover {
  background: var(--green);
  color: var(--ink);
}
.page-products .data-table tbody td:first-child {
  font-family: var(--font-data);
  font-weight: 700;
  color: var(--blue);
}
.page-products .league-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.page-products .league-tag {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--blue);
  color: var(--blue);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.page-products .league-tag:hover {
  background: var(--blue);
  color: var(--white);
}
.page-products .data-table-figure {
  margin: 0;
}
.page-products .data-table-figure img {
  border: 2px solid var(--ink);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}
.page-products .cta-band {
  background: var(--ink);
  color: var(--white);
  padding: 3.5rem 1.25rem;
  margin-top: 3rem;
}
.page-products .cta-inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.page-products .cta-band h2 {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin: 0 0 1rem;
  color: var(--white);
}
.page-products .cta-band p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 40rem;
  margin: 0 auto 2rem;
}
.page-products .cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.page-products .cta-actions .btn {
  display: inline-block;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.8rem 1.75rem;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.page-products .btn--gold {
  background: var(--gold);
  color: var(--ink);
  border: 2px solid var(--gold);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.page-products .btn--gold:hover {
  background: var(--green);
  border-color: var(--green);
}
.page-products .btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.page-products .btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
@media (min-width: 768px) {
  .page-products {
    --section-space: 5rem 2rem;
  }
  .page-products .breadcrumb {
    padding: 1.5rem 2rem 0;
  }
  .page-products .products-hero {
    margin: 1.5rem 2rem 3rem;
    padding: 4rem 3rem;
  }
  .page-products .hero-stats {
    gap: 2.5rem;
  }
  .page-products .hero-stat {
    padding-right: 2.5rem;
  }
  .page-products .hero-stat-num {
    font-size: 2.25rem;
  }
  .page-products .quick-nav {
    justify-content: center;
    padding: 0 2rem;
    margin-bottom: 3.5rem;
  }
  .page-products .entry-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .page-products .entry-card {
    padding: 2rem 1.75rem;
  }
  .page-products .fix-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
  }
  .page-products .fix-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .page-products .step-card {
    position: relative;
    padding: 1.5rem 1.25rem;
    border: 0;
    border-left: 2px solid var(--line);
    background: transparent;
  }
  .page-products .step-card:hover {
    border-left-color: var(--green);
    background: var(--white);
  }
  .page-products .step-card::before {
    content: "";
    position: absolute;
    left: 1.1875rem;
    top: 100%;
    width: 2px;
    height: 1.5rem;
    background: repeating-linear-gradient(to bottom, var(--green) 0 4px, transparent 4px 8px);
  }
  .page-products .step-card:last-child::before {
    display: none;
  }
  .page-products .step-num {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
  }
  .page-products .mobile-layout {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3.5rem;
    align-items: center;
  }
  .page-products .mobile-figure {
    margin: 0;
  }
  .page-products .mobile-content h3 {
    font-size: 1.5rem;
  }
  .page-products .data-visual img {
    width: 100%;
    object-fit: cover;
  }
  .page-products .data-table-figure img {
    width: 100%;
    object-fit: cover;
  }
  .page-products .cta-band {
    padding: 5rem 2rem;
  }
}
@media (min-width: 1200px) {
  .page-products .fix-figure img {
    width: 100%;
    object-fit: cover;
  }
  .page-products .data-visual img {
    max-height: 32rem;
  }
}
