.page-privacy {
  --privacy-grid-alpha: rgba(245, 245, 240, 0.045);
  position: relative;
  z-index: 0;
  min-height: calc(100vh - var(--header-h));
  padding: 34px 20px 80px;
  background:
    radial-gradient(circle at 15% 8%, rgba(108, 92, 231, 0.20), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(155, 89, 182, 0.16), transparent 30%),
    radial-gradient(circle at 52% 92%, rgba(255, 45, 120, 0.08), transparent 32%),
    var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow: clip;
}

.page-privacy::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--privacy-grid-alpha) 1px, transparent 1px),
    linear-gradient(90deg, var(--privacy-grid-alpha) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
  z-index: 0;
}

.page-privacy > * {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin-inline: auto;
}

.privacy-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--grey-purple);
  letter-spacing: .02em;
}

.privacy-breadcrumb a {
  color: var(--grey-purple);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--ease), border-color var(--ease);
}

.privacy-breadcrumb a:hover {
  color: var(--neon-pink);
  border-color: var(--neon-pink);
}

.privacy-breadcrumb [aria-current="page"] {
  color: var(--cream);
}

.crumb-sep {
  color: var(--violet);
}

.privacy-hero {
  margin: 44px 0 34px;
  max-width: 920px;
}

.privacy-hero .section-kicker {
  color: var(--violet);
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.privacy-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 9vw, 72px);
  line-height: 1.05;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin: 0 0 20px;
  color: var(--cream);
  text-shadow: 0 0 22px rgba(255, 45, 120, .30);
}

.privacy-hero h1::after {
  content: "";
  display: block;
  width: 128px;
  height: 6px;
  margin-top: 14px;
  background: linear-gradient(90deg, var(--neon-pink) 0 62%, var(--violet) 62% 100%);
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
}

.privacy-hero-desc {
  max-width: 760px;
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--grey-purple);
}

.privacy-toc {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 38px 0 56px;
  padding: 10px;
  background: rgba(255, 45, 120, .05);
  border: 1px solid rgba(255, 45, 120, .22);
  border-radius: 16px;
}

.toc-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(10, 10, 10, .5);
  border: 1px solid transparent;
  color: var(--cream);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.4;
  transition: border-color var(--ease), background var(--ease), transform var(--ease), color var(--ease);
}

.toc-link:hover {
  color: var(--neon-pink);
  border-color: rgba(255, 45, 120, .45);
  background: rgba(255, 45, 120, .08);
  transform: translateX(6px);
}

.toc-num {
  font-family: var(--font-accent);
  font-size: 13px;
  color: var(--lemon);
  background: rgba(249, 202, 36, .08);
  padding: 4px 7px;
  border-radius: 6px;
  letter-spacing: .06em;
}

.privacy-section {
  margin: 0 0 64px;
  padding: 34px 0 28px;
  border-top: 1px solid rgba(155, 89, 182, .26);
  scroll-margin-top: calc(var(--header-h) + 18px);
}

.privacy-section-top {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.privacy-index {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px;
  border-radius: 8px;
  background: var(--neon-pink);
  color: var(--ink);
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 0 16px rgba(255, 45, 120, .35);
}

.privacy-index svg {
  width: 16px;
  height: 16px;
}

.privacy-section h2 {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(26px, 5.4vw, 42px);
  line-height: 1.08;
  text-transform: uppercase;
  color: var(--cream);
}

.privacy-section h2::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 5px;
  margin-left: 12px;
  background: var(--neon-pink);
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  vertical-align: middle;
}

.privacy-section p,
.privacy-note {
  font-size: 16px;
  line-height: 1.8;
  color: var(--cream);
  opacity: .85;
}

.privacy-section strong {
  color: var(--neon-pink);
  font-weight: 800;
}

.privacy-note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--grey-purple);
  opacity: 1;
}

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

.collect-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.collect-list li {
  position: relative;
  padding: 13px 12px 13px 30px;
  border-bottom: 1px dashed rgba(155, 89, 182, .24);
  color: var(--cream);
  line-height: 1.7;
}

.collect-list li:last-child {
  border-bottom: 0;
}

.collect-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 22px;
  width: 10px;
  height: 10px;
  background: var(--electric);
  transform: rotate(45deg);
}

.collect-list li:nth-child(2)::before {
  background: var(--violet);
}

.collect-list li:nth-child(3)::before {
  background: var(--neon-pink);
}

.privacy-highlight {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 20px 0 0;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(108, 92, 231, .16), rgba(255, 45, 120, .08));
  border: 1px solid rgba(108, 92, 231, .35);
  border-radius: 14px;
}

.privacy-highlight svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--neon-pink);
}

.privacy-highlight p {
  margin: 0;
  font-size: 15px;
  color: var(--cream);
  opacity: .9;
}

.storage-grid {
  display: grid;
  gap: 24px;
  margin-top: 22px;
}

.storage-copy p {
  margin: 0;
}

.storage-figure {
  position: relative;
  margin: 0;
}

.storage-figure::before {
  content: "";
  position: absolute;
  top: -7px;
  right: -7px;
  width: 44px;
  height: 44px;
  border-top: 3px solid var(--neon-pink);
  border-right: 3px solid var(--neon-pink);
  opacity: .8;
}

.storage-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  border: 1px solid rgba(155, 89, 182, .3);
  border-radius: 14px;
  background: var(--purple-deep);
}

.storage-figure figcaption {
  margin-top: 9px;
  font-size: 13px;
  color: var(--grey-purple);
}

.third-party-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 22px;
}

.tp-card {
  padding: 18px;
  background: rgba(155, 89, 182, .08);
  border: 1px solid rgba(155, 89, 182, .26);
  border-radius: 14px;
  transition: border-color var(--ease), background var(--ease);
}

.tp-card:hover {
  border-color: rgba(255, 45, 120, .5);
  background: rgba(255, 45, 120, .06);
}

.tp-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
  color: var(--cream);
}

.tp-card p {
  margin: 0;
  font-size: 14px;
  color: var(--grey-purple);
  opacity: 1;
}

.tp-card a {
  color: var(--neon-pink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-rights-box {
  position: relative;
  margin-top: 22px;
  padding: 24px 40px 18px 20px;
  background: linear-gradient(135deg, rgba(249, 202, 36, .14), rgba(249, 202, 36, .04));
  border-left: 4px solid var(--lemon);
  border-radius: 0 16px 16px 0;
  color: var(--cream);
  line-height: 1.75;
}

.privacy-rights-box::before {
  content: "!";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  background: var(--lemon);
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(249, 202, 36, .28);
}

.privacy-rights-box p {
  margin: 0 0 10px;
  font-size: 15px;
  color: var(--cream);
  opacity: .92;
}

.privacy-rights-box p:last-child {
  margin-bottom: 0;
}

.privacy-term {
  position: relative;
  border-bottom: 1px dashed var(--violet);
  cursor: help;
  color: var(--lemon);
}

.privacy-tip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(6px);
  width: max-content;
  max-width: 240px;
  padding: 9px 12px;
  background: var(--purple-deep);
  border: 1px solid var(--violet);
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--cream);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
  pointer-events: none;
  z-index: 6;
}

.privacy-term:hover .privacy-tip,
.privacy-term:focus-within .privacy-tip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.privacy-outro {
  position: relative;
  overflow: hidden;
  margin: 16px 0 0;
  padding: 32px 22px 28px;
  background:
    linear-gradient(135deg, rgba(108, 92, 231, .18), rgba(255, 45, 120, .08)),
    var(--purple-deep);
  border: 1px solid rgba(255, 45, 120, .30);
  border-radius: 18px;
}

.privacy-outro::after {
  content: "安全第一";
  position: absolute;
  right: -8px;
  bottom: -14px;
  font-family: var(--font-head);
  font-size: 64px;
  line-height: 1;
  color: rgba(255, 255, 255, .045);
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}

.privacy-outro h2 {
  margin: 0;
  font-family: var(--font-head);
  font-size: 28px;
  line-height: 1.1;
  color: var(--cream);
}

.privacy-unwind {
  list-style: none;
  margin: 18px 0 24px;
  padding: 0;
}

.privacy-unwind li {
  position: relative;
  padding: 9px 0 9px 28px;
  color: var(--cream);
  line-height: 1.7;
}

.privacy-unwind li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 20px;
  width: 11px;
  height: 11px;
  background: var(--neon-pink);
  transform: rotate(45deg);
}

.privacy-outro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (min-width: 720px) {
  .page-privacy {
    padding: 48px 40px 96px;
  }

  .privacy-toc {
    grid-template-columns: repeat(4, 1fr);
  }

  .storage-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .third-party-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1080px) {
  .privacy-hero {
    margin-top: 72px;
  }

  .privacy-section {
    margin-bottom: 80px;
    padding: 40px 0 32px;
  }

  .privacy-section-top {
    margin-bottom: 20px;
  }

  .privacy-outro {
    padding: 40px 48px 36px;
  }
}
