.page-privacy {
  --privacy-line: rgba(230, 192, 76, 0.22);
  --privacy-border: rgba(10, 28, 58, 0.12);
  --privacy-panel-pad: clamp(1.25rem, 3vw, 2.5rem);
  --privacy-accent-green: #1F9D61;
  background: var(--light-gray);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

.privacy-hero {
  position: relative;
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--deep-blue-2) 55%, var(--deep-blue) 100%);
  color: var(--white);
  padding: 1.75rem 0 0;
  overflow: hidden;
}

.privacy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.privacy-hero::after {
  content: "";
  position: absolute;
  right: -6%;
  top: 0;
  width: 22%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(230, 192, 76, 0.14) 50%, transparent 100%);
  transform: skewX(-8deg);
  pointer-events: none;
}

.privacy-hero .container {
  position: relative;
  z-index: 1;
}

.page-privacy .breadcrumb {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.68);
  padding-top: 0.4rem;
}

.page-privacy .breadcrumb__link {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.page-privacy .breadcrumb__sep {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0.5rem;
}

.page-privacy .breadcrumb__current {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.privacy-hero__grid {
  display: grid;
  gap: 2rem;
  align-items: end;
}

.privacy-hero__label {
  color: var(--neon);
  margin-bottom: 1rem;
}

.privacy-hero__title {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  font-weight: 900;
  letter-spacing: 0.015em;
}

.privacy-hero__title em {
  color: var(--gold);
  font-style: italic;
}

.privacy-hero__lead {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  margin: 0;
}

.privacy-hero__status {
  position: relative;
  background: rgba(28, 43, 74, 0.72);
  border: 1px solid rgba(230, 192, 76, 0.35);
  border-radius: var(--radius-soft);
  padding: 1.25rem;
  box-shadow: var(--shadow-float);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.privacy-hero__status-title {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

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

.privacy-hero__status-item dt {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  font-family: var(--font-mono);
  margin-bottom: 0.1rem;
}

.privacy-hero__status-item dd {
  margin: 0;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-mono);
}

.privacy-hero__figure {
  position: relative;
  margin: 2.5rem 0 0;
  border-radius: var(--radius-soft) var(--radius-soft) 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 0;
}

.privacy-hero__figure img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.privacy-hero__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 28, 58, 0.55), transparent 60%);
  pointer-events: none;
}

.privacy-hero__figure-note {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.page-privacy .privacy-hero__figure .chip {
  background: rgba(10, 28, 58, 0.55);
  color: var(--gold);
  border: 1px solid rgba(230, 192, 76, 0.45);
}

.privacy-hero__figure-meta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--neon);
}

.privacy-body {
  padding: 3.5rem 0 4.5rem;
  background: var(--light-gray);
}

.privacy-body__inner {
  display: grid;
  gap: 2.25rem;
  align-items: start;
}

.privacy-toc {
  background: #f7f9fd;
  border: 1px solid var(--privacy-border);
  border-radius: var(--radius-soft);
  padding: var(--privacy-panel-pad);
}

.privacy-toc__status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0 0.9rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-family: var(--font-mono);
}

.privacy-toc__nav {
  display: grid;
  gap: 0.35rem;
}

.privacy-toc__nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  color: var(--deep-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.privacy-toc__nav a::after {
  content: "→";
  color: var(--gold-deep);
  font-family: var(--font-mono);
}

.privacy-toc__nav a:hover,
.privacy-toc__nav a:focus-visible {
  background: var(--white);
  border-color: rgba(230, 192, 76, 0.45);
  color: var(--deep-blue);
  outline: none;
}

.privacy-toc__note {
  margin: 1.25rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--privacy-border);
  font-size: 0.8rem;
  color: #5a6b85;
  font-family: var(--font-mono);
}

.privacy-content {
  background: var(--white);
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-card);
  padding: var(--privacy-panel-pad);
}

.privacy-content__header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem 1rem;
  flex-wrap: wrap;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--privacy-border);
  margin-bottom: 0.25rem;
}

.privacy-content__header p {
  flex: 1 1 260px;
  margin: 0;
  color: #42536e;
  font-size: 0.95rem;
}

.page-privacy .privacy-content .chip {
  background: rgba(230, 192, 76, 0.16);
  color: var(--gold-deep);
  border: 1px solid rgba(230, 192, 76, 0.4);
}

.policy-section {
  padding: 2.4rem 0;
  border-bottom: 1px solid #e7ebf3;
  scroll-margin-top: 110px;
}

.policy-section:last-child {
  border-bottom: 0;
  padding-bottom: 0.4rem;
}

.policy-section:target {
  animation: privacy-flash 1.6s ease;
}

@keyframes privacy-flash {
  0% {
    background: rgba(230, 192, 76, 0.16);
  }
  100% {
    background: transparent;
  }
}

.policy-section__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.policy-section__index {
  font-family: var(--font-mono);
  color: var(--gold-deep);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  padding-top: 0.35rem;
}

.policy-section__head h2 {
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  font-weight: 900;
  color: var(--deep-blue);
  margin: 0;
  letter-spacing: 0.01em;
}

.policy-section__mark {
  margin-left: auto;
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
  border-radius: 6px;
  position: relative;
  opacity: 0.9;
  flex: 0 0 auto;
}

.policy-section__mark::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(230, 192, 76, 0.35);
  border-radius: 3px;
}

.policy-section__lead {
  color: #42536e;
  font-size: 0.98rem;
  margin: 0 0 1.25rem;
  max-width: 62ch;
}

.policy-section__note {
  margin: 1.15rem 0 0;
  padding: 0.9rem 1rem;
  background: rgba(10, 28, 58, 0.04);
  border-radius: 12px;
  font-size: 0.88rem;
  color: #42536e;
}

.policy-section__note a {
  color: var(--link-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-highlight {
  margin: 1.15rem 0 0;
  padding: 1rem 1.15rem;
  background: linear-gradient(135deg, rgba(230, 192, 76, 0.14), rgba(230, 192, 76, 0.06));
  border: 1px solid rgba(230, 192, 76, 0.42);
  border-left-width: 4px;
  border-radius: 12px;
  color: var(--deep-blue);
  font-weight: 600;
  font-size: 0.94rem;
}

.policy-highlight--neon {
  background: linear-gradient(135deg, rgba(57, 255, 136, 0.12), rgba(57, 255, 136, 0.04));
  border-color: rgba(57, 255, 136, 0.4);
  border-left-width: 4px;
}

.privacy-data-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.privacy-data-card {
  background: #f5f7fb;
  border: 1px solid #e3e8f2;
  border-left: 3px solid var(--gold);
  border-radius: 14px;
  padding: 1.1rem 1.15rem;
  margin: 0;
}

.privacy-data-card__tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gold-deep);
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 0.4rem;
}

.privacy-data-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0.1rem 0 0.3rem;
  color: var(--deep-blue);
}

.privacy-data-card > p {
  margin: 0.35rem 0 0.8rem;
  font-size: 0.88rem;
  color: #5a6b85;
}

.privacy-data-card dl {
  margin: 0;
  display: grid;
  gap: 0.35rem;
}

.privacy-data-card dl div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.6rem;
  align-items: baseline;
  font-size: 0.82rem;
}

.privacy-data-card dl div::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--privacy-accent-green);
  border-radius: 2px;
  align-self: center;
  flex: 0 0 auto;
}

.privacy-data-card dl dt {
  color: #33445e;
  font-weight: 600;
}

.privacy-data-card dl dd {
  margin: 0;
  color: #5a6b85;
}

.privacy-use-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.privacy-use-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #f8fafd;
  border-radius: 14px;
  padding: 1.05rem 1.15rem;
  border: 1px solid #e8edf5;
  margin: 0;
}

.privacy-use-list__num {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--gold-deep);
  background: rgba(230, 192, 76, 0.14);
  padding: 0.3rem 0.5rem;
  border-radius: 8px;
  letter-spacing: 0.08em;
}

.privacy-use-list h3 {
  margin: 0 0 0.28rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--deep-blue);
}

.privacy-use-list p {
  margin: 0;
  font-size: 0.88rem;
  color: #5a6b85;
}

.privacy-share-grid {
  display: grid;
  gap: 1rem;
}

.privacy-share-allow,
.privacy-share-deny {
  border-radius: 16px;
  padding: 1.2rem 1.25rem;
  border: 1px solid #e3e8f2;
  background: #f8fafd;
  margin: 0;
}

.privacy-share-allow {
  border-left: 4px solid var(--privacy-accent-green);
}

.privacy-share-deny {
  border-left: 4px solid var(--deep-blue-3);
}

.privacy-share-allow__dot,
.privacy-share-deny__cross {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  margin-bottom: 0.5rem;
}

.privacy-share-allow__dot {
  background: var(--privacy-accent-green);
  box-shadow: 0 0 0 4px rgba(31, 157, 97, 0.15);
}

.privacy-share-deny__cross {
  background: var(--deep-blue-3);
  position: relative;
}

.privacy-share-deny__cross::before,
.privacy-share-deny__cross::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: 8px;
  height: 2px;
  background: var(--white);
  transform: rotate(45deg);
}

.privacy-share-deny__cross::after {
  transform: rotate(-45deg);
}

.privacy-share-allow h3,
.privacy-share-deny h3 {
  margin: 0.4rem 0 0.6rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--deep-blue);
}

.privacy-share-allow ul,
.privacy-share-deny ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.privacy-share-allow li,
.privacy-share-deny li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.88rem;
  color: #42536e;
}

.privacy-share-allow li::before {
  content: "/";
  position: absolute;
  left: 0;
  color: var(--privacy-accent-green);
  font-family: var(--font-mono);
  font-weight: 700;
}

.privacy-share-deny li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: var(--deep-blue-3);
  font-family: var(--font-mono);
  font-weight: 700;
}

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

.privacy-rights-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border-bottom: 1px dashed #dde3ee;
  padding-bottom: 1rem;
}

.privacy-rights-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.privacy-rights-item__code {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--gold-deep);
  background: rgba(230, 192, 76, 0.14);
  padding: 0.3rem 0.5rem;
  border-radius: 8px;
}

.privacy-rights-item h3 {
  margin: 0 0 0.28rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--deep-blue);
}

.privacy-rights-item p {
  margin: 0;
  font-size: 0.88rem;
  color: #5a6b85;
}

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

.privacy-update-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid #e3e8f2;
  border-radius: 14px;
  padding: 1rem 1.15rem;
  box-shadow: 0 4px 16px rgba(10, 28, 58, 0.04);
  margin: 0;
}

.privacy-update-item__version {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--white);
  background: var(--deep-blue);
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.privacy-update-item:first-child .privacy-update-item__version {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--deep-blue);
}

.privacy-update-item h3 {
  margin: 0 0 0.28rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--deep-blue);
}

.privacy-update-item p {
  margin: 0;
  font-size: 0.88rem;
  color: #5a6b85;
}

.privacy-security {
  position: relative;
  background: linear-gradient(135deg, var(--deep-blue), var(--deep-blue-2));
  padding: 4.5rem 0;
}

.privacy-security::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.privacy-security__panel {
  position: relative;
  background: rgba(10, 28, 58, 0.6);
  border: 1px solid rgba(230, 192, 76, 0.5);
  border-radius: 24px;
  padding: clamp(1.5rem, 4vw, 3rem);
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-float);
}

.privacy-security__top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.privacy-security .index-label {
  color: var(--gold);
}

.privacy-security__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 0 0 rgba(57, 255, 136, 0.5);
  animation: privacy-pulse 2.2s infinite;
  flex: 0 0 auto;
}

@keyframes privacy-pulse {
  70% {
    box-shadow: 0 0 0 10px rgba(57, 255, 136, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(57, 255, 136, 0);
  }
}

.privacy-security__panel h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  font-weight: 900;
  margin: 0.2rem 0 0.6rem;
}

.privacy-security__desc {
  color: rgba(255, 255, 255, 0.7);
  max-width: 46ch;
  margin: 0 auto 1.75rem;
  font-size: 0.95rem;
}

.privacy-security__measures {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
  text-align: left;
}

.privacy-security__measures > div {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
}

.privacy-security__measures span {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.86rem;
  min-width: 80px;
}

.privacy-security__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.privacy-links {
  background: var(--deep-blue);
  padding: 1.1rem 0;
  border-top: 1px solid rgba(230, 192, 76, 0.25);
}

.privacy-links__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.25rem;
}

.privacy-links__inner a {
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.privacy-links__inner a:hover,
.privacy-links__inner a:focus-visible {
  color: var(--gold);
}

.privacy-back-top {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  color: var(--deep-blue);
  border: 1px solid rgba(230, 192, 76, 0.65);
  border-radius: 999px;
  padding: 0.6rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-decoration: none;
  box-shadow: var(--shadow-float);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.privacy-back-top:hover,
.privacy-back-top:focus-visible {
  background: var(--gold);
  border-color: var(--gold-deep);
}

@media (min-width: 700px) {
  .privacy-hero__figure img {
    height: 260px;
  }

  .privacy-hero__status {
    padding: 1.4rem;
  }

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

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

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

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

@media (min-width: 1024px) {
  .privacy-hero {
    padding-top: 2.25rem;
  }

  .privacy-hero__grid {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 3.5rem;
  }

  .privacy-hero__status {
    margin-bottom: 0.5rem;
  }

  .privacy-hero__figure img {
    height: 320px;
  }

  .privacy-body__inner {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 2.5rem;
  }

  .privacy-toc {
    position: sticky;
    top: 110px;
  }

  .privacy-content {
    padding: clamp(2rem, 3vw, 3.25rem);
  }

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

  .privacy-back-top {
    right: 1.75rem;
    bottom: 1.75rem;
  }
}
