.page-products {
  --pfx-glow: rgba(0, 255, 194, 0.12);
  --pfx-flame-dim: rgba(255, 90, 60, 0.1);
  background: var(--bg-base);
  color: var(--text-primary);
  overflow-x: hidden;
}

.page-products .product-hero {
  position: relative;
  padding: 32px 0 64px;
  background:
    linear-gradient(155deg, rgba(0, 255, 194, 0.08) 0%, rgba(10, 14, 26, 0) 28%),
    linear-gradient(180deg, #0d1322 0%, #0a0e1a 100%);
}

.page-products .product-hero::after {
  content: "";
  position: absolute;
  right: -8%;
  top: 0;
  width: 58%;
  height: 100%;
  background: linear-gradient(115deg, transparent 0%, rgba(0, 255, 194, 0.05) 40%, rgba(0, 255, 194, 0.08) 100%);
  transform: skewX(-14deg);
  pointer-events: none;
}

.page-products .breadcrumb {
  margin-bottom: 32px;
}

.page-products .hero-grid {
  display: grid;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.page-products .hero-copy .mono-label {
  color: var(--neon);
}

.page-products .hero-copy h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 6vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 12px 0 20px;
}

.page-products .lead {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.75;
  max-width: 620px;
}

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

.page-products .btn-ghost {
  background: transparent;
  border-color: var(--surface-border);
  color: var(--text-primary);
}

.page-products .hero-note {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
}

.page-products .phone-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.page-products .phone-frame {
  position: relative;
  width: min(280px, 88%);
  background: #050810;
  border: 10px solid #1e2a3a;
  border-radius: 36px;
  overflow: hidden;
  box-shadow:
    0 0 0 2px #0a0e1a,
    0 24px 64px var(--pfx-glow),
    0 8px 24px rgba(0, 0, 0, 0.5);
}

.page-products .phone-screen {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 24px;
}

.page-products .phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 22px;
  background: #050810;
  border-radius: 14px;
  z-index: 2;
}

.page-products .why-section {
  padding: 72px 0 48px;
}

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

.page-products .section-head .mono-label {
  color: var(--neon);
}

.page-products .section-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  margin: 8px 0 12px;
}

.page-products .section-summary {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  max-width: 640px;
}

.page-products .compare-panel {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.page-products .compare-col {
  background: var(--bg-elevated);
  padding: 28px 24px;
  border-left: 3px solid var(--surface-border);
}

.page-products .compare-app {
  border-left-color: var(--neon);
  background: linear-gradient(145deg, rgba(0, 255, 194, 0.06), var(--bg-elevated) 60%);
}

.page-products .compare-col h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.page-products .compare-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-products .compare-col li {
  position: relative;
  padding: 10px 0 10px 20px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
  border-bottom: 1px solid rgba(30, 42, 58, 0.6);
}

.page-products .compare-col li:last-child {
  border-bottom: 0;
}

.page-products .compare-col li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 17px;
  width: 6px;
  height: 6px;
  background: var(--text-muted);
}

.page-products .compare-app li::before {
  background: var(--neon);
}

.page-products .weaknet-banner {
  display: grid;
  gap: 24px;
  margin-top: 40px;
  padding: 32px 0;
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
}

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

.page-products .weaknet-copy .mono-label {
  color: var(--flame);
}

.page-products .weaknet-copy h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin: 8px 0 12px;
}

.page-products .weaknet-copy p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 15px;
}

.page-products .features-section {
  padding: 48px 0 72px;
  background: linear-gradient(180deg, #0a0e1a 0%, #0d1526 40%, #0a0e1a 100%);
}

.page-products .features-layout {
  display: grid;
  gap: 40px;
}

.page-products .feature-list {
  display: grid;
  gap: 0;
  margin-top: 32px;
}

.page-products .feature-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--surface-border);
}

.page-products .feature-index {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--neon);
  line-height: 28px;
}

.page-products .feature-body h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 8px;
}

.page-products .feature-body p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.page-products .commute-shot {
  margin-top: 32px;
}

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

.page-products .image-caption {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.page-products .download-rail {
  align-self: start;
}

.page-products .rail-card {
  background: var(--bg-elevated);
  border: 1px solid var(--surface-border);
  border-top: 4px solid var(--neon);
  padding: 28px 24px;
  box-shadow: 0 16px 48px var(--pfx-glow);
}

.page-products .rail-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin: 8px 0 12px;
}

.page-products .rail-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 20px;
}

.page-products .rail-card .btn {
  width: 100%;
}

.page-products .rail-note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin: 16px 0 0;
  text-align: center;
}

.page-products .download-section {
  padding: 72px 0;
  background:
    linear-gradient(140deg, var(--pfx-flame-dim) 0%, transparent 40%),
    var(--bg-base);
}

.page-products .download-layout {
  display: grid;
  gap: 32px;
}

.page-products .qr-side {
  display: grid;
  gap: 24px;
}

.page-products .qr-panel {
  background: var(--bg-elevated);
  border: 1px solid var(--surface-border);
  padding: 32px 24px 24px;
  text-align: center;
}

.page-products .qr-code {
  display: inline-flex;
  padding: 12px;
  background: #0a0e1a;
  border: 1px solid var(--surface-border);
}

.page-products .qr-code svg {
  display: block;
  width: 200px;
  height: 200px;
  max-width: 100%;
}

.page-products .qr-panel > p {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-secondary);
  margin: 16px 0 0;
}

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

.page-products .store-panel .mono-label {
  color: var(--neon);
}

.page-products .store-panel h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 36px);
  margin: 8px 0 24px;
}

.page-products .store-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.page-products .store-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--surface-border);
}

.page-products .store-name {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--neon);
  min-width: 72px;
}

.page-products .store-desc {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: right;
}

.page-products .store-tip {
  background: rgba(0, 255, 194, 0.05);
  border-left: 3px solid var(--neon);
  padding: 16px 20px;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.7;
}

.page-products .changelog-section {
  padding: 72px 0 96px;
  background: linear-gradient(180deg, #0a0e1a 0%, #111827 100%);
}

.page-products .changelog-section .mono-label {
  color: var(--flame);
}

.page-products .timeline {
  margin-top: 40px;
  position: relative;
}

.page-products .timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--surface-border);
}

.page-products .timeline-item {
  position: relative;
  padding: 20px 0 20px 28px;
}

.page-products .timeline-item::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 28px;
  width: 11px;
  height: 11px;
  background: var(--bg-base);
  border: 2px solid var(--neon);
}

.page-products .timeline-marker {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--neon);
  margin-bottom: 6px;
}

.page-products .timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  margin: 0 0 8px;
}

.page-products .timeline-content p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.page-products .changelog-cta {
  margin-top: 56px;
  display: grid;
  gap: 24px;
  border: 1px solid var(--surface-border);
  background: var(--bg-elevated);
}

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

.page-products .cta-copy {
  padding: 0 24px 28px;
}

.page-products .cta-copy p {
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 16px;
}

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

.page-products .cta-links a {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border: 1px solid var(--surface-border);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.page-products .cta-links a:hover {
  border-color: var(--neon);
  color: var(--neon);
}

@media (min-width: 768px) {
  .page-products .hero-grid {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 48px;
    align-items: center;
  }

  .page-products .compare-panel {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .page-products .weaknet-banner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }

  .page-products .features-layout {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 48px;
  }

  .page-products .download-rail {
    position: sticky;
    top: 96px;
  }

  .page-products .download-layout {
    grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
    gap: 48px;
  }

  .page-products .timeline-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    padding: 24px 0 24px 32px;
  }

  .page-products .timeline-marker {
    margin: 0;
  }

  .page-products .changelog-cta {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 32px;
  }

  .page-products .cta-copy {
    padding: 0 24px 0 0;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .page-products [data-reveal] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .page-products [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}
