.page-privacy {
  --privacy-dot-size: 3px;
  --privacy-dot-gap: 24px;
  --privacy-line: rgba(74, 144, 217, 0.16);
  --privacy-card-glass: rgba(31, 58, 95, 0.48);
  --privacy-text-width: 70ch;
  --privacy-border: rgba(168, 216, 234, 0.18);
  position: relative;
  background-color: #0a1a2f;
  background-image: radial-gradient(circle at 2px 2px, rgba(74, 144, 217, 0.14) 1px, transparent 1.5px);
  background-size: 24px 24px;
  font-family: "JetBrains Mono", "Cascadia Code", Menlo, Consolas, "Courier New", monospace;
  line-height: 1.75;
  color: #e8f0f8;
  overflow-x: clip;
}

.page-privacy .container {
  width: min(100% - 2.5rem, 1280px);
  margin-inline: auto;
}

.page-privacy a {
  color: #a8d8ea;
  text-decoration-color: rgba(168, 216, 234, 0.4);
  text-underline-offset: 3px;
  transition: color 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), text-decoration-color 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.page-privacy a:hover,
.page-privacy a:focus-visible {
  color: #39ff14;
  text-decoration-color: #39ff14;
  outline: none;
}

.page-privacy .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: #a0b0c0;
}

.page-privacy .breadcrumbs li::before {
  content: "/";
  margin-right: 0.5rem;
  color: rgba(74, 144, 217, 0.6);
}

.page-privacy .breadcrumbs li:first-child::before {
  content: "";
  margin-right: 0;
}

.page-privacy .breadcrumbs li[aria-current="page"] {
  color: #39ff14;
}

.page-privacy .breadcrumbs a {
  color: #a0b0c0;
}

.page-privacy .breadcrumbs a:hover {
  color: #ff7a00;
}

.privacy-hero {
  position: relative;
  padding: 6.5rem 0 2.5rem;
  border-bottom: 1px solid var(--privacy-line);
}

.privacy-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  background: linear-gradient(115deg, transparent 18%, rgba(57, 255, 20, 0.05) 42%, rgba(255, 122, 0, 0.07) 72%);
  pointer-events: none;
}

.privacy-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.privacy-hero-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

.privacy-emblem {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid var(--privacy-border);
  background: radial-gradient(circle at 40% 35%, rgba(57, 255, 20, 0.1), rgba(10, 26, 47, 0.4) 60%);
  display: grid;
  place-items: center;
  box-shadow: 0 0 32px rgba(57, 255, 20, 0.1);
  margin-top: 0.5rem;
}

.privacy-emblem img {
  width: 100%;
  height: 100%;
  max-width: 120px;
  max-height: 120px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 2px 12px rgba(168, 216, 234, 0.25));
}

.privacy-hero-note {
  margin: 0;
  padding-left: 0.75rem;
  border-left: 2px solid #ff7a00;
  font-size: 0.78rem;
  line-height: 1.7;
  color: #a0b0c0;
  letter-spacing: 0.04em;
}

.privacy-hero-main {
  position: relative;
  padding-top: 0.5rem;
}

.privacy-hero-tag {
  margin-bottom: 1rem;
  display: inline-block;
}

.privacy-title {
  font-family: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.16;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
  color: #e8f0f8;
}

.privacy-title .text-gradient {
  background: linear-gradient(100deg, #39ff14 10%, #a8d8ea 60%, #ff7a00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.privacy-lead {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #e8f0f8;
  max-width: var(--privacy-text-width);
  margin: 0 0 1rem;
}

.privacy-synopsis {
  font-size: 0.93rem;
  line-height: 1.8;
  color: #a0b0c0;
  max-width: var(--privacy-text-width);
  margin: 0 0 1.25rem;
  padding: 0.9rem 1.1rem;
  background: var(--privacy-card-glass);
  border-left: 3px solid #4a90d9;
  border-radius: 0 10px 10px 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.privacy-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a0b0c0;
}

.privacy-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.privacy-hero-meta span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #39ff14;
  border-radius: 1px;
  transform: rotate(45deg);
}

.privacy-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

.privacy-toc {
  position: relative;
  border: 1px solid var(--privacy-border);
  border-radius: 12px;
  padding: 1.25rem 1.25rem 1.5rem;
  background: rgba(10, 26, 47, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-self: start;
  order: -1;
}

.privacy-toc-title {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--privacy-line);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a8d8ea;
}

.privacy-toc-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.privacy-toc-list li {
  margin-bottom: 0.35rem;
}

.privacy-toc-list a {
  display: block;
  padding: 0.45rem 0.5rem;
  font-size: 0.87rem;
  color: #a0b0c0;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.03em;
  border-left: 2px solid transparent;
  transition: background-color 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), color 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.page-privacy .privacy-toc-list a {
  color: #a0b0c0;
  text-decoration-color: transparent;
}

.privacy-toc-list a:hover {
  color: #39ff14;
  border-left-color: #39ff14;
  background: rgba(57, 255, 20, 0.06);
}

.privacy-backtop {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: #ff7a00;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.privacy-backtop::after {
  content: "↑";
  font-size: 1rem;
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.privacy-backtop:hover::after {
  transform: translateY(-4px);
}

.privacy-content {
  min-width: 0;
}

.privacy-doc-section {
  position: relative;
  padding: 1.5rem 0 2.5rem;
  border-bottom: 1px solid var(--privacy-line);
}

.privacy-doc-section:last-of-type {
  border-bottom: none;
}

.privacy-section-heading {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.35rem;
}

.privacy-section-index {
  flex: 0 0 auto;
  font-family: "Poppins", sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(140deg, #ff7a00 0%, #ffcc66 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
}

.privacy-doc-section h2 {
  font-family: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 0.15rem;
  color: #e8f0f8;
  line-height: 1.3;
}

.privacy-section-desc {
  margin: 0;
  font-size: 0.82rem;
  color: #a0b0c0;
  letter-spacing: 0.03em;
}

.privacy-text-block {
  max-width: 68ch;
}

.privacy-text-block p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.82;
  color: #e8f0f8;
}

.privacy-strong {
  color: #39ff14;
  font-weight: 500;
}

.privacy-code {
  font-size: 0.85em;
  background: rgba(74, 144, 217, 0.18);
  border: 1px solid rgba(74, 144, 217, 0.25);
  border-radius: 4px;
  padding: 0.12rem 0.4rem;
  color: #a8d8ea;
}

.privacy-list {
  list-style: none;
  margin: 1.25rem 0;
  padding: 0;
}

.privacy-list--grid {
  display: grid;
  gap: 0.75rem;
}

.privacy-list--grid li {
  position: relative;
  padding: 1rem 1rem 1rem 1.15rem;
  background: rgba(31, 58, 95, 0.32);
  border-radius: 10px;
  border: 1px solid rgba(168, 216, 234, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.privacy-list-label {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ff7a00;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.privacy-list-label::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #39ff14;
  border-radius: 50%;
  flex: 0 0 auto;
}

.privacy-list--grid li span:last-child {
  font-size: 0.87rem;
  line-height: 1.75;
  color: #c0d0e0;
}

.privacy-list--numbered {
  counter-reset: privacy-counter;
  margin: 1.25rem 0 1rem;
}

.privacy-list--numbered li {
  counter-increment: privacy-counter;
  position: relative;
  padding: 0.6rem 0 0.6rem 2.6rem;
  font-size: 0.95rem;
  line-height: 1.75;
}

.privacy-list--numbered li::before {
  content: counter(privacy-counter);
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 1.8rem;
  height: 1.8rem;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: linear-gradient(140deg, rgba(255, 122, 0, 0.22), rgba(255, 122, 0, 0.08));
  border: 1px solid rgba(255, 122, 0, 0.35);
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ff7a00;
}

.privacy-list--numbered li strong {
  color: #e8f0f8;
}

.privacy-callout {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin: 1.1rem 0 0;
  padding: 1rem 1.15rem;
  background: rgba(57, 255, 20, 0.06);
  border: 1px solid rgba(57, 255, 20, 0.2);
  border-radius: 10px;
}

.privacy-callout-mark {
  flex: 0 0 auto;
  width: 1.7rem;
  height: 1.7rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #39ff14;
  color: #0a1a2f;
  font-weight: 800;
  font-size: 0.9rem;
  font-family: "Poppins", sans-serif;
}

.privacy-callout p {
  margin: 0;
  font-size: 0.87rem;
  line-height: 1.75;
  color: #c0d0e0;
}

.privacy-storage-grid {
  list-style: none;
  margin: 1.25rem 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.privacy-storage-grid li {
  padding: 1rem 1.1rem;
  background: rgba(31, 58, 95, 0.4);
  border: 1px solid rgba(74, 144, 217, 0.18);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.privacy-storage-num {
  font-family: "Poppins", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #39ff14;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.privacy-storage-label {
  font-size: 0.8rem;
  color: #a0b0c0;
  line-height: 1.6;
}

.privacy-mt {
  margin-top: 1.1rem;
}

.privacy-rights-table {
  border: 1px solid var(--privacy-border);
  border-radius: 12px;
  overflow: hidden;
  margin: 1.25rem 0;
}

.privacy-rights-row {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid rgba(74, 144, 217, 0.12);
}

.privacy-rights-row:last-child {
  border-bottom: none;
}

.privacy-rights-term {
  padding: 0.85rem 1rem 0.25rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ff7a00;
}

.privacy-rights-desc {
  padding: 0 1rem 0.8rem;
  font-size: 0.86rem;
  color: #c0d0e0;
  line-height: 1.7;
}

.privacy-contact-line {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.7rem 0;
  border-bottom: 1px dashed rgba(74, 144, 217, 0.18);
}

.privacy-contact-line > span:first-child {
  font-size: 0.75rem;
  color: #a0b0c0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.privacy-contact-line a,
.privacy-contact-line > span:last-child {
  font-size: 0.95rem;
  color: #e8f0f8;
  text-decoration: none;
}

.privacy-contact-line a:hover {
  color: #39ff14;
}

.privacy-contact-note {
  margin: 1rem 0 0;
  font-size: 0.82rem;
  line-height: 1.75;
  color: #a0b0c0;
  padding: 0.75rem 1rem;
  background: rgba(31, 58, 95, 0.35);
  border-left: 3px solid #4a90d9;
  border-radius: 0 8px 8px 0;
}

.privacy-related {
  margin-top: 2.5rem;
  padding: 1.75rem;
  border-radius: 16px;
  border: 1px solid var(--privacy-border);
  background: linear-gradient(145deg, rgba(31, 58, 95, 0.55), rgba(10, 26, 47, 0.75));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.privacy-related-title {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a8d8ea;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--privacy-line);
}

.privacy-related-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.1rem;
}

.privacy-related-link {
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #e8f0f8;
  text-decoration: none;
  background: rgba(74, 144, 217, 0.1);
  border: 1px solid rgba(74, 144, 217, 0.15);
  transition: border-color 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), background-color 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.page-privacy .privacy-related-link {
  color: #e8f0f8;
}

.privacy-related-link:hover {
  border-color: rgba(57, 255, 20, 0.5);
  background: rgba(57, 255, 20, 0.08);
  transform: translateX(4px);
}

.privacy-related-note {
  margin: 0;
  font-size: 0.82rem;
  color: #a0b0c0;
  line-height: 1.7;
  border-left: 2px solid #ff7a00;
  padding-left: 0.85rem;
}

@media (min-width: 760px) {
  .privacy-hero {
    padding: 7.5rem 0 3.5rem;
  }

  .privacy-hero-inner {
    grid-template-columns: minmax(180px, 240px) 1fr;
    gap: 3rem;
  }

  .privacy-hero-aside {
    padding-top: 0;
  }

  .privacy-hero-main {
    padding-top: 0;
  }

  .privacy-list--grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

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

  .privacy-rights-row {
    grid-template-columns: 160px 1fr;
  }

  .privacy-rights-term {
    padding: 0.85rem 1rem;
  }

  .privacy-rights-desc {
    padding: 0.85rem 1rem;
  }

  .privacy-contact-line {
    flex-direction: row;
    align-items: baseline;
    gap: 1.25rem;
  }

  .privacy-contact-line > span:first-child {
    width: 150px;
    flex: 0 0 auto;
  }
}

@media (min-width: 1024px) {
  .privacy-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 3.5rem;
    align-items: start;
    padding-top: 3.5rem;
    padding-bottom: 5.5rem;
  }

  .privacy-toc {
    order: initial;
    position: sticky;
    top: calc(var(--header-top-h, 36px) + var(--header-main-h, 72px) + 1.25rem);
  }

  .privacy-doc-section {
    padding: 2rem 0 3rem;
  }

  .privacy-section-heading {
    gap: 1.35rem;
  }

  .privacy-section-index {
    font-size: 2.6rem;
  }

  .privacy-doc-section h2 {
    font-size: 1.55rem;
  }

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

  .privacy-related:not(:has(img))::before {
    content: "";
  }

  .privacy-related-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .privacy-related-link {
    flex: 1 1 calc(33.333% - 0.75rem);
  }
}

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

  .privacy-list--grid li:first-child {
    grid-column: 1 / -1;
  }
  .privacy-list--grid li:first-child {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-privacy *,
  .page-privacy *::before,
  .page-privacy *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
