.page-privacy {
  --privacy-line: rgba(58, 95, 143, 0.14);
  --privacy-muted: rgba(245, 240, 232, 0.66);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--color-bg);
  background-image:
    radial-gradient(circle at 18% 0%, rgba(0, 255, 156, 0.06), transparent 34rem),
    linear-gradient(var(--privacy-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--privacy-line) 1px, transparent 1px);
  background-size: auto, 56px 56px, 56px 56px;
  color: var(--color-text);
  font-family: var(--font-body);
}

.page-privacy a {
  color: var(--color-accent);
  text-decoration: none;
}

.page-privacy a:hover {
  text-decoration: underline;
}

.privacy-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem) 0 2.5rem;
}

.privacy-hero::before {
  content: "";
  position: absolute;
  top: -12%;
  right: -6%;
  width: 56%;
  height: 84%;
  background: radial-gradient(circle, rgba(0, 255, 156, 0.1), transparent 66%);
  filter: blur(32px);
  pointer-events: none;
  z-index: -1;
}

.privacy-hero__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
}

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

.privacy-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
  font-family: var(--font-data);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-accent);
}

.privacy-hero__kicker::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--color-accent);
}

.privacy-hero h1 {
  margin: 0 0 1.25rem;
  font-family: var(--font-head);
  font-size: clamp(1.85rem, 4.6vw, 3.1rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.privacy-hero__lead {
  max-width: 36em;
  margin: 0;
  font-family: var(--font-head);
  font-weight: 300;
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
  line-height: 1.9;
  color: var(--privacy-muted);
}

.privacy-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(58, 95, 143, 0.45);
}

.privacy-hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-data);
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.72);
}

.privacy-hero__meta-item svg {
  width: 1.05rem;
  height: 1.05rem;
  color: var(--color-accent);
}

.privacy-hero__figure {
  margin: 0;
  min-width: 0;
}

.privacy-hero__frame {
  padding: 0.5rem;
  background: rgba(26, 43, 74, 0.55);
  border: 1px solid rgba(58, 95, 143, 0.45);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.privacy-hero__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.privacy-hero__caption {
  margin-top: 0.75rem;
  font-family: var(--font-data);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.48);
}

.privacy-toolbar {
  background: rgba(26, 43, 74, 0.55);
  border-top: 1px solid rgba(58, 95, 143, 0.3);
  border-bottom: 1px solid rgba(58, 95, 143, 0.3);
}

.privacy-toolbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.privacy-toc {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.privacy-toc__label {
  margin-right: 0.5rem;
  font-family: var(--font-data);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--color-accent);
}

.privacy-toc__link {
  padding: 0.32rem 0.6rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: var(--font-data);
  font-size: 0.76rem;
  color: rgba(245, 240, 232, 0.7);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.privacy-toc__link span {
  margin-right: 0.3rem;
  font-weight: 700;
  color: var(--color-accent);
}

.privacy-toc__link:hover {
  color: var(--color-text);
  border-color: rgba(0, 255, 156, 0.35);
  text-decoration: none;
  background: rgba(0, 255, 156, 0.05);
}

.privacy-toolbar__top {
  padding: 0.32rem 0.85rem;
  border: 1px solid rgba(255, 106, 0, 0.55);
  border-radius: 999px;
  font-family: var(--font-data);
  font-size: 0.76rem;
  color: var(--color-warn);
  transition: background 0.2s ease;
}

.privacy-toolbar__top:hover {
  background: rgba(255, 106, 0, 0.12);
  text-decoration: none;
}

.privacy-status {
  padding: 1.5rem 0;
  background: rgba(6, 15, 31, 0.45);
}

.privacy-status__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(58, 95, 143, 0.28);
  border: 1px solid rgba(58, 95, 143, 0.28);
}

.privacy-status__item {
  padding: 1rem 1.25rem;
  background: rgba(10, 27, 51, 0.92);
}

.privacy-status__item dt {
  font-family: var(--font-data);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.54);
}

.privacy-status__item dd {
  margin: 0.4rem 0 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-accent);
}

.privacy-section {
  position: relative;
  overflow: hidden;
  padding: clamp(2.6rem, 6vw, 5rem) 0;
}

.privacy-section + .privacy-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.7) 0 7px, transparent 7px) left / 18px 100% no-repeat,
    linear-gradient(45deg, rgba(0, 255, 156, 0.5) 0 7px, transparent 7px) right / 18px 100% no-repeat;
  opacity: 0.55;
  pointer-events: none;
}

.privacy-section[data-index]::after {
  content: attr(data-index);
  position: absolute;
  top: 1.25rem;
  right: -1rem;
  z-index: 0;
  font-family: var(--font-data);
  font-size: clamp(6rem, 16vw, 13rem);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 240, 232, 0.06);
  pointer-events: none;
  user-select: none;
}

.privacy-section > .content-container {
  position: relative;
  z-index: 1;
}

.privacy-section__head {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(58, 95, 143, 0.4);
}

.privacy-section__eyebrow {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-data);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-accent);
}

.privacy-section__title {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
}

.privacy-section__num {
  font-family: var(--font-data);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(0, 255, 156, 0.85);
}

.privacy-section h2 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  letter-spacing: -0.01em;
  color: var(--color-text);
}

.privacy-section__desc {
  max-width: 38em;
  margin: 0.75rem 0 0;
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--privacy-muted);
}

.privacy-clauses {
  display: grid;
  gap: 0.85rem;
}

.privacy-clause {
  display: grid;
  gap: 0.4rem;
  padding: 1.05rem 1.2rem;
  background: rgba(26, 43, 74, 0.5);
  border: 1px solid rgba(58, 95, 143, 0.22);
  border-left: 3px solid var(--color-accent);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}

.privacy-clause__code {
  font-family: var(--font-data);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(0, 255, 156, 0.8);
}

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

.privacy-clause h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--color-text);
}

.privacy-clause p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.68);
}

.privacy-alert {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 106, 0, 0.07);
  border: 1px solid rgba(255, 106, 0, 0.32);
  font-size: 0.84rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.86);
}

.privacy-alert svg {
  flex: 0 0 auto;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.12rem;
  color: var(--color-warn);
}

.privacy-alert p {
  margin: 0;
}

.privacy-uses {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1px;
  background: rgba(58, 95, 143, 0.22);
  border: 1px solid rgba(58, 95, 143, 0.22);
}

.privacy-use {
  display: grid;
  gap: 0.8rem;
  padding: 1.3rem 1.4rem;
  background: rgba(10, 27, 51, 0.9);
}

.privacy-use__idx {
  font-family: var(--font-data);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 255, 156, 0.7);
}

.privacy-use h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text);
}

.privacy-use p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.68);
}

.privacy-storage {
  margin-top: 1.5rem;
  padding: 1.25rem 1.4rem;
  background: rgba(26, 43, 74, 0.42);
  border: 1px solid rgba(58, 95, 143, 0.3);
}

.privacy-storage__head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-family: var(--font-data);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--color-accent);
}

.privacy-storage__head svg {
  width: 1rem;
  height: 1rem;
}

.privacy-storage__list {
  display: grid;
  gap: 0.5rem;
  margin: 0;
}

.privacy-storage__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed rgba(58, 95, 143, 0.3);
}

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

.privacy-storage__row dt {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.66);
}

.privacy-storage__row dd {
  margin: 0;
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--color-text);
}

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

.privacy-share-card {
  position: relative;
  padding: 1.4rem 1.5rem 1.65rem;
  background: rgba(26, 43, 74, 0.55);
  border: 1px solid rgba(58, 95, 143, 0.3);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.privacy-share-card__flag {
  position: absolute;
  top: 1.2rem;
  right: 1.75rem;
  font-family: var(--font-data);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-warn);
}

.privacy-share-card h3 {
  margin: 0.4rem 0 0.55rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-text);
}

.privacy-share-card p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.78;
  color: rgba(245, 240, 232, 0.68);
}

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

.privacy-right {
  padding: 1.3rem 1.25rem 1.4rem;
  background: rgba(26, 43, 74, 0.4);
  border: 1px solid rgba(58, 95, 143, 0.24);
  border-left: 3px solid var(--color-border);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.privacy-right:hover {
  transform: translateX(4px);
  border-left-color: var(--color-accent);
}

.privacy-right__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 0.9rem;
  background: rgba(0, 255, 156, 0.09);
  border: 1px solid rgba(0, 255, 156, 0.22);
}

.privacy-right__icon svg {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--color-accent);
}

.privacy-right h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--color-text);
}

.privacy-right p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.64);
}

.privacy-note-short {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  background: rgba(124, 138, 90, 0.09);
  border: 1px solid rgba(124, 138, 90, 0.35);
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.82);
}

.privacy-note-short svg {
  flex: 0 0 auto;
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.1rem;
  color: var(--color-success);
}

.privacy-note-short p {
  margin: 0;
}

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

.privacy-contact__card {
  position: relative;
  padding: 1.5rem 1.5rem 1.6rem;
  background: rgba(26, 43, 74, 0.5);
  border: 1px solid rgba(58, 95, 143, 0.32);
}

.privacy-contact__card--primary {
  background: linear-gradient(135deg, rgba(0, 255, 156, 0.09), rgba(26, 43, 74, 0.62) 58%);
  border-color: rgba(0, 255, 156, 0.42);
}

.privacy-contact__card svg {
  display: block;
  width: 1.3rem;
  height: 1.3rem;
  margin-bottom: 0.85rem;
  color: var(--color-accent);
}

.privacy-contact__label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-data);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(245, 240, 232, 0.54);
}

.privacy-contact__value {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.08rem;
  line-height: 1.5;
  color: var(--color-text);
  overflow-wrap: anywhere;
}

.privacy-contact__card p {
  margin: 1rem 0 0;
  font-size: 0.78rem;
  line-height: 1.65;
  color: rgba(245, 240, 232, 0.6);
}

.privacy-footer-note {
  margin-top: 2rem;
  padding: 1rem 1.4rem;
  border: 1px dashed rgba(58, 95, 143, 0.5);
  font-size: 0.84rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.72);
}

.privacy-footer-note p {
  margin: 0;
}

.privacy-backtop {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 40;
  display: none;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--color-accent);
  box-shadow: 0 0 22px rgba(0, 255, 156, 0.32);
  font-family: var(--font-data);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--color-bg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.privacy-backtop:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 255, 156, 0.45);
  text-decoration: none;
}

@media (min-width: 768px) {
  .privacy-status__grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .privacy-use {
    grid-template-columns: 3.5rem 1fr;
    gap: 1rem;
  }

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

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

  .privacy-contact__card--primary {
    grid-column: span 2;
  }

  .privacy-backtop {
    display: block;
  }
}

@media (min-width: 1024px) {
  .privacy-hero__grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: 3rem;
  }

  .privacy-share-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .privacy-rights {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }

  .privacy-right {
    padding: 1.25rem 1.1rem 1.3rem;
  }

  .privacy-right p {
    font-size: 0.76rem;
  }

  .privacy-contact {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 1.25rem;
  }

  .privacy-contact__card--primary {
    grid-column: auto;
  }
}
