.page-products {
  --prod-blue: #00A3FF;
  --prod-orange: #FF7A00;
  --prod-violet: #5A5FFF;
  --prod-gold: #FFD500;
  --prod-green: #00E5A0;
  --prod-line: rgba(255, 255, 255, 0.08);
  --prod-muted: rgba(255, 255, 255, 0.55);
  background: var(--c-bg);
  color: var(--c-white);
  overflow-x: hidden;
}
.page-products .page-title {
  margin: 14px 0 16px;
  font-size: clamp(36px, 5.6vw, 64px);
  line-height: 0.95;
  letter-spacing: -1px;
}
.page-products .page-subtitle {
  max-width: 640px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--prod-muted);
}
.page-products .section__head {
  margin-bottom: 32px;
}
.page-products .section__title {
  margin: 10px 0 8px;
}
.page-products .section__subtitle {
  margin: 0;
  color: var(--prod-muted);
  font-size: 15px;
}
.page-products .badge--violet {
  background: rgba(90, 95, 255, 0.14);
  border: 1px solid rgba(90, 95, 255, 0.4);
  color: #aab0ff;
}

.product-hero {
  position: relative;
  padding: 32px 0 52px;
  overflow: hidden;
}
.product-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.14) 0%, rgba(255, 122, 0, 0.06) 100%);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}
.product-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--prod-blue) 0%, var(--prod-orange) 60%, transparent 100%);
  opacity: 0.4;
}
.product-hero .container {
  position: relative;
  z-index: 1;
}
.product-hero .breadcrumb {
  margin-bottom: 30px;
}
.product-hero__inner {
  display: grid;
  gap: 36px;
  margin-top: 28px;
}
.product-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.product-hero__panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.product-hero__stat {
  position: relative;
  padding: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
  border-top: 3px solid var(--c-white);
}
.product-hero__stat--blue { border-top-color: var(--prod-blue); }
.product-hero__stat--orange { border-top-color: var(--prod-orange); }
.product-hero__stat--violet { border-top-color: var(--prod-violet); }
.product-hero__stat--gold { border-top-color: var(--prod-gold); }
.product-hero__stat-value {
  display: block;
  font-family: var(--t-heading);
  font-size: 32px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
}
.product-hero__stat--blue .product-hero__stat-value { color: var(--prod-blue); }
.product-hero__stat--orange .product-hero__stat-value { color: var(--prod-orange); }
.product-hero__stat--violet .product-hero__stat-value { color: #aab0ff; }
.product-hero__stat--gold .product-hero__stat-value { color: var(--prod-gold); }
.product-hero__stat-label {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--prod-muted);
}

.product-path {
  padding: 28px 0 64px;
}
.product-path__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.product-path__item {
  position: relative;
}
.product-path__item:not(:first-child)::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 28px;
  width: 2px;
  height: 14px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.22));
}
.product-path__card {
  --path-color: var(--prod-blue);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 22px 24px 24px;
  background: linear-gradient(145deg, var(--c-panel-raised), var(--c-panel));
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.product-path__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--path-color);
}
.product-path__card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, transparent 50%, var(--path-color) 50%);
  opacity: 0.16;
}
.product-path__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.product-path__card--scores { --path-color: var(--prod-blue); }
.product-path__card--rank { --path-color: var(--prod-orange); }
.product-path__card--archive { --path-color: var(--prod-violet); }
.product-path__card--reports { --path-color: var(--prod-gold); }
.product-path__step {
  font-family: var(--t-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--prod-muted);
}
.product-path__title {
  margin-top: 10px;
  font-family: var(--t-heading);
  font-size: 26px;
  font-weight: 900;
  font-style: italic;
  line-height: 1.1;
}
.product-path__desc {
  margin-top: 8px;
  font-size: 14px;
  color: var(--prod-muted);
}

.product-feature {
  padding: 56px 0;
  scroll-margin-top: calc(var(--header-h) + 20px);
}
.product-feature--scores {
  background: linear-gradient(120deg, rgba(0, 163, 255, 0.08), transparent 55%);
}
.product-feature--rank {
  background: linear-gradient(110deg, transparent 20%, rgba(255, 122, 0, 0.07) 100%);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.product-feature__inner {
  display: flex;
  flex-direction: column;
  gap: 34px;
  align-items: flex-start;
}
.product-feature__media {
  width: 100%;
  max-width: 500px;
}
.product-feature__content {
  width: 100%;
  max-width: 620px;
}
.product-feature__eyebrow {
  margin-bottom: 12px;
}
.product-feature__title {
  margin: 0 0 14px;
  font-family: var(--t-heading);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.5px;
}
.product-feature__lead {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}
.product-feature__list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.product-feature__list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--prod-muted);
}
.product-feature__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, var(--prod-blue), var(--prod-violet));
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.product-feature__phone {
  position: relative;
  max-width: 250px;
  padding: 14px 10px 30px;
  background: linear-gradient(145deg, var(--c-panel-raised), #242734);
  border: 1px solid var(--c-border);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  transform: rotate(-2deg);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out);
}
.product-feature__phone::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
}
.product-feature__phone:hover {
  transform: rotate(0deg) translateY(-4px);
}
.product-feature__phone-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}
.product-feature__note {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin: 20px 0 0;
}
.product-feature__note-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--prod-muted);
}
.product-feature__screen {
  position: relative;
  padding: 10px;
  background: #242734;
  border: 1px solid var(--c-border);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.product-feature__screen:hover {
  transform: rotate(1deg) translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.product-feature__screen-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.product-feature__speed {
  position: absolute;
  right: -10px;
  bottom: 22px;
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--prod-orange), #ffb800);
  border-radius: 6px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
  box-shadow: var(--shadow-card);
}
.product-feature__speed-value {
  display: block;
  font-family: var(--t-heading);
  font-size: 24px;
  font-weight: 900;
  font-style: italic;
  color: #1a1d29;
  line-height: 1;
}
.product-feature__speed-label {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #1a1d29;
}

.product-archive {
  padding: 48px 0 64px;
  scroll-margin-top: calc(var(--header-h) + 20px);
  background: linear-gradient(130deg, rgba(90, 95, 255, 0.08), transparent 50%);
}
.product-archive__head {
  margin-bottom: 34px;
}
.product-archive__head-title {
  margin: 12px 0 10px;
  font-family: var(--t-heading);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  font-style: italic;
  line-height: 1.1;
}
.product-archive__head-sub {
  margin: 0;
  color: var(--prod-muted);
  font-size: 15px;
  line-height: 1.7;
}
.product-archive__grid {
  display: grid;
  gap: 16px;
}
.product-archive__cell {
  padding: 24px;
  background: var(--c-panel);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.product-archive__cell:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.product-archive__cell-title {
  margin: 0 0 16px;
  font-family: var(--t-heading);
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c-white);
}
.product-archive__list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.product-archive__list li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--prod-muted);
}
.product-archive__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  background: var(--prod-violet);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.product-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}
.product-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--c-border);
}
.product-timeline__item:last-child {
  border-bottom: none;
}
.product-timeline__year {
  font-family: var(--t-heading);
  font-size: 16px;
  font-weight: 900;
  font-style: italic;
  color: var(--prod-gold);
}
.product-timeline__text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}
.product-archive__media {
  margin-bottom: 14px;
}
.product-archive__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-archive__note {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--prod-muted);
}

.product-reports {
  padding: 56px 0;
  scroll-margin-top: calc(var(--header-h) + 20px);
  background:
    radial-gradient(circle at 82% 0%, rgba(255, 122, 0, 0.1), transparent 44%),
    radial-gradient(circle at 18% 100%, rgba(0, 163, 255, 0.07), transparent 40%);
}
.product-reports__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.product-reports__grid {
  display: grid;
  gap: 14px;
}
.product-reports__card {
  display: flex;
  flex-direction: column;
  background: var(--c-panel);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.product-reports__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.product-reports__media {
  width: 100%;
}
.product-reports__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-reports__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-reports__card--feature .product-reports__body {
  padding: 22px;
}
.product-reports__title {
  margin: 0;
  font-family: var(--t-heading);
  font-size: 19px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.25;
}
.product-reports__excerpt {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--prod-muted);
}
.product-reports__more {
  margin-top: auto;
  padding-top: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--prod-orange);
  text-decoration: none;
  transition: color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.product-reports__more:hover {
  color: var(--prod-blue);
  transform: translateX(4px);
}

.product-adv {
  padding: 56px 0 64px;
}
.product-adv__inner {
  display: grid;
  gap: 40px;
  align-items: center;
}
.product-adv__title {
  margin: 12px 0 14px;
  font-family: var(--t-heading);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  font-style: italic;
  line-height: 1.1;
}
.product-adv__lead {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}
.product-adv__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.product-adv__stat {
  padding: 16px;
  background: var(--c-panel);
  border-left: 3px solid var(--prod-blue);
  border-radius: var(--radius);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}
.product-adv__stat--orange { border-left-color: var(--prod-orange); }
.product-adv__stat--violet { border-left-color: var(--prod-violet); }
.product-adv__stat--gold { border-left-color: var(--prod-gold); }
.product-adv__stat-value {
  display: block;
  font-family: var(--t-heading);
  font-size: 26px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
}
.product-adv__stat--blue .product-adv__stat-value { color: var(--prod-blue); }
.product-adv__stat--orange .product-adv__stat-value { color: var(--prod-orange); }
.product-adv__stat--violet .product-adv__stat-value { color: #aab0ff; }
.product-adv__stat--gold .product-adv__stat-value { color: var(--prod-gold); }
.product-adv__stat-label {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--prod-muted);
}
.product-adv__points {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.product-adv__points li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--prod-muted);
}
.product-adv__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 11px;
  height: 11px;
  background: var(--prod-green);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.product-adv__media {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.product-adv__frame {
  box-shadow: var(--shadow-card);
}
.product-adv__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-adv__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-cta {
  padding: 0 0 72px;
}
.product-cta__inner {
  position: relative;
  overflow: hidden;
  padding: 44px 24px;
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.18), rgba(255, 122, 0, 0.12));
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  text-align: center;
}
.product-cta__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 120%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--prod-blue), var(--prod-orange), transparent);
}
.product-cta__inner::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, transparent 48%, rgba(255, 213, 0, 0.14) 48%);
  pointer-events: none;
}
.product-cta__title {
  margin: 0 0 14px;
  font-family: var(--t-heading);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(22px, 4vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.5px;
}
.product-cta__text {
  max-width: 560px;
  margin: 0 auto 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--prod-muted);
}
.product-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

@media (min-width: 640px) {
  .product-hero__panel {
    gap: 14px;
  }
  .product-archive__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-archive__cell:first-child {
    grid-column: span 2;
  }
  .product-reports__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .product-hero {
    padding: 40px 0 64px;
  }
  .product-hero__inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
  }
  .product-hero__panel {
    gap: 12px;
  }
  .product-hero__stat {
    padding: 24px;
  }
  .product-hero__stat-value {
    font-size: 38px;
  }
  .product-path__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .product-path__item:not(:first-child)::before {
    top: 50%;
    left: -19px;
    width: 19px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2));
  }
  .product-feature__inner {
    flex-direction: row;
    align-items: center;
    gap: 56px;
  }
  .product-feature__inner--reverse {
    flex-direction: row-reverse;
  }
  .product-feature__media {
    flex: 1 1 42%;
    max-width: 44%;
  }
  .product-feature__content {
    flex: 1 1 58%;
    max-width: 56%;
  }
  .product-feature__media--wide {
    position: relative;
  }
  .product-feature__speed {
    right: -8px;
    bottom: 28px;
  }
  .product-archive__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-archive__cell:first-child {
    grid-column: auto;
  }
  .product-reports__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
  }
  .product-reports__head-text {
    max-width: 720px;
  }
  .product-reports__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-reports__card--feature {
    grid-row: span 2;
  }
  .product-adv__inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
  }
  .product-adv__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .product-cta {
    padding-bottom: 80px;
  }
  .product-cta__inner {
    padding: 56px 48px;
  }
}
