.page-products {
  background: var(--c-cloud);
  overflow-x: hidden;
}

.page-products .down-hero {
  position: relative;
  background: var(--c-deep-blue);
  color: var(--c-white);
  padding: var(--space-8) var(--container-padding) var(--space-16);
  overflow: hidden;
}

.page-products .down-hero::before {
  content: "";
  position: absolute;
  right: -140px;
  top: 12%;
  width: 420px;
  height: 420px;
  border: 4px solid rgba(244, 123, 32, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(245, 197, 66, 0.04), 0 0 0 100px rgba(245, 197, 66, 0.03);
  pointer-events: none;
}

.page-products .down-hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 28%;
  width: 220px;
  height: 220px;
  border: 3px solid rgba(55, 178, 164, 0.25);
  border-radius: 50%;
  pointer-events: none;
}

.page-products .down-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-width);
  margin: 0 auto;
}

.page-products .down-hero .breadcrumb {
  margin-bottom: var(--space-8);
  font-size: var(--fs-sm);
}

.page-products .down-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: color 0.3s ease;
}

.page-products .down-hero .breadcrumb a:hover {
  color: var(--c-gold);
}

.page-products .down-hero .breadcrumb__sep {
  margin: 0 var(--space-2);
  color: rgba(255, 255, 255, 0.4);
}

.page-products .down-hero .breadcrumb__current {
  color: var(--c-gold);
}

.page-products .down-hero__kicker {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-family: var(--font-number);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  color: var(--c-gold);
  text-transform: uppercase;
  margin: 0 0 var(--space-4);
}

.page-products .down-hero__kicker-line {
  display: inline-block;
  width: 36px;
  height: 3px;
  background: var(--c-orange);
}

.page-products .down-hero__title {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: var(--fs-h1);
  line-height: 1.15;
  margin: 0 0 var(--space-6);
  max-width: 10em;
}

.page-products .down-hero__lead {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  max-width: 40em;
  margin: 0 0 var(--space-8);
}

.page-products .down-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
  border-top: 2px solid rgba(255, 255, 255, 0.12);
  padding-top: var(--space-6);
  max-width: 400px;
}

.page-products .down-hero__stat {
  padding-right: var(--space-4);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.page-products .down-hero__stat:last-child {
  border-right: none;
}

.page-products .down-hero__stat-num {
  font-family: var(--font-number);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-orange);
  display: block;
  line-height: 1.2;
}

.page-products .down-hero__stat-label {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.55);
}

.page-products .app-band {
  position: relative;
  padding: var(--space-12) var(--container-padding);
}

.page-products .app-band--mobile {
  background: var(--c-deep-blue-2);
  color: var(--c-white);
}

.page-products .app-band--desktop {
  background: var(--c-white);
  color: var(--c-deep-blue);
  padding-top: var(--space-12);
}

.page-products .app-band__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

.page-products .app-band--mobile .app-band__visual {
  order: 1;
}

.page-products .app-band--mobile .app-band__content {
  order: 2;
}

.page-products .app-band--desktop .app-band__visual {
  order: 2;
}

.page-products .app-band--desktop .app-band__content {
  order: 1;
}

.page-products .app-band__visual {
  position: relative;
  line-height: 0;
}

.page-products .app-band__img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border: 4px solid var(--c-deep-blue);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-heavy);
}

.page-products .app-band--mobile .app-band__img {
  max-width: 280px;
  margin: 0 auto;
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0 8px rgba(245, 197, 66, 0.08), var(--shadow-heavy);
}

.page-products .app-band__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.page-products .app-band__index {
  font-family: var(--font-number);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--c-orange);
  opacity: 0.9;
}

.page-products .app-band__index--dark {
  color: var(--c-gold);
}

.page-products .app-band__content h2 {
  font-family: var(--font-headline);
  font-size: var(--fs-h2);
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
}

.page-products .app-band__lead {
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  border-left: 3px solid var(--c-orange);
  padding-left: var(--space-4);
}

.page-products .app-band--desktop .app-band__lead {
  color: var(--c-deep-blue);
  border-left-color: var(--c-gold);
}

.page-products .app-features {
  list-style: none;
  margin: var(--space-4) 0 0;
  padding: 0;
  display: grid;
  gap: var(--space-4);
}

.page-products .app-features__item {
  display: grid;
  gap: 2px;
  border-left: 2px solid rgba(255, 255, 255, 0.15);
  padding-left: var(--space-4);
}

.page-products .app-band--desktop .app-features__item {
  border-left-color: rgba(10, 27, 61, 0.15);
}

.page-products .app-features__item strong {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-gold);
}

.page-products .app-features__item span {
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
}

.page-products .app-band--desktop .app-features__item strong {
  color: var(--c-orange);
}

.page-products .app-band--desktop .app-features__item span {
  color: rgba(10, 27, 61, 0.7);
}

.page-products .app-band__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.page-products .tilt-sep {
  position: relative;
  height: 42px;
  background: var(--c-white);
  overflow: hidden;
}

.page-products .tilt-sep::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10%;
  width: 120%;
  height: 90px;
  background: var(--c-orange);
  transform: skewY(-2.5deg);
  opacity: 0.9;
  box-shadow: var(--shadow-orange);
}

.page-products .download-entry {
  position: relative;
  background: var(--c-deep-blue);
  color: var(--c-white);
  padding: var(--space-12) var(--container-padding);
  overflow: hidden;
}

.page-products .download-entry::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  border: 2px solid rgba(245, 197, 66, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.page-products .download-entry__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-products .download-entry__header {
  margin-bottom: var(--space-8);
}

.page-products .download-entry__header h2 {
  font-family: var(--font-headline);
  font-size: var(--fs-h2);
  font-weight: 900;
  margin: var(--space-4) 0;
  color: var(--c-white);
}

.page-products .download-entry__header p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 34em;
  line-height: 1.7;
  margin: 0;
}

.page-products .download-entry__link,
.page-products .compat__link {
  color: var(--c-gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 197, 66, 0.4);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-products .download-entry__link:hover,
.page-products .compat__link:hover {
  color: var(--c-orange);
  border-color: rgba(244, 123, 32, 0.5);
}

.page-products .download-entry__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

.page-products .download-qr {
  text-align: center;
  padding: var(--space-6);
  background: var(--c-white);
  border: 4px solid var(--c-deep-blue-3);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-heavy);
}

.page-products .download-qr img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto var(--space-4);
  border: 1px solid rgba(10, 27, 61, 0.1);
}

.page-products .download-qr__hint {
  font-family: var(--font-number);
  font-size: var(--fs-sm);
  color: var(--c-deep-blue);
  letter-spacing: 0.08em;
  margin: 0;
}

.page-products .download-plats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.page-products .download-card {
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.page-products .download-card:hover {
  border-color: var(--c-gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-gold);
}

.page-products .download-card__os {
  font-family: var(--font-headline);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--c-gold);
}

.page-products .download-card__src {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.page-products .download-card__link {
  font-size: var(--fs-xs);
  color: var(--c-orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(244, 123, 32, 0.4);
  align-self: flex-start;
  transition: color 0.3s ease;
}

.page-products .download-card__link:hover {
  color: var(--c-gold);
}

.page-products .version-log {
  background: var(--c-cloud);
  padding: var(--space-12) var(--container-padding) var(--space-16);
}

.page-products .version-log__inner {
  max-width: var(--container-width);
  margin: 0 auto;
}

.page-products .version-log__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
  margin-bottom: var(--space-8);
}

.page-products .version-log__media img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 2px solid var(--c-deep-blue);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-heavy);
}

.page-products .version-log__intro h2 {
  font-family: var(--font-headline);
  font-size: var(--fs-h2);
  font-weight: 900;
  color: var(--c-deep-blue);
  margin: var(--space-4) 0;
}

.page-products .version-log__intro p {
  color: rgba(10, 27, 61, 0.7);
  line-height: 1.7;
  margin: 0;
}

.page-products .version-timeline {
  display: grid;
  gap: var(--space-6);
}

.page-products .version-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  border: 2px solid var(--c-deep-blue);
  border-radius: var(--radius-sm);
  background: var(--c-white);
  padding: var(--space-6);
  box-shadow: var(--shadow-heavy);
}

.page-products .version-item__ver {
  font-family: var(--font-number);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-white);
  background: var(--c-deep-blue);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  align-self: start;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.page-products .version-item__body h3 {
  font-family: var(--font-headline);
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--c-deep-blue);
  margin: 0 0 var(--space-2);
}

.page-products .version-item__body p {
  font-size: var(--fs-sm);
  line-height: 1.65;
  color: rgba(10, 27, 61, 0.7);
  margin: 0;
}

.page-products .compat {
  background: var(--c-deep-blue-3);
  color: var(--c-white);
  padding: var(--space-12) var(--container-padding) var(--space-16);
}

.page-products .compat__inner {
  max-width: var(--container-width);
  margin: 0 auto;
}

.page-products .compat__header h2 {
  font-family: var(--font-headline);
  font-size: var(--fs-h2);
  font-weight: 900;
  margin: var(--space-4) 0;
}

.page-products .compat__header p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 32em;
  margin: 0;
  line-height: 1.7;
}

.page-products .compat__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
  margin: var(--space-8) 0;
}

.page-products .compat__visual img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
}

.page-products .compat__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-4);
}

.page-products .compat__list li {
  border-left: 3px solid var(--c-orange);
  padding-left: var(--space-4);
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.page-products .compat__list strong {
  font-family: var(--font-number);
  font-size: 1rem;
  color: var(--c-gold);
  margin-right: var(--space-2);
}

.page-products .compat__note {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.55);
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-6);
  margin: 0;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .page-products .down-hero {
    padding-top: var(--space-16);
    padding-bottom: var(--space-20);
  }

  .page-products .down-hero__title {
    font-size: var(--fs-display);
  }

  .page-products .app-band__inner {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: var(--space-12);
  }

  .page-products .app-band--desktop .app-band__inner {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  }

  .page-products .app-band--mobile .app-band__img {
    max-width: 300px;
  }

  .page-products .download-entry__body {
    grid-template-columns: minmax(220px, 280px) 1fr;
  }

  .page-products .download-plats {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-products .version-log__top {
    grid-template-columns: 1fr 1fr;
  }

  .page-products .compat__body {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .page-products .app-band {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
  }

  .page-products .app-features {
    grid-template-columns: 1fr 1fr;
  }

  .page-products .app-band--desktop {
    padding-top: var(--space-16);
  }

  .page-products .download-entry,
  .page-products .version-log,
  .page-products .compat {
    padding-top: var(--space-16);
    padding-bottom: var(--space-20);
  }
}
