/* OmniCore authored diagram protocol
   Scope: system scale + authorization boundary only. */

.ocl-diagram {
  position: relative;
  isolation: isolate;
}

.ocl-diagram-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.ocl-diagram-svg--mobile {
  display: none;
}

.ocl-diagram-svg path,
.ocl-diagram-svg line,
.ocl-diagram-svg circle,
.ocl-diagram-svg ellipse,
.ocl-diagram-svg rect {
  vector-effect: non-scaling-stroke;
}

.ocl-svg-overline,
.ocl-svg-index,
.ocl-svg-label,
.ocl-svg-copy,
.ocl-svg-micro,
.ocl-scale-legend text {
  font-family: var(--lock-mono);
  text-transform: uppercase;
}

.ocl-svg-overline {
  fill: #777d74;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.ocl-svg-index {
  fill: #676d65;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.ocl-svg-label {
  fill: #d7d9d2;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.ocl-svg-copy {
  fill: #a8aca4;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.ocl-svg-micro {
  fill: #6e746b;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.105em;
}

.ocl-svg-signal {
  fill: var(--lock-signal);
}

.ocl-scale-diagram .ocl-svg-index { font-size: 12px; }
.ocl-scale-diagram .ocl-svg-label { font-size: 17px; }
.ocl-scale-diagram .ocl-svg-copy { font-size: 13px; }
.ocl-scale-diagram .ocl-svg-micro { font-size: 10.5px; }
.ocl-scale-diagram .ocl-svg-overline { font-size: 11px; }

/* System scale: propagated territory, never nested boxes. */

.scale-spatial.ocl-scale-diagram {
  min-height: 0;
  margin-top: clamp(46px, 5.5vw, 82px);
  padding: 12px 0 6px;
  overflow: hidden;
  border-top: 1px solid var(--lock-line-soft);
  border-bottom: 1px solid var(--lock-line-soft);
  background:
    radial-gradient(ellipse at 68% 47%, rgba(215, 255, 22, 0.026), transparent 45%),
    linear-gradient(90deg, rgba(240, 239, 233, 0.012), transparent 48%, rgba(240, 239, 233, 0.012));
}

.scale-spatial.ocl-scale-diagram::before {
  content: none;
}

.scale-spatial.ocl-scale-diagram > .ocl-diagram-svg {
  position: relative;
  z-index: 1;
  inset: auto;
  width: 100%;
  height: auto;
  overflow: visible;
}

.ocl-diagram-coordinate path {
  fill: none;
  stroke: rgba(222, 225, 216, 0.065);
  stroke-width: 1;
}

.ocl-scale-continuity,
.ocl-scale-mobile-flow {
  fill: none;
  stroke: url(#scale-state-flow);
  stroke-width: 1.6;
}

.ocl-scale-continuity-glow {
  fill: none;
  stroke: var(--lock-signal);
  stroke-width: 8;
  opacity: 0.075;
  filter: url(#scale-signal-glow);
}

.ocl-scale-packet path {
  fill: var(--lock-black);
  stroke: var(--lock-signal);
  stroke-width: 1;
}

.ocl-scale-field {
  fill: url(#scale-local-field);
  stroke: rgba(222, 225, 216, 0.17);
  stroke-width: 1;
}

.ocl-scale-orbit,
.ocl-scale-domain,
.ocl-scale-network-orbit {
  fill: rgba(240, 239, 233, 0.008);
  stroke: rgba(218, 221, 213, 0.2);
  stroke-width: 1;
}

.ocl-scale-domain--inner {
  stroke: rgba(218, 221, 213, 0.105);
  stroke-dasharray: 3 6;
}

.ocl-scale-domain--facility {
  fill: rgba(240, 239, 233, 0.012);
  stroke: rgba(218, 221, 213, 0.16);
}

.ocl-scale-crosshair,
.ocl-scale-local-trace,
.ocl-scale-link,
.ocl-scale-process,
.ocl-scale-cluster path,
.ocl-scale-network-link,
.ocl-scale-anchor {
  fill: none;
  stroke: rgba(214, 218, 209, 0.3);
  stroke-width: 1;
}

.ocl-scale-process {
  stroke: rgba(215, 255, 22, 0.37);
  stroke-dasharray: 2 6;
}

.ocl-scale-process--return {
  stroke: rgba(214, 218, 209, 0.14);
  stroke-dasharray: 8 7;
}

.ocl-scale-node {
  fill: var(--lock-black);
  stroke: #81877d;
  stroke-width: 1;
}

.ocl-scale-node--active {
  fill: var(--lock-signal);
  stroke: var(--lock-signal);
}

.ocl-scale-cluster circle {
  fill: var(--lock-black);
  stroke: #777d73;
  stroke-width: 1;
}

.ocl-scale-network-orbit {
  fill: none;
  stroke-dasharray: 2 8;
}

.ocl-scale-network-orbit--outer {
  stroke: rgba(215, 255, 22, 0.15);
}

.ocl-scale-network-link {
  stroke: rgba(215, 255, 22, 0.24);
  stroke-dasharray: 3 7;
}

.ocl-scale-site circle:first-child {
  fill: rgba(215, 255, 22, 0.025);
  stroke: rgba(215, 255, 22, 0.35);
  stroke-width: 1;
}

.ocl-scale-site circle:last-child {
  fill: var(--lock-signal);
  stroke: none;
}

.ocl-scale-legend line,
.ocl-scale-legend path {
  fill: none;
  stroke: #777d74;
  stroke-width: 1;
}

.ocl-scale-legend path.future {
  stroke-dasharray: 3 5;
}

.ocl-scale-legend circle {
  fill: var(--lock-black);
  stroke: #777d74;
}

.ocl-scale-legend text {
  fill: #62685f;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* Authorization: one radial field with an explicit event aperture. */

.translation-field {
  grid-template-columns: minmax(200px, 0.66fr) minmax(520px, 1.72fr) minmax(200px, 0.66fr);
}

.authorization-threshold.ocl-authorization-diagram {
  min-height: 0;
  margin: 0;
  overflow: visible;
  background: none;
}

.authorization-threshold.ocl-authorization-diagram::before,
.authorization-threshold.ocl-authorization-diagram::after {
  content: none;
}

.authorization-threshold.ocl-authorization-diagram > .ocl-diagram-svg {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
}

.ocl-auth-coordinate path {
  fill: none;
  stroke: rgba(225, 228, 219, 0.045);
  stroke-width: 1;
  stroke-dasharray: 2 8;
}

.ocl-auth-orbits path,
.ocl-auth-orbits circle {
  fill: none;
  stroke: rgba(218, 221, 213, 0.19);
  stroke-width: 1;
}

.ocl-auth-orbits circle {
  stroke: rgba(218, 221, 213, 0.105);
}

.ocl-auth-orbits .ocl-auth-orbit--authority {
  stroke: rgba(215, 255, 22, 0.46);
  stroke-width: 1.3;
}

.ocl-auth-sectors path,
.ocl-auth-condition path {
  fill: none;
  stroke: rgba(218, 221, 213, 0.24);
  stroke-width: 1;
}

.ocl-auth-sectors .ocl-auth-sector--authority,
.ocl-auth-condition .ocl-auth-sector--authority {
  stroke: var(--lock-signal);
}

.ocl-auth-condition circle {
  fill: var(--lock-black);
  stroke: #8d9389;
  stroke-width: 1;
}

.ocl-auth-condition .ocl-auth-anchor--authority {
  fill: var(--lock-signal);
  stroke: var(--lock-signal);
}

.ocl-auth-core-halo {
  fill: rgba(5, 7, 6, 0.84);
  stroke: rgba(215, 255, 22, 0.12);
  stroke-width: 1;
}

.ocl-auth-threshold {
  fill: none;
  stroke: var(--lock-signal);
  stroke-width: 1.55;
}

.ocl-auth-threshold-glow {
  fill: none;
  stroke: var(--lock-signal);
  stroke-width: 9;
  opacity: 0.09;
  filter: url(#authorization-glow);
}

.ocl-auth-aperture,
.ocl-auth-release {
  fill: none;
  stroke: var(--lock-signal);
  stroke-width: 1.5;
}

.ocl-auth-release {
  stroke-dasharray: 2 5;
}

.ocl-auth-release-mark {
  fill: none;
  stroke: var(--lock-signal);
  stroke-width: 1.5;
}

.ocl-auth-title {
  fill: #ebece6;
  font-family: var(--lock-display);
  font-size: 31px;
  font-weight: 320;
  letter-spacing: -0.045em;
}

.ocl-auth-binding path,
.ocl-auth-binding-line {
  fill: none;
  stroke: rgba(220, 223, 214, 0.18);
  stroke-width: 1;
}

@media (max-width: 1050px) and (min-width: 681px) {
  .translation-field {
    display: block;
  }

  .translation-source,
  .translation-target {
    width: min(620px, 72%);
    min-height: 0;
  }

  .translation-target {
    margin-left: auto;
    text-align: right;
  }

  .authorization-threshold.ocl-authorization-diagram {
    width: min(760px, 90%);
    margin: 6px auto 12px;
  }
}

@media (max-width: 680px) {
  .ocl-diagram-svg--desktop {
    display: none !important;
  }

  .ocl-diagram-svg--mobile {
    display: block !important;
  }

  .scale-spatial.ocl-scale-diagram {
    min-height: 0;
    display: block;
    margin: 34px 0 0;
    padding: 8px 0 2px;
    border-top: 1px solid var(--lock-line-soft);
    border-bottom: 1px solid var(--lock-line-soft);
    background: radial-gradient(ellipse at 53% 58%, rgba(215, 255, 22, 0.028), transparent 56%);
  }

  .home-scale-map .scale-spatial.ocl-scale-diagram > .ocl-diagram-svg--mobile {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
  }

  .ocl-scale-mobile-flow {
    stroke: url(#scale-state-flow-mobile);
    stroke-width: 1.4;
    stroke-dasharray: 3 5;
  }

  .ocl-scale-diagram .ocl-svg-label {
    font-size: 12px;
  }

  .ocl-scale-diagram .ocl-svg-copy {
    font-size: 9.5px;
  }

  .ocl-scale-diagram .ocl-svg-micro,
  .ocl-scale-diagram .ocl-svg-index,
  .ocl-scale-diagram .ocl-svg-overline {
    font-size: 8.5px;
  }

  .translation-field {
    display: block;
  }

  .route-intelligence .authorization-threshold.ocl-authorization-diagram {
    width: calc(100% + 8px);
    min-height: 0;
    margin: 30px -4px 38px;
    padding: 0;
    overflow: visible;
    border: 0;
    background: none;
  }

  .route-intelligence .authorization-threshold.ocl-authorization-diagram > .ocl-diagram-svg--mobile {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
  }

  .ocl-authorization-diagram .ocl-svg-label {
    font-size: 10.5px;
    letter-spacing: 0.105em;
  }

  .ocl-authorization-diagram .ocl-svg-index {
    font-size: 8.5px;
    letter-spacing: 0.09em;
  }

  .ocl-authorization-diagram .ocl-svg-micro,
  .ocl-authorization-diagram .ocl-svg-overline {
    font-size: 8.5px;
    letter-spacing: 0.085em;
  }

  .ocl-authorization-diagram .ocl-auth-title {
    font-size: 24px;
  }

  .ocl-authorization-diagram .ocl-auth-threshold {
    stroke-width: 1.4;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ocl-diagram-svg *,
  .ocl-diagram-svg *::before,
  .ocl-diagram-svg *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Approved render compositions / August 2026
   These replace the compact v1 diagrams in the rendered experience. */

.home-scale-map > .scale-map-copy,
.home-scale-map > .ocl-scale-diagram,
.atlas-translation > .translation-head,
.atlas-translation > .translation-field,
.atlas-translation > .atlas-note {
  display: none !important;
}

.render-truth-note {
  margin: 18px 0 0;
  color: #5f655c;
  font: 600 8px/1.45 var(--lock-mono);
  letter-spacing: 0.11em;
  text-align: right;
  text-transform: uppercase;
}

/* -------------------------------------------------------------------------- */
/* System scale render                                                        */
/* -------------------------------------------------------------------------- */

.home-scale-map {
  display: block;
  min-height: 0;
  padding-top: clamp(74px, 7vw, 112px);
  padding-bottom: clamp(76px, 7vw, 116px);
  overflow: hidden;
}

.home-scale-map .lock-register {
  width: 100%;
}

.scale-render-v2 {
  margin-top: clamp(52px, 5.5vw, 86px);
}

.scale-render-grid {
  display: grid;
  grid-template-columns: minmax(290px, 0.72fr) minmax(620px, 1.28fr);
  gap: clamp(44px, 5.5vw, 96px);
  align-items: start;
}

.scale-render-copy {
  position: relative;
  z-index: 3;
  padding-top: 8px;
}

.scale-render-copy h2 {
  max-width: 9ch;
  margin: 20px 0 0;
  color: #ecece7;
  font-family: var(--lock-display);
  font-size: clamp(4rem, 5.6vw, 6.35rem);
  font-weight: 300;
  line-height: 0.91;
  letter-spacing: -0.062em;
}

.scale-render-copy > p:not(.lock-kicker) {
  max-width: 35ch;
  margin: 30px 0 0;
  color: #8d9289;
  font-size: 15px;
  line-height: 1.58;
}

.scale-principles {
  display: grid;
  gap: 23px;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.scale-principles li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
}

.scale-principles svg {
  fill: none;
  stroke: rgba(215, 255, 22, 0.62);
  stroke-width: 1;
}

.scale-principles strong,
.scale-principles small {
  display: block;
}

.scale-principles strong {
  color: var(--lock-signal);
  font: 600 10px/1.25 var(--lock-mono);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.scale-principles small {
  max-width: 32ch;
  margin-top: 7px;
  color: #777d74;
  font-size: 13px;
  line-height: 1.48;
}

.scale-dna {
  width: min(100%, 310px);
  margin: 76px 0 0;
  padding: 17px 18px 18px;
  border: 1px solid rgba(215, 255, 22, 0.23);
  background: linear-gradient(145deg, rgba(215, 255, 22, 0.018), rgba(5, 7, 6, 0.74));
}

.scale-dna::before {
  content: "ARCHITECTURE DNA";
  display: block;
  margin-bottom: 12px;
  color: var(--lock-signal);
  font: 600 9px/1 var(--lock-mono);
  letter-spacing: 0.12em;
}

.scale-dna div {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  gap: 14px;
  padding: 7px 0;
  border-top: 1px solid rgba(240, 239, 233, 0.07);
}

.scale-dna dt,
.scale-dna dd {
  margin: 0;
  font: 600 8px/1.35 var(--lock-mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.scale-dna dt { color: #5f655c; }
.scale-dna dd { color: #a4a9a0; }

.scale-render-visual {
  position: relative;
  min-height: 920px;
  isolation: isolate;
}

.scale-field-v2,
.scale-field-svg {
  width: 100%;
  height: auto;
}

.scale-field-v2 {
  position: absolute;
  inset: 0;
}

.scale-field-svg {
  display: block;
  overflow: visible;
}

.scale-field-svg--mobile { display: none; }

.scale-field-svg path,
.scale-field-svg circle,
.scale-field-svg ellipse,
.scale-field-svg use {
  vector-effect: non-scaling-stroke;
}

.scale-atmosphere-v2 path {
  fill: none;
  stroke: rgba(196, 202, 191, 0.105);
  stroke-width: 0.8;
}

.scale-continuity-v2 {
  fill: none;
  stroke: rgba(215, 255, 22, 0.58);
  stroke-width: 1.2;
  stroke-dasharray: 2 6;
}

.scale-continuity-glow-v2 {
  fill: none;
  stroke: var(--lock-signal);
  stroke-width: 12;
  opacity: 0.12;
  filter: url(#scale-glow-v2);
}

.scale-node-haze-v2 {
  fill: url(#scale-node-glow-v2);
  stroke: none;
}

.scale-ring-v2,
.scale-axis-v2 {
  fill: none;
  stroke: rgba(215, 255, 22, 0.34);
  stroke-width: 1;
}

.scale-axis-v2 {
  stroke: rgba(215, 255, 22, 0.16);
  stroke-dasharray: 2 4;
}

.scale-hot-node-v2 {
  fill: var(--lock-signal);
  stroke: rgba(215, 255, 22, 0.25);
  stroke-width: 12;
}

.scale-contours-v2 use {
  fill: rgba(215, 255, 22, 0.008);
  stroke: rgba(215, 255, 22, 0.19);
  stroke-width: 0.8;
}

.scale-contours-v2 use:nth-child(2n) {
  stroke: rgba(218, 222, 211, 0.13);
  stroke-dasharray: 2 5;
}

.scale-contours-v2--facility use {
  stroke: rgba(215, 255, 22, 0.17);
}

.scale-links-v2,
.scale-network-latitude-v2 {
  fill: none;
  stroke: rgba(215, 255, 22, 0.31);
  stroke-width: 1;
  stroke-dasharray: 2 5;
}

.scale-cluster-nodes-v2 circle {
  fill: #090c08;
  stroke: var(--lock-signal);
  stroke-width: 1.2;
}

.scale-cluster-nodes-v2 circle:last-child {
  fill: var(--lock-signal);
  stroke-width: 9;
  stroke-opacity: 0.12;
}

.scale-particle-cloud-v2 circle {
  fill: var(--lock-signal);
  opacity: 0.7;
}

.scale-network-shell-v2 {
  fill: rgba(215, 255, 22, 0.008);
  stroke: rgba(215, 255, 22, 0.18);
  stroke-width: 1;
  stroke-dasharray: 2 5;
}

.scale-levels-v2 {
  position: absolute;
  z-index: 3;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  pointer-events: none;
}

.scale-levels-v2 li {
  position: absolute;
  right: 0;
  width: 31%;
  padding-left: 14px;
  background: linear-gradient(90deg, rgba(5, 7, 6, 0.88), rgba(5, 7, 6, 0.52) 78%, transparent);
}

.scale-levels-v2 li:nth-child(1) { top: 7%; }
.scale-levels-v2 li:nth-child(2) { top: 27%; }
.scale-levels-v2 li:nth-child(3) { top: 54%; }
.scale-levels-v2 li:nth-child(4) { top: 80%; }

.scale-levels-v2 span,
.scale-levels-v2 strong,
.scale-levels-v2 b {
  display: block;
  font-family: var(--lock-mono);
  text-transform: uppercase;
}

.scale-levels-v2 span {
  color: var(--lock-signal);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.scale-levels-v2 strong {
  margin-top: 5px;
  color: #e0e2dc;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.scale-levels-v2 b {
  margin-top: 5px;
  color: #858b82;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.scale-levels-v2 p {
  max-width: 24ch;
  margin: 13px 0 0;
  color: #767c73;
  font-size: 12px;
  line-height: 1.48;
}

.scale-outcomes-v2 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
  border: 1px solid rgba(215, 255, 22, 0.24);
  border-radius: 10px;
  background: rgba(6, 8, 6, 0.72);
}

.scale-outcomes-v2 > div {
  min-height: 142px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  padding: 26px 22px;
  border-left: 1px solid rgba(240, 239, 233, 0.1);
}

.scale-outcomes-v2 > div:first-child { border-left: 0; }

.scale-outcomes-v2 i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(215, 255, 22, 0.42);
  border-radius: 50%;
  color: var(--lock-signal);
  font: 400 18px/1 var(--lock-mono);
  font-style: normal;
}

.scale-outcomes-v2 strong,
.scale-outcomes-v2 small { display: block; }

.scale-outcomes-v2 strong {
  color: var(--lock-signal);
  font: 600 10px/1.3 var(--lock-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scale-outcomes-v2 small {
  margin-top: 9px;
  color: #767c73;
  font-size: 12px;
  line-height: 1.48;
}

/* -------------------------------------------------------------------------- */
/* Authorization threshold render                                             */
/* -------------------------------------------------------------------------- */

.atlas-translation {
  overflow: hidden;
}

.auth-render-v2 {
  margin-top: clamp(44px, 5vw, 76px);
}

.auth-render-body {
  position: relative;
  min-height: 870px;
  isolation: isolate;
}

.auth-render-copy {
  position: absolute;
  z-index: 5;
  top: 42px;
  left: 0;
  width: min(34%, 390px);
}

.auth-render-copy h2 {
  max-width: 8ch;
  margin: 22px 0 0;
  color: #ecece7;
  font-family: var(--lock-display);
  font-size: clamp(4rem, 5.5vw, 6.15rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.auth-render-copy > i {
  width: 52px;
  height: 1px;
  display: block;
  margin-top: 30px;
  background: #888e84;
}

.auth-render-copy > p:not(.lock-kicker) {
  max-width: 34ch;
  margin: 26px 0 0;
  color: #8a8f86;
  font-size: 15px;
  line-height: 1.58;
}

.auth-render-link {
  width: min(100%, 250px);
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
  padding: 0 20px;
  border: 1px solid rgba(215, 255, 22, 0.48);
  color: var(--lock-signal);
  font: 600 10px/1 var(--lock-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.auth-render-link:hover,
.auth-render-link:focus-visible {
  border-color: var(--lock-signal);
  background: rgba(215, 255, 22, 0.06);
  color: #f0f4de;
}

.auth-render-visual,
.auth-field-v2 {
  position: absolute;
  inset: 0;
}

.auth-field-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.auth-field-svg--mobile { display: none; }

.auth-field-svg path,
.auth-field-svg circle,
.auth-field-svg polygon,
.auth-field-svg use {
  vector-effect: non-scaling-stroke;
}

.auth-field-atmosphere-v2 path {
  fill: none;
  stroke: rgba(210, 214, 205, 0.1);
  stroke-width: 0.8;
}

.auth-contour-field-v2 use {
  fill: rgba(240, 239, 233, 0.006);
  stroke: rgba(215, 218, 210, 0.15);
  stroke-width: 0.85;
}

.auth-contour-field-v2--left use:nth-child(2n) {
  stroke-dasharray: 2 5;
  stroke: rgba(220, 223, 215, 0.11);
}

.auth-contour-field-v2--right use {
  fill: rgba(215, 255, 22, 0.009);
  stroke: rgba(215, 255, 22, 0.26);
}

.auth-contour-field-v2--right use:nth-child(2n) {
  stroke: rgba(215, 255, 22, 0.14);
  stroke-dasharray: 2 4;
}

.auth-particles-v2 circle {
  fill: rgba(229, 231, 224, 0.45);
}

.auth-particles-v2--right circle {
  fill: var(--lock-signal);
  filter: url(#auth-glow-v2);
}

.auth-plane-fill-v2 { stroke: none; }
.auth-plane-ribs-v2 { opacity: 0.74; }

.auth-boundary-glow-v2 {
  fill: none;
  stroke: var(--lock-signal);
  stroke-width: 18;
  opacity: 0.16;
  filter: url(#auth-glow-v2);
}

.auth-boundary-v2 {
  fill: none;
  stroke: rgba(215, 255, 22, 0.72);
  stroke-width: 1.2;
}

.auth-connectors-v2 path {
  fill: none;
  stroke: rgba(211, 215, 206, 0.31);
  stroke-width: 1;
}

.auth-connectors-v2 circle {
  fill: var(--lock-black);
  stroke: #949a90;
  stroke-width: 1;
}

.auth-threshold-marker-v2 circle:first-child {
  fill: var(--lock-signal);
  opacity: 0.15;
  filter: url(#auth-glow-v2);
}

.auth-threshold-marker-v2 circle:nth-child(2) {
  fill: var(--lock-signal);
  stroke: none;
}

.auth-threshold-marker-v2 path {
  fill: none;
  stroke: var(--lock-signal);
  stroke-width: 1;
  stroke-dasharray: 2 4;
}

.auth-callouts-v2 {
  position: absolute;
  z-index: 4;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  pointer-events: none;
}

.auth-callout-v2 {
  position: absolute;
  width: min(20%, 240px);
}

.auth-callout-v2--constraints { top: 58%; left: 6.5%; }
.auth-callout-v2--acceptance { top: 14.5%; right: 3.8%; }
.auth-callout-v2--resource { top: 55.5%; right: 2.2%; }
.auth-callout-v2--evidence { top: 79%; right: 5%; }
.auth-callout-v2--authority { top: 78.5%; left: 0; }
.auth-callout-v2--threshold { top: 54%; left: 52.5%; width: 160px; }

.auth-callout-v2 strong {
  display: block;
  color: #d9dcd4;
  font: 600 10px/1.35 var(--lock-mono);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.auth-callout-v2 strong span {
  color: var(--lock-signal);
}

.auth-callout-v2 p {
  max-width: 30ch;
  margin: 12px 0 0;
  color: #747a71;
  font-size: 12px;
  line-height: 1.5;
}

.auth-callout-v2--threshold strong {
  color: var(--lock-signal);
  line-height: 1.45;
}

.auth-status-v2 {
  min-height: 116px;
  display: grid;
  grid-template-columns: 1.25fr 0.78fr 0.72fr;
  border: 1px solid rgba(240, 239, 233, 0.16);
  border-radius: 5px;
  background: rgba(5, 7, 6, 0.9);
}

.auth-status-v2 > div {
  min-width: 0;
  display: flex;
  align-items: center;
  padding: 20px 30px;
  border-left: 1px solid rgba(240, 239, 233, 0.14);
}

.auth-status-v2 > div:first-child { border-left: 0; }

.auth-status-v2__binding {
  justify-content: space-between;
  gap: 22px;
}

.auth-status-v2__binding span,
.auth-status-v2 small {
  color: #7a8077;
  font: 600 9px/1.75 var(--lock-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.auth-status-v2 svg {
  fill: none;
  stroke: #858b82;
  stroke-width: 1;
}

.auth-status-v2__condition {
  position: relative;
  flex-direction: column;
  align-items: flex-start !important;
  justify-content: center;
}

.auth-status-v2__condition strong {
  margin-top: 6px;
  color: #a3a89f;
  font-size: 14px;
  font-weight: 500;
}

.auth-status-v2__condition strong b {
  display: block;
  margin-top: 2px;
  color: var(--lock-signal);
  font-weight: 500;
}

.auth-status-v2__condition i {
  position: absolute;
  right: 24px;
  color: var(--lock-signal);
  font: 400 22px/1 var(--lock-mono);
  font-style: normal;
}

.auth-status-v2__result {
  flex-direction: column;
  align-items: flex-start !important;
  justify-content: center;
}

.auth-status-v2__result strong {
  margin-top: 8px;
  color: var(--lock-signal);
  font: 600 11px/1 var(--lock-mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

@media (max-width: 1100px) and (min-width: 821px) {
  .scale-render-grid {
    grid-template-columns: minmax(270px, 0.65fr) minmax(540px, 1.35fr);
    gap: 28px;
  }

  .scale-render-copy h2,
  .auth-render-copy h2 { font-size: clamp(3.7rem, 6vw, 5rem); }

  .scale-levels-v2 li { width: 34%; }
  .scale-levels-v2 p { font-size: 11px; }

  .auth-render-body { min-height: 790px; }
  .auth-callout-v2 p { font-size: 11px; }
  .auth-status-v2 > div { padding-right: 20px; padding-left: 20px; }
}

@media (max-width: 820px) {
  .scale-render-grid {
    display: block;
  }

  .scale-render-copy {
    padding-top: 0;
  }

  .scale-render-copy h2 {
    max-width: 10ch;
    font-size: clamp(3.55rem, 11vw, 5.2rem);
  }

  .scale-render-copy > p:not(.lock-kicker) {
    max-width: 44ch;
    font-size: 16px;
  }

  .scale-principles {
    max-width: 560px;
  }

  .scale-dna {
    margin-top: 48px;
  }

  .scale-render-visual {
    min-height: 0;
    margin-top: 58px;
    aspect-ratio: 360 / 900;
  }

  .scale-field-svg--desktop { display: none; }
  .scale-field-svg--mobile { display: block; }

  .scale-levels-v2 li {
    right: auto;
    width: 43%;
    padding: 9px 0;
    background: linear-gradient(90deg, rgba(5, 7, 6, 0.92), rgba(5, 7, 6, 0.72) 72%, transparent);
  }

  .scale-levels-v2 li:nth-child(1) { top: 4%; left: 55%; }
  .scale-levels-v2 li:nth-child(2) { top: 22%; left: 55%; }
  .scale-levels-v2 li:nth-child(3) { top: 49%; left: 2%; }
  .scale-levels-v2 li:nth-child(4) { top: 78%; left: 2%; }

  .scale-levels-v2 strong { font-size: 15px; }
  .scale-levels-v2 p { font-size: 11px; }

  .scale-outcomes-v2 {
    grid-template-columns: 1fr 1fr;
    margin-top: 36px;
  }

  .scale-outcomes-v2 > div:nth-child(3) { border-left: 0; }
  .scale-outcomes-v2 > div:nth-child(n + 3) { border-top: 1px solid rgba(240, 239, 233, 0.1); }

  .auth-render-body {
    min-height: 0;
  }

  .auth-render-copy {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
  }

  .auth-render-copy h2 {
    max-width: 8ch;
    font-size: clamp(3.7rem, 13vw, 5.4rem);
  }

  .auth-render-copy > p:not(.lock-kicker) {
    max-width: 42ch;
    font-size: 16px;
  }

  .auth-render-visual {
    position: relative;
    inset: auto;
    min-height: 0;
    margin-top: 48px;
    aspect-ratio: 360 / 900;
  }

  .auth-field-v2 {
    position: absolute;
    inset: 0;
  }

  .auth-field-svg--desktop { display: none; }
  .auth-field-svg--mobile { display: block; }

  .auth-callout-v2 {
    width: 41%;
  }

  .auth-callout-v2--acceptance { top: 10.2%; right: 0; }
  .auth-callout-v2--constraints { top: 30.5%; left: 0; }
  .auth-callout-v2--resource { top: 56%; right: 0; }
  .auth-callout-v2--authority { top: 77%; left: 0; }
  .auth-callout-v2--evidence { top: 82%; right: 0; }
  .auth-callout-v2--threshold { top: 49%; left: 52%; width: 130px; }

  .auth-callout-v2 strong { font-size: 9.5px; }
  .auth-callout-v2 p { margin-top: 8px; font-size: 11px; }

  .auth-status-v2 {
    grid-template-columns: 1fr 1fr;
    margin-top: 10px;
  }

  .auth-status-v2__binding {
    grid-column: 1 / -1;
    border-bottom: 1px solid rgba(240, 239, 233, 0.14);
  }

  .auth-status-v2__condition { border-left: 0 !important; }
}

@media (max-width: 560px) {
  .home-scale-map {
    padding-top: 54px;
    padding-bottom: 60px;
  }

  .scale-render-v2,
  .auth-render-v2 {
    margin-top: 36px;
  }

  .scale-render-copy h2 {
    font-size: clamp(3.25rem, 15vw, 4.3rem);
  }

  .scale-principles {
    gap: 20px;
    margin-top: 38px;
  }

  .scale-principles small { font-size: 12px; }

  .scale-dna {
    width: 100%;
  }

  .scale-levels-v2 li { width: 45%; }
  .scale-levels-v2 span { font-size: 8px; }
  .scale-levels-v2 strong { font-size: 13px; }
  .scale-levels-v2 b { font-size: 8px; }
  .scale-levels-v2 p { font-size: 10px; line-height: 1.42; }

  .scale-outcomes-v2 {
    grid-template-columns: 1fr;
  }

  .scale-outcomes-v2 > div,
  .scale-outcomes-v2 > div:nth-child(n) {
    min-height: 0;
    padding: 21px 18px;
    border-top: 1px solid rgba(240, 239, 233, 0.1);
    border-left: 0;
  }

  .scale-outcomes-v2 > div:first-child { border-top: 0; }

  .render-truth-note {
    font-size: 7.5px;
    text-align: left;
  }

  .auth-render-copy h2 {
    font-size: clamp(3.35rem, 16vw, 4.35rem);
  }

  .auth-render-link {
    width: 100%;
  }

  .auth-render-visual {
    margin-top: 38px;
  }

  .auth-callout-v2 { width: 44%; }
  .auth-callout-v2 strong { font-size: 9px; letter-spacing: 0.075em; }
  .auth-callout-v2 p { font-size: 10px; line-height: 1.42; }
  .auth-callout-v2--threshold { width: 116px; }

  .auth-status-v2 {
    display: block;
  }

  .auth-status-v2 > div,
  .auth-status-v2 > div:first-child {
    min-height: 92px;
    padding: 18px;
    border-top: 1px solid rgba(240, 239, 233, 0.14);
    border-left: 0;
  }

  .auth-status-v2 > div:first-child { border-top: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .scale-field-svg *,
  .auth-field-svg * {
    animation: none !important;
    transition: none !important;
  }
}

/* -------------------------------------------------------------------------- */
/* Reference-locked system fields / August 2026                               */
/* -------------------------------------------------------------------------- */

.scale-render-v2,
.auth-render-v2 {
  display: none !important;
}

.scale-render-v3,
.auth-render-v3 {
  margin-top: clamp(44px, 4.8vw, 74px);
  scroll-margin-top: calc(var(--header, 76px) + 18px);
}

.diagram-lock-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
  gap: clamp(38px, 7vw, 112px);
  align-items: end;
  padding-bottom: clamp(28px, 3.4vw, 46px);
  border-bottom: 1px solid rgba(239, 238, 232, 0.16);
}

.diagram-lock-head h2 {
  max-width: 28ch;
  margin: 15px 0 0;
  color: #e8e9e3;
  font-family: var(--lock-display);
  font-size: clamp(2.2rem, 3.5vw, 4.2rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.052em;
}

.auth-render-v3 .diagram-lock-head h2 {
  max-width: 21ch;
}

.diagram-lock-head > p {
  max-width: 44ch;
  margin: 0;
  color: #9ba097;
  font-size: 15px;
  line-height: 1.62;
}

.scale-system-field,
.auth-system-field {
  position: relative;
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  scroll-margin-top: calc(var(--header, 76px) + 18px);
}

.scale-system-field {
  margin-top: clamp(28px, 3vw, 44px);
}

.auth-system-field {
  margin-top: clamp(22px, 2.4vw, 34px);
}

.locked-field-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.locked-field-svg--mobile {
  display: none;
}

.locked-field-svg path,
.locked-field-svg circle,
.locked-field-svg ellipse,
.locked-field-svg polygon,
.locked-field-svg use,
.locked-field-svg line {
  vector-effect: non-scaling-stroke;
}

.locked-svg-index,
.locked-svg-title,
.locked-svg-copy,
.locked-svg-rail,
.auth-lock-binding,
.auth-lock-floor-label,
.auth-lock-transition,
.auth-lock-mobile-hold,
.auth-lock-mobile-footer {
  font-family: var(--lock-mono);
  text-transform: uppercase;
}

.locked-svg-index {
  fill: var(--lock-signal);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.locked-svg-title {
  fill: #e1e3dc;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.locked-svg-copy {
  fill: #969c92;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.015em;
  text-transform: none;
}

.locked-svg-rail {
  fill: #a9aea4;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

/* Continuous scale field */

.scale-locked-svg {
  background:
    radial-gradient(circle at 52% 51%, rgba(215, 255, 22, 0.018), transparent 35%),
    linear-gradient(180deg, rgba(5, 7, 6, 0.01), rgba(5, 7, 6, 0.7));
}

.scale-lock-flow-haze {
  fill: none;
  stroke: var(--lock-signal);
  stroke-width: 20;
  opacity: 0.12;
  filter: url(#scale-lock-glow);
}

.locked-field-svg--mobile .scale-lock-flow-haze {
  filter: url(#scale-lock-mobile-glow);
}

.scale-lock-flow,
.scale-lock-provenance {
  fill: none;
  stroke: var(--lock-signal);
  stroke-width: 1.2;
  stroke-dasharray: 3 8;
}

.scale-lock-flow {
  animation: locked-flow 11s linear infinite;
}

.scale-lock-provenance {
  stroke: rgba(226, 229, 220, 0.26);
  stroke-width: 0.8;
  stroke-dasharray: 1 7;
}

.scale-lock-field-fill {
  fill: url(#scale-lock-field);
  stroke: none;
}

.locked-field-svg--mobile .scale-lock-field-fill {
  fill: url(#scale-lock-mobile-field);
}

.scale-lock-orbit,
.scale-lock-globe-line {
  fill: none;
  stroke: rgba(215, 255, 22, 0.31);
  stroke-width: 0.9;
}

.scale-lock-orbit--inner {
  stroke: rgba(229, 232, 222, 0.2);
  stroke-dasharray: 2 5;
}

.scale-lock-orbit--fine {
  stroke: rgba(215, 255, 22, 0.17);
  stroke-dasharray: 1 4;
}

.scale-lock-orbit-dash,
.scale-lock-cluster-link,
.scale-lock-process,
.scale-lock-network-link {
  fill: none;
  stroke: rgba(215, 255, 22, 0.49);
  stroke-width: 0.9;
  stroke-dasharray: 2 5;
}

.scale-lock-base-shadow {
  fill: #000;
  opacity: 0.72;
  filter: url(#scale-lock-soft);
}

.scale-lock-base {
  fill: #10130f;
  stroke: rgba(215, 255, 22, 0.34);
  stroke-width: 0.8;
}

.scale-lock-machine-side {
  fill: url(#scale-lock-side);
  stroke: rgba(231, 232, 225, 0.54);
  stroke-width: 0.8;
}

.locked-field-svg--mobile .scale-lock-machine-side {
  fill: url(#scale-lock-mobile-side);
}

.scale-lock-machine-top {
  fill: url(#scale-lock-top);
  stroke: rgba(237, 238, 232, 0.67);
  stroke-width: 0.8;
}

.locked-field-svg--mobile .scale-lock-machine-top {
  fill: url(#scale-lock-mobile-top);
}

.scale-lock-machine-face {
  fill: #171a17;
  stroke: rgba(232, 234, 226, 0.45);
  stroke-width: 0.7;
}

.scale-lock-machine-edge,
.scale-lock-machine-window,
.scale-lock-tool {
  fill: none;
  stroke: rgba(231, 233, 226, 0.57);
  stroke-width: 0.75;
}

.scale-lock-machine-window {
  fill: rgba(3, 5, 4, 0.9);
  stroke: rgba(215, 255, 22, 0.25);
}

.scale-lock-indicator,
.scale-lock-particle,
.scale-lock-rail-dot {
  fill: var(--lock-signal);
  stroke: none;
}

.scale-lock-node-halo {
  fill: var(--lock-signal);
  opacity: 0.16;
  filter: url(#scale-lock-glow);
}

.locked-field-svg--mobile .scale-lock-node-halo {
  filter: url(#scale-lock-mobile-glow);
}

.scale-lock-node {
  fill: #070907;
  stroke: var(--lock-signal);
  stroke-width: 1.2;
}

.scale-lock-floor {
  fill: rgba(105, 111, 103, 0.11);
  stroke: rgba(225, 228, 219, 0.27);
  stroke-width: 0.8;
}

.scale-lock-building path:first-child {
  fill: url(#scale-lock-top);
  stroke: rgba(236, 238, 230, 0.58);
  stroke-width: 0.8;
}

.locked-field-svg--mobile .scale-lock-building path:first-child {
  fill: url(#scale-lock-mobile-top);
}

.scale-lock-building path:nth-child(2) {
  fill: #272b27;
  stroke: rgba(227, 229, 221, 0.43);
  stroke-width: 0.8;
}

.scale-lock-building path:nth-child(3) {
  fill: #171a17;
  stroke: rgba(227, 229, 221, 0.39);
  stroke-width: 0.8;
}

.scale-lock-building--rear {
  opacity: 0.74;
}

.scale-lock-roof-line {
  fill: none !important;
  stroke: rgba(215, 255, 22, 0.24) !important;
  stroke-width: 0.7 !important;
}

.scale-lock-land {
  fill: rgba(173, 179, 169, 0.14);
  stroke: rgba(220, 224, 214, 0.35);
  stroke-width: 0.7;
}

.scale-lock-axis {
  fill: none;
  stroke: rgba(215, 255, 22, 0.7);
  stroke-width: 1;
}

/* Authorization boundary field */

.auth-locked-svg {
  background:
    radial-gradient(circle at 50% 48%, rgba(215, 255, 22, 0.025), transparent 31%),
    #050706;
}

.auth-lock-radial-field > use {
  fill: none;
  stroke: rgba(217, 221, 211, 0.14);
  stroke-width: 0.75;
}

.auth-lock-radial-field > use:nth-child(2n) {
  stroke: rgba(215, 255, 22, 0.18);
  stroke-dasharray: 2 4;
}

.auth-lock-floor-glow {
  fill: var(--lock-signal);
  opacity: 0.1;
  filter: url(#auth-lock-soft);
}

.auth-lock-boundary-glow {
  fill: none !important;
  stroke: var(--lock-signal) !important;
  stroke-width: 18 !important;
  opacity: 0.22;
  filter: url(#auth-lock-glow);
  animation: locked-boundary 4.8s ease-in-out infinite;
}

.locked-field-svg--mobile .auth-lock-boundary-glow {
  filter: url(#auth-lock-mobile-glow);
}

.auth-lock-boundary {
  fill: none !important;
  stroke: var(--lock-signal) !important;
  stroke-width: 1.6 !important;
}

.auth-lock-core-fill {
  fill: url(#auth-lock-center);
  stroke: none !important;
}

.locked-field-svg--mobile .auth-lock-core-fill {
  fill: url(#auth-lock-mobile-center);
}

.auth-lock-particles circle {
  fill: var(--lock-signal);
  opacity: 0.55;
}

.auth-lock-input-lines path,
.auth-lock-output-lines path,
.auth-lock-mobile-input,
.auth-lock-mobile-output {
  fill: none;
  stroke-width: 0.85;
}

.auth-lock-input-lines path,
.auth-lock-mobile-input {
  stroke: rgba(220, 224, 214, 0.34);
}

.auth-lock-output-lines path,
.auth-lock-mobile-output {
  stroke: rgba(215, 255, 22, 0.66);
}

.auth-lock-output-lines path,
.auth-lock-mobile-output--lower {
  stroke-dasharray: 3 6;
  animation: locked-flow 9s linear infinite;
}

.auth-lock-input-lines circle,
.auth-lock-output-lines circle {
  fill: var(--lock-signal);
  stroke: none;
}

.auth-lock-input-lines circle:first-of-type {
  fill: #9ba097;
}

.auth-lock-condition use,
.auth-lock-mobile-condition use {
  fill: none;
  stroke: #b2b7ad;
  stroke-width: 1;
}

.auth-lock-icon-ring {
  fill: rgba(6, 8, 6, 0.86);
  stroke: rgba(223, 226, 216, 0.24);
  stroke-width: 0.8;
}

.auth-lock-condition--authorized .auth-lock-icon-ring {
  stroke: rgba(215, 255, 22, 0.68);
}

.auth-lock-condition--authorized use {
  stroke: var(--lock-signal);
}

.auth-lock-center-copy path {
  fill: none;
  stroke: rgba(224, 227, 217, 0.25);
  stroke-width: 0.8;
}

.auth-lock-threshold {
  fill: #ecece7;
  font-family: var(--lock-display);
  font-size: 35px;
  font-weight: 300;
  letter-spacing: -0.04em;
}

.auth-lock-binding {
  fill: #9da299;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.auth-lock-floor-label,
.auth-lock-mobile-hold,
.auth-lock-mobile-footer {
  fill: #7f857c;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.17em;
}

.auth-lock-transition {
  fill: #8d9389;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.auth-lock-transition path {
  fill: none;
  stroke: var(--lock-signal);
  stroke-width: 1;
}

.auth-lock-mobile-frame {
  fill: none;
  stroke: rgba(228, 230, 222, 0.24);
  stroke-width: 0.8;
}

.auth-lock-mobile-input,
.auth-lock-mobile-output {
  stroke-linejoin: round;
}

.auth-lock-center-copy--mobile .auth-lock-threshold {
  font-size: 25px;
}

.auth-lock-center-copy--mobile .auth-lock-binding {
  font-size: 11.5px;
}

.auth-lock-mobile-footer {
  fill: var(--lock-signal);
  letter-spacing: 0.12em;
}

@keyframes locked-flow {
  to { stroke-dashoffset: -80; }
}

@keyframes locked-boundary {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.27; }
}

@media (min-width: 1440px) {
  .diagram-lock-head h2 {
    font-size: 4.35rem;
  }

  .scale-system-field,
  .auth-system-field {
    margin-right: -1.5vw;
    margin-left: -1.5vw;
  }
}

@media (max-width: 1100px) and (min-width: 981px) {
  .diagram-lock-head {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.42fr);
    gap: 42px;
  }

  .diagram-lock-head h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  }

  .locked-svg-title { font-size: 18px; }
  .locked-svg-copy { font-size: 15px; }
}

@media (max-width: 1100px) {
  .diagram-lock-head {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }

  .diagram-lock-head > p {
    max-width: 56ch;
  }

  .locked-field-svg--desktop {
    display: none;
  }

  .locked-field-svg--mobile {
    width: min(100%, 560px);
    display: block;
    margin: 0 auto;
  }

  .scale-system-field,
  .auth-system-field {
    margin-top: 34px;
  }
}

@media (max-width: 560px) {
  .scale-render-v3,
  .auth-render-v3 {
    margin-top: 34px;
  }

  .diagram-lock-head {
    gap: 16px;
    padding-bottom: 24px;
  }

  .diagram-lock-head h2,
  .auth-render-v3 .diagram-lock-head h2 {
    max-width: 14ch;
    font-size: clamp(2.05rem, 10.6vw, 2.75rem);
    line-height: 0.98;
  }

  .auth-render-v3 .diagram-lock-head h2 {
    max-width: 16ch;
  }

  .diagram-lock-head > p {
    color: #a2a79e;
    font-size: 15px;
    line-height: 1.58;
  }

  .scale-system-field,
  .auth-system-field {
    margin-top: 24px;
  }

  .locked-svg-index { font-size: 11px; }
  .locked-svg-title { font-size: 12px; letter-spacing: 0.085em; }
  .locked-svg-copy { font-size: 11.25px; }
  .locked-svg-rail { font-size: 10.5px; letter-spacing: 0.09em; }

  .auth-lock-mobile-hold,
  .auth-lock-mobile-footer {
    font-size: 11.5px;
  }

  .auth-lock-mobile-condition .locked-svg-title {
    font-size: 11.3px;
  }

  .auth-lock-mobile-condition .locked-svg-copy {
    font-size: 11.5px;
  }

  .render-truth-note {
    margin-top: 14px;
    font-size: 7.5px;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scale-lock-flow,
  .auth-lock-output-lines path,
  .auth-lock-mobile-output--lower,
  .auth-lock-boundary-glow {
    animation: none !important;
  }
}
