.page-products {
  --pp-cut: 4px 18px 4px 18px;
  --pp-line-soft: rgba(42, 74, 68, 0.7);
  display: block;
  overflow-x: clip;
  padding-bottom: clamp(2.5rem, 7vw, 5rem);
  color: var(--text);
  background:
    radial-gradient(120% 55% at 92% 2%, rgba(0, 229, 195, 0.1), transparent 58%),
    radial-gradient(90% 45% at 2% 6%, rgba(212, 175, 55, 0.1), transparent 60%),
    var(--ink);
}

.page-products h1,
.page-products h2,
.page-products h3,
.page-products p,
.page-products dl,
.page-products dd,
.page-products figure {
  margin: 0;
}

.page-products .breadcrumbs {
  padding-block: 1.15rem 0.35rem;
  font-size: 0.82rem;
}

.page-products .pp-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4.2vw, 2.15rem);
  line-height: 1.28;
  letter-spacing: 0.01em;
  color: var(--text);
}

.page-products .pp-link {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 229, 195, 0.45);
}

.page-products .pp-link:hover,
.page-products .pp-link:focus-visible {
  color: var(--gold-soft);
  border-bottom-color: rgba(240, 217, 140, 0.6);
}

/* ---------- hero ---------- */
.page-products .hero {
  padding: clamp(1.2rem, 3.5vw, 2.4rem) 0 clamp(2.4rem, 6vw, 4.2rem);
}

.page-products .hero__grid {
  display: grid;
  gap: clamp(1.6rem, 4.5vw, 3.2rem);
  align-items: center;
}

.page-products .hero__copy > * + * {
  margin-top: 1rem;
}

.page-products .hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 6.6vw, 3.2rem);
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--text);
  text-wrap: balance;
}

.page-products .hero__lede {
  max-width: 46ch;
  font-size: clamp(1rem, 1.7vw, 1.08rem);
  line-height: 1.8;
  color: var(--muted);
}

.page-products .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding-top: 0.35rem;
}

.page-products .hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.7rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
}

.page-products .hero__stats dt {
  font-size: 0.74rem;
  letter-spacing: 0.07em;
  color: var(--muted);
}

.page-products .hero__stats dd {
  margin-top: 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.4vw, 1.7rem);
  font-weight: 700;
  color: var(--gold);
}

.page-products .hero__figure {
  position: relative;
}

.page-products .hero__figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: var(--pp-cut);
  box-shadow: var(--shadow-deep);
  object-fit: cover;
}

.page-products .hero__figure::before {
  content: "";
  position: absolute;
  top: -14px;
  right: -14px;
  width: 92px;
  height: 92px;
  border-top: 1px solid rgba(0, 229, 195, 0.5);
  border-right: 1px solid rgba(0, 229, 195, 0.5);
  border-radius: 0 18px 0 0;
  pointer-events: none;
}

/* ---------- hub ---------- */
.page-products .hub {
  padding: clamp(2.4rem, 6vw, 4rem) 0;
}

.page-products .hub__list {
  list-style: none;
  margin: clamp(1.6rem, 4vw, 2.4rem) 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.page-products .hub__item {
  display: flex;
}

.page-products .hub__card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 1.25rem 1.2rem 1.35rem;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--pp-cut);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.page-products .hub__card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 138, 61, 0));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s var(--ease);
}

.page-products .hub__card:hover,
.page-products .hub__card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: var(--shadow-deep);
  outline: none;
}

.page-products .hub__card:hover::after,
.page-products .hub__card:focus-visible::after {
  transform: scaleX(1);
}

.page-products .hub__index {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--cyan);
}

.page-products .hub__title {
  margin-top: 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
  color: var(--text);
}

.page-products .hub__desc {
  margin-top: 0.55rem;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--muted);
}

.page-products .hub__arrow {
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--gold);
}

/* ---------- feature blocks ---------- */
.page-products .feature {
  padding: clamp(2.2rem, 6vw, 3.8rem) 0;
}

.page-products .feature + .feature {
  border-top: 1px solid var(--pp-line-soft);
}

.page-products .feature__grid {
  display: grid;
  gap: clamp(1.5rem, 4.5vw, 3rem);
  align-items: center;
}

.page-products .feature__body > * + * {
  margin-top: 1.05rem;
}

.page-products .feature__body p {
  max-width: 52ch;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
}

.page-products .feature__note {
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text);
  background: rgba(255, 138, 61, 0.07);
  border-left: 2px solid var(--orange);
  border-radius: 0 10px 10px 0;
}

.page-products .spec {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.page-products .spec > div {
  padding: 0.85rem 0.95rem;
  background: linear-gradient(180deg, rgba(15, 43, 39, 0.85), rgba(10, 31, 28, 0.55));
  border: 1px solid var(--line);
  border-radius: var(--pp-cut);
}

.page-products .spec dt {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.page-products .spec dd {
  margin-top: 0.42rem;
  font-family: var(--font-display);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--gold-soft);
}

.page-products .pp-figure {
  margin: 0;
}

.page-products .pp-figure img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--pp-cut);
  object-fit: cover;
}

.page-products .pp-figure figcaption {
  margin-top: 0.7rem;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ---------- dial ---------- */
.page-products .dial {
  position: relative;
  width: min(280px, 72%);
  aspect-ratio: 1 / 1;
  margin: clamp(0.5rem, 2vw, 1.4rem) auto 0;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 50%;
  background: conic-gradient(from 12deg,
      rgba(212, 175, 55, 0.3) 0deg 45deg,
      rgba(0, 229, 195, 0.16) 45deg 90deg,
      rgba(212, 175, 55, 0.3) 90deg 135deg,
      rgba(0, 229, 195, 0.16) 135deg 180deg,
      rgba(212, 175, 55, 0.3) 180deg 225deg,
      rgba(0, 229, 195, 0.16) 225deg 270deg,
      rgba(212, 175, 55, 0.3) 270deg 315deg,
      rgba(0, 229, 195, 0.16) 315deg 360deg);
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.5), 0 30px 60px -40px #000;
}

.page-products .dial::before {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px dashed rgba(230, 240, 238, 0.25);
  border-radius: 50%;
}

.page-products .dial::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  background: linear-gradient(140deg, var(--gold-soft), var(--gold));
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.7);
  transform: translate(-50%, -50%) rotate(45deg);
}

.page-products .dial__caption {
  margin-top: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-align: center;
  color: var(--muted);
}

/* ---------- steps ---------- */
.page-products .steps {
  list-style: none;
  margin-top: 1.4rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.page-products .steps__item {
  position: relative;
  padding: 1rem 1.1rem 1.05rem 3.3rem;
  background: linear-gradient(180deg, rgba(15, 43, 39, 0.85), rgba(10, 31, 28, 0.6));
  border: 1px solid var(--line);
  border-radius: var(--pp-cut);
}

.page-products .steps__item::before {
  content: "";
  position: absolute;
  top: 2.85rem;
  bottom: -0.8rem;
  left: 1.78rem;
  width: 1px;
  background: repeating-linear-gradient(180deg,
      rgba(212, 175, 55, 0.75) 0 5px,
      transparent 5px 10px);
}

.page-products .steps__item:last-child::before {
  display: none;
}

.page-products .steps__num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: grid;
  place-items: center;
  width: 1.6rem;
  height: 1.6rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  background: linear-gradient(140deg, var(--gold-soft), var(--gold));
  border-radius: 50%;
}

.page-products .steps__title {
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--text);
}

.page-products .steps__item p {
  margin-top: 0.4rem;
  max-width: none;
  font-size: 0.9rem;
  line-height: 1.72;
  color: var(--muted);
}

/* ---------- mobile ---------- */
.page-products .mobile {
  padding: clamp(2.4rem, 6vw, 4rem) 0;
  border-top: 1px solid var(--pp-line-soft);
}

.page-products .mobile__grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.6rem);
  margin-top: clamp(1.6rem, 4vw, 2.4rem);
}

.page-products .mobile__cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.page-products .mobile__card {
  padding: 1rem 1.1rem 1.05rem;
  background: rgba(15, 43, 39, 0.55);
  border-left: 2px solid var(--cyan);
  border-radius: 0 12px 12px 0;
}

.page-products .mobile__card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text);
}

.page-products .mobile__card p {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  line-height: 1.72;
  color: var(--muted);
}

/* ---------- cta ---------- */
.page-products .cta {
  padding: clamp(1.2rem, 3vw, 2rem) 0 0;
}

.page-products .cta__box {
  display: grid;
  gap: 1.2rem;
  padding: clamp(1.6rem, 4.5vw, 2.8rem);
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(0, 229, 195, 0.14), transparent 60%),
    linear-gradient(160deg, rgba(15, 43, 39, 0.95), rgba(8, 25, 22, 0.9));
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: var(--pp-cut);
}

.page-products .cta__copy p {
  max-width: 54ch;
  margin-top: 0.9rem;
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--muted);
}

.page-products .cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* ---------- responsive ---------- */
@media (min-width: 760px) {
  .page-products .hub__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-products .hub__item--lead {
    grid-column: span 2;
  }

  .page-products .hub__item--lead .hub__card {
    padding: 1.6rem 1.5rem 1.6rem;
  }

  .page-products .hub__item--lead .hub__title {
    font-size: clamp(1.28rem, 2.6vw, 1.55rem);
  }

  .page-products .hub__item--lead .hub__desc {
    max-width: 56ch;
  }
}

@media (min-width: 920px) {
  .page-products .hero__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.14fr);
    align-items: end;
  }

  .page-products .feature__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .page-products .feature__grid > .feature__body {
    grid-column: 1;
    grid-row: 1;
  }

  .page-products .feature__grid > .feature__visual {
    grid-column: 2;
    grid-row: 1;
  }

  .page-products .feature--flip .feature__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .page-products .feature--flip .feature__grid > .feature__body {
    grid-column: 2;
  }

  .page-products .feature--flip .feature__grid > .feature__visual {
    grid-column: 1;
  }

  .page-products .mobile__grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    align-items: start;
  }

  .page-products .cta__box {
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.85fr);
    align-items: center;
  }

  .page-products .cta__actions {
    justify-content: flex-end;
  }
}

@media (min-width: 1100px) {
  .page-products .hub__list {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .page-products .hub__item--lead {
    grid-column: span 3;
  }

  .page-products .hub__item {
    grid-column: span 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-products .hub__card,
  .page-products .hub__card::after {
    transition: none;
  }

  .page-products .hub__card:hover,
  .page-products .hub__card:focus-visible {
    transform: none;
  }
}
