.page-privacy {
  --privacy-panel: rgba(15, 42, 71, 0.5);
  --privacy-panel-border: rgba(42, 74, 115, 0.62);
  background:
    radial-gradient(1000px 400px at 88% -80px, rgba(0, 212, 255, 0.08), transparent 60%),
    radial-gradient(700px 380px at -100px 22%, rgba(255, 184, 0, 0.05), transparent 55%);
}

/* ---- Hero ---- */
.privacy-hero {
  position: relative;
  padding: 32px 0 0;
}

.privacy-hero::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 40px;
  background: linear-gradient(90deg, var(--accent-orange) 0%, var(--accent-blue) 55%, transparent 100%);
  opacity: 0.4;
}

.privacy-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.privacy-hero-copy .kicker {
  position: relative;
  margin: 0 0 12px;
  padding-left: 18px;
  color: var(--accent-orange);
}

.privacy-hero-copy .kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--accent-orange);
  transform: translateY(-50%) rotate(45deg);
}

.privacy-hero-copy h1 {
  margin: 0 0 18px;
  font-family: var(--font-head);
  font-size: clamp(2.125rem, 4vw + 0.875rem, 3.25rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  max-width: 16em;
}

.privacy-hero-desc {
  margin: 0;
  max-width: 60em;
  color: var(--text-sub);
  font-size: 1rem;
  line-height: 1.75;
}

.privacy-hero-aside {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  padding: 20px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.privacy-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 140px;
}

.privacy-hero-stat-num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.15;
  color: var(--accent-blue);
  letter-spacing: 0.02em;
}

.privacy-hero-stat-label {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--text-sub);
  line-height: 1.45;
}

.privacy-hero-figure {
  position: relative;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--privacy-panel-border);
  border-radius: var(--radius);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), 0 100%);
  background: var(--bg-panel);
}

.privacy-hero-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 38%, rgba(0, 212, 255, 0.2) 50%, transparent 62%);
  pointer-events: none;
}

.privacy-hero-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

/* ---- Brief / contents map ---- */
.privacy-brief {
  padding: 36px 0 8px;
}

.privacy-brief .kicker {
  position: relative;
  margin: 0 0 10px;
  padding-left: 18px;
  color: var(--accent-blue);
}

.privacy-brief .kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--accent-blue);
  transform: translateY(-50%) rotate(45deg);
}

.privacy-brief-desc {
  margin: 0 0 24px;
  max-width: 52em;
  color: var(--text-sub);
  line-height: 1.7;
}

.privacy-brief-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.privacy-brief-list li a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--privacy-panel);
  border: 1px solid var(--privacy-panel-border);
  border-radius: var(--radius);
  color: var(--text-main);
  text-decoration: none;
  transition: border-color var(--speed), transform var(--speed), background-color var(--speed);
}

.privacy-brief-list li a:hover {
  border-color: var(--accent-orange);
  transform: translateX(4px);
  background: rgba(255, 184, 0, 0.04);
}

.privacy-brief-num {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--accent-orange);
  border: 1px solid rgba(255, 184, 0, 0.35);
  border-radius: 4px;
  padding: 3px 8px;
  letter-spacing: 0.04em;
}

.privacy-brief-name {
  flex: 1;
  font-weight: 500;
}

.privacy-brief-arrow {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--text-sub);
}

/* ---- Chapters ---- */
.privacy-chapters {
  padding: 48px 0 24px;
}

.privacy-chapter {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  align-items: start;
  padding: 44px 0;
  border-top: 1px solid var(--border-color);
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.privacy-chapter:first-child {
  border-top: none;
}

.privacy-chapter-index .coord-num {
  font-size: clamp(2.25rem, 7vw, 3.25rem);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent-orange);
  opacity: 0.9;
  user-select: none;
  letter-spacing: 0.03em;
}

.privacy-chapter-body {
  min-width: 0;
}

.privacy-chapter-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  margin-bottom: 12px;
}

.privacy-chapter-head h2 {
  margin: 0;
  font-family: var(--font-head);
  font-size: var(--text-h2);
  line-height: 1.15;
  letter-spacing: 0.04em;
}

.privacy-chapter-en {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-sub);
  border-left: 1px solid var(--border-light);
  padding-left: 14px;
}

.privacy-chapter-lead {
  margin: 0 0 24px;
  max-width: 52em;
  color: var(--text-sub);
  line-height: 1.65;
}

/* ---- Item cards ---- */
.privacy-item-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.privacy-item {
  position: relative;
  overflow: hidden;
  padding: 22px 24px;
  background: var(--privacy-panel);
  border: 1px solid var(--privacy-panel-border);
  border-radius: var(--radius);
  transition: transform var(--speed), border-color var(--speed), background-color var(--speed);
}

.privacy-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-orange), var(--accent-blue));
  opacity: 0.7;
}

.privacy-item:hover {
  transform: translateY(-2px);
  border-color: var(--border-light);
  background: rgba(15, 42, 71, 0.7);
}

.privacy-item h3 {
  margin: 0 0 8px;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-main);
}

.privacy-item p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-sub);
}

.privacy-item-note {
  margin: 18px 0 0;
  padding: 12px 16px;
  border-left: 3px solid var(--accent-blue);
  background: rgba(0, 212, 255, 0.05);
  color: var(--text-sub);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* ---- Security list ---- */
.privacy-security-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.privacy-security-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  background: var(--privacy-panel);
  border: 1px solid var(--privacy-panel-border);
  border-radius: var(--radius);
  transition: border-color var(--speed), background-color var(--speed);
}

.privacy-security-item:hover {
  border-color: rgba(0, 212, 255, 0.4);
  background: rgba(0, 212, 255, 0.04);
}

.privacy-security-num {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent-blue);
  letter-spacing: 0.05em;
  border: 1px solid rgba(0, 212, 255, 0.35);
  border-radius: 4px;
  padding: 3px 7px;
  line-height: 1.4;
}

.privacy-security-item p {
  margin: 0;
  color: var(--text-sub);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.privacy-security-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text-main);
  font-weight: 500;
}

.privacy-security-note {
  margin: 20px 0 0;
  padding: 14px 18px;
  border-left: 3px solid var(--accent-orange);
  background: rgba(255, 184, 0, 0.05);
  color: var(--text-sub);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ---- Rights grid ---- */
.privacy-rights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.privacy-right {
  position: relative;
  padding: 20px 22px;
  background: var(--privacy-panel);
  border: 1px solid var(--privacy-panel-border);
  border-radius: var(--radius);
  transition: border-color var(--speed), background-color var(--speed);
}

.privacy-right h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent-orange);
  letter-spacing: 0.04em;
}

.privacy-right p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-sub);
}

.privacy-right:hover {
  border-color: rgba(255, 184, 0, 0.45);
  background: rgba(255, 184, 0, 0.03);
}

/* ---- Contact line ---- */
.privacy-contact-line {
  margin-top: 24px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.06), rgba(255, 184, 0, 0.04));
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}

.privacy-contact-line-title {
  margin: 0 0 16px;
  font-weight: 500;
  color: var(--text-main);
}

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

.privacy-contact-cell {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.privacy-contact-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-sub);
}

.privacy-contact-value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-main);
  word-break: break-all;
}

/* ---- Outro ---- */
.privacy-outro {
  padding: 56px 0 16px;
}

.privacy-outro-card {
  position: relative;
  overflow: hidden;
  padding: 40px 28px 32px;
  background: var(--privacy-panel);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}

.privacy-outro-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-blue));
}

.privacy-outro-card::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -20%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08), transparent 68%);
  pointer-events: none;
}

.privacy-outro-content {
  position: relative;
  z-index: 1;
}

.privacy-outro-content h2 {
  margin: 0 0 14px;
  font-family: var(--font-head);
  font-size: var(--text-h3);
  line-height: 1.25;
  letter-spacing: 0.04em;
}

.privacy-outro-content p {
  margin: 0 0 28px;
  max-width: 52em;
  color: var(--text-sub);
  line-height: 1.7;
}

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

.privacy-outro-actions .btn {
  min-width: 184px;
}

@media (min-width: 768px) {
  .privacy-hero {
    padding-top: 48px;
  }

  .privacy-hero-grid {
    grid-template-columns: 1fr 260px;
    gap: 40px;
    align-items: stretch;
  }

  .privacy-hero-aside {
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    border-top: none;
    border-bottom: none;
    border-left: 2px solid var(--border-color);
    padding: 8px 0 8px 24px;
  }

  .privacy-hero-figure img {
    aspect-ratio: 3 / 1;
  }

  .privacy-brief-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .privacy-chapter {
    grid-template-columns: 128px 1fr;
    gap: 28px;
    padding: 56px 0;
  }

  .privacy-chapter-index .coord-num {
    font-size: 4rem;
  }

  .privacy-item-grid,
  .privacy-security-list,
  .privacy-rights-grid {
    grid-template-columns: 1fr 1fr;
  }

  .privacy-contact-line-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (min-width: 1200px) {
  .privacy-hero-grid {
    grid-template-columns: 1fr 300px;
  }

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

  .privacy-chapter {
    grid-template-columns: 180px 1fr;
    gap: 48px;
  }

  .privacy-chapter-index .coord-num {
    font-size: 5rem;
  }

  .privacy-item-grid {
    gap: 16px;
  }
}
