@font-face {
  font-family: "Newsreader";
  src: url("../fonts/newsreader-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("../fonts/newsreader-variable-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/ibm-plex-mono-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/ibm-plex-mono-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --obsidian: #050507;
  --carbon: #0b0d11;
  --state-indigo: #15182d;
  --memory-navy: #19243a;
  --ivory: #f1ebdd;
  --parchment: #e7decc;
  --silver: #c8cdd5;
  --slate: #858e9d;
  --blue: #7391ff;
  --violet: #8173d8;
  --teal: #62b7b0;
  --copper: #b56d4e;
  --gold: #c3a064;
  --line-dark: rgba(241, 235, 221, 0.13);
  --line-light: rgba(5, 5, 7, 0.16);
  --shell: min(1240px, calc(100vw - 48px));
  --narrow: min(760px, calc(100vw - 48px));
  --display: "Newsreader", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--obsidian);
}

body {
  margin: 0;
  background: var(--obsidian);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
}

a:hover {
  color: var(--blue);
}

button,
summary {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

::selection {
  background: var(--copper);
  color: var(--ivory);
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
figure {
  margin-top: 0;
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3.6rem, 7.3vw, 7.4rem);
}

h2 {
  font-size: clamp(2.55rem, 5vw, 5rem);
}

h3 {
  font-family: var(--sans);
  font-size: 1.12rem;
  line-height: 1.28;
  letter-spacing: -0.015em;
}

p {
  color: var(--silver);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.narrow-shell {
  width: var(--narrow);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 200;
  transform: translateY(-160%);
  padding: 12px 18px;
  background: var(--ivory);
  color: var(--obsidian);
  border-radius: 999px;
}

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

.site-header {
  position: relative;
  z-index: 80;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(5, 5, 7, 0.93);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ivory);
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  color: var(--ivory);
  flex: 0 0 auto;
}

.wordmark {
  font-family: var(--display);
  font-size: 1.28rem;
  letter-spacing: -0.02em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.desktop-nav a,
.footer-nav a {
  color: var(--silver);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.desktop-nav a:hover,
.footer-nav a:hover {
  color: var(--ivory);
}

.mobile-nav {
  display: none;
}

.editorial-label,
.eyebrow,
.technical-label,
.status-line,
.article-dates,
.reviewed,
.date-line,
.microcopy {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.editorial-label {
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 500;
}

.eyebrow {
  color: var(--slate);
  font-size: 0.68rem;
}

.technical-label {
  color: var(--teal);
  font-size: 0.66rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 650;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ivory);
  color: var(--obsidian);
}

.button-primary:hover {
  background: var(--gold);
  color: var(--obsidian);
}

.button-secondary {
  border-color: var(--line-dark);
  color: var(--ivory);
  background: rgba(241, 235, 221, 0.025);
}

.button-secondary:hover {
  border-color: rgba(241, 235, 221, 0.4);
  color: var(--ivory);
}

.home-hero {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 130px) 0;
  background:
    radial-gradient(circle at 83% 35%, rgba(115, 145, 255, 0.13), transparent 34%),
    radial-gradient(circle at 16% 85%, rgba(181, 109, 78, 0.11), transparent 28%),
    var(--obsidian);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(to bottom, transparent, black 16%, black 72%, transparent);
  opacity: 0.28;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(42px, 6vw, 96px);
  align-items: center;
}

.domain-identity {
  color: var(--ivory);
  margin: 24px 0 12px;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  font-weight: 600;
}

.hero-copy h1 {
  margin-bottom: 32px;
}

.hero-primary {
  max-width: 680px;
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  line-height: 1.3;
}

.hero-secondary {
  max-width: 620px;
  color: var(--slate);
}

.status-line {
  max-width: 650px;
  color: var(--slate);
  font-size: 0.63rem;
  line-height: 1.7;
}

.hero-visual {
  margin: 0;
}

.hero-svg {
  overflow: visible;
  filter: drop-shadow(0 45px 95px rgba(0, 0, 0, 0.45));
}

.hero-svg-mobile {
  display: none;
}

.hero-visual figcaption,
.world-state-visual figcaption,
.comparison-visual figcaption,
.principal-system figcaption,
.process-diagram figcaption {
  margin-top: 16px;
  color: var(--slate);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.05em;
}

.architectural-grid path {
  fill: none;
  stroke: rgba(241, 235, 221, 0.07);
  stroke-width: 1;
}

.state-fragments path {
  fill: rgba(181, 109, 78, 0.17);
  stroke: rgba(181, 109, 78, 0.62);
  stroke-width: 2;
}

.context-field rect,
.context-field path {
  fill: rgba(21, 24, 45, 0.58);
  stroke: rgba(115, 145, 255, 0.36);
  stroke-width: 2;
}

.context-field path {
  fill: none;
  stroke-width: 1.5;
}

.memory-strata path {
  fill: rgba(98, 183, 176, 0.1);
  stroke: rgba(98, 183, 176, 0.58);
  stroke-width: 2;
}

.identity-core circle,
.identity-core path,
.model-planes path,
.embodiment-shell path,
.embodiment-shell circle {
  fill: rgba(21, 24, 45, 0.65);
  stroke: rgba(241, 235, 221, 0.38);
  stroke-width: 2;
}

.identity-core circle:last-child,
.embodiment-shell circle {
  fill: var(--gold);
  stroke: none;
}

.thread-glow {
  fill: none;
  stroke: rgba(115, 145, 255, 0.24);
  stroke-width: 24;
  stroke-linecap: round;
  filter: blur(8px);
}

.thread-line {
  fill: none;
  stroke: url("#hero-thread");
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-mobile-continuity-path.thread-line {
  stroke: url("#mobile-thread");
}

.reference-points circle {
  fill: var(--ivory);
  stroke: var(--state-indigo);
  stroke-width: 4;
}

.section {
  padding: clamp(92px, 10vw, 160px) 0;
}

.section-heading {
  max-width: 850px;
  margin-bottom: clamp(48px, 7vw, 96px);
  scroll-margin-top: 40px;
}

.section-heading .eyebrow {
  margin-bottom: 16px;
}

.section-heading h2 {
  margin-bottom: 26px;
}

.section-heading > p:last-child:not(.editorial-label):not(.eyebrow) {
  max-width: 760px;
  color: var(--silver);
  font-size: 1.08rem;
}

.light-section {
  background: var(--ivory);
  color: var(--obsidian);
}

.light-section p {
  color: #3f434c;
}

.light-section .editorial-label {
  color: #8f523a;
}

.dark-section {
  background:
    linear-gradient(135deg, rgba(25, 36, 58, 0.62), transparent 48%),
    var(--carbon);
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(52px, 8vw, 120px);
  align-items: start;
}

.editorial-split .section-heading {
  margin-bottom: 0;
}

.prose {
  font-size: 1rem;
}

.prose p,
.prose li {
  color: var(--silver);
}

.large-prose {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  line-height: 1.42;
}

.large-prose p {
  color: #24262c;
}

.meaning-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 88px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.meaning-grid article {
  min-height: 230px;
  padding: 32px;
  background: var(--parchment);
}

.meaning-grid h3 {
  font-family: var(--display);
  font-size: 1.8rem;
}

.source-note {
  margin-top: 28px;
  color: #676a73;
  font-family: var(--mono);
  font-size: 0.64rem;
}

.source-note a {
  color: #4c5060;
}

.comparison-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 0;
}

.comparison-field {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  border: 1px solid var(--line-dark);
  border-radius: 26px;
  background: rgba(5, 5, 7, 0.38);
}

.comparison-field > span {
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: var(--ivory);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faded-lines path {
  fill: none;
  stroke: rgba(200, 205, 213, 0.16);
  stroke-width: 12;
  stroke-linecap: round;
}

.broken-thread path {
  fill: none;
  stroke: var(--copper);
  stroke-width: 4;
  stroke-linecap: round;
}

.state-plates rect,
.page-identity-visual .state-plates rect {
  fill: rgba(115, 145, 255, 0.07);
  stroke: rgba(115, 145, 255, 0.28);
  stroke-width: 2;
}

.continuous-field .thread-line,
.page-identity-visual .thread-line,
.world-state-visual .thread-line {
  stroke: var(--teal);
}

.comparison-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.comparison-lists article {
  padding: 32px;
  border: 1px solid var(--line-dark);
  border-radius: 24px;
}

.comparison-lists h3 {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comparison-lists li {
  margin-bottom: 9px;
  color: var(--silver);
}

.editorial-statement {
  max-width: 960px;
  margin: clamp(58px, 7vw, 90px) auto 0;
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-style: italic;
  line-height: 1.1;
  text-align: center;
}

.stack-section {
  background: var(--obsidian);
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.stack-card {
  min-width: 0;
  min-height: 430px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: 25px;
  background:
    linear-gradient(145deg, rgba(115, 145, 255, 0.06), transparent 60%),
    rgba(11, 13, 17, 0.76);
}

.stack-card h3 {
  margin: 8px 0 14px;
  color: var(--ivory);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 500;
}

.stack-card .card-system-visual {
  width: 100%;
  min-width: 0;
  height: 180px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  overflow: hidden;
}

.stack-card .candidate-svg {
  width: 100%;
  max-height: 180px;
  color: rgba(241, 235, 221, 0.72);
}

.resource-card .card-system-visual {
  width: 100%;
  min-width: 0;
  height: 158px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  overflow: hidden;
}

.resource-card .candidate-svg {
  width: 100%;
  max-height: 158px;
  color: rgba(25, 36, 58, 0.68);
}

.home-capture[data-capture-width] .shell {
  width: min(calc(100% - 34px), var(--capture-width));
}

.home-capture[data-capture-width="768"] :is(.stack-grid, .resource-grid) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-capture:is(
  [data-capture-width="430"],
  [data-capture-width="390"],
  [data-capture-width="360"]
) :is(.stack-grid, .resource-grid) {
  grid-template-columns: 1fr;
}

.home-capture:is(
  [data-capture-width="430"],
  [data-capture-width="390"],
  [data-capture-width="360"]
) :is(.stack-card, .resource-grid article) {
  min-height: auto;
}

.home-capture:is(
  [data-capture-width="430"],
  [data-capture-width="390"],
  [data-capture-width="360"]
) .candidate-svg-desktop {
  display: none;
}

.home-capture:is(
  [data-capture-width="430"],
  [data-capture-width="390"],
  [data-capture-width="360"]
) .candidate-svg-mobile {
  display: block;
}

.home-capture:is(
  [data-capture-width="430"],
  [data-capture-width="390"],
  [data-capture-width="360"]
) .section-heading h2 {
  font-size: 3.45rem;
}

.home-capture[data-capture-width="390"] .section-heading h2 {
  font-size: 3.2rem;
}

.home-capture[data-capture-width="360"] .section-heading h2 {
  font-size: 3rem;
}

.concept-note {
  margin-top: 34px;
  padding: 22px 24px;
  border-left: 2px solid var(--gold);
  background: rgba(195, 160, 100, 0.07);
  color: var(--silver);
  font-size: 0.9rem;
}

.identity-change-section {
  background:
    radial-gradient(circle at 50% 38%, rgba(129, 115, 216, 0.17), transparent 45%),
    var(--state-indigo);
}

.transition-groups {
  display: grid;
  gap: 10px;
  margin-bottom: 40px;
}

.transition-groups p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0;
  color: var(--ivory);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.principal-system {
  margin: 48px 0 0;
  padding: 24px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 42%, rgba(115, 145, 255, 0.09), transparent 48%),
    rgba(5, 5, 7, 0.56);
}

.principal-artwork {
  min-width: 0;
  overflow: hidden;
  border-radius: 18px;
}

.principal-svg {
  width: 100%;
  height: auto;
  display: block;
}

.principal-svg-mobile {
  display: none;
}

.principal-base {
  fill: rgba(8, 9, 13, 0.76);
  stroke: rgba(200, 205, 213, 0.16);
  stroke-width: 2;
}

.principal-key {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  padding: 0;
  margin: 20px 0 0;
  color: var(--silver);
  font-family: var(--mono);
  font-size: 0.59rem;
  letter-spacing: 0.045em;
  list-style: none;
  text-transform: uppercase;
}

.principal-key li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.principal-key span {
  width: 16px;
  height: 2px;
  display: inline-block;
  background: var(--gold);
}

.principal-key span[data-key-index="2"],
.principal-key span[data-key-index="6"] {
  background: var(--copper);
}

.principal-key span[data-key-index="3"],
.principal-key span[data-key-index="7"] {
  background: var(--violet);
}

.principal-key span[data-key-index="4"],
.principal-key span[data-key-index="8"] {
  background: var(--teal);
}

.principal-copy-hidden {
  margin: 0;
}

.continuity-chambers path {
  fill: rgba(25, 28, 52, 0.48);
  stroke: rgba(200, 205, 213, 0.24);
  stroke-width: 2;
}

.continuity-context path {
  fill: none;
  stroke: rgba(241, 235, 221, 0.34);
  stroke-linecap: round;
  stroke-width: 7;
}

.continuity-disappear path {
  fill: none;
  stroke: rgba(181, 109, 78, 0.35);
  stroke-dasharray: 8 14;
  stroke-width: 2;
}

.continuity-thread {
  fill: none;
  stroke-linecap: round;
  stroke-width: 8;
}

.continuity-objective path {
  fill: var(--gold);
  stroke: var(--ivory);
  stroke-width: 2;
}

.continuity-provenance path,
.continuity-provenance circle {
  fill: var(--copper);
  stroke: var(--copper);
  stroke-width: 3;
}

.continuity-action,
.memory-recall-head {
  fill: var(--teal);
  stroke: var(--ivory);
  stroke-width: 2;
}

.memory-events circle,
.memory-events path {
  fill: rgba(181, 109, 78, 0.17);
  stroke: var(--copper);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.memory-ingress path {
  fill: none;
  stroke: rgba(200, 205, 213, 0.34);
  stroke-width: 2;
}

.memory-filter {
  fill: rgba(195, 160, 100, 0.17);
  stroke: var(--gold);
  stroke-width: 3;
}

.memory-filter-signal {
  fill: none;
  stroke: rgba(241, 235, 221, 0.62);
  stroke-linecap: round;
  stroke-width: 5;
}

.memory-layers path {
  fill: rgba(115, 145, 255, 0.1);
  stroke: rgba(129, 115, 216, 0.72);
  stroke-width: 3;
}

.memory-provenance path,
.memory-provenance circle {
  fill: var(--gold);
  stroke: var(--gold);
  stroke-width: 2;
}

.memory-recall {
  fill: none;
  stroke-linecap: round;
  stroke-width: 8;
}

.memory-revision {
  fill: none;
  stroke: var(--copper);
  stroke-dasharray: 10 12;
  stroke-width: 3;
}

.memory-feedback {
  fill: none;
  stroke: rgba(98, 183, 176, 0.62);
  stroke-width: 3;
}

.memory-revision-mark {
  fill: var(--copper);
  stroke: var(--ivory);
  stroke-width: 2;
}

.identity-evidence-loop {
  fill: rgba(25, 28, 52, 0.18);
  stroke-linecap: round;
  stroke-width: 8;
}

.identity-declared-role path:first-child,
.identity-subordinate path:first-child {
  fill: rgba(195, 160, 100, 0.15);
  stroke: var(--gold);
  stroke-width: 3;
}

.identity-declared-role path:not(:first-child),
.identity-subordinate path:not(:first-child),
.identity-credentials path:not(:last-child),
.identity-audit path:not(:first-child),
.identity-provenance path:not(:last-child) {
  fill: none;
  stroke: rgba(241, 235, 221, 0.58);
  stroke-linecap: round;
  stroke-width: 5;
}

.identity-credentials path:last-child {
  fill: rgba(181, 109, 78, 0.28);
  stroke: var(--copper);
  stroke-width: 3;
}

.identity-authentication path:first-child {
  fill: rgba(98, 183, 176, 0.1);
  stroke: var(--teal);
  stroke-width: 3;
}

.identity-authentication path:last-child {
  fill: none;
  stroke: var(--teal);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 6;
}

.identity-permissions path {
  fill: none;
  stroke: var(--violet);
  stroke-linecap: round;
  stroke-width: 5;
}

.identity-actions path:first-child {
  fill: rgba(129, 115, 216, 0.18);
  stroke: var(--violet);
  stroke-width: 3;
}

.identity-actions path:last-child {
  fill: none;
  stroke: var(--ivory);
  stroke-width: 5;
}

.identity-audit path:first-child {
  fill: rgba(98, 183, 176, 0.09);
  stroke: var(--teal);
  stroke-width: 3;
}

.identity-provenance path:last-child {
  fill: none;
  stroke: var(--copper);
  stroke-width: 4;
}

.identity-delegation,
.identity-delegation-return {
  fill: none;
  stroke: var(--copper);
  stroke-dasharray: 9 11;
  stroke-width: 3;
}

.identity-return-mark {
  fill: var(--gold);
  stroke: var(--ivory);
  stroke-width: 2;
}

.world-plane {
  fill: rgba(98, 183, 176, 0.06);
  stroke: rgba(98, 183, 176, 0.58);
  stroke-width: 3;
}

.world-plane-grid path {
  fill: none;
  stroke: rgba(98, 183, 176, 0.2);
  stroke-width: 2;
}

.world-persistent-objects path {
  fill: rgba(115, 145, 255, 0.13);
  stroke: rgba(241, 235, 221, 0.62);
  stroke-width: 3;
}

.world-viewpoints path {
  fill: rgba(195, 160, 100, 0.1);
  stroke: var(--gold);
  stroke-width: 3;
}

.world-viewpoints path:nth-last-child(-n + 2) {
  fill: none;
  stroke-dasharray: 8 10;
}

.world-agent path:first-child {
  fill: var(--copper);
  stroke: var(--ivory);
  stroke-width: 2;
}

.world-agent path:not(:first-child) {
  fill: none;
  stroke: var(--copper);
  stroke-linecap: round;
  stroke-width: 4;
}

.world-agent path:last-child {
  fill: var(--copper);
}

.world-predictions path {
  fill: none;
  stroke: var(--violet);
  stroke-dasharray: 10 12;
  stroke-width: 3;
}

.world-observation path {
  fill: rgba(98, 183, 176, 0.18);
  stroke: var(--teal);
  stroke-width: 3;
}

.world-observation path:last-of-type {
  fill: none;
  stroke-dasharray: 8 10;
}

.world-observation circle {
  fill: var(--teal);
  stroke: var(--ivory);
  stroke-width: 3;
}

.world-correction {
  fill: none;
  stroke-linecap: round;
  stroke-width: 7;
}

.world-corrected-state {
  fill: rgba(98, 183, 176, 0.2);
  stroke: var(--teal);
  stroke-width: 4;
}

.embodied-transfer-lines path {
  fill: none;
  stroke: rgba(200, 205, 213, 0.28);
  stroke-width: 3;
}

.embodied-gates path {
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-width: 5;
}

.embodied-core path:first-child {
  stroke: var(--gold);
  stroke-width: 4;
}

.embodied-core path:not(:first-child) {
  fill: none;
  stroke: rgba(241, 235, 221, 0.62);
  stroke-linecap: round;
  stroke-width: 4;
}

.embodied-form-text path,
.embodied-form-voice path,
.embodied-form-virtual path,
.embodied-form-edge path,
.embodied-form-machine path,
.embodied-form-machine circle {
  fill: rgba(115, 145, 255, 0.07);
  stroke: rgba(200, 205, 213, 0.56);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.embodied-form-text path:not(:first-child),
.embodied-form-voice path:first-child,
.embodied-form-virtual path:last-child,
.embodied-form-edge path:not(:first-child),
.embodied-form-machine path {
  fill: none;
}

.embodied-form-voice path:first-child {
  stroke: var(--copper);
  stroke-width: 5;
}

.embodied-form-virtual path {
  stroke: var(--violet);
}

.embodied-form-edge path {
  stroke: var(--teal);
}

.embodied-form-machine path,
.embodied-form-machine circle {
  stroke: var(--gold);
}

.embodied-feedback path {
  fill: none;
  stroke: var(--teal);
  stroke-dasharray: 9 12;
  stroke-width: 3;
}

.glossary-continuity-ribbon {
  fill: none;
  stroke-linecap: round;
  stroke-width: 8;
}

.glossary-crosslinks path {
  fill: none;
  stroke: rgba(200, 205, 213, 0.22);
  stroke-width: 2;
}

.glossary-cluster-memory path,
.glossary-cluster-identity path,
.glossary-cluster-world path,
.glossary-cluster-agency path,
.glossary-cluster-governance path,
.glossary-cluster-embodiment path {
  fill: rgba(115, 145, 255, 0.07);
  stroke: rgba(241, 235, 221, 0.52);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.glossary-cluster-memory path {
  stroke: var(--copper);
}

.glossary-cluster-identity path {
  stroke: var(--gold);
}

.glossary-cluster-world path {
  stroke: var(--teal);
}

.glossary-cluster-agency path {
  stroke: var(--violet);
}

.glossary-cluster-governance path {
  stroke: rgba(200, 205, 213, 0.72);
}

.glossary-cluster-embodiment path {
  stroke: var(--copper);
}

.world-section {
  background: var(--parchment);
  color: var(--obsidian);
}

.world-section p {
  color: #444852;
}

.world-grid-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
}

.world-grid-layout .section-heading {
  margin-bottom: 36px;
}

.world-state-visual {
  margin: 0;
}

.world-state-visual svg {
  filter: drop-shadow(0 30px 55px rgba(5, 5, 7, 0.22));
}

.world-base,
.visual-base {
  fill: var(--carbon);
  stroke: rgba(5, 5, 7, 0.18);
  stroke-width: 2;
}

.world-grid path {
  fill: none;
  stroke: rgba(98, 183, 176, 0.23);
  stroke-width: 2;
}

.world-objects path,
.world-objects circle,
.viewpoints path {
  fill: rgba(115, 145, 255, 0.1);
  stroke: rgba(241, 235, 221, 0.5);
  stroke-width: 2;
}

.viewpoints path:last-child,
.viewpoints path:nth-last-child(2) {
  fill: none;
  stroke: rgba(195, 160, 100, 0.52);
}

.prediction-paths path {
  fill: none;
  stroke: rgba(129, 115, 216, 0.58);
  stroke-width: 3;
  stroke-dasharray: 10 12;
}

.applications-section {
  background: var(--obsidian);
}

.application-grid,
.strength-grid,
.theme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.application-grid article,
.strength-grid article,
.theme-grid article {
  min-height: 250px;
  padding: 34px;
  background: var(--carbon);
}

.application-grid h3,
.strength-grid h3,
.theme-grid h3 {
  color: var(--ivory);
}

.buyer-reality,
.honest-limitation {
  max-width: 900px;
  margin: 60px auto 0;
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.7vw, 2.4rem);
  line-height: 1.35;
  text-align: center;
}

.boundaries-section {
  position: relative;
  overflow: hidden;
  background: var(--ivory);
  color: var(--obsidian);
}

.boundaries-section p {
  color: #32343a;
}

.boundary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid var(--line-light);
  background: var(--line-light);
}

.boundary-grid p {
  min-height: 160px;
  display: flex;
  align-items: flex-end;
  margin: 0;
  padding: 32px;
  background: var(--parchment);
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.5vw, 2.3rem);
}

.boundaries-section .editorial-statement {
  color: var(--obsidian);
}

.frontier-section {
  background:
    radial-gradient(circle at 74% 30%, rgba(115, 145, 255, 0.12), transparent 32%),
    var(--state-indigo);
}

.brand-asset-section {
  background: var(--carbon);
}

.strength-grid article {
  min-height: 220px;
}

.knowledge-section {
  background: var(--parchment);
  color: var(--obsidian);
}

.knowledge-section .editorial-label {
  color: #8f523a;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.resource-grid article {
  min-width: 0;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 20px;
  background: rgba(241, 235, 221, 0.45);
}

.resource-grid h3 {
  color: var(--obsidian);
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 500;
}

.resource-grid p {
  color: #4e525c;
}

.resource-grid a {
  margin-top: auto;
  color: #22252e;
  font-size: 0.82rem;
  font-weight: 650;
}

.faq-section {
  background: var(--obsidian);
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  position: relative;
  padding: 28px 52px 28px 0;
  color: var(--ivory);
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 10px;
  top: 26px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 1.4rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 800px;
  padding: 0 0 30px;
}

.acquisition-section {
  background:
    linear-gradient(120deg, rgba(181, 109, 78, 0.14), transparent 40%),
    linear-gradient(300deg, rgba(115, 145, 255, 0.13), transparent 45%),
    var(--state-indigo);
}

.acquisition-panel {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(48px, 8vw, 120px);
  padding: clamp(46px, 7vw, 90px);
  border: 1px solid var(--line-dark);
  border-radius: 36px;
  background: rgba(5, 5, 7, 0.48);
}

.acquisition-panel h2 {
  margin-bottom: 0;
}

.acquisition-copy .button {
  margin-top: 20px;
}

.microcopy {
  margin-top: 18px;
  color: var(--slate);
  font-size: 0.61rem;
}

.site-footer {
  padding: 72px 0 42px;
  border-top: 1px solid var(--line-dark);
  background: var(--obsidian);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 48px;
}

.footer-brand {
  font-family: var(--display);
  font-size: 1.28rem;
}

.footer-enquiry {
  margin: 16px 0 0 46px;
  color: var(--slate);
  font-size: 0.78rem;
}

.footer-enquiry a {
  color: var(--silver);
}

.footer-nav {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-lower {
  margin-top: 58px;
  padding-top: 30px;
  border-top: 1px solid var(--line-dark);
}

.footer-lower > p:first-child {
  max-width: 960px;
  color: var(--slate);
  font-size: 0.75rem;
}

.date-line {
  margin-top: 20px;
  color: var(--slate);
  font-size: 0.59rem;
}

.breadcrumbs {
  margin-bottom: 54px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
  list-style: none;
}

.breadcrumbs li {
  color: var(--slate);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 9px;
  color: rgba(200, 205, 213, 0.4);
}

.breadcrumbs a {
  text-decoration: none;
}

.article-hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 clamp(88px, 10vw, 150px);
  background:
    radial-gradient(circle at 78% 32%, rgba(115, 145, 255, 0.16), transparent 32%),
    linear-gradient(150deg, var(--obsidian), var(--state-indigo));
}

.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 110px 110px;
  opacity: 0.13;
  pointer-events: none;
}

.article-hero > .shell {
  position: relative;
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.85fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

.article-hero h1 {
  max-width: 980px;
  margin: 0 0 34px;
  font-size: clamp(3.5rem, 6.6vw, 7rem);
}

.direct-answer {
  max-width: 790px;
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.42;
}

.article-dates {
  margin-top: 28px;
  color: var(--slate);
  font-size: 0.6rem;
}

.page-identity-visual {
  margin: 0;
}

.page-identity-visual svg {
  filter: drop-shadow(0 28px 55px rgba(0, 0, 0, 0.33));
}

.page-identity-visual .memory-strata path,
.page-identity-visual .identity-shells path,
.page-identity-visual .identity-shells rect,
.page-identity-visual .embodiment-states path,
.page-identity-visual .embodiment-states rect {
  fill: rgba(115, 145, 255, 0.08);
  stroke: rgba(200, 205, 213, 0.42);
  stroke-width: 2;
}

.page-identity-visual .event-points circle {
  fill: var(--copper);
}

.page-identity-visual .identity-node {
  fill: var(--gold);
  stroke: var(--obsidian);
  stroke-width: 8;
}

.key-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0;
  margin: 76px 0 0;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
  list-style: none;
}

.key-points li {
  padding: 22px;
  background: rgba(5, 5, 7, 0.52);
  color: var(--silver);
  font-size: 0.8rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 840px);
  justify-content: center;
  padding-top: clamp(78px, 9vw, 130px);
  padding-bottom: clamp(90px, 10vw, 150px);
}

.article-body {
  font-size: 1.02rem;
}

.article-body > section {
  margin-bottom: clamp(64px, 8vw, 100px);
  scroll-margin-top: 32px;
}

.article-body h2 {
  margin-bottom: 28px;
  color: var(--ivory);
  font-size: clamp(2.15rem, 4vw, 3.75rem);
  line-height: 1.08;
}

.article-body h3 {
  margin-top: 36px;
  color: var(--ivory);
}

.article-body p,
.article-body li {
  color: var(--silver);
}

.article-body p {
  margin-bottom: 22px;
}

.article-body > section > p:first-of-type {
  color: var(--ivory);
  font-size: 1.08rem;
}

.process-diagram {
  margin: 48px 0;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  background: var(--carbon);
}

.process-diagram ol {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-diagram li {
  position: relative;
  min-height: 110px;
  display: grid;
  place-items: center;
  padding: 16px;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  background: var(--state-indigo);
  color: var(--ivory);
  font-family: var(--mono);
  font-size: 0.65rem;
  text-align: center;
}

.process-diagram li:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 2;
  right: -11px;
  color: var(--gold);
}

.table-scroll {
  max-width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

caption {
  padding-bottom: 18px;
  color: var(--slate);
  font-size: 0.8rem;
  text-align: left;
}

th,
td {
  padding: 18px;
  border: 1px solid var(--line-dark);
  color: var(--silver);
  font-size: 0.82rem;
  text-align: left;
  vertical-align: top;
}

thead th {
  background: var(--state-indigo);
  color: var(--ivory);
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

tbody th {
  color: var(--ivory);
}

.compact-faqs summary {
  font-size: 1.2rem;
}

.sources-section {
  padding-top: 42px;
  border-top: 1px solid var(--line-dark);
}

.sources-section li {
  margin-bottom: 12px;
}

.sources-section a {
  color: var(--ivory);
}

.related-links {
  margin-bottom: 58px;
}

.related-links h2 {
  margin-bottom: 30px;
}

.related-links ul {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.related-links a {
  display: block;
  padding: 18px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  color: var(--ivory);
  text-decoration: none;
}

.insights-hero .article-hero-grid {
  align-items: end;
}

.theme-grid article {
  min-height: 220px;
}

.resources-section {
  background: var(--parchment);
  color: var(--obsidian);
}

.resources-section .resource-grid h3 {
  color: var(--obsidian);
}

.resources-section .concept-note {
  color: #484b54;
  background: rgba(195, 160, 100, 0.12);
}

.reviewed {
  font-size: 0.58rem;
}

.glossary-hero h1,
.privacy-hero h1 {
  max-width: 900px;
}

.glossary-map-section {
  background: var(--parchment);
  color: var(--obsidian);
}

.glossary-index-section {
  background: var(--carbon);
}

.layer-filter,
.term-index {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.layer-filter {
  margin-bottom: 28px;
}

.layer-filter a,
.term-index a {
  padding: 8px 12px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: var(--silver);
  font-family: var(--mono);
  font-size: 0.62rem;
  text-decoration: none;
}

.layer-filter a {
  border-color: rgba(195, 160, 100, 0.48);
  color: var(--gold);
}

.glossary-terms-section {
  background: var(--obsidian);
}

.glossary-layer {
  margin-bottom: 100px;
  scroll-margin-top: 24px;
}

.glossary-layer > header {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  align-items: baseline;
  gap: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-dark);
}

.glossary-layer h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.glossary-layer dl {
  margin: 0;
}

.glossary-entry {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) 1fr;
  gap: 44px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-dark);
}

.glossary-entry dt {
  color: var(--ivory);
  font-family: var(--display);
  font-size: 1.55rem;
  scroll-margin-top: 24px;
}

.glossary-entry dd {
  margin: 0;
}

.term-definition {
  color: var(--ivory) !important;
  font-weight: 550;
}

.glossary-entry a {
  color: var(--teal);
  font-size: 0.78rem;
}

.privacy-hero {
  padding-bottom: 94px;
}

.policy-dates {
  display: flex;
  gap: 38px;
  margin-top: 38px;
}

.policy-dates div {
  display: grid;
  gap: 4px;
}

.policy-dates dt {
  color: var(--slate);
  font-family: var(--mono);
  font-size: 0.61rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-dates dd {
  margin: 0;
  color: var(--ivory);
}

.policy-article {
  padding: 90px 0 130px;
  background: var(--parchment);
  color: var(--obsidian);
}

.policy-article section {
  margin-bottom: 64px;
}

.policy-article h2 {
  margin-bottom: 24px;
  color: var(--obsidian);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.policy-article p,
.policy-article li {
  color: #3f4249;
}

.policy-article a {
  color: #26315f;
}

.privacy-contact {
  padding: 32px;
  border: 1px solid var(--line-light);
  border-radius: 22px;
  background: var(--ivory);
}

.consent-panel {
  position: fixed;
  z-index: 150;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  max-width: 1040px;
  margin: auto;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  background: var(--carbon);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.consent-panel h2 {
  margin: 0 0 8px;
  font-family: var(--sans);
  font-size: 1rem;
}

.consent-panel p {
  max-width: 700px;
  margin: 0;
  font-size: 0.78rem;
}

.consent-actions {
  display: flex;
  gap: 8px;
}

.consent-actions button:last-child {
  background: var(--ivory);
  color: var(--obsidian);
}

.not-found-page {
  min-height: 75vh;
  display: grid;
  place-items: center;
  padding: 90px 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(115, 145, 255, 0.16), transparent 38%),
    var(--obsidian);
}

.not-found-page h1 {
  font-size: clamp(3.4rem, 7vw, 7rem);
}

.visually-hidden {
  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;
}

.card-review-page {
  background:
    radial-gradient(circle at 75% 4%, rgba(129, 115, 216, 0.16), transparent 25%),
    var(--obsidian);
}

.card-review-hero {
  padding: clamp(96px, 12vw, 168px) 0 clamp(80px, 9vw, 128px);
  border-bottom: 1px solid var(--line-dark);
}

.card-review-hero h1 {
  max-width: 1040px;
  margin-bottom: 28px;
  font-size: clamp(3.4rem, 7vw, 7rem);
}

.card-review-intro {
  max-width: 780px;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.review-guardrails {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.review-guardrails span {
  padding: 8px 12px;
  border: 1px solid rgba(195, 160, 100, 0.3);
  border-radius: 999px;
  color: var(--parchment);
  background: rgba(195, 160, 100, 0.06);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.card-review-section {
  padding: clamp(84px, 10vw, 136px) 0;
}

.card-review-titled {
  background: var(--carbon);
}

.card-review-silhouette {
  border-block: 1px solid var(--line-dark);
  background:
    linear-gradient(145deg, rgba(98, 183, 176, 0.035), transparent 48%),
    var(--state-indigo);
}

.card-review-section-heading {
  max-width: 830px;
  margin-bottom: clamp(48px, 6vw, 78px);
}

.card-review-section-heading h2,
.card-review-audit h2 {
  margin-bottom: 24px;
}

.candidate-contact-sheet {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  min-width: 0;
}

.candidate-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  background:
    radial-gradient(circle at 72% 18%, rgba(115, 145, 255, 0.09), transparent 38%),
    linear-gradient(155deg, rgba(241, 235, 221, 0.035), transparent 44%),
    rgba(5, 5, 7, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(241, 235, 221, 0.035),
    0 24px 60px rgba(0, 0, 0, 0.16);
}

.candidate-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(112deg, transparent 52%, rgba(195, 160, 100, 0.035));
  content: "";
}

.candidate-card-copy-hidden {
  min-height: 302px;
  display: grid;
  place-items: center;
}

.candidate-visual {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  margin-bottom: 24px;
  overflow: hidden;
}

.candidate-card-copy-hidden .candidate-visual {
  margin-bottom: 0;
}

.candidate-svg {
  width: 100%;
  height: auto;
  max-height: 230px;
  overflow: visible;
  color: rgba(241, 235, 221, 0.72);
}

.candidate-svg-mobile {
  display: none;
}

.card-review-page[data-review-width] .shell {
  width: min(calc(100% - 34px), var(--review-width));
}

.card-review-page:is(
  [data-review-width="430"],
  [data-review-width="390"],
  [data-review-width="360"]
) .card-review-hero {
  padding-block: 78px 88px;
}

.card-review-page:is(
  [data-review-width="430"],
  [data-review-width="390"],
  [data-review-width="360"]
) .card-review-hero h1 {
  font-size: 4rem;
}

.card-review-page:is(
  [data-review-width="430"],
  [data-review-width="390"],
  [data-review-width="360"]
) .card-review-section-heading h2,
.card-review-page:is(
  [data-review-width="430"],
  [data-review-width="390"],
  [data-review-width="360"]
) .card-review-audit h2 {
  font-size: 3rem;
}

.card-review-page:is(
  [data-review-width="430"],
  [data-review-width="390"],
  [data-review-width="360"]
) .candidate-contact-sheet {
  grid-template-columns: 1fr;
}

.card-review-page:is(
  [data-review-width="430"],
  [data-review-width="390"],
  [data-review-width="360"]
) .candidate-svg-desktop {
  display: none;
}

.card-review-page:is(
  [data-review-width="430"],
  [data-review-width="390"],
  [data-review-width="360"]
) .candidate-svg-mobile {
  display: block;
  max-height: 244px;
}

.card-review-page:is(
  [data-review-width="430"],
  [data-review-width="390"],
  [data-review-width="360"]
) .candidate-card {
  padding: 18px;
}

.card-review-page:is(
  [data-review-width="430"],
  [data-review-width="390"],
  [data-review-width="360"]
) .candidate-card-copy-hidden {
  min-height: 280px;
}

.card-review-page[data-review-width="768"] .candidate-contact-sheet {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-review-page[data-review-width="390"] .review-guardrails,
.card-review-page[data-review-width="360"] .review-guardrails {
  align-items: flex-start;
  flex-direction: column;
}

.card-review-page[data-review-width="390"] .candidate-card-copy-hidden {
  min-height: 260px;
}

.card-review-page[data-review-width="390"] .card-review-hero h1 {
  font-size: 3.65rem;
}

.card-review-page[data-review-width="360"] .candidate-card {
  padding: 14px;
}

.card-review-page[data-review-width="360"] .card-review-hero h1 {
  font-size: 3.35rem;
}

.card-review-page[data-review-width="360"] .candidate-card-copy-hidden {
  min-height: 242px;
}

.candidate-svg path,
.candidate-svg rect,
.candidate-svg circle,
.candidate-svg polygon,
.candidate-svg ellipse,
.candidate-svg line,
.candidate-svg polyline {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.candidate-svg .candidate-muted {
  color: rgba(200, 205, 213, 0.42);
}

.candidate-svg .candidate-guides,
.candidate-svg .candidate-spokes,
.candidate-svg .candidate-branches,
.candidate-svg .candidate-semantic-connectors {
  color: rgba(200, 205, 213, 0.44);
}

.candidate-svg .candidate-fill-violet,
.candidate-svg .candidate-boundary,
.candidate-svg .candidate-world-plane {
  fill: rgba(129, 115, 216, 0.12);
  stroke: var(--violet);
}

.candidate-svg .candidate-fill-copper {
  fill: rgba(181, 109, 78, 0.12);
  stroke: var(--copper);
}

.candidate-svg .candidate-fill-gold {
  fill: rgba(195, 160, 100, 0.14);
  stroke: var(--gold);
}

.candidate-svg .candidate-gold {
  color: var(--gold);
}

.candidate-svg .candidate-copper {
  color: var(--copper);
}

.candidate-svg .candidate-violet {
  color: var(--violet);
}

.candidate-svg .candidate-teal {
  color: var(--teal);
}

.candidate-svg .candidate-thread {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.6;
  filter: drop-shadow(0 0 7px rgba(195, 160, 100, 0.18));
}

.candidate-svg .candidate-subtle-thread {
  opacity: 0.74;
  stroke-width: 1.8;
}

.candidate-svg .candidate-dashed {
  stroke-dasharray: 7 6;
}

.candidate-svg .candidate-dotted {
  stroke-dasharray: 1 7;
}

.candidate-svg .candidate-filter {
  color: rgba(241, 235, 221, 0.56);
}

.candidate-svg .candidate-strata,
.candidate-svg .candidate-memory-vault,
.candidate-svg .candidate-cluster-memory {
  color: rgba(115, 145, 255, 0.78);
}

.candidate-svg .candidate-events {
  color: rgba(200, 205, 213, 0.62);
}

.candidate-svg .candidate-tool-square {
  fill: rgba(98, 183, 176, 0.08);
  stroke: var(--teal);
}

.candidate-svg .candidate-tool-diamond {
  fill: rgba(129, 115, 216, 0.1);
  stroke: var(--violet);
}

.candidate-svg .candidate-tool-prism {
  fill: rgba(195, 160, 100, 0.1);
  stroke: var(--gold);
}

.candidate-svg .candidate-feedback {
  stroke-width: 2.1;
}

.candidate-svg .candidate-session-planes {
  color: rgba(115, 145, 255, 0.58);
}

.candidate-svg .candidate-session-planes path {
  fill: rgba(115, 145, 255, 0.045);
}

.candidate-svg .candidate-boundary-gaps {
  color: var(--obsidian);
}

.candidate-svg .candidate-recall {
  stroke-width: 2.25;
}

.candidate-svg .candidate-viewpoint {
  fill: rgba(98, 183, 176, 0.08);
  stroke: var(--teal);
}

.candidate-svg .candidate-gate {
  fill: rgba(195, 160, 100, 0.045);
  stroke: var(--gold);
}

.candidate-svg .candidate-cluster-identity {
  color: var(--violet);
}

.candidate-svg .candidate-cluster-world {
  color: var(--teal);
}

.candidate-svg .candidate-cluster-agency {
  color: var(--copper);
}

.candidate-svg .candidate-cluster-governance {
  color: var(--blue);
}

.candidate-svg .candidate-cluster-embodiment {
  color: var(--silver);
}

.candidate-svg .candidate-state-surface {
  fill: rgba(115, 145, 255, 0.055);
  stroke: rgba(115, 145, 255, 0.32);
  stroke-dasharray: 2 5;
}

.candidate-svg .candidate-state-objective {
  color: var(--gold);
}

.candidate-svg .candidate-state-environment {
  color: var(--teal);
}

.candidate-svg .candidate-state-permissions {
  color: var(--violet);
}

.candidate-svg .candidate-state-unresolved {
  color: var(--copper);
}

.candidate-svg .candidate-state-contents {
  color: rgba(241, 235, 221, 0.55);
}

.candidate-svg .candidate-identity-shell-role {
  color: rgba(200, 205, 213, 0.58);
}

.candidate-svg .candidate-identity-shell-credential {
  color: var(--copper);
}

.candidate-svg .candidate-identity-shell-permission {
  color: var(--violet);
}

.candidate-svg .candidate-identity-shell-interface {
  color: var(--teal);
}

.candidate-svg .candidate-identity-signature {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.8;
  filter: drop-shadow(0 0 7px rgba(195, 160, 100, 0.2));
}

.candidate-svg .candidate-policy-field {
  fill: rgba(129, 115, 216, 0.065);
  stroke: rgba(129, 115, 216, 0.62);
}

.candidate-svg .candidate-policy-rules {
  color: rgba(200, 205, 213, 0.36);
}

.candidate-svg .candidate-governance-allowed {
  color: var(--teal);
  stroke-width: 2.1;
}

.candidate-svg .candidate-governance-rejected {
  color: var(--copper);
  stroke-width: 2.1;
}

.candidate-svg .candidate-governance-revised {
  color: var(--violet);
  stroke-width: 2.1;
}

.candidate-svg .candidate-governance-recoverable {
  color: var(--gold);
  stroke-width: 2.1;
}

.candidate-svg .candidate-embodiment-core {
  color: var(--violet);
}

.candidate-svg .candidate-embodiment-core path:first-child {
  fill: rgba(129, 115, 216, 0.08);
}

.candidate-svg .candidate-embodiment-bus {
  color: var(--gold);
  stroke-width: 2.6;
  filter: drop-shadow(0 0 6px rgba(195, 160, 100, 0.16));
}

.candidate-svg .candidate-form-text {
  color: var(--silver);
}

.candidate-svg .candidate-form-voice {
  color: var(--copper);
}

.candidate-svg .candidate-form-virtual {
  color: var(--violet);
}

.candidate-svg .candidate-form-edge {
  color: var(--teal);
}

.candidate-svg .candidate-form-machine {
  color: var(--gold);
}

.candidate-svg .candidate-form-port {
  color: rgba(200, 205, 213, 0.42);
  stroke-dasharray: 2 6;
}

.candidate-svg .candidate-accountability-loop {
  color: var(--gold);
  stroke-width: 2.25;
}

.candidate-svg .candidate-declared-role {
  color: var(--silver);
}

.candidate-svg .candidate-credentials {
  color: var(--copper);
}

.candidate-svg .candidate-authentication {
  color: var(--teal);
}

.candidate-svg .candidate-authority {
  color: var(--violet);
}

.candidate-svg .candidate-observed-actions {
  color: var(--copper);
}

.candidate-svg .candidate-audit-evidence {
  color: var(--blue);
}

.candidate-svg .candidate-provenance {
  color: var(--teal);
}

.candidate-svg .candidate-observed-identity {
  color: var(--silver);
}

.candidate-svg .candidate-delegated-authority {
  color: var(--violet);
}

.candidate-copy {
  position: relative;
  z-index: 1;
}

.candidate-family,
.candidate-status,
.candidate-label {
  font-family: var(--mono);
  font-size: 0.63rem;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.candidate-family {
  margin-bottom: 5px;
  color: var(--teal);
}

.candidate-status {
  margin-bottom: 20px;
  color: var(--copper);
}

.candidate-copy h3 {
  margin-bottom: 8px;
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.5vw, 2.15rem);
  font-weight: 500;
}

.candidate-label {
  margin-bottom: 14px;
  color: var(--gold);
}

.candidate-description {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 0.88rem;
}

.candidate-card-approved {
  border-color: rgba(98, 183, 176, 0.24);
}

.candidate-card-approved .candidate-status {
  color: var(--teal);
}

.candidate-card-revised {
  border-color: rgba(181, 109, 78, 0.28);
}

.card-review-focus-link {
  margin-top: 30px;
}

.focused-review-list {
  background: var(--carbon);
}

.focused-candidate {
  padding: clamp(86px, 10vw, 138px) 0;
  border-bottom: 1px solid var(--line-dark);
}

.focused-candidate-heading {
  max-width: 820px;
  margin-bottom: clamp(48px, 6vw, 76px);
}

.focused-candidate-heading h2 {
  margin-bottom: 22px;
}

.focused-candidate-heading > p:last-child {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.focused-variant-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.focused-variant {
  min-width: 0;
  overflow: hidden;
  padding: 20px;
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  background:
    radial-gradient(circle at 68% 22%, rgba(115, 145, 255, 0.08), transparent 38%),
    rgba(5, 5, 7, 0.72);
}

.focused-variant-hidden {
  border-color: rgba(195, 160, 100, 0.22);
  background:
    linear-gradient(145deg, rgba(195, 160, 100, 0.035), transparent 52%),
    rgba(5, 5, 7, 0.82);
}

.focused-variant figcaption {
  margin-bottom: 18px;
  color: var(--slate);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.focused-variant-canvas {
  min-width: 0;
  overflow: hidden;
}

.focused-variant .candidate-svg {
  width: 100%;
  max-height: 248px;
}

.focused-variant-mobile .focused-variant-canvas {
  width: min(100%, 260px);
  margin-inline: auto;
}

.focused-variant-mobile .candidate-svg-mobile {
  display: block;
}

.focused-review-page[data-review-width] .focused-variant-desktop .candidate-svg-desktop {
  display: block;
}

.focused-review-page[data-review-width] .focused-variant-mobile .candidate-svg-mobile {
  display: block;
}

.focused-review-page[data-review-width="768"] .approved-baseline-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.focused-review-page[data-review-width="768"] .focused-rationale {
  grid-template-columns: 1fr;
}

.focused-review-page:is(
  [data-review-width="430"],
  [data-review-width="390"],
  [data-review-width="360"]
) .focused-variant-grid,
.focused-review-page:is(
  [data-review-width="430"],
  [data-review-width="390"],
  [data-review-width="360"]
) .focused-rationale,
.focused-review-page:is(
  [data-review-width="430"],
  [data-review-width="390"],
  [data-review-width="360"]
) .approved-baseline-grid {
  grid-template-columns: 1fr;
}

.focused-review-page:is(
  [data-review-width="430"],
  [data-review-width="390"],
  [data-review-width="360"]
) .focused-candidate {
  padding-block: 74px;
}

.focused-variant-copy {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
}

.focused-variant-copy h3 {
  margin-bottom: 8px;
  color: var(--ivory);
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 500;
}

.focused-variant-copy .candidate-status {
  margin-bottom: 10px;
}

.focused-rationale {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 18px 0 0;
}

.focused-rationale > div {
  padding: 26px;
  border-left: 2px solid var(--gold);
  background: rgba(195, 160, 100, 0.045);
}

.focused-rationale dt {
  margin-bottom: 12px;
  color: var(--ivory);
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.focused-rationale dd {
  margin: 0;
  color: var(--silver);
  font-size: 0.9rem;
}

.approved-baseline-section {
  padding: clamp(86px, 10vw, 138px) 0;
  background: var(--state-indigo);
}

.approved-baseline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.approved-baseline-grid article {
  min-height: 210px;
  padding: 25px;
  border: 1px solid rgba(98, 183, 176, 0.2);
  border-radius: 20px;
  background: rgba(5, 5, 7, 0.46);
}

.approved-baseline-grid .candidate-status {
  color: var(--teal);
}

.approved-baseline-grid h3 {
  margin-bottom: 12px;
  color: var(--ivory);
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 500;
}

.approved-baseline-grid article p:last-child {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 0.87rem;
}

.card-review-audit {
  padding: clamp(84px, 10vw, 136px) 0;
  background: var(--obsidian);
}

.card-review-audit .shell {
  max-width: 820px;
  margin-left: max(24px, calc((100vw - min(1240px, calc(100vw - 48px))) / 2));
}

.principal-review-page {
  background: var(--obsidian);
}

.principal-review-capture {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 18px 0;
  background: var(--obsidian);
}

.principal-single-capture {
  width: min(1200px, calc(100vw - 48px));
  min-height: 100vh;
  display: grid;
  align-items: center;
  margin-inline: auto;
  padding: 18px 0;
  background: var(--obsidian);
}

.principal-single-capture .principal-system {
  width: 100%;
  margin: 0;
}

.principal-single-capture[data-capture-width="mobile"] {
  width: 390px;
  max-width: calc(100vw - 24px);
}

.principal-single-capture[data-capture-width="mobile"] .principal-svg-desktop {
  display: none;
}

.principal-single-capture[data-capture-width="mobile"] .principal-svg-mobile {
  display: block;
}

.principal-single-capture[data-capture-width="mobile"] .principal-key {
  gap: 7px 14px;
  font-size: 0.53rem;
}

.principal-review-hero {
  padding: 126px 0 76px;
  background:
    radial-gradient(circle at 72% 18%, rgba(129, 115, 216, 0.17), transparent 36%),
    var(--carbon);
}

.principal-review-hero h1 {
  max-width: 980px;
}

.principal-review-intro {
  max-width: 760px;
  color: var(--silver);
}

.principal-review-sheet-section {
  padding: 72px 0 120px;
}

.principal-review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.principal-review-grid[data-capture-layout="compact"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.principal-review-cell {
  min-width: 0;
  overflow: hidden;
  padding: 12px;
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  background: var(--carbon);
}

.principal-review-cell .principal-artwork {
  border-radius: 14px;
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
    position: relative;
  }

  .mobile-nav summary {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--silver);
    cursor: pointer;
    font-family: var(--mono);
    font-size: 0.68rem;
    list-style: none;
    text-transform: uppercase;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav nav {
    position: absolute;
    right: 0;
    top: 40px;
    width: min(330px, calc(100vw - 48px));
    display: grid;
    padding: 12px;
    border: 1px solid var(--line-dark);
    border-radius: 16px;
    background: var(--carbon);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  }

  .mobile-nav nav a {
    padding: 12px;
    color: var(--ivory);
    font-size: 0.8rem;
    text-decoration: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 900px;
    margin-inline: auto;
  }

  .world-grid-layout,
  .article-hero-grid {
    grid-template-columns: 1fr;
  }

  .world-state-visual.compact {
    max-width: 760px;
  }

  .key-points {
    grid-template-columns: 1fr 1fr;
  }

  .candidate-contact-sheet {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .principal-review-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 34px, 1240px);
    --narrow: min(100% - 34px, 760px);
  }

  .section {
    padding: 86px 0;
  }

  .editorial-split,
  .acquisition-panel {
    grid-template-columns: 1fr;
  }

  .meaning-grid,
  .stack-grid,
  .application-grid,
  .strength-grid,
  .theme-grid,
  .resource-grid {
    grid-template-columns: 1fr 1fr;
  }

  .meaning-grid {
    margin-top: 52px;
  }

  .meaning-grid article,
  .application-grid article,
  .strength-grid article,
  .theme-grid article {
    min-height: 200px;
  }

  .stack-card {
    min-height: auto;
  }

  .comparison-visual,
  .comparison-lists,
  .boundary-grid {
    grid-template-columns: 1fr;
  }

  .comparison-field {
    min-height: 280px;
  }

  .article-hero {
    padding-top: 34px;
  }

  .article-hero-grid {
    gap: 42px;
  }

  .page-identity-visual {
    max-width: 640px;
  }

  .glossary-layer > header,
  .glossary-entry {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .glossary-entry {
    padding: 28px 0;
  }

  .footer-grid {
    display: grid;
  }

  .footer-enquiry {
    margin-left: 0;
  }

  .consent-panel {
    grid-template-columns: 1fr;
  }

  .focused-rationale {
    grid-template-columns: 1fr;
  }

  .approved-baseline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: clamp(3.1rem, 15vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

  .header-inner {
    min-height: 70px;
  }

  .home-hero {
    min-height: auto;
    padding: 70px 0 88px;
  }

  .hero-grid {
    gap: 48px;
  }

  .hero-svg-desktop {
    display: none;
  }

  .hero-svg-mobile {
    display: block;
  }

  .button-row {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .meaning-grid,
  .stack-grid,
  .application-grid,
  .strength-grid,
  .theme-grid,
  .resource-grid,
  .candidate-contact-sheet,
  .focused-variant-grid,
  .focused-rationale,
  .approved-baseline-grid,
  .key-points {
    grid-template-columns: 1fr;
  }

  .meaning-grid article,
  .resource-grid article {
    min-height: auto;
  }

  .stack-card .card-system-visual,
  .resource-card .card-system-visual {
    height: 170px;
  }

  .stack-card .candidate-svg,
  .resource-card .candidate-svg {
    max-height: 170px;
  }

  .transition-groups p {
    justify-content: flex-start;
    gap: 10px;
  }

  .principal-system {
    padding: 16px;
  }

  .principal-svg-desktop {
    display: none;
  }

  .principal-svg-mobile {
    display: block;
  }

  .principal-key {
    gap: 8px 16px;
    font-size: 0.55rem;
  }

  .acquisition-panel {
    padding: 30px 22px;
    border-radius: 22px;
  }

  .footer-nav {
    display: grid;
  }

  .article-hero h1 {
    font-size: clamp(3rem, 14vw, 4.9rem);
  }

  .breadcrumbs {
    margin-bottom: 42px;
  }

  .process-diagram ol {
    grid-template-columns: 1fr;
  }

  .process-diagram li:not(:last-child)::after {
    content: "↓";
    right: 50%;
    bottom: -16px;
    top: auto;
    transform: translateX(50%);
  }

  .policy-dates,
  .consent-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .consent-panel {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}

@media (max-width: 430px) {
  .card-review-hero {
    padding-top: 78px;
  }

  .candidate-card {
    padding: 18px;
    border-radius: 20px;
  }

  .candidate-card-copy-hidden {
    min-height: 280px;
  }

  .candidate-svg-desktop {
    display: none;
  }

  .candidate-svg-mobile {
    display: block;
    max-height: 244px;
  }

  .focused-variant-desktop .candidate-svg-desktop {
    display: block;
  }

  .focused-variant-mobile .candidate-svg-mobile {
    display: block;
  }

  .focused-candidate {
    padding-block: 74px;
  }

  .candidate-copy h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 390px) {
  .card-review-section {
    padding-block: 74px;
  }

  .review-guardrails {
    align-items: flex-start;
    flex-direction: column;
  }

  .candidate-card-copy-hidden {
    min-height: 260px;
  }
}

@media (max-width: 360px) {
  .candidate-card {
    padding: 14px;
  }

  .candidate-card-copy-hidden {
    min-height: 242px;
  }

  .candidate-description {
    font-size: 0.84rem;
  }
}

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

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

}
