.page-privacy {
  min-width: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 18%, rgba(58, 32, 90, 0.28) 0%, transparent 26%),
    radial-gradient(circle at 88% 62%, rgba(31, 77, 59, 0.14) 0%, transparent 30%),
    var(--bg);
}
.page-privacy img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.privacy-crumb-sep {
  margin: 0 0.35rem;
  color: var(--muted);
}

.privacy-head {
  position: relative;
  overflow: hidden;
  padding: 2rem 0 2.6rem;
  background:
    radial-gradient(ellipse at 86% 10%, rgba(58, 32, 90, 0.5) 0%, transparent 52%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border-gold);
}
.privacy-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 60%, rgba(212, 175, 55, 0.06) 60.5%, transparent 62%),
    repeating-linear-gradient(-45deg, rgba(212, 175, 55, 0.04) 0 1px, transparent 1px 14px);
  pointer-events: none;
}
.privacy-head > .container {
  position: relative;
  z-index: 1;
}
.privacy-head__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  margin-top: 2.2rem;
}
.privacy-head__kicker {
  margin: 0 0 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--gold-bright);
  text-transform: uppercase;
}
.page-privacy h1 {
  margin: 0 0 0.9rem;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(1.8rem, 4.2vw, 3rem);
  line-height: 1.22;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.privacy-head__lead {
  margin: 0 0 0.8rem;
  font-size: 1.06rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 48ch;
}
.privacy-head__meta {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  opacity: 0.8;
}
.privacy-head__figure {
  margin: 0;
  max-width: 420px;
  justify-self: center;
  text-align: center;
}
.privacy-head__figure img {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 18px 4px 18px 4px;
  box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, transparent 42%),
    var(--surface);
}
.privacy-head__figure figcaption {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  margin-top: var(--space);
}
.privacy-toc {
  position: relative;
  margin-bottom: 2.4rem;
  padding: 1.5rem 1.4rem;
  background: var(--surface);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 4px 18px 4px 18px;
}
.privacy-toc__title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--gold-bright);
  text-transform: uppercase;
}
.privacy-toc__title::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.privacy-toc__list {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
  display: grid;
  gap: 0.3rem;
}
.privacy-toc__list a {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.45rem 0.6rem;
  color: var(--ink);
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.16s ease, color 0.16s ease;
}
.privacy-toc__list a:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-bright);
}
.privacy-toc__no {
  min-width: 1.7em;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold);
}
.privacy-toc__contact {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.16s ease, border-color 0.16s ease;
}
.privacy-toc__contact:hover {
  color: var(--gold-bright);
  border-color: rgba(230, 200, 106, 0.55);
}
.privacy-toc__note {
  margin: 1rem 0 0;
  padding-top: 0.9rem;
  border-top: 1px dashed rgba(212, 175, 55, 0.22);
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--muted);
}
.privacy-docs {
  min-width: 0;
}
.privacy-section {
  padding-bottom: 2.4rem;
  margin-bottom: 2.4rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
}
.privacy-section[id] {
  scroll-margin-top: 130px;
}
.privacy-section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.privacy-section__head {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}
.privacy-section__index {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
  color: rgba(212, 175, 55, 0.3);
}
.privacy-section__head h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1.55rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.privacy-section__line {
  flex: 1;
  min-width: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.55), transparent);
}
.privacy-section__body > p {
  margin: 0 0 1.1rem;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--ink);
}

.privacy-note {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-top: 1.5rem;
  padding: 1.1rem 1.2rem;
  background: rgba(106, 141, 255, 0.07);
  border: 1px solid rgba(106, 141, 255, 0.28);
  border-radius: 2px 12px 2px 12px;
}
.privacy-note__mark {
  flex-shrink: 0;
  padding: 0.12rem 0.45rem;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 0.78rem;
  border-radius: 2px;
}
.privacy-note p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.75;
  color: var(--muted);
}

.privacy-collect-list {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}
.privacy-collect-list > li {
  position: relative;
  padding: 1.2rem 1.3rem 1.2rem 1.5rem;
  background: linear-gradient(90deg, rgba(43, 21, 70, 0.92) 0%, rgba(43, 21, 70, 0.55) 100%);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-left: 3px solid var(--gold);
  border-radius: 8px 0 10px 0;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.privacy-collect-list > li:hover {
  background: linear-gradient(90deg, rgba(58, 32, 90, 0.92) 0%, rgba(43, 21, 70, 0.7) 100%);
  border-color: var(--border-gold);
}
.privacy-collect-list h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--gold-bright);
}
.privacy-collect-list p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
}
.privacy-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem 0.9rem;
  margin-top: 1.4rem;
  padding: 0.95rem 1.1rem;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.03));
  border: 1px solid var(--border-gold);
  border-radius: 2px 14px 2px 14px;
}
.privacy-summary__label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--gold-bright);
  text-transform: uppercase;
  white-space: nowrap;
}
.privacy-summary__items {
  font-size: 0.94rem;
  color: var(--ink);
}

.privacy-use-list {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  counter-reset: use-step;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}
.privacy-use-list > li {
  position: relative;
  counter-increment: use-step;
  padding: 1.4rem 1.4rem 1.2rem 2.2rem;
  background: var(--surface);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 8px 0 12px 0;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.privacy-use-list > li::before {
  content: counter(use-step, decimal-leading-zero);
  position: absolute;
  top: 1.35rem;
  left: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  opacity: 0.85;
}
.privacy-use-list > li:hover {
  background: var(--surface-2);
  border-color: rgba(212, 175, 55, 0.5);
}
.privacy-use-list h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--gold-bright);
}
.privacy-use-list p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.8;
  color: var(--muted);
}

.privacy-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin: 1.5rem 0;
  padding: 1.2rem 1rem;
  background: rgba(18, 6, 31, 0.55);
  border: 1px dashed rgba(212, 175, 55, 0.35);
  border-radius: 10px 2px 10px 2px;
}
.privacy-flow__step {
  padding: 0.3rem 0.85rem;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 3px;
}
.privacy-flow__arrow {
  display: inline-block;
  font-style: normal;
  font-size: 1rem;
  line-height: 1;
  color: var(--gold);
  transform: rotate(90deg);
}

.privacy-shields {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
.privacy-shield {
  position: relative;
  padding: 1.4rem 1.2rem 1.2rem;
  background: var(--surface-2);
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 4px 20px 4px 20px;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.privacy-shield:hover {
  background: var(--surface);
  border-color: var(--gold);
}
.privacy-shield__no {
  display: inline-block;
  margin-bottom: 0.7rem;
  padding: 0.1rem 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 2px;
}
.privacy-shield h3 {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.5rem;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--gold-bright);
}
.privacy-shield .status-dot {
  flex-shrink: 0;
  margin-left: 0.2rem;
}
.privacy-shield p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--muted);
}

.privacy-store {
  margin: 1.5rem 0 0;
  padding: 1.2rem 1.4rem;
  background: rgba(31, 77, 59, 0.16);
  border-left: 3px solid var(--green);
  border-radius: 4px 12px 4px 12px;
}
.privacy-store h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold-bright);
}
.privacy-store p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.8;
  color: var(--muted);
}

.privacy-rights-grid {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.9rem;
}
.privacy-right {
  padding: 1.25rem 1.3rem;
  background: linear-gradient(145deg, rgba(58, 32, 90, 0.42) 0%, rgba(43, 21, 70, 0.75) 100%);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 4px 16px 4px 16px;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.privacy-right:hover {
  background: linear-gradient(145deg, rgba(58, 32, 90, 0.6) 0%, rgba(43, 21, 70, 0.85) 100%);
  border-color: rgba(212, 175, 55, 0.45);
}
.privacy-right h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--gold-bright);
}
.privacy-right p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
}

.privacy-contact {
  margin-top: 1.5rem;
  padding: 1.4rem 1.5rem;
  background: var(--surface);
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 4px 18px 4px 18px;
}
.privacy-contact h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gold-bright);
}
.privacy-contact p {
  margin: 0 0 0.7rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--ink);
}
.privacy-contact p:last-child {
  margin-bottom: 0;
}
.privacy-contact a {
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(106, 141, 255, 0.3);
  transition: color 0.16s ease, border-bottom-color 0.16s ease;
}
.privacy-contact a:hover {
  color: var(--gold-bright);
  border-bottom-color: rgba(230, 200, 106, 0.5);
}
.privacy-email {
  font-family: var(--font-mono);
  font-size: 0.92rem;
  color: var(--gold-bright);
  background: rgba(212, 175, 55, 0.1);
  padding: 0.08rem 0.45rem;
  border-radius: 3px;
}

.privacy-foot {
  margin-top: calc(var(--space) * 0.8);
  padding: 2.4rem 1.5rem 2.2rem;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.13) 0%, transparent 62%),
    var(--bg-deep);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.privacy-foot__seal {
  max-width: 380px;
  margin: 0 auto;
}
.privacy-foot__lock {
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.privacy-foot__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--ink);
}
.privacy-foot__desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
}
.privacy-foot__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

@media (min-width: 720px) {
  .privacy-use-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .privacy-flow {
    flex-direction: row;
    justify-content: center;
    gap: 0.8rem;
  }
  .privacy-flow__arrow {
    transform: none;
    font-size: 1.15rem;
  }
  .privacy-shields {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .privacy-rights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .privacy-rights-grid li:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 768px) {
  .privacy-head {
    padding: 3.2rem 0 4rem;
  }
  .privacy-head__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 3rem;
  }
  .privacy-head__figure {
    justify-self: end;
  }
}

@media (min-width: 960px) {
  .privacy-layout {
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
  }
  .privacy-toc {
    position: sticky;
    top: 120px;
    margin-bottom: 0;
  }
}

@media (min-width: 1080px) {
  .privacy-rights-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .privacy-rights-grid li:last-child {
    grid-column: auto;
  }
}
