.page-products {
  --pf-coral: var(--c-orange);
  --pf-neon: var(--c-lime);
  --pf-sky: var(--c-blue);
  --pf-deep: var(--c-deep);
  --pf-cream: var(--c-cream);
  --pf-gap: clamp(2rem, 5vw, 4rem);
  position: relative;
  background: var(--c-cream);
  color: var(--c-ink);
  overflow-x: clip;
}

.page-products .pf-hero {
  position: relative;
  padding-block: clamp(3rem, 6vw, 5.5rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(163, 230, 53, 0.08), transparent 32%),
    radial-gradient(circle at 16% 84%, rgba(255, 107, 53, 0.1), transparent 40%),
    linear-gradient(118deg, rgba(99, 179, 237, 0.05), transparent 55%),
    var(--c-deep);
  color: var(--c-cream);
}

.page-products .pf-hero__inner {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

.page-products .pf-hero__copy {
  min-width: 0;
}

.page-products .pf-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  line-height: 1.06;
  text-wrap: balance;
  color: var(--c-white);
  margin: 0 0 1.1rem;
  max-width: 14em;
}

.page-products .pf-hero__lead {
  max-width: 46rem;
  color: rgba(245, 240, 232, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.8;
  margin: 0;
}

.page-products .pf-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.page-products .pf-crumbs a {
  color: var(--pf-sky);
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}

.page-products .pf-crumbs a:hover {
  color: var(--pf-neon);
}

.page-products .pf-crumbs__sep {
  color: rgba(245, 240, 232, 0.45);
}

.page-products .pf-crumbs__current {
  color: rgba(245, 240, 232, 0.8);
  font-weight: 600;
}

.page-products .pf-hero__stats {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}

.page-products .pf-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--pf-coral);
  line-height: 1.1;
}

.page-products .pf-stat span {
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.65);
}

.page-products .pf-panel {
  margin-top: 1.75rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(163, 230, 53, 0.24);
  border-radius: var(--radius-lg);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.page-products .pf-panel__tag {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: var(--pf-neon);
  background: rgba(163, 230, 53, 0.14);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.page-products .pf-panel__tag::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--pf-neon);
  box-shadow: 0 0 0 4px rgba(163, 230, 53, 0.16);
}

.page-products .pf-panel__btn {
  background: var(--pf-coral);
  color: var(--c-deep);
  border-radius: var(--radius-pill);
  padding: 1rem 2.2rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.28);
  transition: background 0.25s var(--ease-out), transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.page-products .pf-panel__btn:hover {
  background: var(--pf-neon);
  transform: translateY(-3px) rotate(-1.5deg);
  box-shadow: 0 14px 36px rgba(163, 230, 53, 0.25);
}

.page-products .pf-panel__note {
  flex: 1 1 100%;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.16);
  color: rgba(245, 240, 232, 0.72);
  font-size: 0.9rem;
  line-height: 1.7;
}

.page-products .pf-hero__media {
  position: relative;
}

.page-products .pf-frame {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-deep-2);
  position: relative;
  box-shadow: 0 24px 60px rgba(10, 25, 47, 0.22);
}

.page-products .pf-frame img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page-products .pf-frame--hero img {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  filter: saturate(1.1) contrast(1.03);
}

.page-products .pf-frame--wide img {
  aspect-ratio: 16 / 10;
}

.page-products .pf-frame--banner img {
  aspect-ratio: 3 / 1;
}

.page-products .pf-frame--devices img {
  aspect-ratio: 3 / 2;
}

.page-products .pf-hero__badge {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
  background: var(--c-deep-2);
  color: var(--pf-neon);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  border: 1px solid rgba(163, 230, 53, 0.3);
}

.page-products .pf-hero__badge i {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--pf-neon);
  animation: pf-pulse 1.6s infinite;
}

@keyframes pf-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(163, 230, 53, 0.5);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(163, 230, 53, 0);
  }
}

.page-products .pf-features {
  position: relative;
  padding-block: clamp(4rem, 7vw, 6.5rem);
}

.page-products .pf-features__head {
  max-width: 780px;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.page-products .pf-features__head h2,
.page-products .pf-devices h2,
.page-products .pf-trust h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.12;
  margin: 0.5rem 0 1rem;
  color: var(--c-ink);
  text-wrap: balance;
}

.page-products .pf-lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.8;
  color: var(--c-stone);
  max-width: 58rem;
}

.page-products .pf-band {
  position: relative;
  display: grid;
  gap: var(--pf-gap);
  align-items: center;
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid rgba(74, 85, 104, 0.12);
}

.page-products .pf-band__body {
  min-width: 0;
}

.page-products .pf-band__body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.16;
  color: var(--c-deep);
  margin: 0 0 1rem;
  text-wrap: balance;
}

.page-products .pf-band__body p {
  color: var(--c-stone);
  line-height: 1.8;
  font-size: 1rem;
  margin: 0 0 1.25rem;
  max-width: 46rem;
}

.page-products .pf-band__idx {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 5rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--pf-coral);
}

.page-products .pf-tick-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.page-products .pf-tick-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--c-ink);
  line-height: 1.6;
  font-weight: 500;
}

.page-products .pf-tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50% 50% 0 50%;
  background: var(--pf-neon);
  transform: rotate(45deg);
}

.page-products .pf-versions {
  position: relative;
  background: var(--c-deep);
  color: var(--c-cream);
  padding-block: clamp(4.5rem, 8vw, 7rem);
  overflow: hidden;
}

.page-products .pf-versions::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 18px);
  pointer-events: none;
}

.page-products .pf-versions::after {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  height: 72px;
  bottom: -36px;
  background: var(--c-cream);
  transform: skewY(3.2deg);
  transform-origin: right center;
  pointer-events: none;
}

.page-products .pf-versions__head {
  position: relative;
  max-width: 680px;
  margin-bottom: 2.5rem;
  z-index: 1;
}

.page-products .pf-versions .section-eyebrow {
  color: var(--pf-neon);
}

.page-products .pf-versions h2 {
  color: var(--c-white);
}

.page-products .pf-versions__lead {
  color: rgba(245, 240, 232, 0.75);
  line-height: 1.8;
  margin-top: 1rem;
}

.page-products .pf-version-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

.page-products .pf-version-media {
  position: relative;
}

.page-products .pf-version-media::before {
  content: "";
  position: absolute;
  inset: -0.875rem;
  border: 1px dashed rgba(255, 107, 53, 0.5);
  border-radius: calc(var(--radius-lg) + 14px);
  transform: rotate(-1.2deg);
  pointer-events: none;
}

.page-products .pf-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.page-products .pf-timeline__item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--pf-neon);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem;
  transition: transform 0.25s var(--ease-out), background 0.25s var(--ease-out);
}

.page-products .pf-timeline__item:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.08);
}

.page-products .pf-timeline__ver {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--pf-neon);
}

.page-products .pf-timeline__item h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0.3rem 0 0.45rem;
  color: var(--c-white);
}

.page-products .pf-timeline__item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.75);
}

.page-products .pf-devices {
  position: relative;
  padding-block: clamp(4.5rem, 8vw, 7rem);
}

.page-products .pf-devices__inner {
  display: grid;
  gap: var(--pf-gap);
  align-items: center;
}

.page-products .pf-device-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.page-products .pf-device-list li {
  background: var(--c-cream-2);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem 1.25rem 2.25rem;
  position: relative;
  line-height: 1.65;
  font-size: 0.95rem;
  color: var(--c-stone);
}

.page-products .pf-device-list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.55rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--pf-neon);
  box-shadow: 0 0 0 4px rgba(163, 230, 53, 0.16);
}

.page-products .pf-device-list strong {
  display: block;
  font-weight: 700;
  color: var(--c-deep);
  margin-bottom: 0.25rem;
}

.page-products .pf-trust {
  position: relative;
  background: var(--c-deep-2);
  color: var(--c-cream);
  padding-block: clamp(4.5rem, 8vw, 7rem);
}

.page-products .pf-trust .section-eyebrow {
  color: var(--pf-neon);
}

.page-products .pf-trust h2 {
  color: var(--c-white);
}

.page-products .pf-trust__lead {
  color: rgba(245, 240, 232, 0.75);
  line-height: 1.8;
  max-width: 640px;
  margin-top: 1rem;
}

.page-products .pf-trust__grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.25rem;
}

.page-products .pf-trust__item {
  background: rgba(255, 255, 255, 0.045);
  border-top: 3px solid var(--pf-coral);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: transform 0.25s var(--ease-out), background 0.25s var(--ease-out);
}

.page-products .pf-trust__item:hover {
  background: rgba(255, 255, 255, 0.075);
  transform: translateY(-4px);
}

.page-products .pf-trust__item h3 {
  color: var(--c-white);
  font-size: 1.2rem;
  margin: 0 0 0.6rem;
}

.page-products .pf-trust__item p {
  color: rgba(245, 240, 232, 0.75);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
}

.page-products .pf-trust__note {
  margin-top: 2rem;
  color: rgba(245, 240, 232, 0.7);
  font-size: 0.95rem;
  line-height: 1.8;
}

.page-products .pf-trust__note a {
  color: var(--pf-neon);
  font-weight: 600;
  text-decoration: none;
}

.page-products .pf-trust__note a:hover {
  text-decoration: underline;
}

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

@media (min-width: 900px) {
  .page-products .pf-hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .page-products .pf-hero__media {
    justify-self: end;
    width: min(100%, 540px);
  }

  .page-products .pf-version-wrap {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .page-products .pf-devices__inner {
    grid-template-columns: 0.95fr 1.05fr;
  }
}

@media (min-width: 1024px) {
  .page-products .pf-band {
    grid-template-columns: 1.125fr 0.875fr;
    gap: 4rem;
  }

  .page-products .pf-band--even {
    grid-template-columns: 0.875fr 1.125fr;
  }

  .page-products .pf-band--even .pf-band__media {
    order: 2;
  }

  .page-products .pf-band--even .pf-band__body {
    order: 1;
  }
}
