.page-products {
  --pp-phone-frame: 288px;
  --pp-phone-pad: 14px;
  position: relative;
  background: var(--night-blue);
  color: var(--paper-white);
  overflow-x: clip;
}

.page-products .pp-hero {
  position: relative;
  padding: calc(var(--header-height-mobile) + 40px) 0 60px;
  background:
    radial-gradient(1200px 400px at 85% -10%, rgba(0, 229, 255, .18), transparent 60%),
    linear-gradient(160deg, var(--night-blue) 0%, #0a1e3a 45%, var(--pitch-green) 130%);
  overflow: hidden;
}

.page-products .pp-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(115deg, transparent 0%, transparent 44%, rgba(198, 255, 0, .12) 44%, rgba(198, 255, 0, .12) 48%, transparent 48%, transparent 72%, rgba(255, 107, 0, .16) 72%, rgba(255, 107, 0, .16) 76%, transparent 76%);
  pointer-events: none;
}

.page-products .breadcrumb {
  position: relative;
  z-index: 2;
  margin-bottom: 32px;
}

.page-products .breadcrumb-link {
  color: var(--cyan-pulse);
  text-decoration: none;
  font-size: 14px;
}

.page-products .breadcrumb-link:hover {
  color: var(--lime-flash);
  text-decoration: underline;
}

.page-products .breadcrumb-current {
  color: var(--muted-gray);
  font-size: 14px;
}

.page-products .pp-hero-layout {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.page-products .pp-hero-copy {
  max-width: 560px;
}

.page-products .pp-hero-eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-data);
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan-pulse);
}

.page-products .pp-hero h1 {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: 44px;
  line-height: 1.06;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--paper-white);
}

.page-products .pp-hero-lead {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(245, 247, 250, .84);
}

.page-products .pp-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 20px;
}

.page-products .pp-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-products .pp-phone-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 12px;
}

.page-products .pp-tip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.page-products .pp-tip-text {
  font-family: var(--font-data);
  font-size: 12px;
  line-height: 1.5;
  color: var(--paper-white);
  background: rgba(11, 29, 58, .92);
  border: 1px solid rgba(0, 229, 255, .35);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.page-products .pp-tip-dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime-flash);
  box-shadow: 0 0 0 6px rgba(198, 255, 0, .15);
}

.page-products .pp-phone {
  position: relative;
  width: var(--pp-phone-frame);
  padding: var(--pp-phone-pad);
  background: linear-gradient(145deg, #2c3a55, #0d1426);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 54px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .45);
}

.page-products .pp-phone::before,
.page-products .pp-phone::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal-orange);
  transform: translateY(-50%);
  z-index: 3;
}

.page-products .pp-phone::after {
  left: auto;
  right: -11px;
  background: var(--lime-flash);
}

.page-products .pp-phone-speaker {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 22px;
  border-radius: var(--radius-pill);
  background: #0b1d3a;
  border: 1px solid rgba(255, 255, 255, .14);
  z-index: 3;
}

.page-products .pp-phone-screenwrap {
  position: relative;
  aspect-ratio: 600 / 1200;
  overflow: hidden;
  border-radius: 40px;
  background: #061226;
  z-index: 1;
}

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

.page-products .pp-phone-home {
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  border-radius: var(--radius-pill);
  background: rgba(245, 247, 250, .6);
  z-index: 3;
}

.page-products .pp-download {
  position: relative;
  overflow: hidden;
}

.page-products .pp-download::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 7px;
  background: repeating-linear-gradient(90deg, var(--signal-orange) 0 22px, var(--night-blue) 22px 30px, var(--cyan-pulse) 30px 46px, var(--night-blue) 46px 54px);
}

.page-products .pp-section-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 30px;
}

.page-products .pp-section-head > div {
  flex: 1;
}

.page-products .pp-index {
  margin-top: 8px;
  font-family: var(--font-data);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: var(--signal-orange);
}

.page-products .pp-section-head h2 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--paper-white);
}

.page-products .pp-section-head p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted-gray);
}

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

.page-products .pp-platform-card,
.page-products .pp-qr-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.page-products .pp-platform-card {
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .04);
}

.page-products .pp-platform-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.page-products .pp-platform-card h3,
.page-products .pp-qr-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.2;
  color: var(--paper-white);
}

.page-products .pp-platform-card p,
.page-products .pp-qr-card p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 247, 250, .72);
}

.page-products .pp-card-android {
  border-top: 3px solid rgba(0, 229, 255, .4);
}

.page-products .pp-card-ios {
  border-top: 3px solid rgba(255, 107, 0, .55);
}

.page-products .pp-qr-card {
  background: var(--paper-white);
  text-align: center;
  color: var(--ink-black);
}

.page-products .pp-qr-card h3 {
  color: var(--ink-black);
}

.page-products .pp-qr-card p {
  color: rgba(17, 19, 24, .72);
}

.page-products .pp-qr-img {
  display: block;
  width: 148px;
  height: 148px;
  margin: 0 auto 14px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.page-products .pp-guide {
  position: relative;
}

.page-products .pp-guide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--lime-flash), var(--cyan-pulse));
  border-radius: 0 4px 4px 0;
}

.page-products .pp-guide-layout {
  display: grid;
  gap: 28px;
}

.page-products .pp-guide-menu {
  display: flex;
  gap: 4px;
  padding: 10px;
  background: rgba(11, 29, 58, .55);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
}

.page-products .pp-guide-menu-item {
  flex: 1;
  padding: 12px 4px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted-gray);
  border-radius: 12px;
}

.page-products .pp-guide-menu-item.is-active {
  background: var(--cyan-pulse);
  color: var(--night-blue);
  font-weight: 700;
}

.page-products .pp-guide-caption {
  margin: 14px 0 0;
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--muted-gray);
  text-align: center;
}

.page-products .pp-guide-visual {
  padding: 8px;
}

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

.page-products .pp-steps-list li {
  display: flex;
  gap: 14px;
  padding: 18px 16px;
  background: rgba(11, 29, 58, .4);
  border-left: 3px solid var(--signal-orange);
  border-radius: var(--radius-md);
}

.page-products .pp-step-num {
  font-family: var(--font-data);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  color: var(--signal-orange);
}

.page-products .pp-steps-list li div {
  flex: 1;
}

.page-products .pp-steps-list h3 {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.2;
  color: var(--paper-white);
}

.page-products .pp-steps-list p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(245, 247, 250, .72);
}

.page-products .pp-features {
  position: relative;
}

.page-products .pp-features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--signal-orange), var(--violet-zone));
}

.page-products .pp-features-grid {
  display: grid;
  gap: 12px;
}

.page-products .pp-feature-item {
  position: relative;
  padding: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius-md);
}

.page-products .pp-feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lime-flash), var(--cyan-pulse));
  opacity: .75;
}

.page-products .pp-feature-num {
  position: absolute;
  top: 10px;
  right: 14px;
  font-family: var(--font-data);
  font-size: 44px;
  line-height: 1;
  font-weight: 700;
  color: rgba(255, 255, 255, .05);
}

.page-products .pp-feature-item h3 {
  position: relative;
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 19px;
  line-height: 1.3;
  color: var(--paper-white);
}

.page-products .pp-feature-item p {
  position: relative;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 247, 250, .72);
}

.page-products .pp-features-media {
  margin-top: 28px;
}

.page-products .pp-features-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.page-products .pp-versions {
  position: relative;
}

.page-products .pp-versions::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan-pulse), transparent 82%);
}

.page-products .pp-version-layout {
  display: grid;
  gap: 28px;
}

.page-products .pp-version-log-list {
  display: grid;
  gap: 12px;
}

.page-products .pp-version-panel {
  background: rgba(11, 29, 58, .35);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.page-products .pp-version-log-list .panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 18px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--paper-white);
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: .02em;
}

.page-products .pp-version-log-list .panel-icon,
.page-products .pp-faq-panels .panel-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  color: var(--night-blue);
  background: var(--lime-flash);
}

.page-products .panel[data-open] .panel-icon {
  transform: rotate(45deg);
  background: var(--cyan-pulse);
}

.page-products .pp-version-log-list .panel-content,
.page-products .pp-faq-panels .panel-content {
  padding: 0 20px 18px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 247, 250, .78);
}

.page-products .pp-log-list {
  margin: 0;
  padding-left: 18px;
}

.page-products .pp-log-list li + li {
  margin-top: 6px;
}

.page-products .pp-version-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.page-products .pp-faq-layout {
  display: grid;
  gap: 28px;
}

.page-products .pp-faq-panels {
  display: grid;
  gap: 12px;
}

.page-products .pp-faq-panels .panel {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.page-products .pp-faq-panels .panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 18px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--paper-white);
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: .02em;
}

.page-products .pp-faq-side {
  align-self: start;
  padding: 24px;
  background: linear-gradient(150deg, var(--pitch-green), #082e26);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, .08);
}

.page-products .pp-faq-side img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.page-products .pp-faq-side h3 {
  margin: 18px 0 8px;
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.25;
  color: var(--paper-white);
}

.page-products .pp-faq-side p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 247, 250, .76);
}

.page-products .pp-faq-side .btn {
  margin: 0 8px 8px 0;
}

.page-products .panel-header:focus-visible {
  outline: 2px solid var(--cyan-pulse);
  outline-offset: -2px;
}

.page-products .pp-cta {
  background: radial-gradient(ellipse at 20% 20%, rgba(0, 229, 255, .16), transparent 52%), linear-gradient(135deg, var(--night-blue) 0%, var(--pitch-green) 100%);
}

.page-products .pp-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 0;
  text-align: center;
}

.page-products .pp-cta-inner h2 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1.15;
  color: var(--paper-white);
}

.page-products .pp-cta-inner p {
  margin: 0 auto;
  max-width: 580px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245, 247, 250, .8);
}

.page-products .pp-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

@media (min-width: 768px) {
  .page-products .pp-hero {
    padding: calc(var(--header-height-desktop) + 48px) 0 72px;
  }

  .page-products .pp-hero h1 {
    font-size: 58px;
  }

  .page-products .pp-section-head h2 {
    font-size: 36px;
  }

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

  .page-products .pp-qr-card {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
  }

  .page-products .pp-qr-img {
    margin: 0;
  }

  .page-products .pp-qr-card div {
    flex: 1;
  }

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

@media (min-width: 1024px) {
  .page-products .pp-hero-layout {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
  }

  .page-products .pp-hero-copy {
    flex: 0 0 50%;
  }

  .page-products .pp-phone-wrap {
    flex: 0 0 40%;
    display: block;
    padding: 28px 20px 0;
  }

  .page-products .pp-phone {
    margin: 0 auto;
  }

  .page-products .pp-tip {
    position: absolute;
  }

  .page-products .pp-tip-a {
    top: 22%;
    left: -6px;
    flex-direction: row-reverse;
  }

  .page-products .pp-tip-b {
    bottom: 20%;
    right: -6px;
  }

  .page-products .pp-download-grid {
    grid-template-columns: 1fr 1fr 1.15fr;
  }

  .page-products .pp-qr-card {
    grid-column: auto;
    display: block;
    text-align: center;
  }

  .page-products .pp-qr-img {
    margin: 0 auto 14px;
  }

  .page-products .pp-guide-layout {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
  }

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

  .page-products .pp-version-layout {
    grid-template-columns: 1fr 0.9fr;
    align-items: start;
  }

  .page-products .pp-faq-layout {
    grid-template-columns: 1fr 320px;
    align-items: start;
  }

  .page-products .pp-cta-inner {
    padding: 64px 0;
  }
}
