.page-products{
  --p-line: 1px solid rgba(123,47,255,.35);
  --p-glow: 0 0 18px rgba(57,255,136,.22);
}

.page-products .breadcrumbs{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
  max-width:var(--max-w);
  margin:0 auto;
  padding:20px var(--gutter) 0;
  font-family:var(--font-mono);
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.page-products .breadcrumbs a{
  color:var(--paper);
  text-decoration:none;
  border-bottom:1px solid transparent;
  transition:color .2s,border-color .2s;
}
.page-products .breadcrumbs a:hover{
  color:var(--neon);
  border-color:var(--neon);
}
.page-products .breadcrumbs [aria-current="page"]{
  color:var(--volt);
}

.page-products .products-hero{
  position:relative;
  padding:48px 0 56px;
  overflow:hidden;
  background:
    radial-gradient(900px 420px at 90% -10%, rgba(123,47,255,.4), transparent 60%),
    linear-gradient(135deg, var(--ink-3) 0%, var(--ink) 60%, var(--ink-2) 100%);
}
.page-products .products-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:repeating-linear-gradient(-45deg, transparent 0 18px, rgba(123,47,255,.07) 18px 19px);
  pointer-events:none;
}
.page-products .products-hero-inner{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:18px;
}
.page-products .products-hero-meta{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
}
.page-products .products-hero-note{
  font-size:12px;
  letter-spacing:.12em;
  color:var(--paper);
}
.page-products .products-hero-title{
  margin:0;
  max-width:12em;
  font-family:var(--font-head);
  font-weight:900;
  font-style:italic;
  text-transform:uppercase;
  font-size:clamp(30px,5.6vw,58px);
  line-height:1.06;
  letter-spacing:-.01em;
  color:var(--white);
  text-shadow:0 3px 0 rgba(0,0,0,.25);
}
.page-products .products-hero-title em{
  font-style:italic;
  color:var(--neon);
  text-shadow:0 0 22px rgba(57,255,136,.4);
}
.page-products .products-hero-lead{
  max-width:34em;
  margin:0;
  color:var(--paper);
  font-size:16px;
  line-height:1.75;
}
.page-products .products-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:6px;
}
.page-products .products-hero-data{
  position:absolute;
  z-index:1;
  right:4%;
  top:16%;
  display:none;
  transform:rotate(8deg);
  text-align:right;
}
.page-products .products-hero-data-num{
  display:block;
  font-family:var(--font-mono);
  font-weight:900;
  font-size:clamp(72px,11vw,150px);
  line-height:.9;
  color:rgba(255,215,0,.14);
  text-shadow:0 0 50px rgba(255,215,0,.25);
}
.page-products .products-hero-data-label{
  margin-top:10px;
  padding-top:8px;
  border-top:1px solid rgba(255,215,0,.5);
  font-family:var(--font-mono);
  font-size:13px;
  letter-spacing:.2em;
  color:var(--gold);
  display:inline-block;
}
.page-products .products-hero-speed{
  position:absolute;
  bottom:18%;
  left:var(--gutter);
  width:160px;
  height:2px;
  transform:rotate(-8deg);
  background:linear-gradient(90deg, var(--neon), transparent);
  pointer-events:none;
  opacity:.8;
}
.page-products .products-hero-speed-purple{
  left:calc(var(--gutter) + 130px);
  bottom:11%;
  width:110px;
  background:linear-gradient(90deg, var(--volt), transparent);
}

.page-products .products-anchor-nav{
  position:sticky;
  top:0;
  z-index:60;
  display:flex;
  gap:4px;
  padding:10px var(--gutter);
  background:rgba(11,27,61,.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--p-line);
  overflow-x:auto;
  scrollbar-width:none;
}
.page-products .products-anchor-nav::-webkit-scrollbar{
  display:none;
}
.page-products .products-anchor-nav a{
  flex:0 0 auto;
  padding:7px 12px;
  border:1px solid transparent;
  border-radius:2px;
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:.06em;
  color:var(--paper);
  text-decoration:none;
  transition:color .2s,border-color .2s,background .2s;
}
.page-products .products-anchor-nav a:hover{
  color:var(--neon);
  border-color:rgba(57,255,136,.6);
  background:rgba(57,255,136,.06);
}

.page-products .products-panel-overview,
.page-products .products-league-coverage,
.page-products .products-replay,
.page-products .products-sync,
.page-products .products-download{
  position:relative;
  overflow:hidden;
  padding:64px 0;
}
.page-products .products-panel-overview{
  background:linear-gradient(180deg, var(--ink) 0%, rgba(11,27,61,.6) 100%);
}
.page-products .products-league-coverage{
  background:radial-gradient(800px 320px at 88% 8%, rgba(123,47,255,.18), transparent 60%), var(--ink);
}
.page-products .products-replay{
  background:linear-gradient(180deg, var(--ink) 0%, rgba(15,42,74,.7));
}
.page-products .products-sync{
  background:radial-gradient(600px 300px at 8% 24%, rgba(57,255,136,.1), transparent 60%), linear-gradient(120deg, rgba(26,11,46,.85), var(--ink));
}
.page-products .products-download{
  background:radial-gradient(420px 260px at 18% 38%, rgba(255,215,0,.1), transparent 60%), var(--ink);
}
.page-products .products-section-head{
  position:relative;
  margin-bottom:32px;
  padding-left:18px;
  border-left:4px solid var(--volt);
}
.page-products .products-section-head .section-note{
  display:inline-block;
  margin-bottom:10px;
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--volt);
}
.page-products .products-section-head .section-title{
  margin:0;
  font-family:var(--font-head);
  font-weight:900;
  font-style:italic;
  text-transform:uppercase;
  letter-spacing:-.01em;
  font-size:clamp(26px,4.4vw,44px);
  line-height:1.1;
  color:var(--white);
}

.page-products .products-panel-grid{
  display:grid;
  gap:30px;
}
.page-products .products-panel-screen{
  position:relative;
  padding:12px;
  background:var(--ink-2);
  border:1px solid rgba(123,47,255,.35);
  box-shadow:0 24px 50px rgba(0,0,0,.35);
  clip-path:polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}
.page-products .products-screen-bar{
  display:flex;
  align-items:center;
  gap:6px;
  padding:8px 10px;
  background:rgba(11,27,61,.75);
}
.page-products .products-screen-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--neon);
  box-shadow:0 0 10px rgba(57,255,136,.55);
}
.page-products .products-screen-dot:nth-child(2){
  background:var(--gold);
  box-shadow:0 0 10px rgba(255,215,0,.5);
}
.page-products .products-screen-dot:nth-child(3){
  background:var(--volt);
  box-shadow:0 0 10px rgba(123,47,255,.55);
}
.page-products .products-screen-url{
  margin-left:8px;
  font-family:var(--font-mono);
  font-size:12px;
  color:var(--paper);
  letter-spacing:.1em;
}
.page-products .products-panel-screen .img-frame img,
.page-products .products-league-visual .img-frame img,
.page-products .products-replay-window .img-frame img,
.page-products .products-sync-visual .img-frame img,
.page-products .download-qr-frame .img-frame img{
  display:block;
  width:100%;
  height:auto;
}
.page-products .products-screen-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:12px;
}
.page-products .products-screen-stat{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
  padding:12px 8px;
  text-align:center;
  background:rgba(11,27,61,.6);
  border-top:1px solid rgba(255,215,0,.3);
}
.page-products .products-screen-stat .data-num{
  font-size:30px;
  line-height:1;
}
.page-products .products-panel-desc .lead{
  margin:0 0 8px;
  font-size:16px;
  line-height:1.75;
  color:var(--paper);
}
.page-products .products-module-list{
  margin:24px 0 22px;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.page-products .module-item{
  display:grid;
  grid-template-columns:34px 1fr auto;
  gap:4px 12px;
  align-items:baseline;
  padding:14px 14px 14px 16px;
  background:rgba(15,42,74,.6);
  border-left:3px solid var(--volt);
  border-bottom:1px solid rgba(123,47,255,.18);
  transition:border-color .2s, background .2s, transform .2s;
}
.page-products .module-item:hover{
  border-left-color:var(--neon);
  background:rgba(57,255,136,.07);
  transform:translateX(4px);
}
.page-products .module-index{
  font-family:var(--font-mono);
  font-size:12px;
  color:var(--neon);
}
.page-products .module-name{
  color:var(--white);
  font-weight:700;
  font-size:16px;
}
.page-products .module-detail{
  grid-column:2 / -1;
  color:var(--paper);
  font-size:13px;
  line-height:1.55;
}

.page-products .products-league-grid{
  display:grid;
  gap:30px;
}
.page-products .products-league-list{
  overflow:hidden;
  background:rgba(11,27,61,.6);
  border:1px solid rgba(123,47,255,.2);
}
.page-products .league-row{
  display:grid;
  grid-template-columns:64px 1fr auto auto;
  gap:10px;
  align-items:center;
  padding:15px 14px;
  border-bottom:1px solid rgba(123,47,255,.18);
  background:rgba(15,42,74,.55);
  transition:background .2s;
}
.page-products .league-row:last-child{
  border-bottom:0;
}
.page-products .league-row:hover{
  background:linear-gradient(90deg, rgba(57,255,136,.14), rgba(15,42,74,.2));
}
.page-products .league-code{
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:.02em;
  text-transform:uppercase;
  color:var(--volt);
  white-space:nowrap;
}
.page-products .league-name{
  font-weight:700;
  color:var(--white);
}
.page-products .league-round{
  font-family:var(--font-mono);
  font-size:13px;
  color:var(--gold);
  white-space:nowrap;
}
.page-products .products-league-note{
  margin:16px;
  padding-top:12px;
  border-top:1px dashed rgba(57,255,136,.3);
  color:var(--paper);
  font-size:14px;
  line-height:1.7;
}
.page-products .products-league-visual p{
  margin:16px 0 18px;
  color:var(--paper);
  font-size:15px;
  line-height:1.7;
}

.page-products .products-replay-layout{
  display:grid;
  gap:30px;
}
.page-products .products-replay-window{
  padding:12px;
  background:rgba(11,27,61,.5);
  border:1px solid rgba(57,255,136,.35);
  clip-path:polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
}
.page-products .products-replay-info p{
  margin:0 0 16px;
  color:var(--paper);
  font-size:15px;
  line-height:1.75;
}
.page-products .products-replay-list{
  margin:0 0 22px;
  padding:0;
  list-style:none;
  display:grid;
  gap:14px;
}
.page-products .products-replay-list li{
  padding-left:16px;
  border-left:3px solid rgba(255,215,0,.5);
  color:var(--paper);
  font-size:15px;
  line-height:1.7;
}

.page-products .products-sync-layout{
  display:grid;
  gap:30px;
}
.page-products .products-sync-steps{
  display:grid;
  gap:0;
}
.page-products .sync-step{
  display:flex;
  gap:16px;
  padding:18px 0;
  border-bottom:1px dashed rgba(123,47,255,.3);
}
.page-products .sync-step:last-child{
  border-bottom:0;
}
.page-products .sync-step-num{
  flex:0 0 38px;
  font-family:var(--font-mono);
  font-size:24px;
  font-weight:700;
  line-height:1.3;
  color:var(--gold);
  text-align:right;
}
.page-products .sync-step-title{
  margin:0 0 8px;
  font-size:18px;
  font-weight:700;
  color:var(--white);
}
.page-products .sync-step-body p{
  margin:0;
  color:var(--paper);
  font-size:15px;
  line-height:1.7;
}
.page-products .products-sync-visual{
  position:relative;
  padding:14px;
  background:rgba(15,42,74,.4);
  border:1px solid rgba(255,215,0,.25);
  clip-path:polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}
.page-products .products-sync-visual p{
  margin:14px 0 0;
  color:var(--paper);
  font-size:14px;
  line-height:1.7;
}
.page-products .products-sync::after{
  content:"";
  position:absolute;
  right:6%;
  bottom:8%;
  width:180px;
  height:2px;
  transform:rotate(-12deg);
  background:linear-gradient(90deg, transparent, var(--volt), transparent);
  opacity:.7;
  pointer-events:none;
}

.page-products .products-download-panel{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:26px;
  padding:34px 24px;
  background:linear-gradient(135deg, var(--ink-3), var(--ink) 70%);
  border:1px solid rgba(255,215,0,.4);
  clip-path:polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
}
.page-products .download-qr-frame{
  width:200px;
  max-width:100%;
  padding:12px;
  background:#fff;
  border-radius:6px;
  box-shadow:0 12px 30px rgba(0,0,0,.3);
}
.page-products .platform-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:12px;
}
.page-products .download-title{
  margin:0 0 12px;
  font-family:var(--font-head);
  font-size:24px;
  font-weight:900;
  font-style:italic;
  color:var(--white);
}
.page-products .download-info p{
  margin:0 0 14px;
  color:var(--paper);
  font-size:15px;
  line-height:1.7;
}
.page-products .download-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:10px;
}

.page-products .products-outro{
  position:relative;
  padding:60px 0 72px;
  background:linear-gradient(180deg, rgba(15,42,74,.5), var(--ink-3));
  border-top:1px solid rgba(57,255,136,.25);
}
.page-products .products-outro-inner{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:20px;
}
.page-products .products-outro-lead{
  max-width:66ch;
  margin:0;
  color:var(--paper);
}
.page-products .products-outro-links{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
}
.page-products .products-outro-links a{
  color:var(--neon);
  font-weight:600;
  text-decoration:none;
  border-bottom:1px solid transparent;
  transition:border-color .2s;
}
.page-products .products-outro-links a:hover{
  border-color:var(--neon);
}

@media (min-width:768px){
  .page-products .products-hero{
    padding:72px 0 84px;
  }
  .page-products .products-hero-data{
    display:block;
  }
  .page-products .products-panel-grid,
  .page-products .products-league-grid{
    grid-template-columns:minmax(0,1.08fr) minmax(0,.92fr);
    gap:36px;
    align-items:start;
  }
  .page-products .products-replay-layout{
    grid-template-columns:minmax(0,1.18fr) minmax(0,.82fr);
    gap:38px;
    align-items:center;
  }
  .page-products .products-sync-layout{
    grid-template-columns:minmax(0,1fr) minmax(0,.92fr);
    gap:38px;
    align-items:center;
  }
  .page-products .products-panel-desc{
    margin-top:0;
  }
  .page-products .products-download-panel{
    flex-direction:row;
    align-items:center;
  }
  .page-products .download-info{
    flex:1;
  }
}

@media (min-width:1024px){
  .page-products .products-panel-overview,
  .page-products .products-league-coverage,
  .page-products .products-replay,
  .page-products .products-sync,
  .page-products .products-download{
    padding:96px 0;
  }
  .page-products .products-hero-title{
    font-size:60px;
  }
  .page-products .module-item{
    grid-template-columns:40px 1fr 280px;
    align-items:center;
  }
  .page-products .module-detail{
    grid-column:3;
    grid-row:1;
    text-align:right;
  }
}
