:root {
  color-scheme: dark;
  --bg: #03100f;
  --bg-deep: #010706;
  --panel: rgba(5, 20, 19, 0.82);
  --panel-solid: #061716;
  --ink: #edf9f4;
  --muted: #a7bbb5;
  --soft: #718982;
  --mint: #70efb6;
  --cyan: #77d8e8;
  --gold: #d8b86f;
  --coral: #ed967f;
  --line: rgba(119, 216, 232, 0.14);
  --line-mint: rgba(112, 239, 182, 0.3);
  --line-gold: rgba(216, 184, 111, 0.32);
  --display: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --mono: "IBM Plex Mono", "Cascadia Code", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg-deep);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: var(--display);
  background:
    radial-gradient(circle at 12% 4%, rgba(112, 239, 182, 0.11), transparent 24rem),
    radial-gradient(circle at 86% 2%, rgba(119, 216, 232, 0.1), transparent 28rem),
    radial-gradient(circle at 50% 58%, rgba(216, 184, 111, 0.045), transparent 34rem),
    linear-gradient(180deg, #071816 0%, var(--bg) 34rem, var(--bg-deep) 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

body::before {
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 7.4rem,
      rgba(119, 216, 232, 0.024) 7.4rem,
      rgba(119, 216, 232, 0.024) 7.45rem
    ),
    repeating-linear-gradient(
      180deg,
      transparent 0,
      transparent 7.4rem,
      rgba(112, 239, 182, 0.02) 7.4rem,
      rgba(112, 239, 182, 0.02) 7.45rem
    );
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

body::after {
  background:
    radial-gradient(circle at 50% 24%, transparent 0 19rem, rgba(1, 7, 6, 0.2) 52rem),
    linear-gradient(90deg, rgba(1, 7, 6, 0.32), transparent 18%, transparent 82%, rgba(1, 7, 6, 0.32));
}

::selection {
  background: rgba(112, 239, 182, 0.24);
  color: var(--ink);
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 0.25rem;
}

.skip-link {
  position: fixed;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 20;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line-mint);
  border-radius: 999px;
  background: rgba(3, 16, 15, 0.97);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.privacy-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 1.25rem 0 1.5rem;
}

.privacy-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  min-height: 3.7rem;
  margin-bottom: 1.15rem;
  border-bottom: 1px solid rgba(119, 216, 232, 0.09);
  color: var(--soft);
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  color: var(--muted);
  text-decoration: none;
}

.brand:hover,
.brand:focus-visible {
  color: var(--ink);
}

.brand__glyph {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border: 1px solid rgba(112, 239, 182, 0.38);
  border-radius: 0.7rem;
  background:
    linear-gradient(145deg, rgba(119, 216, 232, 0.12), transparent 48%),
    #061916;
  box-shadow:
    0 0 0 0.3rem rgba(112, 239, 182, 0.025),
    0 0 2rem rgba(112, 239, 182, 0.08);
  color: var(--mint);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-indent: 0.14em;
}

.brand__glyph::after {
  content: "";
  position: absolute;
  right: 0.32rem;
  bottom: 0.32rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0.8rem rgba(119, 216, 232, 0.8);
}

.brand__copy {
  display: grid;
  gap: 0.12rem;
}

.brand__copy strong {
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.brand__copy small {
  color: var(--soft);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.privacy-nav {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 1rem;
}

.privacy-nav a,
.privacy-footer a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 0.25rem;
}

.privacy-nav a:hover,
.privacy-nav a:focus-visible,
.privacy-footer a:hover,
.privacy-footer a:focus-visible {
  color: var(--mint);
  text-decoration: underline;
}

.privacy-head__state {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 0.5rem;
  margin: 0;
  white-space: nowrap;
}

.privacy-head__state span {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 1rem rgba(112, 239, 182, 0.72);
}

main {
  display: grid;
  gap: clamp(4rem, 9vw, 7.5rem);
}

.privacy-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(21rem, 0.97fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  min-height: 44rem;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: 3rem 0.3rem 0.3rem 0.3rem;
  background:
    linear-gradient(138deg, rgba(255, 255, 255, 0.034), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(119, 216, 232, 0.09), transparent 23rem),
    radial-gradient(circle at 8% 100%, rgba(112, 239, 182, 0.055), transparent 20rem),
    rgba(3, 13, 13, 0.8);
  box-shadow:
    0 2.5rem 7rem rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.privacy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, transparent 0 49.8%, rgba(119, 216, 232, 0.04) 50%, transparent 50.2%),
    linear-gradient(180deg, transparent 0 49.8%, rgba(112, 239, 182, 0.035) 50%, transparent 50.2%);
  pointer-events: none;
}

.privacy-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: -35%;
  width: 20%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(119, 216, 232, 0.035), transparent);
  transform: skewX(-18deg);
  animation: ledger-scan 20s linear infinite;
  pointer-events: none;
}

.privacy-hero__copy,
.boundary-map,
.effective-strip {
  position: relative;
  z-index: 1;
}

.privacy-hero__copy {
  align-self: center;
  padding: 1rem 0 2rem;
}

.ledger-code,
.policy-block__code {
  margin: 0;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  display: grid;
  gap: 0;
  max-width: 9ch;
  margin: 1rem 0 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 8.5vw, 7.8rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.86;
}

h1 em {
  color: var(--mint);
  font-weight: 400;
}

.plain-language {
  width: fit-content;
  margin: 1.6rem 0 0;
  padding: 0.48rem 0.65rem;
  border: 1px solid var(--line-gold);
  background: rgba(216, 184, 111, 0.055);
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lead {
  max-width: 39rem;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.45vw, 1.1rem);
  line-height: 1.75;
}

.lead--compact {
  margin-top: 0.8rem;
  color: var(--soft);
  font-size: 0.94rem;
}

.privacy-promises {
  display: grid;
  gap: 0;
  margin: 1.8rem 0 0;
  padding: 0;
  border-top: 1px solid rgba(119, 216, 232, 0.1);
  list-style: none;
}

.privacy-promises li {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr);
  gap: 0.5rem;
  padding: 0.63rem 0;
  border-bottom: 1px solid rgba(119, 216, 232, 0.1);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-promises span {
  color: var(--gold);
}

.boundary-map {
  align-self: center;
  min-width: 0;
  padding: 1rem;
  border: 1px solid rgba(119, 216, 232, 0.13);
  background: rgba(3, 12, 12, 0.54);
}

.boundary-map__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(119, 216, 232, 0.1);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.boundary-map__head p {
  margin: 0;
  color: var(--cyan);
}

.boundary-map__head span {
  color: var(--soft);
}

.boundary-map__field {
  position: relative;
  display: grid;
  min-height: 24rem;
  place-items: center;
  margin: 0.9rem 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(119, 216, 232, 0.055) 50%, transparent 50.2%),
    linear-gradient(180deg, transparent 49.8%, rgba(112, 239, 182, 0.05) 50%, transparent 50.2%),
    radial-gradient(circle at 50% 50%, rgba(112, 239, 182, 0.075), transparent 45%);
}

.boundary {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid;
}

.boundary > span {
  position: absolute;
  top: 0.55rem;
  left: 0.7rem;
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.boundary--hosting {
  inset: 5%;
  border-color: rgba(216, 184, 111, 0.32);
  border-radius: 2.4rem 0.3rem 0.3rem;
  color: var(--gold);
  background: rgba(216, 184, 111, 0.018);
}

.boundary--private {
  inset: 14%;
  border-color: rgba(119, 216, 232, 0.28);
  border-radius: 1.8rem 0.25rem 0.25rem;
  color: var(--cyan);
  background: rgba(119, 216, 232, 0.018);
}

.boundary--public {
  inset: 19%;
  border-color: rgba(112, 239, 182, 0.28);
  border-radius: 1.25rem 0.2rem 0.2rem;
  color: var(--mint);
  background: rgba(112, 239, 182, 0.02);
}

.boundary--local {
  inset: 24%;
  align-content: center;
  border-color: rgba(237, 249, 244, 0.2);
  border-radius: 50%;
  color: var(--ink);
  background:
    radial-gradient(circle at 42% 38%, rgba(237, 249, 244, 0.4), rgba(112, 239, 182, 0.1) 13%, transparent 35%),
    rgba(3, 15, 14, 0.86);
  box-shadow:
    0 0 0 0.55rem rgba(112, 239, 182, 0.025),
    0 0 2.3rem rgba(112, 239, 182, 0.13);
}

.boundary--local strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.boundary--local small {
  color: var(--soft);
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.map-node {
  position: absolute;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 1rem rgba(112, 239, 182, 0.85);
  animation: node-pulse 5s ease-in-out infinite;
}

.map-node--one {
  top: 13%;
  right: 17%;
  background: var(--gold);
  box-shadow: 0 0 1rem rgba(216, 184, 111, 0.8);
}

.map-node--two {
  right: 8%;
  bottom: 32%;
  background: var(--cyan);
  box-shadow: 0 0 1rem rgba(119, 216, 232, 0.85);
  animation-delay: -1.8s;
}

.map-node--three {
  bottom: 15%;
  left: 22%;
  animation-delay: -3.1s;
}

.boundary-map__readout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid rgba(119, 216, 232, 0.1);
  border-left: 1px solid rgba(119, 216, 232, 0.1);
}

.boundary-map__readout div {
  min-width: 0;
  padding: 0.7rem;
  border-right: 1px solid rgba(119, 216, 232, 0.1);
  border-bottom: 1px solid rgba(119, 216, 232, 0.1);
}

.boundary-map__readout dt,
.encryption-readout dt {
  color: var(--soft);
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.boundary-map__readout dd,
.encryption-readout dd {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.58rem;
  line-height: 1.45;
  text-transform: lowercase;
}

.effective-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-self: end;
  border-top: 1px solid rgba(119, 216, 232, 0.11);
  border-bottom: 1px solid rgba(119, 216, 232, 0.11);
}

.effective-strip p {
  display: grid;
  gap: 0.3rem;
  margin: 0;
  padding: 0.8rem;
}

.effective-strip p + p {
  border-left: 1px solid rgba(119, 216, 232, 0.1);
}

.effective-strip span {
  color: var(--soft);
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.effective-strip strong,
.effective-strip a {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 400;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.effective-strip a {
  color: var(--mint);
  text-underline-offset: 0.2rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(10rem, 0.35fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: start;
}

.section-heading h2 {
  max-width: 14ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.7vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.94;
}

.section-heading--split > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.56fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
}

.section-heading--split h2 {
  max-width: 15ch;
}

.section-heading--split > div > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.72;
}

.scope-record {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 7vw, 7rem);
  padding: clamp(1.8rem, 4vw, 3.5rem) 0;
  border-top: 1px solid rgba(119, 216, 232, 0.12);
  border-bottom: 1px solid rgba(119, 216, 232, 0.09);
}

.scope-record::before,
.policy-ledger::before,
.choices-record::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: clamp(5rem, 16vw, 12rem);
  height: 1px;
  background: linear-gradient(90deg, var(--mint), transparent);
}

.scope-record .section-heading {
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.scope-record__copy {
  align-self: end;
  padding-left: 1.2rem;
  border-left: 1px solid var(--line-gold);
}

.policy-copy {
  color: var(--muted);
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  line-height: 1.78;
}

.policy-copy p {
  margin: 0;
}

.policy-copy p + p {
  margin-top: 1rem;
}

.policy-copy a {
  color: var(--cyan);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22rem;
}

.policy-copy a:hover,
.policy-copy a:focus-visible {
  color: var(--mint);
}

.policy-ledger {
  position: relative;
  display: grid;
  gap: clamp(2.4rem, 6vw, 5rem);
  padding-top: clamp(1.8rem, 4vw, 3.5rem);
  border-top: 1px solid rgba(119, 216, 232, 0.12);
}

.surface-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.policy-block {
  min-height: 25rem;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border: 1px solid var(--line);
  background: var(--panel);
}

.policy-block--public {
  border-radius: 2.4rem 0.25rem 0.25rem;
  background:
    radial-gradient(circle at 5% 0%, rgba(112, 239, 182, 0.1), transparent 18rem),
    linear-gradient(145deg, rgba(119, 216, 232, 0.035), transparent 45%),
    var(--panel);
}

.policy-block--private {
  border-color: rgba(216, 184, 111, 0.23);
  border-radius: 0.25rem 0.25rem 2.4rem;
  background:
    radial-gradient(circle at 100% 100%, rgba(216, 184, 111, 0.08), transparent 18rem),
    var(--panel);
}

.policy-block h3,
.encryption-boundary h3,
.ledger-entry h3,
.local-register h3,
.s1m4x-boundary h3 {
  margin: 1.4rem 0 1.25rem;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.6vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.policy-block .policy-copy {
  max-width: 38rem;
}

.encryption-boundary {
  display: grid;
  grid-template-columns: minmax(14rem, 0.58fr) minmax(0, 1.1fr) minmax(14rem, 0.55fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(1.5rem, 3.5vw, 3rem);
  border-top: 1px solid var(--line-mint);
  border-bottom: 1px solid rgba(112, 239, 182, 0.13);
  background:
    linear-gradient(90deg, rgba(112, 239, 182, 0.035), transparent 22%, transparent 78%, rgba(119, 216, 232, 0.03));
}

.encryption-boundary__title {
  display: grid;
  align-content: space-between;
}

.encryption-boundary h3 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.content-seal {
  position: relative;
  width: 7rem;
  aspect-ratio: 1;
  margin: 2rem auto 0;
  border: 1px solid rgba(112, 239, 182, 0.28);
  border-radius: 50%;
  box-shadow:
    0 0 0 1rem rgba(112, 239, 182, 0.02),
    0 0 2.4rem rgba(112, 239, 182, 0.09);
}

.content-seal::before,
.content-seal::after,
.content-seal span {
  content: "";
  position: absolute;
  border: 1px solid;
}

.content-seal::before {
  inset: 18%;
  border-color: rgba(119, 216, 232, 0.3);
  border-radius: 0.7rem;
  transform: rotate(45deg);
}

.content-seal::after {
  inset: 35%;
  border-color: rgba(216, 184, 111, 0.38);
  border-radius: 50%;
  background: rgba(216, 184, 111, 0.05);
}

.content-seal span {
  top: 50%;
  left: 12%;
  width: 76%;
  height: 1px;
  border-width: 1px 0 0;
  border-color: rgba(112, 239, 182, 0.25);
}

.encryption-boundary__copy {
  align-self: center;
}

.encryption-readout {
  align-self: center;
  margin: 0;
  border-top: 1px solid rgba(119, 216, 232, 0.1);
}

.encryption-readout div {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(119, 216, 232, 0.1);
}

.operations-ledger {
  border-top: 1px solid rgba(119, 216, 232, 0.11);
}

.ledger-entry {
  display: grid;
  grid-template-columns: minmax(11rem, 0.34fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 6vw, 6rem);
  padding: clamp(1.5rem, 4vw, 3.2rem) 0;
  border-bottom: 1px solid rgba(119, 216, 232, 0.1);
}

.ledger-entry__index {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  font-family: var(--mono);
  text-transform: uppercase;
}

.ledger-entry__index span {
  color: var(--gold);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
}

.ledger-entry__index p {
  margin: 0;
  color: var(--soft);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}

.ledger-entry h3 {
  margin-top: 0;
  font-size: clamp(2rem, 4.1vw, 3.8rem);
}

.ledger-entry .policy-copy {
  max-width: 48rem;
}

.local-register {
  padding: clamp(1.5rem, 3.5vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 0.3rem 2.5rem 0.3rem 0.3rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(119, 216, 232, 0.08), transparent 20rem),
    var(--panel);
}

.local-register > header {
  display: grid;
  grid-template-columns: minmax(12rem, 0.4fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: end;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(119, 216, 232, 0.1);
}

.local-register h3 {
  max-width: 13ch;
  margin: 0;
}

.local-register__body {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(17rem, 0.55fr);
  gap: clamp(2rem, 6vw, 6rem);
  margin-top: 2rem;
}

.local-register__index {
  align-self: start;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-gold);
  list-style: none;
}

.local-register__index li {
  display: grid;
  gap: 0.28rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(216, 184, 111, 0.13);
}

.local-register__index span {
  color: var(--ink);
  font-size: 0.85rem;
}

.local-register__index strong {
  color: var(--soft);
  font-family: var(--mono);
  font-size: 0.54rem;
  font-weight: 400;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.s1m4x-boundary {
  display: grid;
  grid-template-columns: minmax(8rem, 0.32fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(1.5rem, 3.5vw, 3rem);
  border-top: 1px solid rgba(112, 239, 182, 0.16);
  border-bottom: 1px solid rgba(112, 239, 182, 0.12);
  background: linear-gradient(90deg, rgba(112, 239, 182, 0.04), transparent 40%);
}

.s1m4x-boundary__mark {
  position: relative;
  display: grid;
  width: 8rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(112, 239, 182, 0.3);
  border-radius: 50%;
  box-shadow:
    0 0 0 1rem rgba(112, 239, 182, 0.018),
    0 0 2.8rem rgba(112, 239, 182, 0.08);
}

.s1m4x-boundary__mark::before,
.s1m4x-boundary__mark::after {
  content: "";
  position: absolute;
  border: 1px solid;
  border-radius: 50%;
}

.s1m4x-boundary__mark::before {
  inset: 18%;
  border-color: rgba(119, 216, 232, 0.28);
}

.s1m4x-boundary__mark::after {
  inset: 34%;
  border-color: rgba(216, 184, 111, 0.34);
}

.s1m4x-boundary__mark span {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 1rem;
}

.s1m4x-boundary h3 {
  margin-bottom: 1rem;
}

.s1m4x-boundary .policy-copy {
  max-width: 47rem;
}

.choices-record {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 7vw, 7rem);
  padding: clamp(1.8rem, 4vw, 3.5rem) 0;
  border-top: 1px solid rgba(119, 216, 232, 0.12);
  border-bottom: 1px solid rgba(119, 216, 232, 0.09);
}

.choices-record .section-heading {
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.choices-record__body {
  display: grid;
  gap: 1.5rem;
}

.choices-record__note {
  margin: 0;
  padding: 0.85rem 1rem;
  border-left: 2px solid var(--gold);
  background: rgba(216, 184, 111, 0.05);
  color: var(--soft);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  line-height: 1.65;
  text-transform: uppercase;
}

.contact-record {
  display: grid;
  grid-template-columns: minmax(14rem, 0.52fr) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
  padding: clamp(1.5rem, 3.5vw, 3rem);
  border: 1px solid var(--line-gold);
  border-radius: 2.5rem 0.3rem 0.3rem;
  background:
    linear-gradient(145deg, rgba(216, 184, 111, 0.07), transparent 38%),
    var(--panel);
}

.contact-record h2 {
  margin: 1rem 0 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.contact-record .policy-copy {
  padding-left: 1.2rem;
  border-left: 1px solid var(--line-gold);
}

.privacy-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(4rem, 9vw, 7rem);
  padding: 1.2rem 0 0;
  border-top: 1px solid rgba(119, 216, 232, 0.09);
  color: var(--soft);
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-transform: uppercase;
}

.privacy-footer p {
  margin: 0;
}

.privacy-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

@keyframes node-pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.8);
  }

  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

@keyframes ledger-scan {
  0%,
  64% {
    left: -35%;
  }

  100% {
    left: 125%;
  }
}

@media (max-width: 960px) {
  .privacy-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .privacy-hero__copy {
    padding-bottom: 0;
  }

  .boundary-map {
    width: min(100%, 40rem);
    margin: 0 auto;
  }

  .section-heading--split > div {
    grid-template-columns: 1fr;
  }

  .scope-record,
  .choices-record {
    grid-template-columns: 1fr;
  }

  .scope-record__copy,
  .contact-record .policy-copy {
    max-width: 47rem;
  }

  .encryption-boundary {
    grid-template-columns: minmax(13rem, 0.5fr) minmax(0, 1fr);
  }

  .encryption-readout {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .encryption-readout div {
    padding: 0.75rem;
    border-top: 1px solid rgba(119, 216, 232, 0.1);
  }

  .encryption-readout div + div {
    border-left: 1px solid rgba(119, 216, 232, 0.1);
  }

  .local-register__body {
    grid-template-columns: 1fr;
  }

  .local-register__index {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .local-register__index li:nth-child(even) {
    padding-left: 1rem;
    border-left: 1px solid rgba(216, 184, 111, 0.13);
  }
}

@media (max-width: 720px) {
  .privacy-shell {
    width: min(100% - 1.25rem, 1180px);
    padding-top: 0.75rem;
  }

  .privacy-head {
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .privacy-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .privacy-head__state {
    grid-column: 2;
    grid-row: 1;
  }

  main {
    gap: 3.8rem;
  }

  .privacy-hero {
    gap: 1.5rem;
    padding: 1.2rem;
    border-radius: 1.8rem 0.25rem 0.25rem;
  }

  h1 {
    font-size: clamp(3.7rem, 18vw, 6rem);
  }

  .lead {
    font-size: 0.96rem;
  }

  .boundary-map {
    padding: 0.75rem;
  }

  .boundary-map__field {
    min-height: 21rem;
  }

  .effective-strip {
    grid-template-columns: 1fr;
  }

  .effective-strip p + p {
    border-top: 1px solid rgba(119, 216, 232, 0.1);
    border-left: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .section-heading h2 {
    font-size: clamp(2.5rem, 12vw, 4.2rem);
  }

  .surface-pair {
    grid-template-columns: 1fr;
  }

  .policy-block {
    min-height: auto;
    padding: 1.3rem;
  }

  .policy-block--public {
    border-radius: 1.8rem 0.25rem 0.25rem;
  }

  .policy-block--private {
    border-radius: 0.25rem 0.25rem 1.8rem;
  }

  .policy-block h3,
  .encryption-boundary h3,
  .ledger-entry h3,
  .local-register h3,
  .s1m4x-boundary h3 {
    font-size: clamp(2.1rem, 10.5vw, 3.4rem);
  }

  .encryption-boundary {
    grid-template-columns: 1fr;
    padding: 1.3rem 0;
  }

  .encryption-boundary__title {
    display: block;
  }

  .content-seal {
    width: 6rem;
    margin: 2rem auto;
  }

  .encryption-readout {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .encryption-readout div + div {
    border-left: 0;
  }

  .ledger-entry {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .local-register {
    padding: 1.3rem;
    border-radius: 0.25rem 1.8rem 0.25rem 0.25rem;
  }

  .local-register > header {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .local-register__index {
    grid-template-columns: 1fr;
  }

  .local-register__index li:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .s1m4x-boundary {
    grid-template-columns: 1fr;
    padding: 1.3rem 0;
  }

  .s1m4x-boundary__mark {
    width: 6rem;
    margin: 1rem auto 2rem;
  }

  .contact-record {
    grid-template-columns: 1fr;
    padding: 1.3rem;
    border-radius: 1.8rem 0.25rem 0.25rem;
  }

  .contact-record .policy-copy {
    padding-top: 1.2rem;
    padding-left: 0;
    border-top: 1px solid var(--line-gold);
    border-left: 0;
  }

  .privacy-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .privacy-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 440px) {
  .brand__copy small {
    display: none;
  }

  .privacy-head__state {
    font-size: 0.54rem;
    letter-spacing: 0.08em;
  }

  .boundary-map__field {
    min-height: 18rem;
  }

  .boundary > span {
    font-size: 0.44rem;
    letter-spacing: 0.06em;
  }

  .boundary-map__readout {
    grid-template-columns: 1fr;
  }
}

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

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

@media print {
  :root {
    color-scheme: light;
    --ink: #111;
    --muted: #333;
    --soft: #555;
  }

  body {
    background: #fff;
    color: #111;
  }

  body::before,
  body::after,
  .skip-link,
  .privacy-nav,
  .privacy-head__state,
  .privacy-hero::before,
  .privacy-hero::after,
  .boundary-map__field,
  .content-seal,
  .s1m4x-boundary__mark {
    display: none;
  }

  .privacy-shell {
    width: 100%;
    padding: 0;
  }

  .privacy-head,
  .privacy-hero,
  .scope-record,
  .policy-ledger,
  .surface-pair,
  .encryption-boundary,
  .operations-ledger,
  .ledger-entry,
  .local-register,
  .s1m4x-boundary,
  .choices-record,
  .contact-record,
  .privacy-footer {
    display: block;
    border-color: #bbb;
    background: #fff;
    box-shadow: none;
    color: #111;
  }

  .privacy-hero,
  .policy-block,
  .local-register,
  .contact-record {
    padding: 1rem 0;
  }

  .boundary-map {
    border: 0;
    background: #fff;
  }

  .boundary-map__readout,
  .effective-strip,
  .encryption-readout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .policy-block,
  .encryption-boundary,
  .ledger-entry,
  .local-register,
  .s1m4x-boundary,
  .choices-record,
  .contact-record {
    break-inside: avoid;
    margin-top: 1rem;
  }

  .policy-copy,
  .lead,
  .section-heading--split > div > p {
    color: #333;
  }

  .privacy-footer {
    margin-top: 2rem;
  }
}
