.page-products{
  --deco-gold:rgba(212,175,55,.5);
  --deco-orange:rgba(255,107,53,.55);
  --line-light:rgba(247,243,234,.16);
  --line-dark:rgba(17,17,17,.1);
  padding-top:96px;
  background:var(--forest);
}

.page-products .breadcrumb{
  padding-top:12px;
  padding-bottom:0;
}

.page-products .hero{
  position:relative;
  overflow:hidden;
  background:var(--forest);
  color:var(--cream);
}

.page-products .hero__slash{
  position:absolute;
  top:0;
  right:0;
  width:42%;
  height:100%;
  background-image:repeating-linear-gradient(115deg,rgba(247,243,234,.06) 0 1px,transparent 1px 14px);
  pointer-events:none;
  z-index:1;
}

.page-products .hero__grid{
  position:relative;
  z-index:2;
  padding:56px 0 80px;
  display:grid;
  gap:36px;
}

.page-products .hero__copy{
  max-width:720px;
}

.page-products .hero h1{
  font-family:var(--font-head);
  font-size:2.1rem;
  font-weight:900;
  line-height:1.12;
  margin:14px 0 18px;
  letter-spacing:-.02em;
}

.page-products .hero__lead{
  font-family:var(--font-body);
  font-size:1.02rem;
  line-height:1.8;
  color:rgba(247,243,234,.82);
  max-width:56ch;
}

.page-products .hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin:28px 0 20px;
}

.page-products .hero__actions .btn-primary{
  position:relative;
}

.page-products .hero__actions .btn-primary::after{
  content:"";
  position:absolute;
  inset:-4px;
  border-radius:var(--radius-pill);
  border:2px solid rgba(255,107,53,.45);
  animation:apps-pulse 2.6s var(--ease) infinite;
}

@keyframes apps-pulse{
  0%{
    transform:scale(1);
    opacity:.9;
  }
  70%{
    transform:scale(1.07);
    opacity:0;
  }
  100%{
    transform:scale(1.07);
    opacity:0;
  }
}

.page-products .hero__facts{
  display:grid;
  gap:10px;
  list-style:none;
  margin:24px 0 0;
  padding:0;
  font-family:var(--font-body);
  font-size:.92rem;
  color:rgba(247,243,234,.78);
}

.page-products .hero__facts li{
  position:relative;
  padding-left:22px;
}

.page-products .hero__facts li::before{
  content:"";
  position:absolute;
  left:2px;
  top:.5em;
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--gold);
  box-shadow:0 0 0 3px rgba(212,175,55,.16);
}

.page-products .hero__panel{
  align-self:end;
  border:1px solid var(--glass-border);
  border-radius:var(--radius-lg);
  background:var(--glass);
  backdrop-filter:blur(8px);
  padding:22px;
  display:grid;
  gap:6px;
}

.page-products .hero__panel-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  font-family:var(--font-mono);
  font-size:.8rem;
  color:rgba(247,243,234,.7);
  padding-bottom:12px;
  border-bottom:1px solid var(--line-light);
}

.page-products .hero__stats{
  display:grid;
  gap:4px;
}

.page-products .hero__stat{
  display:grid;
  grid-template-columns:auto 1fr;
  align-items:center;
  gap:12px;
  padding:14px 0;
  border-top:1px solid var(--line-light);
}

.page-products .hero__stat-index{
  font-family:var(--font-mono);
  font-size:.78rem;
  color:var(--gold);
  grid-row:1 / 3;
}

.page-products .hero__stat-num{
  font-family:var(--font-mono);
  font-size:1.5rem;
  font-weight:700;
  color:var(--cream);
  margin:0;
  line-height:1.1;
}

.page-products .hero__stat-label{
  font-size:.84rem;
  color:rgba(247,243,234,.66);
  margin:0;
  grid-column:2;
}

.page-products .features{
  background:var(--cream);
  color:var(--ink);
  padding:72px 0 80px;
}

.page-products .section-head{
  margin-bottom:36px;
}

.page-products .section-head .section-title{
  margin:14px 0 10px;
}

.page-products .section-head .section-subtitle{
  max-width:56ch;
}

.page-products .features__lead-figure{
  margin:0 0 40px;
}

.page-products .features__lead-figure img,
.page-products .features-aside__figure img,
.page-products .compat__figure img,
.page-products .install__figure img,
.page-products .changelog__figure img{
  width:100%;
  height:auto;
  display:block;
  border-radius:var(--radius-md);
}

.page-products .features__lead-figure img{
  border:1px solid var(--line-dark);
  box-shadow:var(--shadow-card);
}

.page-products .features-layout{
  display:grid;
  gap:28px;
}

.page-products .features-grid{
  display:grid;
  gap:18px;
}

.page-products .feature-card{
  position:relative;
  background:#fff;
  border-left:4px solid var(--gold);
  border-radius:var(--radius-md);
  padding:24px 20px 20px;
  box-shadow:var(--shadow-card);
  transition:transform .25s var(--ease),box-shadow .25s var(--ease),border-color .25s var(--ease);
}

.page-products .feature-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 32px rgba(13,59,46,.16);
  border-left-color:var(--orange);
}

.page-products .feature-card__icon{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  background:rgba(13,59,46,.06);
  border-radius:14px;
  margin-bottom:16px;
}

.page-products .feature-card__icon svg{
  width:30px;
  height:30px;
  color:var(--forest);
  transition:color .25s var(--ease);
}

.page-products .feature-card:hover .feature-card__icon svg{
  color:var(--gold);
}

.page-products .feature-card__no{
  position:absolute;
  top:18px;
  right:18px;
  font-family:var(--font-mono);
  font-size:.75rem;
  color:var(--moss);
  transition:color .25s var(--ease);
}

.page-products .feature-card:hover .feature-card__no{
  color:var(--orange);
}

.page-products .feature-card h3{
  font-family:var(--font-head);
  font-size:1.05rem;
  font-weight:900;
  margin:0 0 10px;
  color:var(--forest);
}

.page-products .feature-card p{
  font-family:var(--font-body);
  font-size:.92rem;
  line-height:1.7;
  color:var(--ink);
  margin:0;
}

.page-products .feature-card__note{
  margin-top:14px;
  padding-top:12px;
  border-top:1px solid var(--line-dark);
  font-family:var(--font-mono) !important;
  font-size:.8rem !important;
  color:var(--moss) !important;
  letter-spacing:.01em;
  transition:color .25s var(--ease);
}

.page-products .feature-card:hover .feature-card__note{
  color:var(--emerald);
}

.page-products .features-aside{
  background:var(--grass);
  color:var(--cream);
  border-radius:var(--radius-lg);
  padding:26px;
  align-self:start;
}

.page-products .features-aside__figure{
  margin:0 0 20px;
}

.page-products .features-aside h3{
  font-family:var(--font-head);
  font-size:1.1rem;
  font-weight:900;
  margin:0 0 10px;
  color:var(--cream);
}

.page-products .features-aside p{
  font-family:var(--font-body);
  font-size:.92rem;
  line-height:1.75;
  color:rgba(247,243,234,.82);
  margin:0 0 16px;
}

.page-products .features-aside__link{
  display:inline-block;
  color:var(--gold);
  font-family:var(--font-head);
  font-weight:700;
  text-decoration:none;
  border-bottom:1px solid rgba(212,175,55,.4);
  padding-bottom:2px;
}

.page-products .compat{
  position:relative;
  overflow:hidden;
  background:var(--grass);
  color:var(--cream);
  padding:72px 0 80px;
}

.page-products .compat::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(120deg,var(--gold),transparent 72%);
}

.page-products .compat__grid{
  display:grid;
  gap:36px;
}

.page-products .compat__copy .section-title{
  margin:14px 0 12px;
  color:var(--cream);
}

.page-products .compat__copy .section-subtitle{
  color:rgba(247,243,234,.72);
}

.page-products .compat__list{
  list-style:none;
  margin:30px 0 0;
  padding:0;
  display:grid;
  gap:18px;
}

.page-products .compat__list li{
  display:grid;
  grid-template-columns:92px 1fr;
  gap:6px 16px;
  font-family:var(--font-body);
  line-height:1.6;
}

.page-products .compat__list strong{
  font-family:var(--font-head);
  font-weight:700;
  color:var(--gold);
  font-size:.92rem;
}

.page-products .compat__list span{
  color:rgba(247,243,234,.84);
  font-size:.9rem;
}

.page-products .compat__picker{
  margin-top:30px;
  border:1px solid rgba(212,175,55,.45);
  border-radius:var(--radius-md);
  background:rgba(13,59,46,.25);
  overflow:hidden;
}

.page-products .compat__picker summary{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:16px 18px;
  cursor:pointer;
  font-family:var(--font-head);
  font-weight:700;
  color:var(--cream);
  list-style:none;
}

.page-products .compat__picker summary::-webkit-details-marker{
  display:none;
}

.page-products .compat__picker summary::after{
  content:"+";
  font-family:var(--font-mono);
  color:var(--gold);
  font-size:1.2rem;
}

.page-products .compat__picker[open] summary::after{
  content:"−";
}

.page-products .compat__picker-body{
  border-top:1px solid rgba(212,175,55,.3);
  padding:6px 0;
}

.page-products .compat__tier{
  display:grid;
  grid-template-columns:1fr 1.5fr 2fr;
  gap:10px;
  padding:12px 18px;
  font-size:.84rem;
  border-top:1px solid rgba(247,243,234,.1);
  font-family:var(--font-body);
  color:rgba(247,243,234,.75);
}

.page-products .compat__tier:first-child{
  border-top:none;
}

.page-products .compat__tier span:first-child{
  color:var(--gold);
  font-family:var(--font-head);
  font-weight:700;
}

.page-products .compat__tier span:nth-child(2){
  font-family:var(--font-mono);
}

.page-products .compat__note{
  margin-top:20px;
  font-size:.82rem;
  color:rgba(247,243,234,.62);
  font-family:var(--font-body);
}

.page-products .compat__figure-wrap{
  position:relative;
}

.page-products .compat__figure{
  margin:0;
}

.page-products .compat__figure img{
  border:1px solid var(--glass-border);
  box-shadow:var(--shadow-glass);
}

.page-products .compat__caption{
  margin-top:12px;
  font-size:.82rem;
  color:rgba(247,243,234,.66);
  font-family:var(--font-body);
}

.page-products .install{
  position:relative;
  overflow:hidden;
  background:var(--forest);
  color:var(--cream);
  padding:72px 0 80px;
}

.page-products .install::before{
  content:"";
  position:absolute;
  top:18%;
  left:-90px;
  width:280px;
  height:280px;
  border-radius:50%;
  background:radial-gradient(circle,var(--glass),transparent 68%);
  pointer-events:none;
}

.page-products .install .container{
  position:relative;
  z-index:2;
}

.page-products .install .section-title{
  color:var(--cream);
}

.page-products .install .section-subtitle{
  color:rgba(247,243,234,.72);
}

.page-products .install__layout{
  display:grid;
  gap:36px;
}

.page-products .install__steps{
  border-top:1px solid var(--line-light);
}

.page-products .install-step{
  border-bottom:1px solid var(--line-light);
}

.page-products .install-step summary{
  display:flex;
  align-items:center;
  gap:16px;
  padding:20px 4px;
  cursor:pointer;
  list-style:none;
  font-family:var(--font-head);
  font-weight:900;
  color:var(--cream);
}

.page-products .install-step summary::-webkit-details-marker{
  display:none;
}

.page-products .install-step summary::after{
  content:"+";
  margin-left:auto;
  font-family:var(--font-mono);
  color:var(--gold);
  font-size:1.25rem;
  transition:transform .3s var(--ease);
}

.page-products .install-step[open] summary::after{
  content:"×";
  transform:rotate(90deg);
}

.page-products .install-step__num{
  flex:none;
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:50%;
  border:1px solid var(--gold);
  color:var(--gold);
  font-family:var(--font-mono);
  font-size:.82rem;
}

.page-products .install-step__body{
  padding:0 4px 22px 54px;
}

.page-products .install-step__body p{
  margin:0;
  font-family:var(--font-body);
  font-size:.92rem;
  line-height:1.75;
  color:rgba(247,243,234,.78);
}

.page-products .install__figure{
  margin:0;
}

.page-products .install__figure img{
  border:1px solid var(--glass-border);
  box-shadow:var(--shadow-glass);
}

.page-products .install__figure figcaption{
  margin-top:12px;
  font-size:.82rem;
  color:rgba(247,243,234,.62);
  font-family:var(--font-body);
}

.page-products .changelog{
  background:var(--cream);
  color:var(--ink);
  padding:72px 0 80px;
}

.page-products .changelog__layout{
  display:grid;
  gap:36px;
}

.page-products .timeline{
  position:relative;
  display:grid;
  gap:16px;
  padding-left:26px;
}

.page-products .timeline::before{
  content:"";
  position:absolute;
  left:7px;
  top:10px;
  bottom:10px;
  width:2px;
  background:linear-gradient(to bottom,var(--gold) 0%,var(--orange) 92%);
}

.page-products .timeline__item{
  position:relative;
  padding:20px;
  background:#fff;
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-card);
}

.page-products .timeline__item::before{
  content:"";
  position:absolute;
  left:-26px;
  top:28px;
  width:12px;
  height:12px;
  border-radius:50%;
  background:var(--gold);
  border:2px solid var(--cream);
}

.page-products .timeline__badge{
  display:inline-block;
  padding:4px 10px;
  border-radius:var(--radius-pill);
  background:rgba(255,107,53,.08);
  font-family:var(--font-mono);
  font-size:.8rem;
  font-weight:700;
  color:var(--orange);
}

.page-products .timeline__body h3{
  margin:12px 0 10px;
  font-family:var(--font-head);
  font-size:1.08rem;
  font-weight:900;
  color:var(--forest);
}

.page-products .timeline__body ul{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:8px;
}

.page-products .timeline__body li{
  position:relative;
  padding-left:18px;
  font-family:var(--font-body);
  font-size:.9rem;
  line-height:1.65;
  color:var(--ink);
}

.page-products .timeline__body li::before{
  content:"";
  position:absolute;
  left:0;
  top:.62em;
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--gold);
}

.page-products .changelog__figure{
  margin:0;
  align-self:start;
}

.page-products .changelog__figure img{
  box-shadow:var(--shadow-card);
  border:1px solid var(--line-dark);
}

.page-products .changelog__figure figcaption{
  margin-top:12px;
  font-size:.82rem;
  color:var(--moss);
  font-family:var(--font-body);
}

.page-products .more{
  background:var(--forest);
  color:var(--cream);
  padding:56px 0 72px;
  position:relative;
  overflow:hidden;
}

.page-products .more__grid{
  display:grid;
  gap:20px;
}

.page-products .more__card{
  border:1px solid var(--glass-border);
  border-radius:var(--radius-lg);
  background:var(--glass);
  padding:30px;
}

.page-products .more__card h2{
  margin:12px 0 10px;
  font-family:var(--font-head);
  font-size:1.5rem;
  font-weight:900;
}

.page-products .more__card p{
  margin:0 0 18px;
  font-family:var(--font-body);
  line-height:1.75;
  color:rgba(247,243,234,.78);
}

.page-products .more__links{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.page-products .more__contact{
  border-top:1px solid var(--line-light);
  padding-top:18px;
  margin-top:8px;
  font-family:var(--font-mono);
  font-size:.84rem;
  color:var(--gold) !important;
}

.page-products .more__board{
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:26px;
  border-radius:var(--radius-lg);
  background:linear-gradient(135deg,rgba(212,175,55,.22),transparent 62%),var(--grass);
}

.page-products .more__board p{
  margin:0;
  font-family:var(--font-head);
  font-weight:700;
  color:rgba(247,243,234,.82);
}

.page-products .more__board a{
  align-self:flex-start;
  margin-top:10px;
  color:var(--cream);
  font-family:var(--font-head);
  font-size:1.3rem;
  font-weight:900;
  text-decoration:none;
  border-bottom:2px solid var(--gold);
  padding-bottom:4px;
}

@media (min-width: 900px){
  .page-products .hero__grid{
    grid-template-columns:1.15fr .85fr;
    align-items:center;
    padding-top:64px;
  }

  .page-products .hero h1{
    font-size:3.1rem;
  }

  .page-products .hero__facts{
    grid-template-columns:1fr 1fr;
  }

  .page-products .features-layout{
    grid-template-columns:1.2fr .8fr;
    align-items:start;
  }

  .page-products .features-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .page-products .feature-card--wide{
    grid-column:1 / -1;
  }

  .page-products .timeline{
    padding-left:34px;
  }

  .page-products .timeline__item::before{
    left:-34px;
  }
}

@media (min-width: 960px){
  .page-products .compat__grid{
    grid-template-columns:1fr .9fr;
    align-items:center;
    gap:52px;
  }

  .page-products .compat__copy{
    padding-right:12px;
  }

  .page-products .install__layout{
    grid-template-columns:1fr .8fr;
    align-items:start;
    gap:52px;
  }

  .page-products .changelog__layout{
    grid-template-columns:1.1fr .9fr;
    align-items:start;
    gap:52px;
  }
}

@media (min-width: 860px){
  .page-products .more__grid{
    grid-template-columns:1.4fr .6fr;
    align-items:stretch;
  }
}
