/* ── DATA POLICY PAGE SPECIFIC STYLES ── */

body {
    background-color: #0B1229;
    color: #F8FAFF;
    overflow-x: hidden;
}
.glass-card {
    background: rgba(20, 30, 56, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(37, 99, 235, 0.15);
}
.ethereal-glow {
    position: absolute;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.12;
    z-index: -1;
}
.glow-1 { background: #3b82f6; top: -15%; right: -10%; }
.glow-2 { background: #8B5CF6; bottom: -15%; left: -10%; }

.policy-section {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.policy-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px -10px rgba(37, 99, 235, 0.2);
}

.glass-card {
    background: rgba(20, 30, 56, 0.4);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.rim-light {
    position: relative;
}

.rim-light::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.5), rgba(139, 92, 246, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.pt-32 {
    padding: 8rem;
}

/* ── RESPONSIVE: DATA POLICY ── */
@media (max-width: 1200px) {
  main.px-gutter,
  main {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .pt-32 {
    padding: 6rem 24px 3rem !important;
  }
}

@media (max-width: 992px) {
  .pt-32,
  main.pt-32 {
    padding: 5.5rem 20px 2.5rem !important;
  }

  .glass-card.p-10,
  .glass-card.p-8,
  .glass-card {
    padding: 1.5rem !important;
    border-radius: 1.5rem !important;
  }

  h1 {
    font-size: clamp(1.75rem, 5vw, 2.75rem) !important;
  }

  .ethereal-glow {
    width: 70vw;
    height: 70vw;
  }
}

@media (max-width: 768px) {
  .pt-32,
  main.pt-32 {
    padding: 5rem 1rem 2rem !important;
  }

  .mb-16,
  .mb-24 {
    margin-bottom: 2.5rem !important;
  }

  .glass-card {
    padding: 1.25rem !important;
    border-radius: 1.25rem !important;
  }

  h2.text-2xl,
  h3.text-2xl {
    font-size: 1.25rem !important;
  }
}

@media (max-width: 480px) {
  .pt-32,
  main.pt-32 {
    padding: 4.5rem 0.75rem 1.5rem !important;
  }

  .glass-card {
    padding: 1rem !important;
    border-radius: 1rem !important;
  }

  h1 {
    font-size: 1.6rem !important;
  }

  .ethereal-glow {
    opacity: 0.08;
  }
}
