.page-products {
  --river-soft: rgba(14, 90, 138, 0.07);
  --river-line: rgba(14, 90, 138, 0.18);
  --torrent-soft: rgba(255, 107, 53, 0.12);
  --volt-soft: rgba(168, 225, 12, 0.14);
  --deep-glow: rgba(11, 59, 80, 0.85);
  font-family: var(--body-font);
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

.page-products .breadcrumb {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 1.25rem 1.25rem 0;
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  color: var(--slate);
}

.page-products .breadcrumb a {
  color: var(--river);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease-out);
}

.page-products .breadcrumb a:hover {
  border-bottom-color: var(--river);
}

.page-products .breadcrumb .sep {
  margin: 0 0.6rem;
  color: var(--slate);
  opacity: 0.6;
}

.page-products .page-section {
  padding: 3.5rem 1.25rem;
  max-width: var(--content-max);
  margin: 0 auto;
}

.page-products .section-heading {
  margin-bottom: 2.2rem;
}

.page-products .section-kicker {
  font-family: var(--mono-font);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--torrent);
  text-transform: uppercase;
  margin: 0 0 0.6rem;
}

.page-products .section-heading h2 {
  font-family: var(--heading-font);
  font-size: clamp(1.65rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 0.8rem;
  letter-spacing: -0.01em;
  display: inline-block;
  position: relative;
}

.page-products .section-heading h2::after {
  content: "";
  display: block;
  width: 24px;
  height: 6px;
  margin-top: 6px;
  background: linear-gradient(90deg, var(--torrent), var(--volt));
  border-radius: 3px;
}

.page-products .section-lead {
  color: var(--slate);
  font-size: 0.92rem;
  line-height: 1.8;
  max-width: 60ch;
  margin: 0;
}

.page-products .platform-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--mist) 0%, var(--paper) 42%, rgba(14, 90, 138, 0.03) 100%);
}

.page-products .platform-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 80%, rgba(14, 90, 138, 0.05) 0, transparent 32%),
    radial-gradient(circle at 85% 10%, rgba(168, 225, 12, 0.06) 0, transparent 30%);
  z-index: 1;
}

.page-products .platform-hero::after {
  content: "";
  position: absolute;
  top: -8%;
  right: -16%;
  width: 45%;
  height: 130%;
  background: linear-gradient(205deg, rgba(14, 90, 138, 0.1) 0%, transparent 55%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}

.page-products .hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.8rem;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 2.8rem 1.25rem 3.5rem;
}

.page-products .hero-eyebrow {
  font-family: var(--mono-font);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--river);
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.page-products .eyebrow-tag {
  display: inline-block;
  background: var(--volt);
  color: var(--ink);
  font-weight: 800;
  padding: 0.14rem 0.5rem;
  margin-right: 0.4rem;
  font-size: 0.68rem;
  transform: skewX(-8deg);
  border-radius: 2px;
}

.page-products .platform-hero h1 {
  font-family: var(--heading-font);
  font-size: clamp(2.25rem, 7vw, 3.4rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 0 0 1.2rem;
  max-width: 12em;
}

.page-products .hero-accent {
  color: var(--river);
}

.page-products .hero-lead {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.85;
  max-width: 54ch;
  margin-bottom: 1.4rem;
}

.page-products .query-hint {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px dashed var(--river-line);
  border-radius: 6px;
  padding: 0.6rem 0.9rem;
  margin-bottom: 1.6rem;
  max-width: 440px;
}

.page-products .query-hint-icon {
  font-size: 1.1rem;
  line-height: 1;
  color: var(--river);
}

.page-products .query-hint p {
  font-size: 0.84rem;
  margin: 0;
  color: var(--ink);
  line-height: 1.6;
}

.page-products .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  margin-bottom: 2.2rem;
}

.page-products .hero-about-link {
  color: var(--river);
  font-size: 0.88rem;
  text-decoration: none;
  margin-left: 0.2rem;
  padding-bottom: 3px;
  border-bottom: 2px solid var(--river);
  transition: color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.page-products .hero-about-link:hover {
  color: var(--torrent);
  border-bottom-color: var(--torrent);
}

.page-products .hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.7rem;
  max-width: 660px;
}

.page-products .hero-stats .data-stat {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--river-line);
  border-left: 4px solid var(--river);
  border-radius: 4px;
  padding: 0.75rem 1rem;
}

.page-products .stat-label {
  display: block;
  font-size: 0.74rem;
  color: var(--slate);
  margin-bottom: 0.3rem;
}

.page-products .stat-num {
  font-family: var(--mono-font);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
  display: block;
}

.page-products .hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}

.page-products .phone-frame {
  width: 100%;
  max-width: 290px;
  margin: 0 auto;
  background: var(--deep);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 22px 55px rgba(11, 59, 80, 0.2), 0 3px 10px rgba(11, 59, 80, 0.12);
  position: relative;
  z-index: 2;
}

.page-products .phone-notch {
  width: 40%;
  height: 5px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  margin: 0 auto 10px;
}

.page-products .phone-screen {
  background: linear-gradient(150deg, var(--mist) 0%, #fff 90%);
  border-radius: 26px;
  padding: 16px;
}

.page-products .screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.7rem;
}

.page-products .screen-title {
  font-family: var(--heading-font);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--ink);
}

.page-products .screen-round {
  font-family: var(--mono-font);
  font-size: 0.64rem;
  font-weight: 700;
  background: var(--river);
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 10px;
  letter-spacing: 0.06em;
}

.page-products .query-pill {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: #fff;
  border-radius: 20px;
  padding: 0.42rem 0.75rem;
  margin-bottom: 0.7rem;
  box-shadow: 0 2px 8px rgba(11, 59, 80, 0.06);
}

.page-products .query-icon {
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1;
}

.page-products .query-text {
  font-size: 0.7rem;
  color: var(--slate);
}

.page-products .chart-card {
  background: #fff;
  border-radius: 12px;
  padding: 0.9rem;
  box-shadow: 0 4px 14px rgba(11, 59, 80, 0.07);
}

.page-products .chart-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.page-products .chart-title {
  font-family: var(--heading-font);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--slate);
}

.page-products .venue-toggle {
  display: inline-flex;
  background: var(--paper);
  border-radius: 12px;
  padding: 2px;
}

.page-products .venue-option {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--slate);
  padding: 0.15rem 0.5rem;
  border-radius: 10px;
  cursor: default;
}

.page-products .venue-option.is-active {
  background: var(--river);
  color: #fff;
}

.page-products .bar-chart {
  width: 100%;
  height: auto;
  display: block;
}

.page-products .mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.7rem;
}

.page-products .mini-stat {
  background: var(--paper);
  border-radius: 8px;
  padding: 0.5rem 0.3rem;
  text-align: center;
}

.page-products .mini-stat span {
  display: block;
  font-size: 0.6rem;
  color: var(--slate);
  margin-bottom: 2px;
}

.page-products .mini-stat strong {
  font-family: var(--mono-font);
  font-size: 0.88rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.page-products .hero-wave {
  position: absolute;
  bottom: -30px;
  left: 5%;
  width: 90%;
  height: 90px;
  background: radial-gradient(ellipse at center, rgba(14, 90, 138, 0.08), transparent 70%);
  z-index: 1;
  filter: blur(2px);
}

.page-products .features-section {
  position: relative;
}

.page-products .features-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 28%;
  height: 5px;
  background: linear-gradient(90deg, var(--torrent), var(--volt));
  border-radius: 0 3px 3px 0;
}

.page-products .feature-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.page-products .feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.page-products .feature-item {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0.9rem;
  padding: 1.2rem 1.25rem 1.2rem 1.4rem;
  background: rgba(229, 240, 234, 0.55);
  border-radius: 6px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.page-products .feature-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 7px;
  height: 100%;
  background: var(--river);
  clip-path: polygon(0 0, 70% 0, 100% 100%, 0 100%);
  border-radius: 2px 0 0 2px;
}

.page-products .feature-item:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 16px rgba(11, 59, 80, 0.08);
}

.page-products .feature-num {
  font-family: var(--mono-font);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--torrent);
  line-height: 1.3;
}

.page-products .feature-content h3 {
  font-family: var(--heading-font);
  font-size: 1.02rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
}

.page-products .feature-content p {
  font-size: 0.86rem;
  color: var(--slate);
  line-height: 1.7;
  margin: 0;
}

.page-products .feature-visual .pic-frame,
.page-products .steps-visual .pic-frame,
.page-products .coverage-visual .pic-frame,
.page-products .mobile-preview .pic-frame,
.page-products .export-band .pic-frame {
  border-radius: 10px;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 8px 22px rgba(11, 59, 80, 0.1);
}

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

.page-products .quickstart-section {
  position: relative;
  background: linear-gradient(180deg, var(--mist) 0%, rgba(229, 240, 234, 0.35) 100%);
  border-top: 1px solid var(--river-line);
  border-bottom: 1px solid var(--river-line);
}

.page-products .quickstart-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--river), var(--river-light), var(--volt));
  opacity: 0.5;
}

.page-products .quickstart-section .container {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.page-products .steps-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

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

.page-products .step-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px dashed var(--river-line);
}

.page-products .step-item:last-child {
  border-bottom: none;
}

.page-products .step-number {
  font-family: var(--mono-font);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--river);
  background: rgba(14, 90, 138, 0.08);
  border-radius: 4px;
  padding: 0.35rem 0.4rem;
  text-align: center;
  align-self: start;
  transform: skewX(-6deg);
}

.page-products .step-body h3 {
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
}

.page-products .step-body p {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.7;
  margin: 0;
}

.page-products .quickstart-note {
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
  background: var(--volt-soft);
  border-left: 4px solid var(--volt);
  border-radius: 6px;
}

.page-products .quickstart-note p {
  font-size: 0.86rem;
  line-height: 1.7;
  margin: 0;
}

.page-products .steps-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.page-products .collect-demo {
  background: var(--deep);
  border-radius: 12px;
  padding: 1.15rem 1.25rem;
  color: #fff;
  position: relative;
}

.page-products .collect-tag {
  display: inline-block;
  font-family: var(--mono-font);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: var(--torrent);
  color: #fff;
  padding: 0.25rem 0.6rem;
  border-radius: 10px;
  margin-bottom: 0.75rem;
  transform: skewX(-6deg);
}

.page-products .collect-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-products .collect-row:last-of-type {
  border-bottom: none;
}

.page-products .collect-team {
  font-size: 0.85rem;
  font-weight: 600;
}

.page-products .collect-heart {
  color: var(--torrent);
  font-size: 1.25rem;
  line-height: 1;
  display: inline-block;
}

.page-products .collect-heart.is-filled {
  color: var(--volt);
}

.page-products .coverage-visual {
  margin-bottom: 2rem;
}

.page-products .coverage-card-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.page-products .coverage-item {
  background: rgba(229, 240, 234, 0.5);
  border-radius: 8px;
  padding: 1.3rem 1.35rem;
  border-top: 4px solid var(--river);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.page-products .coverage-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(11, 59, 80, 0.1);
}

.page-products .coverage-icon {
  font-size: 1.6rem;
  color: var(--torrent);
  display: block;
  margin-bottom: 0.6rem;
}

.page-products .coverage-item h3 {
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 0.6rem;
}

.page-products .coverage-item ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-products .coverage-item li {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.7;
  padding-left: 1rem;
  position: relative;
}

.page-products .coverage-item li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  background: var(--volt);
  border-radius: 1px;
}

.page-products .update-band {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  background: rgba(168, 225, 12, 0.12);
  border: 1px solid rgba(168, 225, 12, 0.25);
  border-radius: 8px;
}

.page-products .update-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--volt);
  box-shadow: 0 0 0 3px rgba(168, 225, 12, 0.2);
  animation: page-products-pulse 2s ease-in-out infinite;
}

.page-products .update-band p {
  font-size: 0.87rem;
  margin: 0;
  color: var(--ink);
}

.page-products .mobile-section {
  background: linear-gradient(150deg, var(--paper) 0%, var(--mist) 80%);
  border-top: 1px solid var(--river-line);
  border-bottom: 1px solid var(--river-line);
}

.page-products .mobile-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.page-products .mobile-preview .pic-frame {
  border-radius: 18px;
  overflow: hidden;
  max-width: 320px;
  margin: 0 auto;
  box-shadow: 0 16px 40px rgba(11, 59, 80, 0.16);
}

.page-products .mobile-content {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.page-products .mobile-feature {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  padding: 1.1rem 1.2rem;
  border-left: 4px solid var(--river);
}

.page-products .mobile-feature-tag {
  display: inline-block;
  font-family: var(--mono-font);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--torrent);
  background: var(--torrent-soft);
  padding: 0.2rem 0.55rem;
  border-radius: 10px;
  margin-bottom: 0.5rem;
}

.page-products .mobile-feature p {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.7;
  margin: 0;
}

.page-products .export-band {
  margin-top: 0.5rem;
}

.page-products .version-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.page-products .version-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  padding: 1.25rem 1.35rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--river-line);
  border-left: 5px solid var(--river);
  border-radius: 8px;
  transition: box-shadow 0.3s var(--ease-out);
}

.page-products .version-item:hover {
  box-shadow: 0 6px 18px rgba(11, 59, 80, 0.08);
}

.page-products .version-marker {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.page-products .version-tag {
  font-family: var(--mono-font);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--deep);
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}

.page-products .version-round {
  font-family: var(--mono-font);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--torrent);
  white-space: nowrap;
}

.page-products .version-body h3 {
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 800;
  margin: 0.15rem 0 0.35rem;
}

.page-products .version-body p {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.7;
  margin: 0;
}

.page-products .version-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: rgba(14, 90, 138, 0.05);
  border-radius: 8px;
}

.page-products .version-cta p {
  font-size: 0.88rem;
  margin: 0;
  color: var(--ink);
}

.page-products .help-band {
  background: linear-gradient(120deg, var(--deep) 0%, rgba(14, 90, 138, 0.88) 100%);
  color: #fff;
}

.page-products .help-band .container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.page-products .help-inner {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
}

.page-products .help-copy h2 {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  color: #fff;
}

.page-products .help-copy p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 56ch;
  margin: 0;
}

@keyframes page-products-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.15); }
}

@media (min-width: 900px) {
  .page-products .page-section {
    padding: 5rem 2rem;
  }

  .page-products .breadcrumb {
    padding: 1.5rem 2rem 0;
  }

  .page-products .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    padding: 4rem 2rem 5rem;
    gap: 3.5rem;
  }

  .page-products .hero-copy {
    padding-right: 1.5rem;
  }

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

  .page-products .feature-layout {
    grid-template-columns: 1fr 0.9fr;
    gap: 4rem;
  }

  .page-products .quickstart-section .container,
  .page-products .help-band .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .page-products .steps-layout {
    grid-template-columns: 1fr 0.85fr;
    gap: 4rem;
  }

  .page-products .coverage-card-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }

  .page-products .mobile-layout {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 3.5rem;
    align-items: center;
  }

  .page-products .mobile-preview .pic-frame {
    max-width: 380px;
  }

  .page-products .version-list {
    gap: 1.5rem;
  }

  .page-products .version-item {
    grid-template-columns: 180px 1fr;
    gap: 1.2rem;
  }

  .page-products .help-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-products .update-dot {
    animation: none;
  }

  .page-products .feature-item,
  .page-products .coverage-item,
  .page-products .version-item {
    transition: none;
  }
}
