/* ===== Terms page ===== */
.terms-hero{
  padding: clamp(56px, 8vh, 84px) 0;
  position: relative; overflow: hidden;
}
.terms-hero::before{
  content:""; position:absolute; inset:0; pointer-events:none; opacity:.45;
  background:
    radial-gradient(900px 600px at 110% -20%, rgba(58,160,255,.16), transparent 60%),
    radial-gradient(800px 500px at -20% 120%, rgba(255,210,77,.10), transparent 60%),
    repeating-linear-gradient(180deg, rgba(255,255,255,.06) 0 2px, transparent 2px 16px);
  animation: termsRain 18s linear infinite;
  filter: blur(.15px);
}
@keyframes termsRain{ to{ background-position: 0 0, 0 0, 0 640px; } }

.page-title{ margin:0 0 6px; font-size: clamp(26px, 4.8vw, 40px); }
.page-lede{ margin:0; color:#dbe6fb; max-width: 70ch; }

.terms-content{ padding: 20px 0 84px; }
.terms-copy{
  display:grid; gap:12px; max-width: 85ch;
}
.terms-copy p{ line-height:1.6; color:#e6f0ff; }
.terms-copy p a{ color:#e6f0ff; text-decoration: underline; }

/* Subtle emphasis on the four required paragraphs (at the end of the section) */
.terms-copy p:nth-last-child(5),
.terms-copy p:nth-last-child(4),
.terms-copy p:nth-last-child(3),
.terms-copy p:nth-last-child(2){
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.12);
  border-radius: 12px; padding: 10px 12px;
  box-shadow:0 10px 28px rgba(0,0,0,.24);
}

/* Responsive */
@media (max-width: 720px){
  .terms-copy{ max-width: 100%; }
}
