/* =========================================================
   RISK DISCLOSURE
   Detailed legal-style disclosure matching Terms and Privacy.
   ========================================================= */

.risk-page{
  position:relative;
  padding:0 0 132px;
  background:#0b0d0f;
}

/* Hero */
.risk-hero{
  position:relative;
  width:100%;
  height:300px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  isolation:isolate;
}

.risk-hero-ambient{
  position:absolute;
  z-index:-1;
  inset:-70px 11% -34px;
  pointer-events:none;
  background:
    radial-gradient(
      circle at 50% 25%,
      rgba(2,81,255,.22) 0%,
      rgba(2,81,255,.09) 28%,
      rgba(2,81,255,0) 64%
    );
  filter:blur(8px);
}

.risk-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;
}

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

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

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

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

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

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

/* Main legal card */
.risk-card{
  overflow:hidden;
  border-radius:24px;
  background:#0d121c;
}

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

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

.risk-section:first-child{
  margin-top:0;
}

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

.risk-intro h2{
  margin-bottom:8px;
}

.risk-updated{
  margin-top:0!important;
  color:#9b9fa7!important;
  font-size:15px!important;
}

.risk-updated span{
  margin-left:5px;
}

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

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

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

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

.risk-section li{
  margin:7px 0;
}

.risk-section a{
  color:#e6efff;
  text-decoration:underline;
  text-decoration-color:rgba(91,143,255,.50);
  text-underline-offset:4px;
}

.risk-section a:hover{
  color:#fff;
}

/* Important warning */
.risk-highlight{
  display:grid;
  grid-template-columns:64px minmax(0,1fr);
  gap:22px;
  align-items:start;
  margin:46px 0 0;
  padding:30px 32px;
  border:1px solid rgba(2,81,255,.28);
  border-radius:22px;
  background:
    radial-gradient(circle at 4% 18%,rgba(2,81,255,.13),transparent 30%),
    #101620;
}

.risk-highlight-icon{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border:1px solid rgba(103,151,255,.46);
  border-radius:50%;
  background:rgba(2,81,255,.10);
  color:#fff;
  font-size:22px;
  font-weight:700;
}

.risk-highlight>div>span{
  display:block;
  margin:2px 0 10px;
  color:#6c9cff;
  font-size:11px;
  line-height:1;
  font-weight:600;
  letter-spacing:.11em;
  text-transform:uppercase;
}

.risk-highlight h2{
  margin:0 0 11px;
  color:#f5f6f8;
  font-size:26px;
  line-height:1.25;
  letter-spacing:-.75px;
  font-weight:600;
}

.risk-highlight p{
  margin:0;
  color:#b9c0ca;
  font-size:16px;
  line-height:1.67;
}

/* Acknowledgement */
.risk-acknowledgement{
  padding:32px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  background:#10151e;
}

/* Related action */
.risk-related{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:44px;
  align-items:center;
  margin-top:54px;
  padding:34px 36px;
  border:1px solid rgba(2,81,255,.22);
  border-radius:22px;
  background:
    radial-gradient(circle at 92% 8%,rgba(2,81,255,.11),transparent 34%),
    #101620;
}

.risk-related-label{
  display:block;
  margin-bottom:15px;
  color:#5f93ff;
  font-size:11px;
  line-height:1;
  font-weight:600;
  letter-spacing:.10em;
  text-transform:uppercase;
}

.risk-related h2{
  max-width:780px;
  margin:0 0 12px;
  color:#f5f6f7;
  font-size:30px;
  line-height:1.18;
  letter-spacing:-1px;
  font-weight:600;
}

.risk-related p{
  max-width:780px;
  margin:0;
  color:#aeb5bf;
  font-size:15px;
  line-height:1.66;
}

.risk-related .button{
  white-space:nowrap;
}

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

/* Motion */
@keyframes riskFloatLeft{
  0%,100%{transform:translate3d(0,0,0) rotate(-1deg)}
  50%{transform:translate3d(7px,-13px,0) rotate(1.2deg)}
}

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

@keyframes riskTwinkle{
  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 riskCoinGlow{
  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));
  }
}

/* Responsive */
@media(max-width:1100px){
  .risk-hero{
    height:270px;
  }

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

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

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

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

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

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

@media(max-width:720px){
  .risk-page{
    padding-bottom:80px;
  }

  .risk-hero{
    height:225px;
  }

  .risk-hero-title{
    font-size:42px;
    letter-spacing:-2px;
  }

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

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

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

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

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

  .risk-section h2{
    margin-bottom:18px;
    font-size:27px;
  }

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

  .risk-highlight{
    grid-template-columns:1fr;
    gap:16px;
    margin-top:38px;
    padding:24px;
  }

  .risk-highlight h2{
    font-size:22px;
  }

  .risk-highlight p{
    font-size:15px;
  }

  .risk-acknowledgement{
    padding:24px;
  }

  .risk-related{
    grid-template-columns:1fr;
    gap:22px;
    margin-top:42px;
    padding:25px;
  }

  .risk-related h2{
    font-size:25px;
  }

  .risk-related .button{
    width:max-content;
  }
}

@media(max-width:420px){
  .risk-hero-title{
    max-width:250px;
    font-size:39px;
  }

  .risk-floater-left{
    left:-38px;
  }

  .risk-floater-right{
    right:-34px;
  }

  .risk-copy{
    padding-inline:19px;
  }
}

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