.page-products {
  --p-gold: #D4AF37;
  --p-gold-soft: #F0D060;
  --p-orange: #FF6F00;
  --p-surface: #11281C;
  --p-bg-deep: #07130D;
  --p-line: rgba(212, 175, 55, 0.22);
  --p-muted: #A8C3A0;
  --p-shadow: rgba(0, 0, 0, 0.35);
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
}

.page-products .diagonal-rule {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, var(--p-line) 30%, var(--p-gold) 50%, var(--p-line) 70%, transparent);
  margin-top: 72px;
}

.page-products .download-hero {
  padding: calc(var(--header-h) + 56px) 0 72px;
  position: relative;
}

.page-products .download-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: repeating-linear-gradient(120deg, transparent 0 46px, rgba(212, 175, 55, 0.05) 46px 48px);
  clip-path: polygon(32% 0, 100% 0, 100% 100%, 58% 100%);
  pointer-events: none;
}

.page-products .download-hero__grid {
  display: grid;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.page-products .download-hero__content,
.page-products .download-hero__visual {
  position: relative;
  z-index: 1;
}

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

.page-products .breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.84rem;
}

.page-products .breadcrumb__link {
  color: var(--p-gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.page-products .breadcrumb__link:hover {
  color: var(--p-gold-soft);
}

.page-products .breadcrumb__item::after {
  content: "·";
  color: var(--p-muted);
  margin-left: 8px;
}

.page-products .breadcrumb__item:last-child::after {
  content: none;
}

.page-products .breadcrumb__current {
  color: var(--p-muted);
}

.page-products .trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--p-line);
  background: rgba(212, 175, 55, 0.08);
  color: var(--p-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.page-products .trust-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--p-gold);
  box-shadow: 0 0 12px var(--p-gold);
}

.page-products .download-hero h1 {
  margin: 20px 0 0;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.page-products .lead {
  margin: 22px 0 0;
  font-size: 1.04rem;
  line-height: 1.8;
  color: var(--color-muted);
  max-width: 570px;
}

.page-products .download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.page-products .btn--download {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--p-gold), #b8942a);
  color: #07130D;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
  animation: pageProductsPulse 3s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-products .btn--download:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--p-gold-soft), var(--p-gold));
}

.page-products .btn__label {
  font-size: 1.02rem;
}

.page-products .btn__hint {
  font-size: 0.76rem;
  opacity: 0.75;
  font-weight: 500;
}

.page-products .btn--ghost {
  display: inline-flex;
  align-items: center;
  padding: 16px 30px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--p-line);
  background: rgba(212, 175, 55, 0.06);
  color: var(--color-text);
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.page-products .btn--ghost:hover {
  transform: translateY(-3px);
  border-color: var(--p-gold);
  background: rgba(212, 175, 55, 0.12);
}

@keyframes pageProductsPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.35), 0 10px 30px rgba(212, 175, 55, 0.15);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(212, 175, 55, 0), 0 10px 30px rgba(212, 175, 55, 0.22);
  }
}

.page-products .download-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: var(--p-muted);
  font-size: 0.88rem;
}

.page-products .download-meta li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-products .download-meta li::before {
  content: "◆";
  color: var(--p-gold);
  font-size: 0.6rem;
}

.page-products .phone-frame {
  width: min(74vw, 300px);
  margin: 0 auto;
  padding: 14px;
  border-radius: 44px;
  background: linear-gradient(160deg, #182b20, #0a1a12 72%);
  border: 1px solid var(--p-line);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.14),
    0 20px 60px var(--p-shadow),
    0 0 80px rgba(212, 175, 55, 0.08);
  position: relative;
}

.page-products .phone-frame__inner {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 600 / 1000;
  background: var(--p-surface);
  border: 1px solid rgba(212, 175, 55, 0.14);
}

.page-products .phone-frame__inner::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  width: 88px;
  height: 22px;
  border-radius: var(--radius-pill);
  background: var(--p-bg-deep);
  transform: translateX(-50%);
  z-index: 2;
}

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

.page-products .phone-frame__caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--p-muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.page-products .phone-frame__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--p-gold);
}

.page-products .changelog-section,
.page-products .features-section,
.page-products .requirements-section,
.page-products .cta-band {
  padding: 76px 0 0;
}

.page-products .section__header {
  max-width: 820px;
  margin-bottom: 40px;
}

.page-products .section-kicker {
  margin: 0 0 10px;
  color: var(--p-gold);
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 0.84rem;
  text-transform: uppercase;
}

.page-products .section-title {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.22;
}

.page-products .section-lead {
  margin: 14px 0 0;
  color: var(--p-muted);
  line-height: 1.8;
  max-width: 640px;
}

.page-products .filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.page-products .filter-btn {
  border: 1px solid var(--p-line);
  background: rgba(212, 175, 55, 0.06);
  color: var(--p-muted);
  border-radius: var(--radius-pill);
  padding: 9px 22px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.page-products .filter-btn:hover {
  color: var(--color-text);
  border-color: var(--p-gold);
}

.page-products .filter-btn.is-active {
  background: var(--p-gold);
  color: #07130D;
  border-color: var(--p-gold);
}

.page-products .changelog-layout {
  display: grid;
  gap: 40px;
  align-items: start;
}

.page-products .timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.page-products .timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, var(--p-gold), rgba(212, 175, 55, 0.06));
}

.page-products .timeline__item {
  position: relative;
  padding: 0 0 42px 42px;
}

.page-products .timeline__item:last-child {
  padding-bottom: 0;
}

.page-products .timeline__item::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 3px solid var(--p-gold);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.45);
}

.page-products .timeline__date {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--p-gold);
  letter-spacing: 0.04em;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--p-line);
  border-radius: var(--radius-pill);
  padding: 4px 14px;
}

.page-products .timeline__title {
  margin: 14px 0 8px;
  font-size: 1.24rem;
  font-weight: 800;
  line-height: 1.3;
}

.page-products .timeline__body {
  margin: 0;
  color: var(--p-muted);
  line-height: 1.75;
}

.page-products .changelog-visual {
  margin: 0;
}

.page-products .changelog-visual__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--p-line);
  box-shadow: 0 14px 40px var(--p-shadow);
}

.page-products .changelog-visual__caption {
  margin-top: 14px;
  color: var(--p-muted);
  font-size: 0.85rem;
  text-align: center;
  letter-spacing: 0.04em;
}

.page-products .features-section {
  padding-top: 88px;
}

.page-products .feature-row {
  display: grid;
  gap: 40px;
  align-items: center;
  margin-bottom: 64px;
}

.page-products .feature-row__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--p-line);
  box-shadow: 0 14px 40px var(--p-shadow);
}

.page-products .feature-row__content h3 {
  margin: 14px 0 12px;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  line-height: 1.25;
}

.page-products .feature-row__content p {
  color: var(--p-muted);
  line-height: 1.8;
}

.page-products .feature-tag {
  display: inline-block;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--p-line);
  color: var(--p-gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.page-products .feature-tag--orange {
  background: rgba(255, 111, 0, 0.1);
  border-color: rgba(255, 111, 0, 0.32);
  color: var(--p-orange);
}

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

.page-products .feature-list li {
  position: relative;
  padding-left: 26px;
  color: var(--color-muted);
  line-height: 1.7;
}

.page-products .feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--p-gold);
  transform: rotate(45deg);
}

.page-products .compare-grid {
  display: grid;
  gap: 20px;
}

.page-products .compare-card {
  border-radius: var(--radius-lg);
  background: var(--p-surface);
  padding: 30px;
  border: 1px solid var(--p-line);
  box-shadow: 0 14px 40px var(--p-shadow);
}

.page-products .compare-card h4 {
  margin: 0 0 18px;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--p-gold);
}

.page-products .compare-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}

.page-products .compare-card li {
  position: relative;
  padding-left: 26px;
  color: var(--p-muted);
  line-height: 1.6;
}

.page-products .compare-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--p-gold);
  transform: rotate(45deg);
}

.page-products .compare-card--earlier {
  border-color: rgba(168, 195, 160, 0.16);
}

.page-products .compare-card--earlier h4 {
  color: var(--p-muted);
}

.page-products .compare-card--earlier li::before {
  background: var(--p-muted);
  border-radius: 50%;
  transform: none;
}

.page-products .requirements-grid {
  display: grid;
  gap: 44px;
  align-items: center;
}

.page-products .requirements-info__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--p-line);
  box-shadow: 0 14px 40px var(--p-shadow);
}

.page-products .requirements-info__note {
  margin: 18px 0 0;
  color: var(--p-muted);
  line-height: 1.8;
  text-align: center;
}

.page-products .num {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--p-gold);
}

.page-products .requirements-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}

.page-products .requirement-item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 4px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.page-products .requirement-item:last-child {
  border-bottom: 0;
}

.page-products .requirement-item dt {
  color: var(--p-muted);
}

.page-products .requirement-item dd {
  margin: 0;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.92rem;
  text-align: right;
}

.page-products .cta-band {
  padding-top: 64px;
  padding-bottom: 32px;
}

.page-products .cta-band__inner {
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse at top right, rgba(212, 175, 55, 0.16), transparent 62%),
    linear-gradient(135deg, var(--p-surface), var(--p-bg-deep));
  border: 1px solid var(--p-line);
  padding: 40px 28px;
  display: grid;
  gap: 28px;
  align-items: center;
  box-shadow: 0 24px 70px var(--p-shadow);
}

.page-products .cta-band__kicker {
  margin: 0 0 8px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--p-gold);
  font-weight: 800;
  text-transform: uppercase;
}

.page-products .cta-band h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
}

.page-products .cta-band__content p {
  margin: 12px 0 0;
  color: var(--p-muted);
  line-height: 1.75;
}

.page-products .btn--orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  border-radius: var(--radius-pill);
  background: var(--p-orange);
  color: #07130D;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(255, 111, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-products .btn--orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(255, 111, 0, 0.32);
}

.page-products .quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.page-products .quick-links a {
  color: var(--p-gold);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.page-products .quick-links a:hover {
  color: var(--p-gold-soft);
  border-bottom-color: var(--p-gold-soft);
}

.page-products [data-reveal].is-revealed {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

@media (min-width: 640px) {
  .page-products .changelog-layout {
    grid-template-columns: 1fr;
  }

  .page-products .cta-band__inner {
    padding: 48px 40px;
  }
}

@media (min-width: 820px) {
  .page-products .download-hero {
    padding: calc(var(--header-h) + 72px) 0 88px;
  }

  .page-products .download-hero__grid {
    grid-template-columns: 7fr 5fr;
    gap: 64px;
  }

  .page-products .changelog-layout {
    grid-template-columns: 7fr 5fr;
    gap: 56px;
  }

  .page-products .feature-row {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .page-products .feature-row--reverse .feature-row__visual {
    order: 2;
  }

  .page-products .compare-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .page-products .requirements-grid {
    grid-template-columns: 5fr 7fr;
    gap: 64px;
  }

  .page-products .cta-band__inner {
    grid-template-columns: 1fr auto;
    padding: 52px 56px;
  }

  .page-products .btn--orange {
    padding: 18px 38px;
  }
}

@media (min-width: 1080px) {
  .page-products .changelog-section,
  .page-products .features-section,
  .page-products .requirements-section,
  .page-products .cta-band {
    padding-top: 104px;
  }

  .page-products .download-hero__grid {
    gap: 88px;
  }

  .page-products .timeline__item {
    padding-bottom: 48px;
  }
}
