:root {
  --bg: #000403;
  --panel: rgba(4, 20, 15, 0.9);
  --green: #00ff9d;
  --green-soft: rgba(0, 255, 157, 0.7);
  --cyan: #00fff9;
  --cyan-soft: rgba(0, 255, 249, 0.62);
  --pink: #ff2e9e;
  --text: #d8fff2;
  --muted: rgba(216, 255, 242, 0.62);
  --faint: rgba(216, 255, 242, 0.38);
  --border: rgba(0, 255, 157, 0.16);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: "Orbitron", system-ui, sans-serif;
  --font-mono: "Roboto Mono", ui-monospace, monospace;
  --privacy-header-height: 82px;
  --privacy-content-width: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--privacy-header-height) + env(safe-area-inset-top) + 22px);
}

body {
  margin: 0;
  min-height: 100%;
  overflow-x: clip;
  background:
    radial-gradient(circle at 9% 0, rgba(0, 255, 157, 0.08), transparent 32rem),
    radial-gradient(circle at 93% 34%, rgba(0, 255, 249, 0.04), transparent 34rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font-mono);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.16;
  background: repeating-linear-gradient(180deg, transparent 0 5px, rgba(255, 255, 255, 0.012) 6px);
}

::selection {
  color: #00100b;
  background: var(--green);
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

a { color: inherit; }

button { font: inherit; }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.privacy-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 12000;
  padding: 10px 14px;
  color: #00100b;
  background: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  transform: translateY(-170%);
  transition: transform 160ms ease;
}

.privacy-skip-link:focus { transform: translateY(0); }

.privacy-atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(0, 255, 157, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 157, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
}

/* Main-site navigation treatment, scoped to the privacy page. */

.privacy-site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  min-height: calc(var(--privacy-header-height) + env(safe-area-inset-top));
  padding: env(safe-area-inset-top) max(24px, calc((100vw - var(--privacy-content-width)) / 2)) 0;
  border-bottom: 1px solid rgba(0, 255, 157, 0.1);
  background: rgba(0, 5, 4, 0.78);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px) saturate(125%);
  transition: min-height 220ms ease, background 220ms ease, border-color 220ms ease;
}

.privacy-site-header.is-scrolled {
  min-height: calc(64px + env(safe-area-inset-top));
  border-color: rgba(0, 255, 157, 0.18);
  background: rgba(0, 5, 4, 0.94);
}

.privacy-site-brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.privacy-brand-mark {
  position: relative;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(0, 255, 157, 0.65);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(0, 255, 157, 0.14);
}

.privacy-brand-mark::before,
.privacy-brand-mark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.privacy-brand-mark::before {
  inset: 5px;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

.privacy-brand-mark::after {
  inset: -4px;
  border: 1px solid rgba(0, 255, 157, 0.12);
}

.privacy-site-brand > span:last-child {
  display: grid;
  line-height: 1.05;
}

.privacy-site-brand strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}

.privacy-site-brand small {
  margin-top: 5px;
  color: var(--green-soft);
  font-size: 0.5rem;
  letter-spacing: 0.16em;
}

.privacy-site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.65vw, 24px);
}

.privacy-site-nav a {
  position: relative;
  padding: 28px 0 25px;
  color: var(--faint);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease;
}

.privacy-site-header.is-scrolled .privacy-site-nav a {
  padding-block: 22px 19px;
}

.privacy-site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.privacy-site-nav a:hover,
.privacy-site-nav a[aria-current="page"] { color: var(--green); }

.privacy-site-nav a[aria-current="page"]::after { transform: scaleX(1); }

.header-channel {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 7px 11px;
  border: 1px solid rgba(0, 255, 157, 0.16);
  border-radius: 999px;
  background: rgba(0, 255, 157, 0.035);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-channel:hover,
.header-channel:focus-visible {
  border-color: rgba(0, 255, 157, 0.45);
  background: rgba(0, 255, 157, 0.065);
  transform: translateY(-1px);
}

.header-channel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(220, 255, 244, 0.3);
}

.header-channel[data-state="online"] .header-channel-dot {
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: privacyStatusPulse 2.4s ease-in-out infinite;
}

.header-channel[data-state="recent"] .header-channel-dot {
  background: #9edfc2;
  box-shadow: 0 0 8px rgba(158, 223, 194, 0.45);
}

.header-channel-copy {
  display: grid;
  text-align: left;
  line-height: 1.05;
}

.header-channel-copy strong {
  color: var(--text);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
}

.header-channel-copy small {
  margin-top: 4px;
  color: var(--faint);
  font-size: 0.45rem;
  letter-spacing: 0.07em;
}

.header-channel[data-state="online"] small { color: var(--green-soft); }

.privacy-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: rgba(0, 255, 157, 0.035);
  cursor: pointer;
}

.privacy-nav-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: var(--green);
  transition: transform 180ms ease, opacity 180ms ease;
}

/* Hero */

.privacy-main {
  position: relative;
  z-index: 1;
  width: min(var(--privacy-content-width), calc(100% - 48px));
  margin: 0 auto;
  padding: calc(var(--privacy-header-height) + clamp(54px, 8vw, 104px)) 0 90px;
  outline: none;
}

.privacy-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  align-items: center;
  gap: clamp(44px, 7vw, 92px);
  min-height: min(690px, calc(100vh - var(--privacy-header-height)));
  padding: 0 0 clamp(70px, 10vw, 128px);
}

.privacy-hero-copy { min-width: 0; }

.privacy-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: rgba(0, 255, 157, 0.74);
  font-size: 0.65rem;
  letter-spacing: 0.17em;
}

.privacy-eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(0, 255, 157, 0.75);
}

.privacy-hero h1 {
  margin: 0;
  font: 700 clamp(3.1rem, 7.4vw, 6.55rem)/0.92 var(--font-display);
  letter-spacing: 0.025em;
  text-shadow: 0 0 34px rgba(0, 255, 157, 0.14);
}

.privacy-intro {
  max-width: 700px;
  margin: 27px 0 0;
  color: rgba(216, 255, 242, 0.74);
  font-size: clamp(0.92rem, 1.6vw, 1.05rem);
  line-height: 1.78;
}

.privacy-date {
  display: inline-flex;
  margin-top: 22px;
  padding: 8px 10px;
  border: 1px solid rgba(0, 255, 157, 0.12);
  color: var(--faint);
  background: rgba(0, 255, 157, 0.022);
  font-size: 0.61rem;
  letter-spacing: 0.1em;
}

.privacy-visual {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 1;
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 157, 0.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 49%, rgba(0, 255, 157, 0.09), transparent 35%),
    linear-gradient(145deg, rgba(4, 25, 18, 0.84), rgba(0, 7, 5, 0.92));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42), inset 0 0 70px rgba(0, 255, 157, 0.025);
  contain: layout paint;
}

.privacy-visual::before,
.privacy-visual::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  pointer-events: none;
}

.privacy-visual::before {
  top: 13px;
  left: 13px;
  border-top: 1px solid rgba(0, 255, 249, 0.42);
  border-left: 1px solid rgba(0, 255, 249, 0.42);
}

.privacy-visual::after {
  right: 13px;
  bottom: 13px;
  border-right: 1px solid rgba(0, 255, 157, 0.38);
  border-bottom: 1px solid rgba(0, 255, 157, 0.38);
}

.privacy-visual-grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(0, 255, 157, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 157, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.privacy-visual-scan {
  position: absolute;
  top: -22%;
  right: 0;
  left: 0;
  height: 18%;
  opacity: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 255, 249, 0.09), transparent);
  animation: privacyScan 8.5s ease-in-out 1.2s infinite;
  will-change: transform, opacity;
}

.privacy-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 71%;
  aspect-ratio: 1;
  transform: translate(-50%, -52%);
}

.privacy-halo-ring {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

.privacy-halo-ring::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  transform: translateX(-50%);
}

.privacy-halo-ring--outer {
  inset: 0;
  border: 1px solid rgba(0, 255, 157, 0.26);
  animation: privacyOrbit 28s linear infinite;
}

.privacy-halo-ring--middle {
  inset: 14%;
  border: 1px dashed rgba(0, 255, 249, 0.3);
  animation: privacyOrbitReverse 21s linear infinite;
}

.privacy-halo-ring--middle::before {
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.privacy-halo-ring--inner {
  inset: 29%;
  border: 1px solid rgba(216, 255, 242, 0.18);
  animation: privacyOrbit 15s linear infinite;
}

.privacy-halo-ring--inner::before {
  width: 5px;
  height: 5px;
  background: rgba(216, 255, 242, 0.85);
  box-shadow: 0 0 10px rgba(216, 255, 242, 0.72);
}

.privacy-halo-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(0, 255, 157, 0.5);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 157, 0.12), rgba(0, 8, 6, 0.93) 67%);
  box-shadow: 0 0 30px rgba(0, 255, 157, 0.1), inset 0 0 22px rgba(0, 255, 157, 0.06);
  transform: translate(-50%, -50%);
  animation: privacyCore 4.5s ease-in-out infinite;
}

.privacy-halo-core::before {
  content: "N";
  color: rgba(216, 255, 242, 0.9);
  font: 700 0.78rem/1 var(--font-display);
  letter-spacing: 0.05em;
}

.privacy-halo-core i {
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(0, 255, 249, 0.2);
  border-radius: 50%;
}

.privacy-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(216, 255, 242, 0.5);
  font-size: 0.48rem;
  letter-spacing: 0.12em;
}

.privacy-node i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 9px rgba(0, 255, 157, 0.75);
  animation: privacyNode 3s ease-in-out infinite;
}

.privacy-node b { font-weight: 500; }

.privacy-node--local { top: 22%; left: 7%; }
.privacy-node--anonymous { top: 30%; right: 5%; }
.privacy-node--controlled { bottom: 20%; left: 8%; }
.privacy-node--anonymous i { animation-delay: 0.8s; }
.privacy-node--controlled i { animation-delay: 1.6s; }

.privacy-visual-status {
  position: absolute;
  right: 21px;
  bottom: 19px;
  left: 21px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: rgba(0, 255, 157, 0.58);
  font-size: 0.51rem;
  letter-spacing: 0.1em;
}

.privacy-visual-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 9px rgba(0, 255, 157, 0.75);
  animation: privacyStatusPulse 2.4s ease-in-out infinite;
}

/* Policy index and content */

.privacy-layout {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  align-items: start;
  gap: clamp(34px, 6vw, 78px);
}

.privacy-nav {
  position: sticky;
  top: calc(82px + env(safe-area-inset-top));
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(0, 12, 9, 0.76);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.privacy-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 4px;
}

.privacy-nav-head strong,
.privacy-nav-head span {
  color: rgba(0, 255, 157, 0.68);
  font-size: 0.56rem;
  letter-spacing: 0.13em;
}

.privacy-nav-head span { color: var(--faint); }

.privacy-nav-progress {
  height: 1px;
  overflow: hidden;
  background: rgba(0, 255, 157, 0.09);
}

.privacy-nav-progress span {
  display: block;
  width: 10%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  box-shadow: 0 0 10px rgba(0, 255, 157, 0.6);
  transition: width 320ms var(--ease-out);
}

.privacy-nav-links {
  display: grid;
  gap: 3px;
}

.privacy-nav-links a {
  position: relative;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 5px;
  min-height: 38px;
  padding: 8px 8px 8px 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.63rem;
  line-height: 1.32;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.privacy-nav-links a::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: -1px;
  width: 1px;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  transform: scaleY(0);
  transition: transform 180ms ease;
}

.privacy-nav-links b {
  color: rgba(0, 255, 157, 0.35);
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.privacy-nav-links a:hover,
.privacy-nav-links a:focus-visible {
  color: var(--cyan);
  background: rgba(0, 255, 249, 0.03);
}

.privacy-nav-links a[aria-current="location"] {
  border-color: rgba(0, 255, 157, 0.14);
  color: var(--green);
  background: rgba(0, 255, 157, 0.055);
}

.privacy-nav-links a[aria-current="location"]::before { transform: scaleY(1); }
.privacy-nav-links a[aria-current="location"] b { color: rgba(0, 255, 157, 0.8); }

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

.privacy-section {
  position: relative;
  scroll-margin-top: calc(86px + env(safe-area-inset-top));
  padding: clamp(24px, 3.7vw, 38px);
  margin: 0 0 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 157, 0.1);
  border-radius: 15px;
  background:
    linear-gradient(145deg, rgba(4, 22, 16, 0.66), rgba(0, 9, 7, 0.48)),
    rgba(0, 10, 7, 0.42);
  box-shadow: 0 20px 65px rgba(0, 0, 0, 0.17);
  transition: border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.privacy-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(24px, 3.7vw, 38px);
  width: 46px;
  height: 1px;
  background: rgba(0, 255, 249, 0.42);
  box-shadow: 0 0 12px rgba(0, 255, 249, 0.26);
}

.privacy-section.is-active {
  border-color: rgba(0, 255, 157, 0.21);
  background:
    linear-gradient(145deg, rgba(5, 27, 20, 0.72), rgba(0, 10, 7, 0.54)),
    rgba(0, 10, 7, 0.5);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2), 0 0 38px rgba(0, 255, 157, 0.025);
}

.privacy-section h2 {
  margin: 0 0 18px;
  color: rgba(232, 255, 248, 0.94);
  font: 700 clamp(1rem, 2.2vw, 1.28rem)/1.28 var(--font-display);
  letter-spacing: 0.055em;
}

.privacy-section h2 span {
  margin-right: 11px;
  color: rgba(0, 255, 157, 0.5);
  font-family: var(--font-mono);
  font-size: 0.66rem;
}

.privacy-section p,
.privacy-section li {
  color: rgba(216, 255, 242, 0.68);
  font-size: 0.85rem;
  line-height: 1.78;
}

.privacy-section p { margin: 0; }
.privacy-section p + p { margin-top: 15px; }

.privacy-section ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.privacy-section li + li { margin-top: 7px; }

.privacy-section a {
  color: rgba(0, 255, 249, 0.78);
  text-underline-offset: 4px;
}

.privacy-callout {
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(0, 255, 249, 0.11);
  border-left-color: rgba(0, 255, 249, 0.5);
  border-radius: 0 9px 9px 0;
  background: rgba(0, 255, 249, 0.028);
}

.privacy-callout p { margin: 0; }

.privacy-footer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 28px max(24px, calc((100vw - var(--privacy-content-width)) / 2)) calc(28px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
  color: var(--faint);
  background: rgba(0, 5, 4, 0.45);
  font-size: 0.6rem;
  letter-spacing: 0.09em;
}

.privacy-footer a {
  color: rgba(0, 255, 249, 0.68);
  text-decoration: none;
}

.privacy-footer > a:last-child { justify-self: end; }

.privacy-footer-brand {
  justify-self: start;
  color: rgba(216, 255, 242, 0.72) !important;
  font-family: var(--font-display);
  letter-spacing: 0.13em;
}

@keyframes privacyOrbit {
  to { transform: rotate(360deg); }
}

@keyframes privacyOrbitReverse {
  to { transform: rotate(-360deg); }
}

@keyframes privacyCore {
  0%, 100% { box-shadow: 0 0 24px rgba(0, 255, 157, 0.08), inset 0 0 22px rgba(0, 255, 157, 0.05); }
  50% { box-shadow: 0 0 38px rgba(0, 255, 157, 0.18), inset 0 0 28px rgba(0, 255, 157, 0.09); }
}

@keyframes privacyNode {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

@keyframes privacyScan {
  0%, 12% { opacity: 0; transform: translateY(0); }
  20% { opacity: 0.7; }
  62% { opacity: 0.35; }
  72%, 100% { opacity: 0; transform: translateY(680%); }
}

@keyframes privacyStatusPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@media (max-width: 1160px) {
  .privacy-site-header {
    grid-template-columns: 1fr auto auto;
    padding-inline: 24px;
  }

  .privacy-site-nav {
    position: fixed;
    top: calc(var(--privacy-header-height) + env(safe-area-inset-top));
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(0, 8, 6, 0.98);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.54);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .privacy-site-header.is-scrolled .privacy-site-nav {
    top: calc(64px + env(safe-area-inset-top));
  }

  .privacy-site-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .privacy-site-nav a,
  .privacy-site-header.is-scrolled .privacy-site-nav a {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(0, 255, 157, 0.08);
    font-size: 0.62rem;
  }

  .privacy-site-nav a:last-child { border-bottom: 0; }

  .privacy-site-nav a::after {
    right: auto;
    bottom: 50%;
    left: 0;
    width: 2px;
    height: 16px;
    transform: translateY(50%) scaleY(0);
  }

  .privacy-site-nav a[aria-current="page"]::after {
    transform: translateY(50%) scaleY(1);
  }

  .privacy-nav-toggle {
    display: block;
    margin-right: 10px;
  }

  .privacy-nav-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .privacy-nav-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }

  .privacy-nav-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

@media (max-width: 900px) {
  .privacy-hero {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    gap: 38px;
  }

  .privacy-visual { max-width: 360px; }
}

@media (max-width: 800px) {
  :root { --privacy-header-height: 68px; }

  html {
    scroll-padding-top: calc(136px + env(safe-area-inset-top));
  }

  .privacy-site-header,
  .privacy-site-header.is-scrolled {
    min-height: calc(var(--privacy-header-height) + env(safe-area-inset-top));
  }

  .privacy-site-header.is-scrolled .privacy-site-nav,
  .privacy-site-nav {
    top: calc(var(--privacy-header-height) + env(safe-area-inset-top));
  }

  .header-channel-copy { display: none; }

  .header-channel {
    width: 42px;
    padding: 0;
    justify-content: center;
  }

  .privacy-main {
    width: min(100% - 36px, var(--privacy-content-width));
    padding-top: calc(var(--privacy-header-height) + 62px);
  }

  .privacy-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 44px;
    padding-bottom: 72px;
  }

  .privacy-hero-copy { max-width: 720px; }

  .privacy-visual {
    width: min(100%, 430px);
    justify-self: center;
  }

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

  .privacy-nav {
    top: calc(var(--privacy-header-height) + env(safe-area-inset-top));
    z-index: 40;
    gap: 0;
    padding: 0;
    margin: 0 0 24px;
    border-radius: 11px;
    background: rgba(0, 8, 6, 0.94);
  }

  .privacy-nav-head { display: none; }

  .privacy-nav-progress {
    height: 1px;
    margin: 0 9px;
  }

  .privacy-nav-links {
    display: flex;
    gap: 7px;
    padding: 8px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .privacy-nav-links::-webkit-scrollbar { display: none; }

  .privacy-nav-links a {
    display: inline-grid;
    grid-template-columns: auto auto;
    flex: 0 0 auto;
    min-height: 42px;
    padding: 9px 11px;
    border-color: rgba(0, 255, 157, 0.09);
    scroll-snap-align: center;
  }

  .privacy-nav-links a::before { content: none; }

  .privacy-nav-links a[aria-current="location"] {
    border-color: rgba(0, 255, 157, 0.32);
    box-shadow: 0 0 18px rgba(0, 255, 157, 0.04);
  }

  .privacy-section {
    scroll-margin-top: calc(136px + env(safe-area-inset-top));
  }
}

@media (max-width: 560px) {
  .privacy-site-header {
    padding-inline: max(14px, env(safe-area-inset-left)) max(14px, env(safe-area-inset-right));
  }

  .privacy-site-brand strong {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .privacy-site-brand small {
    font-size: 0.45rem;
    letter-spacing: 0.13em;
  }

  .privacy-nav-toggle { margin-right: 6px; }

  .privacy-main {
    width: min(100% - 28px, var(--privacy-content-width));
    padding-top: calc(var(--privacy-header-height) + 48px);
    padding-bottom: 68px;
  }

  .privacy-hero {
    gap: 36px;
    padding-bottom: 58px;
  }

  .privacy-hero h1 {
    font-size: clamp(2.8rem, 15.5vw, 4.25rem);
  }

  .privacy-intro {
    margin-top: 21px;
    font-size: 0.92rem;
    line-height: 1.72;
  }

  .privacy-visual {
    max-width: 350px;
    border-radius: 17px;
  }

  .privacy-halo-core {
    width: 60px;
    height: 60px;
  }

  .privacy-node {
    gap: 5px;
    font-size: 0.43rem;
    letter-spacing: 0.08em;
  }

  .privacy-visual-status {
    right: 17px;
    bottom: 16px;
    left: 17px;
    font-size: 0.46rem;
  }

  .privacy-section {
    padding: 21px;
    border-radius: 12px;
  }

  .privacy-section::before { left: 21px; }

  .privacy-section p,
  .privacy-section li {
    font-size: 0.89rem;
    line-height: 1.72;
  }

  .privacy-footer {
    grid-template-columns: 1fr auto;
    padding-inline: max(16px, env(safe-area-inset-left)) max(16px, env(safe-area-inset-right));
  }

  .privacy-footer > span { display: none; }
}

@media (max-width: 400px) {
  .privacy-site-brand small { display: none; }

  .privacy-site-brand strong { font-size: 0.64rem; }

  .privacy-brand-mark {
    width: 20px;
    height: 20px;
  }

  .privacy-nav-toggle,
  .header-channel {
    width: 40px;
    height: 40px;
  }

  .privacy-nav-toggle { margin-right: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .privacy-visual-scan { display: none; }
}
