.page-products {
  --page-accent: var(--orange);
  --page-violet: var(--violet);
  --page-mint: var(--mint);
  --page-gold: var(--gold);
  --page-surface: var(--surface);
  --page-raised: var(--raised);
  --page-deep: var(--deep);
  --page-border: var(--border);
  --page-border-strong: var(--border-strong);
  --page-shadow: var(--shadow-hard);
  background: var(--canvas);
  color: var(--ink);
  overflow-x: hidden;
}

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

.page-products .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

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

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

.page-products .sep {
  display: inline-block;
}

.page-products .solutions-hero {
  position: relative;
  padding: 32px 0 48px;
  background:
    radial-gradient(ellipse 60% 50% at 85% 10%, rgba(109, 90, 240, 0.15) 0%, transparent 60%),
    linear-gradient(180deg, rgba(11, 13, 23, 0.6) 0%, rgba(11, 13, 23, 1) 100%);
  border-bottom: 1px solid var(--page-border);
  overflow: hidden;
}

.page-products .solutions-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--page-accent) 0%, var(--page-violet) 40%, transparent 100%);
  pointer-events: none;
}

.page-products .product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.page-products .product-version {
  border-radius: 999px;
  padding: 4px 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.page-products .hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.page-products .hero-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--page-gold);
  margin-bottom: 14px;
  border-left: 3px solid var(--page-gold);
  padding-left: 12px;
}

.page-products h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.4vw, 64px);
  font-weight: 300;
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  color: var(--ink);
}

.page-products h1 strong {
  font-weight: 800;
}

.page-products .hero-intro {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 0 28px;
}

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

.page-products .solution-index {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid var(--page-border);
}

.page-products .solution-index a {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-decoration: none;
  border: 1px solid var(--page-border);
  padding: 6px 10px;
  transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.page-products .solution-index a:hover,
.page-products .solution-index a.is-active {
  color: var(--page-accent);
  border-color: var(--page-accent);
}

.page-products .hero-points {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.page-products .hero-points li {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.page-products .hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--page-accent);
  transform: translateY(-50%);
}

.page-products .hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--page-border);
  box-shadow: var(--page-shadow);
  padding: 20px;
}

.page-products .stat-item {
  padding: 14px 12px;
  border-left: 2px solid var(--page-accent);
  background: rgba(255, 138, 30, 0.06);
}

.page-products .stat-value {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(28px, 4.6vw, 38px);
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.page-products .stat-value small {
  font-size: 0.5em;
  color: var(--page-accent);
  margin-left: 2px;
}

.page-products .stat-label {
  display: block;
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

.page-products .hero-note {
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--raised);
  border: 1px solid var(--page-border);
  border-left: 3px solid var(--page-mint);
}

.page-products .hero-note p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
}

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

.page-products .section-head {
  margin-bottom: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-products .section-head.compact {
  margin-bottom: 20px;
}

.page-products .section-index {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--page-accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.page-products .section-index::after {
  content: "";
  display: inline-block;
  width: 36px;
  height: 2px;
  background: var(--page-accent);
}

.page-products .section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.2vw, 50px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}

.page-products .section-extra {
  color: var(--ink-soft);
  font-size: 14px;
  margin-top: 6px;
}

.page-products .overview-bento {
  row-gap: 24px;
}

.page-products .overview-bento .bento-card {
  background: var(--surface);
  border: 1px solid var(--page-border);
  box-shadow: var(--page-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-products .overview-bento .bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--violet);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.5);
}

.page-products .bento-media {
  width: 100%;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), 0 100%);
}

.page-products .bento-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-products .bento-body {
  padding: 24px 20px 22px;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.page-products .bento-body.wide {
  justify-content: center;
}

.page-products .bento-no {
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: var(--font-mono);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: rgba(242, 243, 247, 0.06);
  pointer-events: none;
  user-select: none;
}

.page-products .bento-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-right: 48px;
  margin-bottom: 10px;
}

.page-products .overview-bento .bento-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.page-products .overview-bento .bento-card p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
  margin: 0 0 16px;
}

.page-products .bento-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--violet);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
  transition: color 0.25s ease, gap 0.25s ease;
}

.page-products .bento-link:hover {
  color: var(--mint);
  gap: 12px;
}

.page-products .bento-content.accent-mint {
  background: linear-gradient(135deg, rgba(24, 224, 200, 0.12) 0%, rgba(11, 13, 23, 0) 70%);
  border-top: 2px solid var(--mint);
}

.page-products .accent-mint {
  background: linear-gradient(135deg, rgba(24, 224, 200, 0.1) 0%, var(--surface) 60%) !important;
  border-top: 2px solid var(--mint);
}

.page-products .accent-gold {
  background: linear-gradient(135deg, rgba(245, 197, 66, 0.1) 0%, var(--surface) 60%) !important;
  border-top: 2px solid var(--gold);
}

.page-products .login-flow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.page-products .flow-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--raised);
  border: 1px solid var(--page-border-strong);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

.page-products .flow-step i {
  font-style: normal;
  font-family: var(--font-mono);
  color: var(--page-accent);
  font-size: 16px;
}

.page-products .flow-line {
  flex: 1;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--violet) 0px, var(--violet) 6px, transparent 6px, transparent 12px);
}

.page-products .detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.page-products .detail-copy {
  order: 1;
}

.page-products .detail-media {
  order: 2;
}

.page-products .detail-lead {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0 0 24px;
}

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

.page-products .feature-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--page-border);
}

.page-products .feature-list li:last-child {
  border-bottom: none;
}

.page-products .feature-num {
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  color: var(--page-accent);
  min-width: 72px;
  display: block;
  letter-spacing: -0.02em;
}

.page-products .feature-list h4 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}

.page-products .feature-list p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.page-products .media-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--page-border-strong);
  box-shadow: var(--page-shadow);
  background: var(--surface);
}

.page-products .media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(109, 90, 240, 0.15) 0%, transparent 55%);
  pointer-events: none;
}

.page-products .media-frame img {
  width: 100%;
}

.page-products .version-steps {
  list-style: none;
  padding: 0;
  margin: 28px 0;
}

.page-products .version-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0 10px 20px;
  border-left: 2px solid var(--page-border);
  margin-left: 4px;
  position: relative;
}

.page-products .version-item::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 20px;
  width: 8px;
  height: 8px;
  background: var(--page-border-strong);
  border-radius: 50%;
}

.page-products .version-item.current::before {
  background: var(--page-accent);
  box-shadow: 0 0 0 3px rgba(255, 138, 30, 0.25);
}

.page-products .version-tag {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
  border: 1px solid var(--page-border);
  padding: 2px 10px;
  border-radius: 999px;
  white-space: nowrap;
  min-width: 58px;
  text-align: center;
}

.page-products .version-item.current .version-tag {
  color: var(--canvas);
  background: var(--gold);
  border-color: var(--gold);
}

.page-products .version-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

.page-products .fav-callout {
  background: var(--surface);
  border: 1px solid var(--page-border);
  box-shadow: var(--page-shadow);
  padding: 20px;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.page-products .fav-tip {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
}

.page-products .login-detail {
  background: linear-gradient(135deg, rgba(28, 27, 75, 0.45) 0%, rgba(11, 13, 23, 0.85) 100%);
  border-top: 1px solid var(--page-border);
  border-bottom: 1px solid var(--page-border);
}

.page-products .login-head .section-head {
  text-align: center;
  align-items: center;
}

.page-products .login-head .section-index {
  justify-content: center;
}

.page-products .login-path {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.page-products .path-arrow {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.page-products .path-step {
  flex: 1;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--page-border);
  box-shadow: var(--page-shadow);
  position: relative;
}

.page-products .step-num {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 16px;
  color: var(--canvas);
  background: var(--page-accent);
  margin-bottom: 12px;
}

.page-products .path-step h4 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}

.page-products .path-step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.page-products .path-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet);
  width: 100%;
  position: relative;
}

.page-products .path-connector svg {
  width: 100%;
  max-width: 140px;
  height: 28px;
}

.page-products .svg-hint {
  width: 100%;
}

.page-products .svg-hint img {
  width: 100%;
  border: 1px solid var(--page-border);
  box-shadow: var(--page-shadow);
}

.page-products .login-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
  align-items: center;
}

.page-products .login-stat {
  text-align: center;
  padding: 16px 8px;
  background: rgba(245, 197, 66, 0.05);
  border: 1px solid var(--page-border);
}

.page-products .login-stat .stat-num {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(22px, 3.8vw, 34px);
  font-weight: 800;
  color: var(--page-gold);
  line-height: 1;
  letter-spacing: -0.01em;
}

.page-products .login-stat .stat-num small {
  font-size: 0.5em;
  color: var(--page-gold);
}

.page-products .login-stat .stat-label {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 6px;
  display: block;
}

.page-products .login-cta {
  grid-column: 1 / -1;
  text-align: center;
}

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

.page-products .integration-media {
  position: relative;
}

.page-products .integration-media .media-frame {
  clip-path: polygon(0 0, 100% 0, 100% 92%, 88% 100%, 0 100%);
}

.page-products .integration-card {
  background: var(--raised);
  border: 1px solid var(--page-border-strong);
  padding: 20px;
  margin-top: -44px;
  margin-left: 16px;
  box-shadow: var(--page-shadow);
  position: relative;
  z-index: 2;
  max-width: 320px;
}

.page-products .integration-card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.page-products .cta-strip {
  padding: 56px 0 64px;
  background: linear-gradient(135deg, var(--deep) 0%, var(--canvas) 75%);
  border-top: 1px solid var(--page-border);
}

.page-products .cta-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

.page-products .cta-inner h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin: 14px 0 8px;
  line-height: 1.2;
  color: var(--ink);
}

.page-products .cta-inner p {
  color: var(--ink-soft);
  margin: 0;
}

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

@media (max-width: 767px) {
  .page-products .path-connector {
    height: 44px;
    width: 2px;
    margin: 0 auto;
  }

  .page-products .path-connector::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 2px;
    background: repeating-linear-gradient(180deg, var(--violet) 0 6px, transparent 6px 12px);
  }

  .page-products .path-connector svg {
    display: none;
  }

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

  .page-products .login-cta {
    grid-column: 1 / -1;
  }

  .page-products .bento-media {
    aspect-ratio: 16 / 10;
  }
}

@media (min-width: 768px) {
  .page-products .solutions-hero {
    padding: 44px 0 64px;
  }

  .page-products .hero-layout {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
  }

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

  .page-products .path-arrow {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .page-products .path-connector {
    flex: 0 0 120px;
    width: 120px;
  }

  .page-products .path-connector svg {
    max-width: 120px;
  }

  .page-products .cta-inner {
    grid-template-columns: 1.2fr auto;
    gap: 40px;
  }
}

@media (min-width: 992px) {
  .page-products .section {
    padding: 88px 0;
  }

  .page-products .overview-bento {
    column-gap: 28px;
  }

  .page-products .detail-layout {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }

  .page-products .detail-layout.reverse .detail-copy {
    order: 2;
  }

  .page-products .detail-layout.reverse .detail-media {
    order: 1;
  }

  .page-products .integration-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
  }

  .page-products .login-foot {
    display: flex;
    justify-content: center;
    gap: 24px;
  }

  .page-products .login-stat {
    min-width: 180px;
  }

  .page-products .login-cta {
    margin-left: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-products * {
    transition: none !important;
    animation: none !important;
  }

  .page-products .overview-bento .bento-card:hover {
    transform: none;
  }
}
