.page-products {
  --solutions-radius: 1.25rem;
  --solutions-radius-soft: 0.25rem;
  --solutions-gap: clamp(1rem, 2.4vw, 1.75rem);
  background: var(--space-night);
  overflow-x: hidden;
  color: var(--star-white);
}

.page-products .solutions-hero {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2.5rem) var(--content-pad) clamp(2.5rem, 6vw, 4.5rem);
  background:
    linear-gradient(160deg, rgba(11, 30, 58, 0.92) 0%, rgba(8, 20, 38, 0.96) 60%, rgba(22, 50, 94, 0.88) 100%);
  border-bottom: 1px solid rgba(102, 224, 255, 0.16);
}

.page-products .solutions-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 209, 102, 0.14), transparent 22%),
    radial-gradient(circle at 12% 88%, rgba(102, 224, 255, 0.12), transparent 24%);
  pointer-events: none;
}

.page-products .solutions-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 100%;
  background: linear-gradient(135deg, transparent 45%, rgba(245, 247, 250, 0.04) 50%, transparent 55%);
  transform: skewX(-12deg);
  pointer-events: none;
}

.page-products .solutions-hero > * {
  position: relative;
  z-index: 1;
}

.page-products .solutions-hero .breadcrumbs {
  margin: 0 0 1.25rem;
  padding: 0;
}

.page-products .solutions-hero-inner {
  max-width: 76ch;
  margin-inline: auto;
}

.page-products .hero-eyebrow,
.page-products .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.75rem;
  color: var(--neon-green);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-products .hero-eyebrow::before,
.page-products .section-kicker::before {
  content: "";
  width: 2rem;
  height: 2px;
  background: var(--neon-green);
  display: inline-block;
}

.page-products .solutions-hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--star-white);
  text-wrap: balance;
}

.page-products .hero-lead {
  margin: 0 0 1.5rem;
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.9375rem + 0.5vw, 1.125rem);
  line-height: 1.7;
  color: var(--silver-blue);
  max-width: 58ch;
}

.page-products .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-products .hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  max-width: 680px;
  margin: clamp(1.5rem, 4vw, 2.5rem) auto 0;
  padding: 0;
  list-style: none;
}

.page-products .stat-item {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  background: rgba(11, 30, 58, 0.7);
  border-left: 2px solid var(--neon-green);
  border-radius: 0 0.75rem 0.75rem 0;
}

.page-products .stat-item dt {
  color: var(--silver-blue);
  font-family: var(--font-body);
  font-size: 0.875rem;
}

.page-products .stat-item dd {
  margin: 0;
  order: -1;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--star-yellow);
}

.page-products .solutions-filter {
  position: sticky;
  top: var(--header-height-mobile);
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem var(--content-pad);
  margin: 0;
  background: rgba(8, 20, 38, 0.86);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(102, 224, 255, 0.14);
}

.page-products .filter-btn {
  border: 1px solid rgba(184, 196, 208, 0.35);
  background: rgba(11, 30, 58, 0.6);
  color: var(--silver-blue);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}

.page-products .filter-btn[data-active] {
  background: var(--neon-green);
  color: var(--space-night);
  border-color: var(--neon-green);
}

.page-products .solutions-bento {
  display: grid;
  gap: var(--solutions-gap);
  padding: clamp(2rem, 5vw, 4rem) var(--content-pad);
  max-width: calc(var(--content-width) + 2 * var(--content-pad));
  margin: 0 auto;
}

.page-products .bento-phone {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.75rem 1rem;
  min-width: 0;
}

.page-products .phone-shell {
  position: relative;
  width: min(240px, 72vw);
  border-radius: 2.25rem;
  padding: 0.625rem;
  background: linear-gradient(160deg, #1c3a66, var(--space-night) 65%);
  border: 1px solid rgba(102, 224, 255, 0.32);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(245, 247, 250, 0.04),
    0 0 44px rgba(57, 255, 136, 0.1);
}

.page-products .phone-notch {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 20px;
  background: var(--space-night);
  border-radius: 999px;
  z-index: 3;
}

.page-products .phone-screen {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.8rem;
  object-fit: cover;
  border: 1px solid rgba(245, 247, 250, 0.08);
}

.page-products .phone-live {
  position: absolute;
  top: 1.4rem;
  right: 1.2rem;
  z-index: 3;
  background: var(--star-yellow);
  color: var(--space-night);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.625rem;
  line-height: 1;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.5rem;
  border-radius: 0.375rem;
  transform: rotate(2deg);
}

.page-products .phone-caption {
  max-width: 24em;
  text-align: center;
  color: var(--silver-blue);
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.page-products .bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
  padding: clamp(1.25rem, 2.4vw, 1.75rem);
  border: 1px solid rgba(102, 224, 255, 0.16);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  background:
    linear-gradient(165deg, rgba(22, 50, 94, 0.55) 0%, rgba(11, 30, 58, 0.92) 100%);
}

.page-products .bento-schedule {
  border-radius: var(--solutions-radius) var(--solutions-radius-soft) var(--solutions-radius) var(--solutions-radius-soft);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 209, 102, 0.1), transparent 36%),
    linear-gradient(165deg, rgba(22, 50, 94, 0.55), rgba(11, 30, 58, 0.92));
}

.page-products .bento-teams {
  border-radius: var(--solutions-radius-soft) var(--solutions-radius) var(--solutions-radius-soft) var(--solutions-radius);
  background:
    radial-gradient(circle at 10% 20%, rgba(102, 224, 255, 0.1), transparent 34%),
    linear-gradient(165deg, rgba(22, 50, 94, 0.55), rgba(11, 30, 58, 0.92));
}

.page-products .bento-reports {
  border-radius: var(--solutions-radius) var(--solutions-radius) var(--solutions-radius-soft) var(--solutions-radius);
  background:
    radial-gradient(circle at 90% 20%, rgba(57, 255, 136, 0.08), transparent 32%),
    linear-gradient(165deg, rgba(22, 50, 94, 0.55), rgba(11, 30, 58, 0.92));
}

.page-products .bento-archive {
  border-radius: var(--solutions-radius-soft) var(--solutions-radius) var(--solutions-radius) var(--solutions-radius-soft);
  background:
    radial-gradient(circle at 15% 85%, rgba(124, 108, 240, 0.16), transparent 40%),
    linear-gradient(165deg, rgba(22, 50, 94, 0.55), rgba(11, 30, 58, 0.92));
}

.page-products .bento-cta {
  justify-content: center;
  border-radius: var(--solutions-radius) var(--solutions-radius-soft) var(--solutions-radius) var(--solutions-radius-soft);
  background:
    radial-gradient(circle at 90% 10%, rgba(124, 108, 240, 0.22), transparent 40%),
    linear-gradient(160deg, rgba(57, 255, 136, 0.14), rgba(11, 30, 58, 0.9) 60%);
  border-color: rgba(57, 255, 136, 0.3);
}

.page-products .card-head {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.page-products .card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.375rem;
  background: rgba(57, 255, 136, 0.14);
  color: var(--neon-green);
  border: 1px solid rgba(57, 255, 136, 0.28);
  border-radius: 0.5rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.75rem;
  line-height: 1;
}

.page-products .card-head h2 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.125rem, 1vw + 1rem, 1.375rem);
  line-height: 1.2;
  color: var(--star-white);
}

.page-products .card-desc {
  margin: 0;
  color: var(--silver-blue);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.page-products .card-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0.875rem;
  border: 1px solid rgba(255, 209, 102, 0.14);
}

.page-products .bento-teams .card-img {
  max-height: 200px;
  object-position: top;
}

.page-products .bento-reports .card-img {
  max-height: 240px;
  object-position: top;
}

.page-products .bento-archive .card-img {
  max-height: 200px;
  object-position: top;
}

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

.page-products .card-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  color: var(--star-white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.page-products .feat-dot {
  flex: 0 0 auto;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.45em;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 0 3px rgba(57, 255, 136, 0.12);
}

.page-products .bento-teams .feat-dot {
  background: var(--ice-cyan);
  box-shadow: 0 0 0 3px rgba(102, 224, 255, 0.12);
}

.page-products .bento-archive .feat-dot {
  background: var(--star-yellow);
  box-shadow: 0 0 0 3px rgba(255, 209, 102, 0.12);
}

.page-products .card-btn {
  margin-top: auto;
  align-self: flex-start;
}

.page-products .cta-kicker {
  color: var(--star-yellow);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.12em;
}

.page-products .bento-cta h3 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--star-white);
}

.page-products .bento-cta p {
  margin: 0;
  color: var(--silver-blue);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.page-products .solutions-howto {
  padding: clamp(2.5rem, 6vw, 5rem) var(--content-pad);
  background:
    radial-gradient(circle at 12% 12%, rgba(57, 255, 136, 0.08), transparent 24%),
    linear-gradient(180deg, var(--space-night) 0%, var(--space-deep) 100%);
  border-top: 1px solid rgba(102, 224, 255, 0.14);
  border-bottom: 1px solid rgba(102, 224, 255, 0.14);
}

.page-products .howto-head {
  max-width: 72ch;
  margin: 0 auto 1rem;
}

.page-products .howto-head h2 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
  line-height: 1.2;
  color: var(--star-white);
}

.page-products .howto-lead {
  max-width: 60ch;
  margin: 0 auto 2rem;
  color: var(--silver-blue);
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 0.9rem + 0.5vw, 1.0625rem);
  line-height: 1.7;
}

.page-products .howto-body {
  display: grid;
  gap: 2rem;
  max-width: var(--content-width);
  margin: 0 auto;
}

.page-products .howto-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.875rem;
}

.page-products .howto-step {
  position: relative;
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(11, 30, 58, 0.6);
  border-radius: 0.375rem 1.125rem 0.375rem 1.125rem;
  border: 1px solid rgba(184, 196, 208, 0.14);
  transition: border-color 0.25s var(--ease-out), transform 0.3s var(--ease-out);
}

.page-products .step-num {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(57, 255, 136, 0.1);
  border: 1px solid rgba(57, 255, 136, 0.3);
  color: var(--neon-green);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.875rem;
  line-height: 1;
}

.page-products .step-text h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.0625rem;
  line-height: 1.4;
  color: var(--star-white);
}

.page-products .step-text p {
  margin: 0;
  color: var(--silver-blue);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.page-products .howto-aside {
  display: grid;
  gap: 1.5rem;
  align-content: start;
}

.page-products .howto-cache {
  padding: 1.5rem;
  background: linear-gradient(145deg, rgba(22, 50, 94, 0.7), rgba(8, 20, 38, 0.9));
  border-radius: 0.25rem 1.25rem 0.25rem 1.25rem;
  border: 1px solid rgba(102, 224, 255, 0.2);
}

.page-products .howto-cache h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.125rem;
  line-height: 1.4;
  color: var(--star-white);
}

.page-products .howto-cache p {
  margin: 0;
  color: var(--silver-blue);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.page-products .howto-scale {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.page-products .scale-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  background: rgba(11, 30, 58, 0.75);
  border-radius: 0.75rem;
  border-top: 2px solid var(--star-yellow);
}

.page-products .scale-item strong {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--star-yellow);
}

.page-products .scale-item span {
  color: var(--silver-blue);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.4;
}

.page-products .solutions-outro {
  padding: clamp(2.5rem, 6vw, 5rem) var(--content-pad);
}

.page-products .outro-card {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 85% 15%, rgba(102, 224, 255, 0.16), transparent 36%),
    radial-gradient(circle at 10% 90%, rgba(57, 255, 136, 0.14), transparent 30%),
    linear-gradient(160deg, var(--space-deep), var(--space-night));
  border-radius: 0.25rem 2rem 0.25rem 2rem;
  border: 1px solid rgba(102, 224, 255, 0.2);
  text-align: center;
}

.page-products .outro-card h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
  line-height: 1.25;
  color: var(--star-white);
}

.page-products .outro-card p {
  max-width: 60ch;
  margin: 0 auto 1.5rem;
  color: var(--silver-blue);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.page-products .outro-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.page-products [data-hidden="true"] {
  display: none !important;
}

@media (hover: hover) {
  .page-products .bento-card:hover {
    transform: translateY(-6px);
    border-color: rgba(57, 255, 136, 0.32);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.34);
  }

  .page-products .howto-step:hover {
    transform: translateY(-2px);
    border-color: rgba(57, 255, 136, 0.36);
  }
}

@media (min-width: 700px) {
  .page-products .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-products .solutions-filter {
    top: var(--header-height);
  }

  .page-products .howto-body {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }

  .page-products .howto-steps {
    grid-column: 1;
  }

  .page-products .howto-aside {
    grid-column: 2;
  }

  .page-products .howto-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-products .howto-scale {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .page-products .solutions-bento {
    grid-template-columns: 1.05fr 260px 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .page-products .bento-phone {
    grid-column: 2;
    grid-row: 1 / -1;
  }

  .page-products .bento-schedule {
    grid-column: 1;
    grid-row: 1;
  }

  .page-products .bento-teams {
    grid-column: 3 / -1;
    grid-row: 1;
  }

  .page-products .bento-reports {
    grid-column: 1;
    grid-row: 2;
  }

  .page-products .bento-archive {
    grid-column: 3;
    grid-row: 2;
  }

  .page-products .bento-cta {
    grid-column: 4;
    grid-row: 2;
  }

  .page-products .phone-shell {
    width: 260px;
  }

  .page-products .howto-scale {
    grid-template-columns: repeat(2, 1fr);
  }
}
