.page-products {
  background:
    radial-gradient(1200px 520px at 88% -5%, rgba(124, 92, 252, 0.10), transparent 60%),
    radial-gradient(900px 480px at 0% 8%, rgba(0, 229, 255, 0.07), transparent 55%),
    var(--bg-base);
  color: var(--text-mid);
  overflow-x: hidden;
}

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

.page-products .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  padding-top: 88px;
  padding-bottom: 16px;
  font-size: 14px;
  color: var(--text-low);
}

.page-products .breadcrumb a {
  color: var(--text-mid);
  text-decoration: none;
  transition: color var(--dur-fast) ease;
}

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

.page-products .breadcrumb-sep {
  color: var(--border-subtle);
}

.page-products .breadcrumb [aria-current="page"] {
  color: var(--text-high);
  font-weight: 600;
}

.page-products .hero-strip {
  display: grid;
  gap: 32px;
  align-items: center;
  padding: 36px 0 64px;
}

.page-products .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

.page-products .section-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent-cyan);
}

.page-products .hero-copy h1 {
  margin: 0 0 18px;
  max-width: 760px;
  font-family: var(--font-headline);
  font-size: clamp(38px, 6vw, 58px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: var(--text-high);
}

.page-products .page-lead {
  margin-bottom: 24px;
  max-width: 640px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-mid);
}

.page-products .hero-meta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(0, 229, 255, 0.22);
  border-radius: var(--radius-pill);
  background: var(--accent-glow);
  color: var(--accent-cyan);
  font-size: 13px;
  letter-spacing: 0.06em;
}

.page-products .hero-phone-area {
  position: relative;
}

.page-products .phone-shell {
  width: min(320px, 90vw);
  margin: 0 auto;
  padding: 14px;
  border: 1px solid var(--border-subtle);
  border-radius: 44px;
  background: linear-gradient(165deg, var(--bg-overlay), #0A101C);
  box-shadow:
    0 0 0 4px rgba(0, 229, 255, 0.03),
    0 28px 60px rgba(0, 0, 0, 0.5),
    0 0 70px rgba(0, 229, 255, 0.06);
  transform: rotate(1.2deg);
}

.page-products .phone-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 10px 10px;
  font-size: 11px;
  color: var(--text-low);
}

.page-products .phone-screen {
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: 26px;
  background: var(--bg-surface);
}

.page-products .phone-entry {
  display: flex;
  gap: 8px;
  padding: 12px 12px 8px;
}

.page-products .phone-entry-btn {
  flex: 1;
  padding: 7px 6px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-high);
  background: var(--accent-glow);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: var(--radius-pill);
}

.page-products .phone-entry-btn + .phone-entry-btn {
  background: rgba(124, 92, 252, 0.16);
  border-color: rgba(124, 92, 252, 0.35);
}

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

.page-products .phone-home {
  width: 120px;
  height: 4px;
  margin: 12px auto 4px;
  border-radius: 2px;
  background: var(--border-subtle);
}

.page-products .hero-caption {
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
  color: var(--text-low);
}

.page-products .entry-band {
  margin: 8px 0 0;
  padding: 44px 0;
  border-block: 1px solid var(--border-subtle);
  background: linear-gradient(120deg, rgba(0, 229, 255, 0.05), rgba(124, 92, 252, 0.06)), var(--bg-surface);
}

.page-products .entry-band-grid {
  display: grid;
  gap: 24px;
}

.page-products .entry-band-copy p {
  max-width: 520px;
  line-height: 1.7;
}

.page-products .entry-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-products .entry-list li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding: 14px 16px;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  background: var(--bg-base);
  color: var(--text-mid);
  font-size: 15px;
}

.page-products .entry-list .mono {
  flex: 0 0 22px;
  font-size: 13px;
  color: var(--accent-cyan);
}

.page-products .modules-section {
  padding-top: 72px;
}

.page-products .filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 20px;
}

.page-products .module-cards {
  display: grid;
  gap: 16px;
}

.page-products .module-card {
  position: relative;
}

.page-products .module-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, transparent 50%, rgba(0, 229, 255, 0.1) 50%);
  border-bottom-right-radius: 20px;
  pointer-events: none;
}

.page-products .glass-card {
  padding: 24px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008));
  transition: transform var(--dur-slow) var(--ease-out), border-color var(--dur-slow) var(--ease-out);
}

.page-products .glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 255, 0.3);
}

.page-products .module-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: var(--text-high);
}

.page-products .module-card p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-mid);
}

.page-products .module-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 16px 0 20px;
}

.page-products .module-stats div {
  padding: 10px 6px;
  text-align: center;
  background: var(--bg-overlay);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
}

.page-products .module-stats dt {
  margin-bottom: 4px;
  font-size: 11px;
  color: var(--text-low);
}

.page-products .module-stats dd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-high);
}

.page-products .scorer-guide {
  padding: 72px 0 40px;
}

.page-products .scorer-layout {
  display: grid;
  gap: 28px;
  align-items: center;
}

.page-products .scorer-copy p {
  margin-bottom: 18px;
  max-width: 560px;
  line-height: 1.7;
}

.page-products .step-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-products .step-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  background: var(--bg-surface);
  color: var(--text-mid);
  font-size: 15px;
}

.page-products .step-list .mono {
  width: 24px;
  font-size: 13px;
  color: var(--accent-cyan);
}

.page-products .scorer-figure {
  margin: 0;
}

.page-products .scorer-figure img {
  width: 100%;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
}

.page-products .caption {
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  color: var(--text-low);
}

.page-products .round-visual {
  padding: 20px 0 40px;
}

.page-products .round-visual-inner {
  display: grid;
  gap: 24px;
  align-items: center;
}

.page-products .round-figure-copy p {
  max-width: 560px;
  line-height: 1.7;
}

.page-products .round-figure {
  margin: 0;
}

.page-products .round-figure img {
  width: 100%;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
}

.page-products .sync-section {
  padding: 60px 0 72px;
}

.page-products .sync-head {
  margin-bottom: 28px;
}

.page-products .sync-head .section-desc {
  max-width: 640px;
}

.page-products .sync-layout {
  display: grid;
  gap: 28px;
  align-items: center;
}

.page-products .sync-figure {
  margin: 0;
}

.page-products .sync-figure img {
  width: 100%;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
}

.page-products .sync-batch {
  padding: 22px;
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 20px;
  background: linear-gradient(150deg, var(--bg-overlay), #0C1220);
}

.page-products .sync-batch-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-low);
}

.page-products .sync-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-cyan);
  font-size: 11px;
}

.page-products .sync-live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
  animation: page-products-pulse 1.6s infinite;
}

.page-products .sync-batch-num {
  display: block;
  margin: 14px 0 10px;
  font-size: 56px;
  line-height: 1.1;
  color: var(--text-high);
}

.page-products .sync-batch p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-mid);
}

.page-products .sync-list {
  list-style: none;
  margin: 20px 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-products .sync-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 13px 16px;
  font-size: 15px;
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  background: var(--bg-surface);
}

.page-products .sync-list .mono {
  font-size: 12px;
  color: var(--accent-cyan);
}

.page-products .sync-note {
  padding: 14px 16px;
  border-left: 3px solid var(--accent-cyan);
  border-radius: 0 14px 14px 0;
  background: var(--accent-glow);
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.6;
}

.page-products .plan-section {
  padding: 60px 0 88px;
}

.page-products .plan-grid {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.page-products .plan-card {
  display: flex;
  flex-direction: column;
}

.page-products .plan-card h3 {
  margin: 0 0 6px;
  font-size: 20px;
  color: var(--text-high);
}

.page-products .plan-price {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 4px 10px;
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: var(--radius-pill);
  background: var(--accent-glow);
  color: var(--accent-cyan);
  font-size: 13px;
}

.page-products .plan-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.page-products .plan-points li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--text-mid);
}

.page-products .plan-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-family: var(--font-mono);
  font-size: 13px;
}

.page-products .plan-card--hot {
  border-color: rgba(0, 229, 255, 0.3);
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.08);
}

.page-products .plan-comparison {
  margin-top: 28px;
}

.page-products .compare-row {
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  background: var(--bg-surface);
}

.page-products .compare-row summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--text-high);
  transition: background var(--dur-fast) ease;
}

.page-products .compare-row summary::-webkit-details-marker {
  display: none;
}

.page-products .compare-row summary:hover {
  background: var(--accent-glow);
}

.page-products .compare-row summary .mono {
  font-weight: 400;
  font-size: 12px;
  color: var(--text-low);
}

.page-products .compare-row summary::after {
  content: "+";
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 20px;
  line-height: 1;
  color: var(--accent-cyan);
}

.page-products .compare-row[open] summary::after {
  content: "−";
}

.page-products .compare-body {
  display: grid;
  gap: 12px;
  padding: 0 20px 20px;
}

.page-products .compare-body p {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  background: var(--bg-base);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-mid);
}

.page-products .api-figure {
  margin: 32px 0 0;
}

.page-products .api-figure img {
  width: 100%;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
}

.page-products .plan-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding: 28px;
  border: 1px dashed var(--border-subtle);
  border-radius: 20px;
  text-align: center;
}

.page-products .plan-contact p {
  margin: 0;
  color: var(--text-mid);
}

.page-products .plan-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

@keyframes page-products-pulse {
  0%,
  100% {
    opacity: 0.5;
    box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.4);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 0 6px rgba(0, 229, 255, 0);
  }
}

@media (min-width: 720px) {
  .page-products .entry-band-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

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

  .page-products .round-visual-inner {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

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

  .page-products .hero-phone-area {
    padding-right: 20px;
  }

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

  .page-products .scorer-layout {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .page-products .sync-layout {
    grid-template-columns: 0.85fr 1.15fr;
  }

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