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

:root {
  --purple: #8A32D0;
  --purple-bright: #B14CFA;
  --purple-glow: rgba(154, 56, 224, 0.58);
  --purple-soft: rgba(138, 50, 208, 0.16);
  --white: #FFFFFF;
  --gray: #A0A0A0;
  --black: #0A0A0A;
  --border: rgba(255, 255, 255, 0.09);
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  min-height: 100vh;
  overflow-x: clip;
  background:
    radial-gradient(circle at 78% 10%, rgba(138, 50, 208, 0.16), transparent 32rem),
    var(--black);
  color: var(--white);
  font-family: "Satoshi", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  cursor: none;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20000;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.cursor,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor {
  width: 12px;
  height: 12px;
  z-index: 10002;
  background: var(--purple-bright);
  transition: width .2s, height .2s;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  z-index: 10001;
  border: 1.5px solid rgba(177, 76, 250, .65);
  transition: width .25s, height .25s;
}

#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

nav#navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4rem;
  border-bottom: 1px solid transparent;
  transition: padding .3s, background .35s, border-color .35s;
}

nav#navbar.scrolled {
  padding-block: .72rem;
  border-color: var(--border);
  background: rgba(10, 10, 10, .86);
  backdrop-filter: blur(18px);
}

.nav-logo img {
  display: block;
  width: auto;
}

.nav-back {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .7rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: rgba(255, 255, 255, .78);
  font-size: .86rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color .2s, background .2s, color .2s, transform .2s;
}

.nav-back:hover {
  border-color: rgba(177, 76, 250, .45);
  background: var(--purple-soft);
  color: var(--white);
  transform: translateY(-2px);
}

main {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 10rem 0 6rem;
}

.privacy-hero {
  max-width: 790px;
  margin-bottom: 4rem;
  animation: intro .85s cubic-bezier(.22, 1, .36, 1) both;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--purple-bright);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
}

.privacy-hero h1 {
  margin-bottom: 1.3rem;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: .98;
  letter-spacing: -.045em;
}

.privacy-hero h1 span { color: var(--purple-bright); }

.privacy-hero > p {
  max-width: 680px;
  color: var(--gray);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
}

.updated {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, .55);
  font-size: .78rem;
}

.updated-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple-bright);
  box-shadow: 0 0 12px var(--purple-glow);
}

.privacy-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.privacy-index {
  position: sticky;
  top: 112px;
  padding: 1.3rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(14, 14, 16, .72);
  backdrop-filter: blur(14px);
}

.privacy-index > span {
  display: block;
  margin-bottom: .8rem;
  color: rgba(255, 255, 255, .34);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.privacy-index nav {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.privacy-index a {
  padding: .48rem .58rem;
  border-radius: 8px;
  color: rgba(255, 255, 255, .56);
  font-size: .76rem;
  text-decoration: none;
  transition: background .2s, color .2s, transform .2s;
}

.privacy-index a:hover,
.privacy-index a.active {
  background: var(--purple-soft);
  color: var(--white);
  transform: translateX(3px);
}

.privacy-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(20, 17, 24, .94), rgba(11, 11, 13, .96));
  box-shadow: 0 28px 90px rgba(0, 0, 0, .35);
}

.privacy-card section {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 1.25rem;
  padding: 2.2rem 2.4rem;
  scroll-margin-top: 110px;
  border-bottom: 1px solid var(--border);
}

.section-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(177, 76, 250, .28);
  border-radius: 10px;
  background: var(--purple-soft);
  color: #D39AFF;
  font-size: .7rem;
  font-weight: 700;
}

.privacy-card h2 {
  margin-bottom: .7rem;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.2;
  letter-spacing: -.02em;
}

.privacy-card p,
.privacy-card li {
  color: rgba(255, 255, 255, .66);
  font-size: .92rem;
}

.privacy-card p + p { margin-top: .9rem; }

.privacy-card ul {
  display: grid;
  gap: .48rem;
  margin: 1rem 0;
  padding-left: 1.25rem;
}

.privacy-card li::marker { color: var(--purple-bright); }

.privacy-card a:not(.contact-button) {
  color: #D39AFF;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.info-box {
  display: grid;
  gap: .25rem;
  margin-top: 1.15rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(177, 76, 250, .18);
  border-radius: 12px;
  background: rgba(138, 50, 208, .08);
}

.info-box p { margin: 0; }

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-top: 1.15rem;
  padding: .82rem 1.3rem;
  border-radius: 999px;
  background: var(--purple);
  box-shadow: 0 0 28px rgba(154, 56, 224, .35);
  color: var(--white);
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
}

.contact-button:hover {
  background: var(--purple-bright);
  box-shadow: 0 0 44px var(--purple-glow);
  transform: translateY(-2px);
}

.legal-note {
  display: flex;
  gap: .9rem;
  padding: 1.35rem 2.4rem;
  background: rgba(255, 255, 255, .025);
}

.legal-note > span { color: var(--purple-bright); }

.legal-note p {
  color: rgba(255, 255, 255, .42);
  font-size: .75rem;
}

footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 4rem;
  border-top: 1px solid var(--border);
  background: #080808;
}

footer p {
  color: rgba(255, 255, 255, .38);
  font-size: .75rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.25rem;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, .55);
  font-size: .78rem;
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover,
.footer-links a[aria-current="page"] {
  color: var(--purple-bright);
}

@keyframes intro {
  from {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (max-width: 900px) {
  body { cursor: auto; }

  .cursor,
  .cursor-ring { display: none; }

  nav#navbar { padding: .8rem 1.25rem; }

  .nav-logo img { height: 60px; }

  main {
    width: min(100% - 30px, 760px);
    padding-top: 8.5rem;
  }

  .privacy-layout { grid-template-columns: 1fr; }

  .privacy-index { position: static; }

  .privacy-index nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  footer {
    flex-direction: column;
    padding: 2rem 1.25rem;
    text-align: center;
  }

  .footer-links { justify-content: center; }
}

@media (max-width: 600px) {
  .nav-back {
    padding: .6rem .85rem;
    font-size: .76rem;
  }

  .privacy-hero { margin-bottom: 2.6rem; }

  .privacy-hero h1 { font-size: clamp(2.7rem, 15vw, 4.4rem); }

  .privacy-index nav { grid-template-columns: 1fr; }

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

  .privacy-card section {
    grid-template-columns: 1fr;
    gap: .75rem;
    padding: 1.55rem 1.25rem;
  }

  .section-number {
    width: 34px;
    height: 34px;
  }

  .legal-note { padding: 1.2rem 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
