.page-products {
  overflow-x: hidden;
  background: var(--bg-deep);
}

.page-products .breadcrumb {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 20px 0;
}

.product-hero {
  position: relative;
  padding: 64px 0 72px;
}

.product-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(135deg, transparent 30%, rgba(15, 255, 80, 0.07) 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.product-hero__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.product-hero__copy {
  position: relative;
  z-index: 1;
}

.product-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 9vw, 4.8rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.product-hero__accent {
  color: var(--accent-orange);
  display: inline-block;
  transform: rotate(-1.5deg);
}

.product-hero__lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 540px;
  margin: 0 0 28px;
}

.product-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.product-hero__stats li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 0.88rem;
  color: var(--text-muted);
  background: rgba(22, 33, 62, 0.55);
  backdrop-filter: blur(4px);
}

.product-hero__stats .num {
  display: block;
  font-family: var(--font-mono);
  color: var(--text-main);
  font-size: 1.25rem;
  line-height: 1.2;
}

.product-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.product-hero__actions .btn-solid {
  box-shadow: 0 0 28px rgba(255, 107, 53, 0.35);
}

.product-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 460px;
  padding: 30px 0;
}

.device-phone {
  position: relative;
  width: 232px;
  border: 3px solid var(--line);
  border-radius: 34px;
  overflow: hidden;
  background: var(--bg-dark);
  box-shadow: 0 24px 48px var(--shadow);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.device-phone:hover {
  transform: rotate(2deg) scale(1.02);
}

.device-phone::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.12) 15%, transparent 45%);
  pointer-events: none;
  z-index: 2;
}

.device-phone__screen {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.device-phone__speaker {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 4px;
  border-radius: 2px;
  background: rgba(244, 247, 251, 0.35);
  z-index: 3;
}

.device-phone__home {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 32%;
  height: 3px;
  border-radius: 2px;
  background: rgba(244, 247, 251, 0.25);
  z-index: 3;
}

.device-phone--hero {
  transform: rotate(-5deg) translateX(8px);
  animation: phone-float 0.01s linear;
}

@media (min-width: 768px) {
  .product-hero::before {
    width: 36%;
  }

  .product-hero__layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
  }

  .product-hero__visual {
    justify-content: flex-end;
    padding-right: 26px;
  }

  .device-phone {
    width: 260px;
  }
}

.device-tablet--ghost {
  position: absolute;
  left: calc(50% - 96px);
  top: 32px;
  width: 168px;
  height: 220px;
  border: 3px dashed var(--line);
  border-radius: 20px;
  background: rgba(22, 33, 62, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transform: rotate(14deg);
  z-index: 0;
  backdrop-filter: blur(3px);
}

.device-tablet--ghost__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--accent-green);
}

.device-tablet--ghost__line {
  width: 48%;
  height: 2px;
  background: var(--line);
}

.vert-note {
  position: absolute;
  right: 0;
  bottom: 24px;
  writing-mode: vertical-rl;
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  color: var(--accent-green);
  background: rgba(10, 17, 40, 0.65);
  padding: 10px 5px;
  border-left: 1px solid rgba(15, 255, 80, 0.25);
  z-index: 4;
}

.download-panel {
  position: relative;
  padding: 56px 0 64px;
}

.download-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-orange), var(--accent-green), transparent);
}

.download-panel__box {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  box-shadow: 0 18px 40px var(--shadow);
}

.download-panel__head .section-title {
  margin-bottom: 10px;
}

.download-panel__desc {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 460px;
}

.download-panel__content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
}

.download-qr {
  width: 132px;
  height: 132px;
  border-radius: 10px;
  color: var(--bg-deep);
  flex-shrink: 0;
  background: var(--text-main);
  box-shadow: 0 0 0 3px var(--line), 0 10px 24px rgba(0, 0, 0, 0.3);
}

.download-qr svg {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.download-panel__info {
  flex: 1;
  min-width: 220px;
}

.download-panel__tip {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 16px;
}

.download-panel__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.download-panel__btns .btn-solid {
  box-shadow: 0 0 22px rgba(255, 107, 53, 0.3);
}

.download-panel__note {
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.download-panel__link {
  color: var(--accent-green);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (min-width: 760px) {
  .download-panel__box {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    padding: 44px 40px;
  }
}

.feature-panel {
  padding: 76px 0 64px;
}

.feature-panel__intro {
  color: var(--text-muted);
  margin: 0;
}

.feature-panel__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 36px;
}

.feature-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 255, 80, 0.4);
  box-shadow: 0 14px 30px var(--shadow);
}

.feature-card__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.feature-card__body {
  padding: 22px 20px 24px;
  position: relative;
  flex: 1;
}

.feature-card__icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--accent-green);
  margin-bottom: 16px;
  background: rgba(15, 255, 80, 0.05);
}

.feature-card__icon svg {
  width: 26px;
  height: 26px;
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.3;
  margin: 0 0 10px;
}

.feature-card__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.feature-card__link {
  display: inline-block;
  margin-top: 18px;
  color: var(--accent-green);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: 0.92rem;
}

.feature-card--possessession {
  grid-template-rows: auto 1fr;
}

.feature-card--subscribe .feature-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 720px) {
  .feature-panel__grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .feature-card--ranking {
    grid-column: span 3;
  }

  .feature-card--lineup {
    grid-column: span 3;
  }

  .feature-card--possession {
    grid-column: span 4;
  }

  .feature-card--subscribe {
    grid-column: span 2;
  }
}

.review-panel {
  position: relative;
  background: var(--bg-dark);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 76px 0;
  overflow: hidden;
}

.review-panel::before {
  content: "";
  position: absolute;
  left: -100px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(123, 47, 190, 0.22);
  filter: blur(50px);
  pointer-events: none;
}

.review-panel__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.review-panel__visual {
  position: relative;
}

.device-tablet {
  position: relative;
  border: 3px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: var(--bg-deep);
  box-shadow: 0 28px 56px var(--shadow);
  transition: transform 0.25s ease;
}

.device-tablet:hover {
  transform: rotate(-1.5deg);
}

.device-tablet__screen {
  display: block;
  width: 100%;
  height: auto;
}

.device-tablet::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.08) 0%, transparent 38%);
  pointer-events: none;
}

.device-tablet__home {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 12%;
  height: 4px;
  border-radius: 2px;
  background: rgba(244, 247, 251, 0.3);
}

.review-panel__glow {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(15, 255, 80, 0.25), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.review-panel__content {
  position: relative;
}

.review-panel__lead {
  color: var(--text-muted);
  line-height: 1.75;
  margin: 16px 0 28px;
  max-width: 520px;
}

.review-panel__list {
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
  display: grid;
  gap: 0;
}

.review-panel__item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.review-panel__item:last-child {
  border-bottom: 1px solid var(--line);
}

.review-panel__tag {
  font-family: var(--font-mono);
  color: var(--accent-orange);
  font-size: 0.9rem;
  line-height: 1.5;
}

.review-panel__item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.02rem;
}

.review-panel__item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 900px) {
  .review-panel__layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
  }
}

.version-panel {
  padding: 76px 0 88px;
}

.version-panel .section-head {
  margin-bottom: 40px;
}

.version-panel__timeline {
  position: relative;
  display: grid;
  gap: 28px;
  padding-left: 30px;
}

.version-panel__timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--line), rgba(15, 255, 80, 0.45), var(--line));
}

.version-item {
  position: relative;
}

.version-item__dot {
  position: absolute;
  left: -30px;
  top: 20px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-green);
  border: 3px solid var(--bg-deep);
  box-shadow: 0 0 12px rgba(15, 255, 80, 0.45);
}

.version-item__card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 22px 24px;
  transition: border-color 0.2s ease;
}

.version-item__card:hover {
  border-color: rgba(15, 255, 80, 0.3);
}

.version-item__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.version-item__code {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--accent-green);
  border: 1px solid rgba(15, 255, 80, 0.3);
  padding: 3px 10px;
  border-radius: 999px;
  display: inline-block;
}

.version-item__title {
  font-family: var(--font-display);
  font-size: 1.18rem;
  margin: 0 0 6px;
}

.version-item__summary {
  color: var(--text-muted);
  margin: 0 0 14px;
  line-height: 1.6;
}

.version-item__detail {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.version-item__detail summary {
  cursor: pointer;
  color: var(--accent-green);
  font-size: 0.9rem;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.version-item__detail summary::before {
  content: "+";
  font-family: var(--font-mono);
  font-size: 1rem;
  line-height: 1;
}

.version-item__detail[open] summary::before {
  content: "–";
}

.version-item__detail summary::-webkit-details-marker {
  display: none;
}

.version-item__detail ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--text-muted);
  display: grid;
  gap: 7px;
  font-size: 0.94rem;
  line-height: 1.6;
}

@media (min-width: 720px) {
  .version-panel__timeline {
    padding-left: 42px;
  }

  .version-item__dot {
    left: -42px;
  }

  .version-item__card {
    padding: 26px 30px;
  }
}

@media (min-width: 1100px) {
  .page-products {
    font-size: 16px;
  }

  .product-hero {
    padding: 76px 0 88px;
  }

  .product-hero__title {
    font-size: 4.6rem;
  }

  .device-phone {
    width: 280px;
    border-radius: 38px;
  }

  .download-panel__box {
    padding: 48px 56px;
  }

  .feature-panel__grid {
    gap: 32px;
  }

  .review-panel {
    padding: 92px 0;
  }
}
