:root {
  --p: #6a1b9a;
  --pl: #b983ff;
  --pdk: #1a0b2e;
  --sd: #4a148c;
  --light: #f3e8ff;
  --ink: #1f1f1f;
  --muted: #667781;
  --bg: #fafafa;
  --blue: #0ea5e9;
  --blue-d: #0284c7;
  --blue-l: #e0f2fe;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Nunito", sans-serif;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
}

nav {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(106, 27, 154, 0.08);
  padding: 0.9rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-back {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--p);
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  background: var(--light);
  border: 1px solid rgba(185, 131, 255, 0.3);
  transition: all 0.2s;
}
.nav-back:hover {
  background: rgba(185, 131, 255, 0.25);
}
.nav-back svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--p);
  stroke-width: 2;
  stroke-linecap: round;
}
.nav-brand {
  font-family: "Baloo Thambi 2", cursive;
  font-size: 1.15rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--p), var(--pl));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero {
  background: linear-gradient(135deg, var(--p), var(--sd));
  padding: 3.5rem 2.5rem 3rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-blob.b1 {
  width: 300px;
  height: 300px;
  background: rgba(185, 131, 255, 0.25);
  top: -80px;
  right: -60px;
  filter: blur(60px);
}
.hero-blob.b2 {
  width: 220px;
  height: 220px;
  background: rgba(74, 20, 140, 0.4);
  bottom: -60px;
  left: -40px;
  filter: blur(50px);
}
.hero-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}
.hero-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.6;
  stroke-linecap: round;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
}
.hero h1 {
  font-family: "Baloo Thambi 2", cursive;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.6rem;
}
.hero-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}
.hero-apps {
  display: inline-flex;
  gap: 0.6rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-app-tag {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 0.28rem 0.85rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 800;
}

.page-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.policy-nav {
  background: #fff;
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  border: 1.5px solid rgba(185, 131, 255, 0.14);
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}
.policy-nav-label {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 0.3rem;
}
.policy-link {
  font-size: 0.83rem;
  font-weight: 800;
  color: var(--muted);
  padding: 0.32rem 0.9rem;
  border-radius: 50px;
  border: 1.5px solid rgba(185, 131, 255, 0.2);
  text-decoration: none;
  transition: all 0.2s;
  background: #fff;
}
.policy-link:hover {
  background: var(--light);
  color: var(--p);
  border-color: rgba(185, 131, 255, 0.4);
}
.policy-link.active {
  background: linear-gradient(135deg, var(--p), var(--sd));
  color: #fff;
  border-color: transparent;
}

.intro-box {
  background: var(--light);
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
  border: 1.5px solid rgba(14, 165, 233, 0.25);
  margin-bottom: 1.4rem;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.72;
  font-weight: 700;
}

.section-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  border: 1.5px solid rgba(14, 165, 233, 0.12);
  margin-bottom: 1.2rem;
  transition: box-shadow 0.3s;
  animation: fadeUp 0.5s ease both;
}
.section-card:hover {
  box-shadow: 0 8px 30px rgba(14, 165, 233, 0.1);
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-card:nth-child(1) {
  animation-delay: 0.05s;
}
.section-card:nth-child(2) {
  animation-delay: 0.1s;
}
.section-card:nth-child(3) {
  animation-delay: 0.15s;
}
.section-card:nth-child(4) {
  animation-delay: 0.2s;
}
.section-card:nth-child(5) {
  animation-delay: 0.25s;
}
.section-card:nth-child(6) {
  animation-delay: 0.3s;
}

.section-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.9rem;
  border-bottom: 1.5px solid var(--blue-l);
}
.section-num {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--p), var(--sd));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Baloo Thambi 2", cursive;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
}
.section-label {
  font-family: "Baloo Thambi 2", cursive;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--p);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.item:last-child {
  margin-bottom: 0;
}
.item-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background: linear-gradient(135deg, var(--p), var(--pl));
  display: flex;
  align-items: center;
  justify-content: center;
}
.item-dot svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.item-text {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.65;
}
.item-text strong {
  color: var(--ink);
  font-weight: 800;
}

.footer-bar {
  background: var(--pdk);
  padding: 1.8rem 2.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
  line-height: 2;
}
.footer-brand {
  font-family: "Baloo Thambi 2", cursive;
  font-size: 1.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #b983ff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 0.3rem;
}
.footer-bar a {
  color: var(--pl);
  text-decoration: none;
  font-weight: 700;
}
.footer-bar a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  nav {
    padding: 0.75rem 1rem;
  }
  .hero {
    padding: 2.5rem 1.2rem 2.2rem;
  }
  .page-wrap {
    padding: 1.5rem 1rem 3rem;
  }
  .section-card {
    padding: 1.4rem 1.2rem;
  }
}
