.page-products {
  --product-glow: rgba(0, 229, 255, 0.2);
  --product-orange-soft: rgba(255, 106, 0, 0.12);
  position: relative;
  overflow-x: hidden;
}

.page-products .breadcrumb {
  padding-top: calc(var(--header-height) + 28px);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 36px;
}

.page-products .breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--color-text-secondary);
}

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

.page-products .breadcrumb__item + .breadcrumb__item::before {
  content: "→";
  color: var(--color-cyan);
  opacity: 0.7;
}

.page-products .breadcrumb__link {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-base);
}

.page-products .breadcrumb__link:hover {
  color: var(--color-cyan);
}

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

.page-products .product-hero {
  padding: 16px 0 72px;
}

.page-products .product-hero__inner {
  display: grid;
  gap: 48px;
  align-items: center;
}

.page-products .product-hero__content {
  position: relative;
  z-index: 2;
}

.page-products .product-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0.02em;
  color: var(--color-text);
  text-transform: uppercase;
  margin: 14px 0 22px;
  max-width: 640px;
}

.page-products .product-hero__title::after {
  content: "";
  display: block;
  width: 76px;
  height: 4px;
  margin-top: 22px;
  background: linear-gradient(90deg, var(--color-cyan), var(--color-green), var(--color-orange));
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.page-products .product-hero__desc {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--color-text-secondary);
  max-width: 640px;
  margin-bottom: 30px;
}

.page-products .product-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.page-products .product-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 540px;
}

.page-products .hero-stat {
  padding-left: 14px;
  border-left: 2px solid var(--color-cyan);
}

.page-products .hero-stat:nth-child(2) {
  border-left-color: var(--color-green);
}

.page-products .hero-stat:nth-child(3) {
  border-left-color: var(--color-orange);
}

.page-products .hero-stat__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}

.page-products .hero-stat__label {
  display: block;
  margin-top: 4px;
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  letter-spacing: 0.06em;
}

.page-products .product-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 340px;
}

.page-products .app-emblem {
  position: relative;
  width: 280px;
  max-width: 100%;
  padding: 28px;
}

.page-products .app-emblem__icon {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 46px;
  box-shadow: 0 0 70px var(--product-glow), 0 0 160px rgba(0, 229, 255, 0.08);
  transform: rotate(-4deg);
  border: 1px solid rgba(0, 229, 255, 0.28);
}

.page-products .app-emblem__halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260px;
  height: 260px;
  transform: translate(-50%, -50%) rotate(24deg);
  border: 1px solid rgba(0, 229, 255, 0.16);
  border-radius: 24%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.12), rgba(75, 0, 130, 0.08) 40%, transparent 70%);
}

.page-products .app-emblem__caption {
  position: absolute;
  right: 0;
  top: 12px;
  writing-mode: vertical-rl;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--color-text-secondary);
  text-transform: uppercase;
}

.page-products .page-products__stream {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-cyan), var(--color-green), transparent);
  transform: skewX(-12deg);
  opacity: 0.4;
}

.page-products .feature-stage {
  display: grid;
  gap: 72px;
  margin-top: 44px;
}

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

.page-products .feature-row__media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-products .feature-row__body h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.2;
  margin: 12px 0 16px;
  color: var(--color-text);
  position: relative;
}

.page-products .feature-row__body h3::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 26px;
  margin-right: 8px;
  vertical-align: -4px;
  background: var(--color-cyan);
  clip-path: polygon(0 0, 100% 30%, 80% 100%, 0 70%);
}

.page-products .feature-row--reverse .feature-row__body h3::before {
  background: var(--color-green);
}

.page-products .feature-row--wide .feature-row__body h3::before {
  background: var(--color-orange);
}

.page-products .feature-row__body p {
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

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

.page-products .feature-list li {
  position: relative;
  padding-left: 22px;
  color: var(--color-text);
  font-size: 0.92rem;
  line-height: 1.6;
}

.page-products .feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 10px;
  height: 10px;
  background: var(--color-green);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.page-products .phone-shell {
  position: relative;
  width: 280px;
  max-width: 100%;
  background: var(--color-bg);
  border: 2px solid rgba(0, 229, 255, 0.2);
  border-radius: 36px;
  padding: 10px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 80px rgba(0, 229, 255, 0.08);
  margin-inline: auto;
}

.page-products .phone-shell__top {
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-products .phone-shell__top span {
  width: 68px;
  height: 6px;
  border-radius: 8px;
  background: rgba(0, 229, 255, 0.24);
}

.page-products .phone-shell__screen {
  aspect-ratio: 1 / 2;
  border-radius: 20px;
  overflow: hidden;
  background: var(--color-bg-elev);
  border: 1px solid rgba(0, 229, 255, 0.12);
}

.page-products .phone-shell__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.page-products .wide-frame {
  position: relative;
  width: 100%;
  max-width: 640px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

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

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

.page-products .version-timeline {
  position: relative;
  max-width: 820px;
  margin: 52px auto 0;
  padding-left: 44px;
}

.page-products .version-timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-cyan), var(--color-green), var(--color-orange), transparent);
  opacity: 0.6;
}

.page-products .version-item {
  position: relative;
  padding: 0 0 40px 24px;
}

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

.page-products .version-item__year {
  position: absolute;
  left: -54px;
  top: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-bg);
  border: 2px solid var(--color-cyan);
  color: var(--color-cyan);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-align: center;
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.12);
}

.page-products .version-item--current .version-item__year {
  border-color: var(--color-green);
  color: var(--color-green);
  box-shadow: 0 0 30px rgba(57, 255, 20, 0.22);
}

.page-products .version-item__detail h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--color-text);
  line-height: 1.3;
}

.page-products .version-item__detail p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

.page-products .version-guide-link {
  text-align: center;
  margin-top: 36px;
}

.page-products .version-guide-link a {
  color: var(--color-cyan);
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 1px dotted var(--color-cyan);
  transition: color var(--transition-base), border-color var(--transition-base);
}

.page-products .version-guide-link a:hover {
  color: var(--color-green);
  border-color: var(--color-green);
}

.page-products .compat-grid {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.page-products .compat-item {
  position: relative;
  background: rgba(10, 14, 26, 0.45);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-cyan);
  border-radius: 10px;
  padding: 24px;
  overflow: hidden;
  backdrop-filter: blur(4px);
}

.page-products .compat-item:nth-child(2) {
  border-left-color: var(--color-green);
}

.page-products .compat-item:nth-child(3) {
  border-left-color: var(--color-orange);
}

.page-products .compat-item h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 0 10px;
  color: var(--color-text);
}

.page-products .compat-item p {
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
  color: var(--color-text-secondary);
}

.page-products .compat-cert {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  justify-content: center;
}

.page-products .compat-cert__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 40px;
  background: rgba(57, 255, 20, 0.08);
  border: 1px solid rgba(57, 255, 20, 0.26);
  color: var(--color-text);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

.page-products .compat-cert__item::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green);
}

.page-products .download-access {
  position: relative;
}

.page-products .download-access__inner {
  display: grid;
  gap: 40px;
  align-items: center;
}

.page-products .download-access__visual {
  display: flex;
  justify-content: center;
}

.page-products .qr-panel {
  position: relative;
  padding: 22px;
  background: rgba(10, 14, 26, 0.7);
  border-radius: 20px;
  border: 1px solid rgba(0, 229, 255, 0.24);
  box-shadow: 0 0 80px rgba(0, 229, 255, 0.12);
  text-align: center;
}

.page-products .qr-panel img {
  display: block;
  width: 240px;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.page-products .qr-panel__note {
  margin: 14px 0 2px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--color-cyan);
  letter-spacing: 0.14em;
}

.page-products .download-access__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  margin: 10px 0 16px;
  color: var(--color-text);
}

.page-products .download-access__content > p {
  color: var(--color-text-secondary);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 0 24px;
  font-size: 0.95rem;
}

.page-products .download-access__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.page-products .download-access__meta {
  display: grid;
  gap: 8px;
}

.page-products .floating-download {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 80px;
  background: linear-gradient(135deg, var(--color-orange), #d95500);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 30px rgba(255, 106, 0, 0.35);
  transform: rotate(-2deg);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.page-products .floating-download:hover {
  transform: rotate(0deg) translateY(-2px);
  box-shadow: 0 12px 42px rgba(255, 106, 0, 0.5);
}

.page-products .floating-download__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 14px;
  line-height: 1;
}

@media (min-width: 768px) {
  .page-products .product-hero__inner {
    grid-template-columns: 1.4fr 1fr;
    gap: 40px 64px;
  }

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

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

  .page-products .feature-row--reverse .feature-row__body {
    order: 1;
  }

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

  .page-products .compat-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .page-products .download-access__inner {
    grid-template-columns: 320px 1fr;
    gap: 56px;
  }
}

@media (min-width: 1100px) {
  .page-products .product-hero {
    padding-top: 40px;
  }

  .page-products .product-hero__inner {
    gap: 0 80px;
  }

  .page-products .feature-stage {
    gap: 96px;
  }

  .page-products .feature-row {
    gap: 64px;
  }
}
