/* Privacy Policy page
   High-fidelity desktop treatment based on the supplied STAK privacy-policy recording.
   Page-specific rules only. Shared header, CTA, footer and buttons remain owned by styles.css. */

.privacy-page{
  position:relative;
  background:#0b0d0f;
}

.privacy-card{
  overflow:hidden;
  border-radius:24px;
  background:#0d121c;
}

.privacy-copy{
  padding:68px 60px 72px;
}

.privacy-copy h1{
  margin:0 0 56px;
  color:#f7f7f8;
  font-size:52px;
  line-height:1.06;
  letter-spacing:-2.2px;
  font-weight:600;
}

.privacy-section{
  margin-top:46px;
}

.privacy-section:first-of-type{
  margin-top:0;
}

.privacy-section h2{
  margin:0 0 24px;
  color:#f5f5f6;
  font-size:34px;
  line-height:1.15;
  letter-spacing:-1.25px;
  font-weight:600;
}

.privacy-section h3{
  margin:34px 0 18px;
  color:#f2f2f4;
  font-size:21px;
  line-height:1.3;
  letter-spacing:-.45px;
  font-weight:600;
}

.privacy-section p,
.privacy-section li{
  color:#cdd0d5;
  font-size:19px;
  line-height:1.62;
  letter-spacing:-.12px;
}

.privacy-section p{
  margin:0 0 24px;
}

.privacy-section p:last-child{
  margin-bottom:0;
}

.privacy-section ul{
  margin:22px 0 0;
  padding-left:24px;
}

.privacy-section li{
  margin:2px 0;
}

.privacy-emphasis{
  max-width:1080px;
  color:#f3f3f4 !important;
  font-size:20px !important;
  line-height:1.48 !important;
  font-weight:600;
}

.privacy-contact a{
  color:inherit;
}

.privacy-contact a:hover{
  color:#fff;
}

.privacy-cta{
  padding-top:0;
}


/* Privacy page heading scene from the supplied reference */
.privacy-hero{
  position:relative;
  width:100%;
  height:300px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  isolation:isolate;
}

.privacy-hero-ambient{
  position:absolute;
  z-index:-1;
  inset:-50px 12% -40px;
  pointer-events:none;
  background:
    radial-gradient(circle at 50% 27%, rgba(2,81,255,.22) 0%, rgba(2,81,255,.09) 27%, rgba(2,81,255,0) 63%);
  filter:blur(8px);
}

.privacy-hero-title{
  position:relative;
  z-index:2;
  margin:0;
  color:#f7f7f8;
  font-size:76px;
  line-height:1;
  letter-spacing:-3.4px;
  font-weight:600;
  text-align:center;
}

.privacy-floater{
  position:absolute;
  z-index:1;
  pointer-events:none;
  will-change:transform;
}

.privacy-floater img{
  display:block;
  width:100%;
  height:auto;
  user-select:none;
  -webkit-user-drag:none;
}

.privacy-floater-left{
  left:max(9vw, 115px);
  top:69px;
  width:205px;
  animation:privacyFloatLeft 6.6s ease-in-out infinite;
}

.privacy-floater-left img{
  animation:privacyTwinkle 3.4s ease-in-out infinite;
}

.privacy-floater-right{
  right:max(8vw, 105px);
  top:51px;
  width:180px;
  animation:privacyFloatRight 6.9s ease-in-out infinite;
}

.privacy-floater-right img{
  animation:privacyCoinGlow 4.8s ease-in-out infinite;
}

@keyframes privacyFloatLeft{
  0%,100%{transform:translate3d(0,0,0) rotate(-1deg);}
  50%{transform:translate3d(7px,-13px,0) rotate(1.2deg);}
}

@keyframes privacyFloatRight{
  0%,100%{transform:translate3d(0,0,0) rotate(.8deg);}
  50%{transform:translate3d(-5px,-15px,0) rotate(-1.4deg);}
}

@keyframes privacyTwinkle{
  0%,100%{
    opacity:.78;
    filter:brightness(.94) drop-shadow(0 0 0 rgba(255,255,255,0));
  }
  50%{
    opacity:1;
    filter:brightness(1.18) drop-shadow(0 0 9px rgba(255,255,255,.12));
  }
}

@keyframes privacyCoinGlow{
  0%,100%{
    filter:brightness(.97) drop-shadow(0 10px 18px rgba(2,81,255,.08));
  }
  50%{
    filter:brightness(1.08) drop-shadow(0 14px 24px rgba(2,81,255,.17));
  }
}

@media(max-width:1100px){
  .privacy-hero{
    height:270px;
  }

  .privacy-hero-title{
    font-size:64px;
  }

  .privacy-floater-left{
    left:5vw;
    width:175px;
  }

  .privacy-floater-right{
    right:4.5vw;
    width:158px;
  }
}

@media(max-width:720px){
  .privacy-hero{
    height:225px;
  }

  .privacy-hero-title{
    font-size:46px;
    letter-spacing:-2px;
  }

  .privacy-floater-left{
    left:-26px;
    top:66px;
    width:125px;
    opacity:.72;
  }

  .privacy-floater-right{
    right:-20px;
    top:54px;
    width:120px;
    opacity:.9;
  }
}

@media(prefers-reduced-motion:reduce){
  .privacy-floater,
  .privacy-floater img{
    animation:none !important;
  }
}

/* Keep the supplied desktop composition intact on medium screens.
   These rules only prevent crowding and overflow. */
@media(max-width:1100px){
  .privacy-page{
    padding-top:54px;
  }

  .privacy-copy{
    padding:58px 48px 64px;
  }

  .privacy-copy h1{
    font-size:46px;
  }

  .privacy-section h2{
    font-size:31px;
  }

  .privacy-section p,
  .privacy-section li{
    font-size:18px;
  }
}

/* Conservative small-screen fallback only.
   Exact mobile matching should be tuned from a supplied mobile reference. */
@media(max-width:720px){
  .privacy-page{
    padding:28px 0 80px;
  }

  .privacy-card{
    border-radius:18px;
  }

  .privacy-copy{
    padding:38px 22px 46px;
  }

  .privacy-copy h1{
    margin-bottom:38px;
    font-size:38px;
    letter-spacing:-1.6px;
  }

  .privacy-section{
    margin-top:38px;
  }

  .privacy-section h2{
    margin-bottom:18px;
    font-size:28px;
    letter-spacing:-.9px;
  }

  .privacy-section h3{
    margin-top:28px;
    font-size:19px;
  }

  .privacy-section p,
  .privacy-section li{
    font-size:16px;
    line-height:1.65;
  }

  .privacy-emphasis{
    font-size:17px !important;
  }
}
