.page-products,
.page-products *,
.page-products *::before,
.page-products *::after{
  box-sizing:border-box;
}

.page-products{
  --pp-scan-height:120px;
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 12% -4%, rgba(106,76,147,.42), transparent 36%),
    radial-gradient(circle at 88% 18%, rgba(245,185,66,.08), transparent 30%),
    var(--color-deep-space);
  color:var(--color-white);
}

.page-products .page-products__breadcrumb{
  max-width:1200px;
  margin:0 auto;
  padding:18px 20px 0;
  font-size:14px;
}

.page-products .page-products__breadcrumb a{
  color:var(--color-mist);
  text-decoration:none;
  transition:color var(--transition);
}

.page-products .page-products__breadcrumb a:hover{
  color:var(--color-gold);
}

.page-products .page-products__breadcrumb .sky-breadcrumb__sep{
  margin:0 8px;
  color:var(--color-space-purple);
}

.page-products .page-products__breadcrumb span[aria-current]{
  color:var(--color-gold);
}

.page-products .page-products__hero{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

.page-products .page-products__hero-stage{
  position:relative;
  padding:42px 20px 60px;
  background:
    radial-gradient(circle at 18% 22%, rgba(106,76,147,.55), transparent 42%),
    radial-gradient(circle at 80% 76%, rgba(245,185,66,.16), transparent 38%),
    var(--grad-primary);
  clip-path:polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%);
  overflow:hidden;
}

.page-products .page-products__scanline{
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  background:repeating-linear-gradient(
    180deg,
    transparent 0px,
    transparent 3px,
    rgba(176,196,222,.05) 3px,
    rgba(176,196,222,.05) 4px
  );
  mix-blend-mode:screen;
}

.page-products .page-products__scanline::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-20%;
  height:var(--pp-scan-height);
  background:linear-gradient(180deg, transparent, rgba(245,185,66,.12), transparent);
  animation:pp-scan 7s linear infinite;
}

@keyframes pp-scan{
  0%{ top:-20%; }
  100%{ top:110%; }
}

.page-products .page-products__hero-layout{
  position:relative;
  z-index:1;
  display:grid;
  gap:32px;
  justify-items:center;
}

.page-products .page-products__phone-wrap{
  position:relative;
  animation:pp-float 6s ease-in-out infinite;
  transform:translateZ(0);
}

@keyframes pp-float{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-12px); }
}

.page-products .page-products__phone{
  display:flex;
  flex-direction:column;
  width:228px;
  height:468px;
  padding:14px 8px;
  border-radius:38px;
  border:1px solid rgba(176,196,222,.28);
  background:var(--color-deep-purple);
  box-shadow:
    0 0 0 6px rgba(26,27,77,.9),
    0 24px 60px rgba(6,11,30,.7),
    0 0 46px rgba(106,76,147,.5);
}

.page-products .page-products__phone-top{
  flex-shrink:0;
  height:24px;
  display:flex;
  justify-content:center;
  align-items:center;
  margin-bottom:8px;
}

.page-products .page-products__phone-speaker{
  width:80px;
  height:6px;
  border-radius:999px;
  background:rgba(176,196,222,.32);
}

.page-products .page-products__phone-screen{
  flex:1;
  min-height:0;
  display:block;
  width:100%;
  object-fit:cover;
  border-radius:24px;
  border:1px solid rgba(176,196,222,.18);
}

.page-products .page-products__hero-copy{
  max-width:560px;
  text-align:center;
}

.page-products .page-products__hero-kicker{
  display:inline-block;
  margin:0 0 16px;
  padding:6px 14px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--color-neon);
  border:1px solid rgba(57,255,20,.35);
  border-radius:999px;
  background:rgba(57,255,20,.06);
}

.page-products .page-products__hero h1{
  margin:0 0 14px;
  font-size:clamp(30px, 5vw, 48px);
  line-height:1.14;
  font-weight:900;
  text-shadow:0 0 34px rgba(59,42,140,.8);
}

.page-products .page-products__hero-version{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin:0 0 14px;
  padding:6px 14px;
  font-family:var(--font-mono);
  font-size:15px;
  color:var(--color-gold);
  background:rgba(245,185,66,.1);
  border-radius:999px;
}

.page-products .page-products__hero-version::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--color-neon);
  box-shadow:0 0 10px var(--color-neon);
  animation:pp-pulse 2s ease-in-out infinite;
}

@keyframes pp-pulse{
  0%,100%{ opacity:.5; transform:scale(.9); }
  50%{ opacity:1; transform:scale(1.15); }
}

.page-products .page-products__hero-desc{
  margin:0 0 24px;
  font-size:16px;
  line-height:1.75;
  color:var(--color-mist);
}

.page-products .page-products__hero-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
  margin-bottom:26px;
}

.page-products .page-products__btn-download{
  min-width:150px;
  cursor:pointer;
  animation:pp-breathe 2.8s ease-in-out infinite;
}

.page-products .page-products__btn-download + .page-products__btn-download{
  animation-delay:.7s;
}

@keyframes pp-breathe{
  0%,100%{ box-shadow:0 0 0 0 rgba(245,185,66,.35); }
  55%{ box-shadow:0 0 22px 6px rgba(245,185,66,.18); }
}

.page-products .page-products__hero-stats{
  list-style:none;
  margin:0 0 20px;
  padding:20px 0 0;
  border-top:1px solid rgba(106,76,147,.5);
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  text-align:center;
}

.page-products .page-products__hero-stats strong{
  display:block;
  font-family:var(--font-mono);
  font-size:clamp(22px, 3.4vw, 30px);
  line-height:1.1;
  color:var(--color-gold);
}

.page-products .page-products__hero-stats span{
  font-size:12px;
  color:var(--color-mist);
  letter-spacing:.12em;
}

.page-products .page-products__hero-note{
  margin:0;
  padding-left:12px;
  border-left:3px solid var(--color-neon);
  font-size:13px;
  line-height:1.7;
  color:rgba(176,196,222,.78);
  text-align:left;
}

.page-products .page-products__features{
  max-width:1200px;
  margin:0 auto;
  padding:64px 20px;
}

.page-products .page-products__section-head{
  margin-bottom:40px;
  text-align:center;
}

.page-products .page-products__section-tag{
  display:inline-block;
  margin-bottom:12px;
  padding:5px 14px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--color-neon);
  border:1px solid rgba(57,255,20,.22);
  border-radius:999px;
  background:rgba(57,255,20,.08);
}

.page-products .page-products__section-head h2{
  margin:0 0 10px;
  font-size:clamp(26px, 4vw, 36px);
  line-height:1.2;
  font-weight:900;
}

.page-products .page-products__section-desc{
  margin:0 auto;
  max-width:520px;
  font-size:15px;
  line-height:1.7;
  color:var(--color-mist);
}

.page-products .page-products__features-layout{
  display:grid;
  gap:24px;
}

.page-products .page-products__features-grid{
  display:grid;
  gap:16px;
}

.page-products .page-products__feature-card{
  position:relative;
  overflow:hidden;
  margin:0;
  padding:24px;
  background:linear-gradient(145deg, rgba(42,27,94,.78), rgba(26,27,77,.64));
  border:1px solid rgba(106,76,147,.45);
  border-radius:16px;
  transition:transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.page-products .page-products__feature-card:hover{
  transform:translateY(-4px);
  border-color:rgba(245,185,66,.55);
  box-shadow:0 18px 40px rgba(6,11,30,.45);
}

.page-products .page-products__feature-num{
  margin:0 0 10px;
  font-family:var(--font-mono);
  font-size:13px;
  letter-spacing:.14em;
  color:var(--color-gold);
}

.page-products .page-products__feature-card h3{
  margin:0 0 10px;
  font-size:20px;
  font-weight:800;
  line-height:1.3;
}

.page-products .page-products__feature-card p{
  margin:0;
  font-size:14px;
  line-height:1.7;
  color:var(--color-mist);
}

.page-products .page-products__features-media{
  position:relative;
  margin:0;
  overflow:hidden;
  border:1px solid rgba(106,76,147,.45);
  border-radius:18px;
}

.page-products .page-products__features-media img{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:3/2;
  object-fit:cover;
}

.page-products .page-products__features-media figcaption{
  padding:10px 16px;
  font-size:13px;
  color:var(--color-mist);
  background:rgba(11,27,59,.82);
}

.page-products .page-products__versions{
  position:relative;
  padding:64px 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(106,76,147,.28), transparent 54%),
    linear-gradient(180deg, rgba(11,27,59,1), rgba(19,20,62,.98));
}

.page-products .page-products__timeline{
  max-width:1200px;
  margin:0 auto;
}

.page-products .page-products__timeline-hint{
  margin:0 0 14px;
  font-size:12px;
  text-align:right;
  color:var(--color-space-purple);
}

.page-products .page-products__timeline-list{
  list-style:none;
  margin:0 0 28px;
  padding:0 0 8px;
  display:flex;
  gap:10px;
  overflow-x:auto;
  scroll-snap-type:x proximity;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:thin;
  scrollbar-color:rgba(245,185,66,.5) rgba(106,76,147,.2);
}

.page-products .page-products__timeline-item{
  flex:0 0 210px;
  scroll-snap-align:start;
  position:relative;
  padding:18px 14px;
  background:rgba(42,27,94,.55);
  border:1px solid rgba(106,76,147,.45);
  border-radius:14px;
}

.page-products .page-products__timeline-point{
  display:block;
  width:12px;
  height:12px;
  margin:0 0 10px;
  border-radius:50%;
  border:2px solid var(--color-gold);
  background:var(--color-deep-purple);
}

.page-products .page-products__timeline-item--active{
  border-color:rgba(57,255,20,.6);
  box-shadow:0 0 24px rgba(57,255,20,.12);
}

.page-products .page-products__timeline-item--active .page-products__timeline-point{
  background:var(--color-neon);
  border-color:var(--color-neon);
  box-shadow:0 0 12px rgba(57,255,20,.8);
}

.page-products .page-products__timeline-version{
  display:inline-block;
  margin-bottom:8px;
  padding:3px 12px;
  font-family:var(--font-mono);
  font-size:14px;
  font-weight:700;
  color:var(--color-gold);
  border:1px solid rgba(245,185,66,.3);
  border-radius:999px;
  background:rgba(245,185,66,.1);
}

.page-products .page-products__timeline-content{
  display:block;
  font-size:14px;
  line-height:1.65;
  color:var(--color-mist);
}

.page-products .page-products__timeline-media{
  margin:0;
  overflow:hidden;
  border:1px solid rgba(106,76,147,.4);
  border-radius:18px;
}

.page-products .page-products__timeline-media img{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:4/1;
  object-fit:cover;
}

.page-products .page-products__download{
  max-width:1200px;
  margin:0 auto;
  padding:64px 20px;
}

.page-products .page-products__download-panel{
  display:grid;
  gap:28px;
  padding:32px 22px;
  border:1px solid rgba(106,76,147,.5);
  border-radius:22px;
  background:
    radial-gradient(circle at 82% 18%, rgba(245,185,66,.14), transparent 34%),
    linear-gradient(145deg, rgba(26,27,77,.96), rgba(42,27,94,.72));
}

.page-products .page-products__download-copy{
  text-align:center;
}

.page-products .page-products__download-copy h2{
  margin:0 0 12px;
  font-size:clamp(26px, 4vw, 36px);
  font-weight:900;
}

.page-products .page-products__download-desc{
  margin:0 0 16px;
  font-size:15px;
  line-height:1.75;
  color:var(--color-mist);
}

.page-products .page-products__download-spec{
  display:inline-block;
  margin:0 0 20px;
  padding:6px 16px;
  font-size:13px;
  color:var(--color-mist);
  border:1px solid rgba(106,76,147,.45);
  border-radius:999px;
  background:rgba(11,27,59,.6);
}

.page-products .page-products__download-spec strong{
  color:var(--color-gold);
}

.page-products .page-products__download-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
}

.page-products .page-products__download-qrs{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
}

.page-products .page-products__qr-card{
  margin:0;
  padding:20px 14px;
  text-align:center;
  background:rgba(11,27,59,.55);
}

.page-products .page-products__qr-card img{
  display:block;
  width:100%;
  max-width:150px;
  aspect-ratio:1/1;
  object-fit:cover;
  margin:0 auto 12px;
  border:1px solid rgba(106,76,147,.5);
  border-radius:12px;
}

.page-products .page-products__qr-label{
  display:block;
  margin-bottom:4px;
  font-size:16px;
  font-weight:800;
}

.page-products .page-products__qr-dim{
  display:block;
  font-size:12px;
  color:var(--color-mist);
}

.page-products .page-products__outro{
  position:relative;
  margin-top:24px;
  overflow:hidden;
}

.page-products .page-products__outro img{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:4/1;
  object-fit:cover;
  filter:saturate(.85) brightness(.9);
}

.page-products .page-products__outro-text{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0;
  padding:0 20px;
  font-size:clamp(18px, 3vw, 28px);
  font-weight:900;
  letter-spacing:.18em;
  text-align:center;
  color:rgba(255,255,255,.92);
  text-shadow:0 0 26px rgba(59,42,140,.9), 0 2px 8px rgba(6,11,30,.9);
}

@media (min-width: 680px){
  .page-products .page-products__features-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (min-width: 900px){
  .page-products .page-products__hero-layout{
    grid-template-columns:minmax(0, .92fr) minmax(0, 1.08fr);
    align-items:center;
    gap:20px 48px;
    min-height:640px;
  }

  .page-products .page-products__phone{
    width:268px;
    height:548px;
  }

  .page-products .page-products__phone-wrap{
    justify-self:end;
  }

  .page-products .page-products__hero-copy{
    justify-self:start;
    text-align:left;
  }

  .page-products .page-products__hero-actions{
    justify-content:flex-start;
  }

  .page-products .page-products__hero-stats{
    text-align:left;
  }

  .page-products .page-products__hero-note{
    max-width:400px;
  }

  .page-products .page-products__features-layout{
    grid-template-columns:minmax(0, 1.25fr) minmax(280px, .75fr);
    align-items:stretch;
  }

  .page-products .page-products__timeline-hint{
    display:none;
  }

  .page-products .page-products__timeline-list{
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    gap:14px;
    overflow:visible;
  }

  .page-products .page-products__timeline-item{
    flex:none;
    padding:20px 16px;
  }

  .page-products .page-products__download-panel{
    grid-template-columns:1.05fr .95fr;
    align-items:center;
    padding:48px 42px;
  }

  .page-products .page-products__download-copy{
    text-align:left;
  }

  .page-products .page-products__download-links{
    justify-content:flex-start;
  }
}

@media (prefers-reduced-motion: reduce){
  .page-products .page-products__scanline::after,
  .page-products .page-products__phone-wrap,
  .page-products .page-products__btn-download,
  .page-products .page-products__hero-version::before{
    animation:none !important;
  }

  .page-products .page-products__phone-wrap{
    transform:none !important;
  }
}
