.privacy-page {
  min-width: 320px;
  overflow-x: clip;
  background: var(--surface-page);
  color: var(--text-primary);
}

.privacy-main {
  position: relative;
  isolation: isolate;
  padding: 132px clamp(20px, 4vw, 64px) 120px;
}

.privacy-ambient {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.privacy-ambient span {
  position: absolute;
  width: min(44vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(22, 121, 239, 0.08);
  filter: blur(90px);
}

.privacy-ambient span:first-child { top: 8%; left: -22%; }
.privacy-ambient span:last-child { top: 48%; right: -26%; opacity: 0.7; }

.privacy-hero,
.privacy-layout {
  width: min(100%, 1200px);
  margin-inline: auto;
}

.privacy-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(40px, 7vw, 88px);
  color: #fff;
  background:
    linear-gradient(rgba(22, 121, 239, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 121, 239, 0.07) 1px, transparent 1px),
    linear-gradient(145deg, #02005e, #00003f 72%);
  background-size: 40px 40px, 40px 40px, auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--squircle-wide, 36px);
  corner-shape: squircle;
  box-shadow: 0 32px 80px rgba(0, 0, 63, 0.18);
}

.privacy-hero__content { position: relative; z-index: 1; max-width: 780px; }

.privacy-hero__icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--squircle-compact, 18px);
  corner-shape: squircle;
  backdrop-filter: blur(12px);
}

.privacy-eyebrow {
  margin: 0 0 18px;
  color: #9dcdff;
  font-size: 0.75rem;
  font-weight: 550;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.privacy-hero h1 {
  max-width: 12ch;
  margin: 0;
  color: #fff;
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  font-weight: 430;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.privacy-hero__lead {
  max-width: 58ch;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
}

.privacy-hero__date {
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 500;
}

.privacy-hero__mark {
  position: absolute;
  right: clamp(20px, 6vw, 84px);
  bottom: -36px;
  width: clamp(200px, 31vw, 440px);
  height: auto;
  opacity: 0.08;
  filter: brightness(0) invert(1);
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 800px);
  justify-content: space-between;
  gap: clamp(44px, 7vw, 100px);
  padding-top: clamp(64px, 9vw, 112px);
}

.privacy-index {
  position: sticky;
  top: 116px;
  align-self: start;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(5, 71, 204, 0.1);
  border-radius: var(--squircle-medium, 22px);
  corner-shape: squircle;
  box-shadow: 0 18px 46px rgba(0, 0, 63, 0.07);
  backdrop-filter: blur(18px);
}

.privacy-index__toggle {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  color: var(--text-primary);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 550;
  letter-spacing: 0.12em;
  text-align: left;
  text-transform: uppercase;
}

.privacy-index__toggle svg { display: none; }

.privacy-index__panel {
  display: grid;
  gap: 4px;
  padding: 0 8px 10px;
}

html:not(.has-privacy-js) .privacy-index__panel { max-height: none; }

.privacy-index__panel a {
  min-height: 46px;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  color: var(--text-secondary);
  border-radius: 14px;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.35;
  transition: color 160ms ease, background 160ms ease;
}

.privacy-index__panel a span {
  color: var(--accent-primary);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.privacy-index__panel a:hover,
.privacy-index__panel a:focus-visible,
.privacy-index__panel a[aria-current="location"] {
  color: var(--text-primary);
  background: rgba(22, 121, 239, 0.08);
}

.privacy-document { min-width: 0; }
.privacy-document section { scroll-margin-top: 120px; }

.privacy-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px);
  background:
    radial-gradient(circle at 100% 0%, rgba(22, 121, 239, 0.08), transparent 36%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(5, 71, 204, 0.1);
  border-radius: var(--squircle-wide, 36px);
  corner-shape: squircle;
  box-shadow: 0 22px 58px rgba(0, 0, 63, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

.privacy-card--tint {
  background:
    radial-gradient(circle at 100% 0%, rgba(22, 121, 239, 0.1), transparent 38%),
    rgba(238, 246, 255, 0.94);
}

.privacy-card::before {
  content: "";
  position: absolute;
  inset: 28px auto 28px 0;
  width: 3px;
  border-radius: 999px;
  background: var(--accent-primary);
  opacity: 0;
  transform: scaleY(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.privacy-card.is-current::before { opacity: 1; transform: scaleY(1); }

.has-privacy-motion [data-privacy-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.has-privacy-motion [data-privacy-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.privacy-card__header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.privacy-card__icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--accent-primary);
  background: rgba(22, 121, 239, 0.1);
  border: 1px solid rgba(22, 121, 239, 0.12);
  border-radius: var(--squircle-compact, 18px);
  corner-shape: squircle;
}

.privacy-document section + section { margin-top: 56px; }
.privacy-document h2 {
  margin: 0 0 16px;
  color: var(--text-primary);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}
.privacy-card h2 { margin-bottom: 0; }
.privacy-document p {
  max-width: 72ch;
  margin: 0;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.85;
}
.privacy-document p + p { margin-top: 18px; }
.privacy-document a {
  color: var(--text-link);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.privacy-document a:hover { color: var(--accent-primary-hover); }

.privacy-contact {
  position: relative;
  width: min(100%, 1200px);
  min-height: 300px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
  overflow: hidden;
  margin: clamp(72px, 10vw, 136px) auto 0;
  padding: clamp(36px, 6vw, 72px);
  color: #fff;
  background: linear-gradient(145deg, #02005e, #00003f 78%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--squircle-wide, 36px);
  corner-shape: squircle;
  box-shadow: 0 28px 72px rgba(0, 0, 63, 0.16);
}

.privacy-contact__copy { position: relative; z-index: 1; max-width: 680px; }
.privacy-contact h2 {
  max-width: 16ch;
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  font-weight: 430;
  letter-spacing: -0.05em;
  line-height: 1;
}
.privacy-contact__copy > p:last-child {
  max-width: 62ch;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}
.privacy-contact__copy a { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.privacy-contact > .btn { position: relative; z-index: 1; white-space: nowrap; }
.privacy-contact__mark {
  position: absolute;
  right: 18%;
  bottom: -44%;
  width: min(38vw, 420px);
  height: auto;
  opacity: 0.06;
  filter: brightness(0) invert(1);
}

@media (max-width: 900px) {
  .privacy-main { padding-top: 104px; }
  .privacy-hero { min-height: 390px; }
  .privacy-layout { grid-template-columns: 1fr; gap: 40px; }
  .privacy-index { position: static; }
  .privacy-index__toggle svg { display: block; }
  .has-privacy-js .privacy-index__panel {
    max-height: 0;
    overflow: hidden;
    padding-bottom: 0;
    opacity: 0;
    transition: max-height 240ms ease, opacity 180ms ease, padding 240ms ease;
  }
  .privacy-index.is-open .privacy-index__panel {
    max-height: 560px;
    padding-bottom: 10px;
    opacity: 1;
  }
  .privacy-index.is-open .privacy-index__toggle svg { transform: rotate(180deg); }
  .privacy-contact { grid-template-columns: 1fr; align-items: start; }
  .privacy-contact > .btn { justify-self: start; }

  html:not(.has-privacy-js) .privacy-header { position: relative; }
  html:not(.has-privacy-js) .privacy-main { padding-top: 32px; }
  html:not(.has-privacy-js) .site-header__burger,
  html:not(.has-privacy-js) .mobile-menu-overlay { display: none; }
  html:not(.has-privacy-js) .privacy-header .mobile-menu {
    position: static;
    width: calc(100% - 32px);
    max-height: none;
    margin: 0 16px 16px;
    transform: none;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  html:not(.has-privacy-js) .mobile-solutions__panel { grid-template-rows: 1fr; }
}

@media (max-width: 620px) {
  .privacy-main { padding-inline: 16px; padding-bottom: 88px; }
  .privacy-hero { min-height: 420px; padding: 32px 24px; border-radius: 30px; }
  .privacy-hero__icon { width: 56px; height: 56px; margin-bottom: 24px; }
  .privacy-hero h1 { font-size: clamp(2.6rem, 14vw, 4rem); }
  .privacy-hero__lead { margin-top: 22px; }
  .privacy-document { padding-top: 64px; }
  .privacy-contact { min-height: 0; padding: 36px 24px; border-radius: 30px; }
  .privacy-contact > .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  [data-privacy-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
  .privacy-page *,
  .privacy-page *::before,
  .privacy-page *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  @page { margin: 18mm; }

  .site-header,
  .site-footer,
  .privacy-index,
  .privacy-ambient,
  .privacy-hero__icon,
  .privacy-hero__mark,
  .privacy-card__icon,
  .privacy-contact__mark,
  .privacy-contact > .btn {
    display: none !important;
  }

  .privacy-page,
  .privacy-main,
  .privacy-hero,
  .privacy-card,
  .privacy-card--tint,
  .privacy-contact {
    color: #000 !important;
    background: #fff !important;
    box-shadow: none !important;
  }

  .privacy-main { padding: 0; }
  .privacy-hero {
    min-height: 0;
    display: block;
    padding: 0 0 12mm;
    border: 0;
  }
  .privacy-hero h1,
  .privacy-hero__lead,
  .privacy-hero__date,
  .privacy-eyebrow,
  .privacy-card h2,
  .privacy-card p,
  .privacy-card a,
  .privacy-contact h2,
  .privacy-contact p,
  .privacy-contact a { color: #000 !important; }

  .privacy-hero h1 { max-width: none; font-size: 30pt; }
  .privacy-layout { display: block; padding: 0; }
  .privacy-card {
    padding: 7mm 0;
    border: 0;
    border-top: 1px solid #bbb;
    border-radius: 0;
    break-inside: avoid;
  }
  .privacy-card::before { display: none; }
  .privacy-card__header { margin-bottom: 4mm; }
  .privacy-card h2 { break-after: avoid; }
  .privacy-card p { max-width: none; font-size: 10.5pt; line-height: 1.55; }

  .privacy-contact {
    min-height: 0;
    display: block;
    margin-top: 10mm;
    padding: 8mm 0 0;
    border: 0;
    border-top: 2px solid #000;
    border-radius: 0;
    break-inside: avoid;
  }
  .privacy-contact h2 { font-size: 20pt; }
}
