.page-privacy {
  position: relative;
  background: var(--bg-main);
  overflow-x: hidden;
}

.page-privacy::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 88% 6%, rgba(169, 80, 255, 0.06) 0, transparent 280px),
    radial-gradient(circle at 8% 48%, rgba(255, 108, 10, 0.04) 0, transparent 320px),
    linear-gradient(115deg, transparent 0 42%, rgba(169, 80, 255, 0.05) 42.5%, transparent 44%, transparent 62%, rgba(255, 108, 10, 0.04) 63%, transparent 64%);
}

.page-privacy .privacy-container {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  padding-top: 24px;
  padding-bottom: 64px;
}

.page-privacy .breadcrumb {
  margin-bottom: 28px;
}

.privacy-head {
  padding: 0 20px 0 22px;
  border-left: 3px solid var(--accent-purple);
  margin-bottom: 22px;
}

.privacy-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-purple);
}

.privacy-kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-purple));
}

.privacy-title {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: var(--text-main);
}

.privacy-lead {
  margin: 0;
  max-width: 720px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-dim);
}

.privacy-scope {
  margin: 0 0 28px;
  padding: 16px 18px 16px 22px;
  background: linear-gradient(90deg, var(--bg-sub) 0%, rgba(28, 36, 64, 0.55) 100%);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-main);
}

.privacy-index {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 0 32px;
  padding: 18px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.privacy-index-title {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.privacy-index-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.privacy-index-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
  text-decoration: none;
  background: var(--bg-sub);
  border-left: 3px solid var(--border);
  transition: color 0.2s var(--ease-out), padding-left 0.2s var(--ease-out), border-color 0.2s var(--ease-out), background-color 0.2s var(--ease-out);
}

.privacy-index-item:hover,
.privacy-index-item:focus-visible {
  color: var(--accent-purple);
  border-left-color: var(--accent-purple);
  padding-left: 18px;
  background: var(--bg-main);
}

.privacy-index-num {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent);
}

.privacy-section {
  padding: 30px 0 26px;
  border-top: 1px solid var(--border);
}

.privacy-section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.privacy-section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  color: var(--accent-purple);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.privacy-section-icon svg {
  width: 21px;
  height: 21px;
}

.privacy-section-head h2 {
  margin: 0;
  font-size: 1.42rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--text-main);
}

.page-privacy .prose {
  max-width: 860px;
  color: var(--text-dim);
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.85;
}

.page-privacy .prose p {
  margin: 0 0 16px;
}

.privacy-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.privacy-list li {
  position: relative;
  padding-left: 22px;
}

.privacy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--accent-purple);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.privacy-list strong {
  font-weight: 700;
  color: var(--text-main);
}

.privacy-protection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.privacy-figure {
  margin: 0;
  padding: 12px 12px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.privacy-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
}

.privacy-figure figcaption {
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-dim);
}

.privacy-right-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  counter-reset: privacyRight;
}

.privacy-right-list li {
  position: relative;
  counter-increment: privacyRight;
  padding: 15px 16px 15px 52px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.privacy-right-list li::before {
  content: counter(privacyRight, decimal-leading-zero);
  position: absolute;
  left: 14px;
  top: 15px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent);
}

.privacy-right-list strong {
  font-weight: 700;
  color: var(--text-main);
}

.privacy-contact-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
  font-size: 0.9rem;
}

.privacy-contact-note a {
  color: var(--accent-purple);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-contact-note a:hover {
  color: var(--accent);
}

.privacy-doc-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 32px;
  margin-top: 36px;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .privacy-container {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .privacy-head {
    padding-left: 28px;
  }

  .privacy-title {
    font-size: 2.45rem;
  }

  .privacy-lead {
    font-size: 1.05rem;
  }

  .privacy-index {
    grid-template-columns: repeat(4, 1fr);
    padding: 20px;
  }

  .privacy-index-title {
    grid-column: 1 / -1;
  }

  .privacy-section {
    padding: 44px 0 38px;
  }

  .privacy-section-head {
    gap: 18px;
    margin-bottom: 24px;
  }

  .privacy-section-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .privacy-section-icon svg {
    width: 23px;
    height: 23px;
  }

  .privacy-section-head h2 {
    font-size: 1.65rem;
  }

  .page-privacy .prose {
    font-size: 1rem;
  }

  .privacy-list {
    gap: 12px;
  }

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

@media (min-width: 960px) {
  .privacy-protection-grid {
    grid-template-columns: minmax(0, 1fr) 340px;
  }
}
