.page-products {
  --page-gap: 2.25rem;
  background: var(--c-navy);
  color: var(--c-cream);
}

.page-products .breadcrumb {
  padding-top: 1.1rem;
}

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

.page-products .breadcrumb__list a {
  color: var(--c-mist);
  text-decoration: none;
  transition: color 0.25s ease;
}

.page-products .breadcrumb__list a:hover {
  color: var(--c-green);
}

.page-products .breadcrumb__list [aria-current="page"] {
  color: var(--c-green);
  font-weight: 600;
}

.page-products .product-hero {
  position: relative;
  padding: 3rem 0 3.5rem;
  overflow: hidden;
}

.page-products .product-hero::before {
  content: "";
  position: absolute;
  right: -14%;
  bottom: -22%;
  width: 82%;
  height: 58%;
  background: var(--c-green);
  opacity: 0.07;
  transform: skewX(-14deg);
  pointer-events: none;
}

.page-products .product-hero::after {
  content: "";
  position: absolute;
  top: 1.25rem;
  right: 0.75rem;
  width: 8.5rem;
  height: 8.5rem;
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 50%;
  pointer-events: none;
}

.page-products .product-hero__inner {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.page-products .product-hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.9rem, 8vw, 5.6rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0.75rem 0 1rem;
}

.page-products .product-hero__lede {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--c-mist);
  max-width: 42rem;
  margin: 0;
}

.page-products .product-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

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

.page-products .hero-device--laptop {
  position: relative;
  width: 84%;
  max-width: 340px;
  height: 210px;
  background: var(--c-navy-deep);
  border: 2px solid var(--c-green);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.page-products .hero-device--laptop::before {
  content: "";
  position: absolute;
  left: 10%;
  top: 16%;
  width: 62%;
  height: 10px;
  background: var(--c-green);
  border-radius: 99px;
}

.page-products .hero-device--laptop::after {
  content: "";
  position: absolute;
  left: 10%;
  top: 38%;
  width: 80%;
  height: 8px;
  background: var(--c-orange);
  opacity: 0.8;
  border-radius: 99px;
}

.page-products .hero-device--phone {
  position: absolute;
  right: 4%;
  bottom: 0;
  width: 92px;
  height: 168px;
  background: var(--c-navy-deep);
  border: 1px solid var(--c-mist);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.page-products .hero-device--phone::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 5px;
  background: var(--c-mist);
  opacity: 0.6;
  border-radius: 99px;
}

.page-products .hero-device--phone .hero-device__screen {
  width: 74px;
  height: 132px;
  background: linear-gradient(160deg, rgba(0, 255, 136, 0.16) 0%, rgba(0, 255, 136, 0.04) 100%);
  border-radius: 8px;
  border: 1px solid rgba(183, 197, 217, 0.18);
}

.page-products .hero-device--laptop .hero-device__base {
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 110%;
  height: 12px;
  background: linear-gradient(180deg, var(--c-navy) 0%, var(--c-navy-deep) 100%);
  border: 1px solid rgba(183, 197, 217, 0.4);
  border-radius: 4px 4px 10px 10px;
}

.page-products .app-shell {
  display: grid;
  gap: var(--page-gap);
  padding-top: 2rem;
}

.page-products .app-aside {
  display: grid;
  gap: 1.25rem;
  align-content: start;
}

.page-products .app-aside__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--c-navy-deep);
  border-left: 3px solid var(--c-green);
}

.page-products .app-aside__nav .kicker {
  flex-basis: 100%;
  margin-bottom: 0.35rem;
}

.page-products .app-aside__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--c-mist);
  text-decoration: none;
  padding: 0.35rem 0.7rem;
  border: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.page-products .app-aside__link span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-orange);
}

.page-products .app-aside__link:hover {
  color: var(--c-green);
  border-color: rgba(0, 255, 136, 0.25);
}

.page-products .app-aside__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.page-products .app-aside__stats .stat {
  text-align: center;
  padding: 0.85rem 0.35rem;
  background: var(--c-navy-deep);
  border-top: 3px solid transparent;
}

.page-products .app-aside__stats .stat:nth-child(1) {
  border-top-color: var(--c-green);
}

.page-products .app-aside__stats .stat:nth-child(2) {
  border-top-color: var(--c-orange);
}

.page-products .app-aside__stats .stat:nth-child(3) {
  border-top-color: var(--c-gold);
}

.page-products .app-aside .stat__num {
  font-size: 1.35rem;
  line-height: 1.1;
}

.page-products .app-aside .stat__label {
  display: block;
  font-size: 0.72rem;
  color: var(--c-mist);
  margin-top: 0.3rem;
}

.page-products .app-body {
  min-width: 0;
}

.page-products .app-section {
  padding: 2.75rem 0;
  border-bottom: 1px solid rgba(183, 197, 217, 0.16);
  scroll-margin-top: 6rem;
}

.page-products .app-section:first-child {
  padding-top: 0.5rem;
}

.page-products .app-section:last-child {
  border-bottom: 0;
}

.page-products .app-section__intro {
  color: var(--c-mist);
  line-height: 1.8;
  margin: 1rem 0 1.75rem;
  max-width: 54rem;
  font-size: 0.98rem;
}

.page-products .way-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0 2rem;
}

.page-products .way-switch__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  background: var(--c-navy-deep);
  border: 1px solid rgba(183, 197, 217, 0.24);
  color: var(--c-mist);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.page-products .way-switch__btn .way-switch__num {
  color: var(--c-orange);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
}

.page-products .way-switch__btn:hover,
.page-products .way-switch__btn:focus-visible {
  color: var(--c-green);
  border-color: var(--c-green);
  transform: translateY(-2px);
}

.page-products .way-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.25rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(183, 197, 217, 0.14);
  border-left: 4px solid var(--c-orange);
  box-shadow: 0 12px 30px rgba(2, 8, 20, 0.25);
  scroll-margin-top: 6rem;
}

.page-products .way-card .media {
  border: 1px solid rgba(183, 197, 217, 0.2);
}

.page-products .way-card__media {
  position: relative;
}

.page-products .way-card__content {
  position: relative;
  padding-top: 2.4rem;
}

.page-products .way-card__step {
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-head);
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--c-orange);
  opacity: 0.9;
}

.page-products .way-card__title {
  font-family: var(--font-head);
  font-size: 2rem;
  line-height: 1.1;
  margin: 0 0 0.75rem;
  padding-left: 4.2rem;
}

.page-products .way-card__desc {
  color: var(--c-mist);
  line-height: 1.75;
  margin-bottom: 1.15rem;
  font-size: 0.96rem;
}

.page-products .way-card__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.page-products .way-card__steps li {
  position: relative;
  padding-left: 1.85rem;
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--c-cream);
}

.page-products .way-card__steps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 12px;
  height: 12px;
  background: var(--c-green);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.page-products .feature-snapshot {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  margin: 0 0 1.75rem;
}

.page-products .snapshot-item {
  padding: 1.25rem 0.75rem;
  background: var(--c-navy-deep);
  border-top: 4px solid var(--c-green);
  text-align: center;
}

.page-products .snapshot-item:nth-child(2) {
  border-top-color: var(--c-orange);
}

.page-products .snapshot-item:nth-child(3) {
  border-top-color: var(--c-gold);
}

.page-products .snapshot-item:nth-child(4) {
  border-top-color: var(--c-mist);
}

.page-products .snapshot-item__num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--c-orange);
}

.page-products .snapshot-item__num .snapshot-item__unit {
  font-size: 0.92rem;
  font-weight: 600;
  margin-left: 0.25rem;
  color: var(--c-cream);
}

.page-products .snapshot-item__label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--c-mist);
}

.page-products .feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.page-products .feature-card {
  position: relative;
  padding: 1.6rem;
  background: var(--c-cream);
  color: var(--c-ink);
  border-left: 5px solid var(--c-green);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.page-products .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.page-products .feature-card--dark {
  background: var(--c-navy-deep);
  color: var(--c-cream);
  border-left-color: var(--c-orange);
}

.page-products .feature-card__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-green);
  background: rgba(0, 255, 136, 0.12);
  padding: 0.3rem 0.6rem;
  margin-bottom: 1rem;
}

.page-products .feature-card__badge--orange {
  color: var(--c-orange);
  background: rgba(255, 77, 0, 0.16);
}

.page-products .feature-card h3 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  margin: 0 0 0.55rem;
}

.page-products .feature-card p {
  font-size: 0.93rem;
  line-height: 1.7;
  margin: 0;
  color: inherit;
  opacity: 0.86;
}

.page-products .dashboard-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.page-products .dashboard-block__media {
  border: 1px solid rgba(0, 255, 136, 0.3);
  box-shadow: var(--shadow);
}

.page-products .dashboard-block__note {
  background: var(--c-navy-deep);
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--c-green);
  color: var(--c-mist);
  font-size: 0.92rem;
  line-height: 1.75;
}

.page-products .dashboard-block__note strong {
  color: var(--c-green);
}

.page-products .dev-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  margin: 1rem 0 2rem;
}

.page-products .dev-card {
  padding: 1.6rem;
  background: var(--c-navy-deep);
  border: 1px solid rgba(183, 197, 217, 0.16);
  border-bottom: 4px solid var(--c-mist);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.page-products .dev-card:hover {
  border-bottom-color: var(--c-green);
  transform: translateY(-3px);
}

.page-products .dev-card--green {
  border-bottom-color: var(--c-green);
}

.page-products .dev-card--green:hover {
  border-bottom-color: var(--c-orange);
}

.page-products .dev-card__icon {
  width: 56px;
  height: 52px;
  margin-bottom: 1.1rem;
  position: relative;
  border: 2px solid var(--c-green);
  border-radius: 8px;
  margin-inline: 0;
}

.page-products .dev-card__icon--phone {
  width: 30px;
  height: 54px;
  border-radius: 10px;
}

.page-products .dev-card__icon--phone::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 4px;
  background: var(--c-green);
  border-radius: 9px;
}

.page-products .dev-card__icon--phone::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: var(--c-green);
  border-radius: 50%;
}

.page-products .dev-card__icon--tablet {
  width: 52px;
  height: 42px;
  border-radius: 8px;
}

.page-products .dev-card__icon--tablet::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 4px;
  background: var(--c-orange);
  border-radius: 9px;
}

.page-products .dev-card__icon--laptop {
  width: 56px;
  height: 40px;
  border-radius: 6px 6px 0 0;
}

.page-products .dev-card__icon--laptop::before {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 68px;
  height: 8px;
  background: var(--c-mist);
  opacity: 0.6;
  border-radius: 2px;
}

.page-products .dev-card h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.page-products .dev-card p {
  font-size: 0.89rem;
  line-height: 1.65;
  color: var(--c-mist);
  margin-bottom: 1rem;
}

.page-products .dev-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.page-products .dev-card__list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--c-cream);
}

.page-products .dev-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 8px;
  height: 8px;
  background: var(--c-orange);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.page-products .sync-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--c-navy-deep);
  border: 1px solid rgba(183, 197, 217, 0.14);
  border-right: 4px solid var(--c-green);
}

.page-products .sync-block__media {
  border: 1px solid rgba(0, 255, 136, 0.25);
}

.page-products .sync-block__text h3 {
  font-family: var(--font-head);
  font-size: 1.9rem;
  margin-bottom: 0.75rem;
}

.page-products .sync-block__text p {
  color: var(--c-mist);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.page-products .timeline {
  margin: 2rem 0 1.75rem;
}

.page-products .app-journal-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 77, 0, 0.1);
  border: 1px solid rgba(255, 77, 0, 0.3);
}

.page-products .app-journal-cta p {
  margin: 0;
  color: var(--c-mist);
  font-size: 0.95rem;
}

.page-products .app-exit {
  margin: 3rem 0 2rem;
  padding: 2.5rem var(--gutter);
  background:
    linear-gradient(135deg, rgba(0, 255, 136, 0.14) 0%, rgba(255, 77, 0, 0.1) 100%),
    var(--c-navy-deep);
  border-top: 4px solid var(--c-green);
  border-bottom: 4px solid var(--c-orange);
  text-align: center;
}

.page-products .app-exit h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1;
  margin: 0 0 0.75rem;
}

.page-products .app-exit p {
  color: var(--c-mist);
  max-width: 42rem;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
  font-size: 0.98rem;
}

.page-products .app-exit__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .page-products .product-hero__inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  }

  .page-products .product-hero__art {
    height: 320px;
  }

  .page-products .app-shell {
    grid-template-columns: minmax(0, 230px) minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
  }

  .page-products .app-aside {
    position: sticky;
    top: 5rem;
  }

  .page-products .app-aside__nav {
    display: grid;
    gap: 0.4rem;
    padding: 1.25rem 1rem;
  }

  .page-products .app-aside__link {
    justify-content: space-between;
  }

  .page-products .way-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 2.5rem;
    padding: 2rem;
  }

  .page-products .way-card--reverse .way-card__media {
    order: 2;
  }

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

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

  .page-products .dashboard-block {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.6fr);
    align-items: center;
  }

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

  .page-products .sync-block {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-products *,
  .page-products *::before,
  .page-products *::after {
    transition-duration: 0.001s !important;
    animation-duration: 0.001s !important;
  }
}
