:root{
  --primary:#8B5CF6;
  --secondary:#6366F1;
  --text:#1f2937;
  --muted:#6b7280;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
  color:var(--text);
  min-height:100vh;
  overflow-x:hidden;
  background:
    radial-gradient(circle at 15% 15%, rgba(168,85,247,.35) 0%, transparent 30%),
    radial-gradient(circle at 85% 85%, rgba(99,102,241,.30) 0%, transparent 30%),
    radial-gradient(circle at 50% 0%, rgba(236,72,153,.12) 0%, transparent 40%),
    #0a0322;
}

/* Animated background blobs */

.blob{
  position:fixed;
  border-radius:50%;
  filter:blur(80px);
  opacity:.4;
  z-index:-1;
}

.blob1{
  width:350px;
  height:350px;
  background:#8B5CF6;
  top:-100px;
  left:-100px;
  animation:float1 12s infinite ease-in-out;
}

.blob2{
  width:400px;
  height:400px;
  background:#3B82F6;
  bottom:-150px;
  right:-100px;
  animation:float2 15s infinite ease-in-out;
}

@keyframes float1{
  50%{transform:translate(60px,40px);}
}

@keyframes float2{
  50%{transform:translate(-70px,-50px);}
}

/* hero-privacy */

.hero-privacy{
  text-align:center;
  padding:100px 20px 70px;
  animation:fadeUp 1s ease;
}

.hero-privacy h1{
  font-size:clamp(2.5rem,5vw,4.5rem);
  font-weight:800;
  color:white;
  margin-bottom:16px;
}

.hero-privacy p{
  color:#cbd5e1;
  font-size:1.15rem;
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* Main card */

.container{
  max-width:1000px;
  margin:auto;
  padding:0 20px 80px;
}

.policy-card{
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(25px);
  border:1px solid rgba(255,255,255,.12);
  border-radius:32px;
  padding:50px;
  box-shadow:
      0 20px 60px rgba(0,0,0,.3),
      inset 0 1px 0 rgba(255,255,255,.1);

  animation:fadeUp 1.3s ease;
}

/* Last Updated */

.updated{
  display:inline-block;
  padding:10px 18px;
  border-radius:999px;
  background:rgba(139,92,246,.15);
  color:#c4b5fd;
  margin-bottom:35px;
  font-weight:600;
}

/* Sections */

.section{
  margin-bottom:42px;
  transition:.35s;
}

.section:hover{
  transform:translateX(8px);
}

.section h2{
  color:white;
  margin-bottom:12px;
  font-size:1.45rem;
}

.section p,
.section li{
  color:#cbd5e1;
}

.section ul{
  padding-left:20px;
}

.section li{
  margin:8px 0;
}

/* Contact box */

.contact-box{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  padding:24px;
  border-radius:20px;
  margin-top:15px;
  line-height:22px;
}

.contact-box strong{
  color:white;
}

/* Footer */

.footer{
  text-align:center;
  color:#94a3b8;
  padding:40px 20px;
}

/* Mobile */

@media(max-width:768px){

  .policy-card{
    padding:28px;
    border-radius:24px;
  }

  .hero-privacy{
    padding-top:70px;
  }

  .section:hover{
    transform:none;
  }
}
