.download-gate{
  position:fixed;
  inset:0;
  z-index:1400;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  opacity:0;
  pointer-events:none;
  transition:opacity .22s ease;
}
.download-gate.is-open{
  opacity:1;
  pointer-events:auto;
}
.download-gate__backdrop{
  position:absolute;
  inset:0;
  background:rgba(8,8,8,.64);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}
.download-gate__panel{
  position:relative;
  width:min(100%,560px);
  border-radius:28px;
  overflow:hidden;
  background:linear-gradient(180deg,#171411 0%,#0b0a09 100%);
  border:1px solid rgba(201,168,76,.34);
  box-shadow:0 32px 80px rgba(0,0,0,.4);
  color:#fff;
}
.download-gate__panel::before{
  content:'';
  position:absolute;
  inset:0;
  background:transparent;
  pointer-events:none;
}
.download-gate__content{
  position:relative;
  padding:32px 30px 28px;
}
.download-gate__close{
  position:absolute;
  top:16px;
  right:16px;
  width:40px;
  height:40px;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:1.1rem;
  cursor:pointer;
  transition:background .18s ease,transform .18s ease;
}
.download-gate__close:hover{
  background:rgba(255,255,255,.14);
  transform:translateY(-1px);
}
.download-gate__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(201,168,76,.3);
  background:rgba(201,168,76,.1);
  color:#f1d78a;
  font-family:'Cabinet Grotesk',sans-serif;
  font-size:.74rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.download-gate__dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#f1d78a;
  box-shadow:0 0 0 6px rgba(241,215,138,.12);
}
.download-gate__title{
  margin:20px 0 12px;
  font-family:'Cabinet Grotesk',sans-serif;
  font-size:clamp(2rem,4vw,2.7rem);
  line-height:.95;
  letter-spacing:-.03em;
}
.download-gate__text{
  font-size:1rem;
  line-height:1.72;
  color:rgba(255,255,255,.76);
  max-width:46ch;
}
.download-gate__text strong{
  color:#fff;
}
.download-gate__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}
.download-gate__cta,
.download-gate__secondary,
.download-gate__copy{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 18px;
  border-radius:14px;
  font-family:'Cabinet Grotesk',sans-serif;
  font-size:.92rem;
  font-weight:800;
  text-decoration:none;
  transition:transform .18s ease,filter .18s ease,background .18s ease,border-color .18s ease;
}
.download-gate__cta{
  background:linear-gradient(180deg,#f0d080 0%,#c9a84c 100%);
  color:#17120c;
  border:1px solid rgba(201,168,76,.8);
  box-shadow:0 18px 36px rgba(201,168,76,.18);
}
.download-gate__secondary{
  background:rgba(255,255,255,.05);
  color:#fff;
  border:1px solid rgba(255,255,255,.12);
}
.download-gate__copy{
  background:#fff;
  color:#17120c;
  border:1px solid rgba(255,255,255,.18);
}
.download-gate__cta:hover,
.download-gate__secondary:hover,
.download-gate__copy:hover{
  transform:translateY(-2px);
  filter:brightness(1.03);
}
.download-gate__copy.is-copied{
  background:#f0d080;
  border-color:rgba(201,168,76,.8);
}
.download-gate__footer{
  margin-top:16px;
  font-size:.82rem;
  line-height:1.6;
  color:rgba(255,255,255,.54);
}
body.download-gate-open{
  overflow:hidden;
}
@media(max-width:640px){
  .download-gate{
    padding:16px;
  }
  .download-gate__content{
    padding:28px 20px 22px;
  }
  .download-gate__actions{
    flex-direction:column;
  }
  .download-gate__cta,
  .download-gate__secondary{
    width:100%;
  }
}
