.page-products {
  --products-glow-fill: rgba(0, 229, 255, 0.07);
  --products-glow-line: rgba(0, 229, 255, 0.2);
  --products-red-glow: rgba(255, 61, 61, 0.06);
  --products-gold-glow: rgba(255, 215, 0, 0.05);
  color: var(--color-text);
}

.page-products .breadcrumb {
  margin-top: 24px;
  font-family: var(--font-mono);
}

.page-products .breadcrumb__link {
  color: var(--color-text-dim);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.page-products .breadcrumb__link:hover {
  color: var(--color-glow);
}

.page-products .breadcrumb__current {
  color: var(--color-text);
}

.page-products__hero {
  padding: 52px 0 64px;
  display: grid;
  gap: 32px;
  align-items: stretch;
}

.page-products__title {
  font-family: var(--font-heading);
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 20px 0 24px;
  transform: skewX(-3deg);
  transform-origin: left bottom;
  background: linear-gradient(100deg, var(--color-text) 30%, var(--color-glow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.page-products__desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text-dim);
  max-width: 620px;
  border-left: 2px solid var(--color-glow);
  padding-left: 18px;
  margin: 0;
}

.page-products__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.page-products__hero-actions .btn {
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.page-products__hero-index {
  background: var(--glass);
  -webkit-backdrop-filter: var(--blur);
  backdrop-filter: var(--blur);
  border: 1px solid var(--color-line);
  padding: 24px 20px;
  position: relative;
  min-height: 240px;
}

.page-products__hero-index::before,
.page-products__hero-index::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: var(--color-glow);
  border-style: solid;
  pointer-events: none;
}

.page-products__hero-index::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.page-products__hero-index::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}

.page-products__hero-index-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--color-text-dim);
  margin-bottom: 18px;
}

.page-products__hero-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-products__hero-list li {
  border-bottom: 1px solid rgba(31, 42, 58, 0.6);
}

.page-products__hero-list a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 12px 4px;
  color: var(--color-text);
  text-decoration: none;
  font-size: 14px;
  transition: padding-left 0.3s var(--ease), color 0.3s;
}

.page-products__hero-list a:hover {
  color: var(--color-glow);
  padding-left: 12px;
}

.page-products__hero-list span {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-glow);
}

.page-products__overview {
  padding-top: 32px;
  padding-bottom: 56px;
}

.page-products__section-hd {
  margin-bottom: 32px;
}

.page-products__section-desc {
  color: var(--color-text-dim);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 640px;
  font-size: 15px;
}

.page-products__cards {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}

.page-products__card {
  background: var(--glass);
  -webkit-backdrop-filter: var(--blur);
  backdrop-filter: var(--blur);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  position: relative;
  transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s;
}

.page-products__card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--color-glow), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.page-products__card:hover {
  transform: translateY(-6px) rotate(-0.6deg) scale(1.01);
  border-color: var(--products-glow-line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--products-glow-fill);
}

.page-products__card:hover::after {
  opacity: 1;
}

.page-products__card-num {
  font-family: var(--font-mono);
  font-size: 26px;
  line-height: 1;
  color: var(--color-glow);
  opacity: 0.82;
  transform: skewX(-8deg);
  flex-shrink: 0;
}

.page-products__card-body h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.2;
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}

.page-products__card-body p {
  color: var(--color-text-dim);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

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

.page-products__card-meta li {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--color-glow);
  background: var(--products-glow-fill);
  border: 1px solid var(--products-glow-line);
  padding: 4px 8px;
  border-radius: 1px;
}

.page-products__overview-image {
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-panel);
  background: var(--color-surface);
}

.page-products__standings {
  position: relative;
  padding: 64px 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background:
    linear-gradient(115deg, transparent 0%, var(--products-glow-fill) 45%, transparent 72%),
    radial-gradient(900px 400px at 85% 20%, var(--products-red-glow), transparent 60%);
}

.page-products__standings-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.page-products__standings-lead {
  color: var(--color-text-dim);
  font-size: 15px;
  line-height: 1.75;
  margin: 16px 0 0;
}

.page-products__feature-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.page-products__feature-list li {
  position: relative;
  padding: 9px 0 9px 22px;
  color: var(--color-text-dim);
  line-height: 1.65;
  font-size: 14px;
  border-bottom: 1px dashed rgba(31, 42, 58, 0.6);
}

.page-products__feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 10px;
  height: 2px;
  background: var(--color-glow);
  transform: skewX(-20deg);
}

.page-products__standings-panel {
  background: var(--glass);
  -webkit-backdrop-filter: var(--blur);
  backdrop-filter: var(--blur);
  border: 1px solid var(--color-line);
  padding: 20px;
  position: relative;
}

.page-products__standings-panel::before,
.page-products__standings-panel::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: var(--color-glow);
  border-style: solid;
  pointer-events: none;
}

.page-products__standings-panel::before {
  top: -1px;
  right: -1px;
  border-width: 2px 2px 0 0;
}

.page-products__standings-panel::after {
  bottom: -1px;
  left: -1px;
  border-width: 0 0 2px 2px;
}

.page-products__panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-line);
}

.page-products__panel-title {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-products__panel-dot {
  width: 6px;
  height: 6px;
  background: var(--color-glow);
  display: inline-block;
  animation: page-products-pulse 2s ease infinite;
}

@keyframes page-products-pulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.5);
  }
  50% {
    opacity: 0.6;
    box-shadow: 0 0 0 5px rgba(0, 229, 255, 0);
  }
}

.page-products__panel-time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-text-dim);
}

.page-products__table-scroll {
  overflow-x: auto;
  margin: 16px -4px 0;
}

.page-products__table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 13px;
}

.page-products__table th {
  text-align: left;
  padding: 10px 12px;
  color: var(--color-text-dim);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.12em;
  border-bottom: 1px solid var(--color-line);
}

.page-products__table td {
  padding: 12px;
  border-bottom: 1px solid rgba(31, 42, 58, 0.5);
  color: var(--color-text);
}

.page-products__table tbody tr {
  transition: background 0.2s ease;
}

.page-products__table tbody tr:hover {
  background: var(--products-glow-fill);
}

.page-products__table tbody tr:last-child td {
  border-bottom: none;
}

.page-products__status {
  color: var(--color-glow);
  font-size: 12px;
}

.page-products__status::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: currentColor;
  margin-right: 5px;
  vertical-align: 1px;
}

.page-products__check,
.page-products__checking {
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.page-products__check {
  color: var(--color-success);
}

.page-products__checking {
  color: var(--color-warn);
}

.page-products__badges {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 6px;
  opacity: 0.55;
  transition: opacity 0.2s;
  font-size: 11px;
  color: var(--color-text-dim);
}

.page-products__table tr:hover .page-products__badges {
  opacity: 1;
}

.page-products__yellow-card,
.page-products__red-card {
  display: inline-block;
  width: 7px;
  height: 10px;
  border-radius: 1px;
  margin: 0 2px;
}

.page-products__yellow-card {
  background: var(--color-warn);
}

.page-products__red-card {
  background: var(--color-danger);
}

.page-products__standings-image {
  margin-top: 16px;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
}

.page-products__live {
  padding: 64px 0;
}

.page-products__live-layout {
  display: grid;
  gap: 24px;
}

.page-products__match {
  background: var(--glass);
  -webkit-backdrop-filter: var(--blur);
  backdrop-filter: var(--blur);
  border: 1px solid var(--color-line);
  border-left: 3px solid var(--color-glow);
  padding: 16px 18px;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-left-color 0.3s;
}

.page-products__match::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(90deg, var(--products-glow-fill), transparent);
  transition: width 0.3s var(--ease);
  pointer-events: none;
}

.page-products__match:hover {
  transform: translateX(8px);
  border-left-color: var(--color-glow);
}

.page-products__match:hover::before {
  width: 100%;
}

.page-products__match-league {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-text-dim);
  letter-spacing: 0.14em;
  margin-bottom: 10px;
  position: relative;
}

.page-products__match-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  position: relative;
}

.page-products__match-team {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
}

.page-products__match-team:last-child {
  justify-content: flex-end;
}

.page-products__match-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
}

.page-products__match-score {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-glow);
  background: var(--products-glow-fill);
  border: 1px solid var(--products-glow-line);
  padding: 2px 9px;
  border-radius: 2px;
  flex-shrink: 0;
}

.page-products__match-status {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-glow);
  background: var(--products-glow-fill);
  border: 1px solid var(--products-glow-line);
  padding: 3px 8px;
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.page-products__match-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(31, 42, 58, 0.5);
}

.page-products__match-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--color-text-dim);
}

.page-products__match-stat {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-text-dim);
}

.page-products__live-image {
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-panel);
  background: var(--color-surface);
}

.page-products__live-note {
  margin-top: 24px;
  padding: 16px 18px;
  border-left: 2px solid var(--color-glow);
  background: var(--products-glow-fill);
  color: var(--color-text-dim);
  line-height: 1.7;
  font-size: 14px;
}

.page-products__replay {
  padding: 64px 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: radial-gradient(800px 300px at 15% 50%, var(--products-glow-fill), transparent 60%);
}

.page-products__replay-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.page-products__replay-image {
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-panel);
  background: var(--color-surface);
}

.page-products__replay-copy .section-hd {
  margin-bottom: 16px;
}

.page-products__replay-lead {
  color: var(--color-text-dim);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 24px;
}

.page-products__replay-timeline {
  margin-top: 32px;
  padding: 10px 0 6px;
  position: relative;
}

.page-products__timeline-track {
  position: relative;
  height: 3px;
  background: linear-gradient(90deg, rgba(0, 229, 255, 0.1) 0%, rgba(0, 229, 255, 0.75) 50%, rgba(0, 229, 255, 0.15) 100%);
  margin-top: 36px;
}

.page-products__timeline-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 2px solid var(--color-glow);
  top: 50%;
  transform: translate(-50%, -50%);
}

.page-products__timeline-dot--day1 {
  left: 3%;
}

.page-products__timeline-dot--day3 {
  left: 10%;
}

.page-products__timeline-dot--day7 {
  left: 26%;
}

.page-products__timeline-dot--day10 {
  left: 40%;
}

.page-products__timeline-dot--day17 {
  left: 68%;
}

.page-products__timeline-now {
  position: absolute;
  top: -28px;
  right: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-glow);
}

.page-products__timeline-marker {
  position: absolute;
  top: 14px;
  left: 3%;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-text-dim);
  letter-spacing: 0.08em;
}

.page-products__benefits {
  padding: 64px 0;
}

.page-products__benefits-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 40px;
}

.page-products__benefit-card {
  background: var(--glass);
  -webkit-backdrop-filter: var(--blur);
  backdrop-filter: var(--blur);
  border: 1px solid var(--color-line);
  padding: 24px 20px;
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
}

.page-products__benefit-card::before {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  width: 18px;
  height: 18px;
  border-top: 2px solid var(--color-glow);
  border-left: 2px solid var(--color-glow);
  opacity: 0.5;
  transition: opacity 0.3s;
}

.page-products__benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35);
}

.page-products__benefit-card:hover::before {
  opacity: 1;
}

.page-products__benefit-card--pro {
  border-top: 2px solid var(--color-gold);
}

.page-products__benefit-card--expert {
  border-top: 2px solid var(--color-danger);
}

.page-products__benefit-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-line);
  margin-bottom: 14px;
}

.page-products__benefit-tier {
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.page-products__benefit-mark {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  padding: 4px 8px;
  border: 1px solid var(--color-line);
  color: var(--color-text-dim);
}

.page-products__benefit-card--pro .page-products__benefit-mark {
  color: var(--color-gold);
  border-color: rgba(255, 215, 0, 0.4);
}

.page-products__benefit-card--expert .page-products__benefit-mark {
  color: var(--color-glow);
  border-color: var(--products-glow-line);
}

.page-products__benefit-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-products__benefit-list li {
  position: relative;
  padding: 7px 0 7px 20px;
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.6;
}

.page-products__benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 8px;
  height: 2px;
  background: var(--color-glow);
}

.page-products__benefits-bottom {
  display: grid;
  gap: 24px;
}

.page-products__benefits-image {
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-panel);
  background: var(--color-surface);
}

.page-products__benefits-note {
  background: linear-gradient(135deg, var(--products-gold-glow), transparent 60%);
  border: 1px solid rgba(255, 215, 0, 0.18);
  padding: 28px 24px;
  position: relative;
}

.page-products__benefits-note::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 18px;
  height: 18px;
  border-right: 2px solid var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
  opacity: 0.6;
}

.page-products__benefits-note h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.2;
  margin: 10px 0 12px;
}

.page-products__benefits-note p {
  color: var(--color-text-dim);
  line-height: 1.7;
  font-size: 14px;
  margin: 0 0 10px;
}

.page-products__text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-glow);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-top: 12px;
  border-bottom: 1px solid var(--products-glow-line);
  padding-bottom: 2px;
  transition: border-bottom-color 0.3s;
}

.page-products__text-link:hover {
  border-bottom-color: var(--color-glow);
}

.page-products__cta {
  padding: 24px 0 80px;
}

.page-products__cta-inner {
  position: relative;
  padding: 48px 24px;
  border: 1px solid var(--color-line);
  background:
    linear-gradient(135deg, var(--products-glow-fill) 0%, transparent 50%),
    linear-gradient(315deg, var(--products-red-glow) 0%, transparent 40%);
  overflow: hidden;
}

.page-products__cta-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-glow), transparent 55%, var(--color-danger));
}

.page-products__cta-inner::after {
  content: "LJ";
  position: absolute;
  right: -20px;
  bottom: -40px;
  font-family: var(--font-heading);
  font-size: 180px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 229, 255, 0.07);
  transform: rotate(-12deg);
  pointer-events: none;
}

.page-products__cta-tag {
  position: relative;
}

.page-products__cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  margin: 14px 0 16px;
  max-width: 640px;
  position: relative;
}

.page-products__cta-inner p {
  color: var(--color-text-dim);
  line-height: 1.7;
  max-width: 560px;
  position: relative;
}

.page-products__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  position: relative;
}

.page-products__cta-actions .btn {
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

@media (min-width: 768px) {
  .page-products__cards {
    grid-template-columns: repeat(6, 1fr);
  }

  .page-products__card:nth-child(1) {
    grid-column: span 3;
  }

  .page-products__card:nth-child(2) {
    grid-column: span 3;
  }

  .page-products__card:nth-child(3) {
    grid-column: span 2;
  }

  .page-products__card:nth-child(4) {
    grid-column: span 2;
  }

  .page-products__card:nth-child(5) {
    grid-column: span 2;
  }

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

@media (min-width: 860px) {
  .page-products__hero {
    grid-template-columns: 1fr 340px;
    gap: 48px;
    padding: 64px 0 80px;
  }

  .page-products__standings-grid {
    grid-template-columns: 1fr 1.15fr;
    gap: 56px;
  }

  .page-products__live-layout {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
    gap: 32px;
  }

  .page-products__replay-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
  }

  .page-products__benefits-bottom {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 32px;
  }

  .page-products__replay-copy .section-hd {
    margin-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .page-products__cta-inner {
    padding: 56px 48px;
  }

  .page-products__cta-inner::after {
    font-size: 220px;
    right: -12px;
    bottom: -52px;
  }
}
