:root {
  color-scheme: dark;
  --page: #04090c;
  --page-2: #061219;
  --panel: #0a1418;
  --panel-2: #0d1b21;
  --panel-3: #10242b;
  --ink: #eef7f9;
  --text: #dcedf0;
  --muted: #8fadb4;
  --faint: #5f7d85;
  --line: rgba(140, 220, 214, 0.13);
  --line-strong: rgba(140, 220, 214, 0.26);
  --teal: #2fd4c2;
  --teal-strong: #6ab8ff;
  --teal-dim: #083038;
  --copper: #6ab8ff;
  --blue: #6ab8ff;
  --plum: #10242b;
  --green: #57d99a;
  --danger: #ff7d8a;
  --pulse-bg: #04090c;
  --pulse-lift: #061219;
  --pulse-edge: #083038;
  --pulse-edge-rgb: 8, 48, 56;
  --pulse-accent-rgb: 47, 212, 194;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  --shell: min(1180px, calc(100% - 44px));
  --radius: 8px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(900px 620px at 0% 0%, rgba(var(--pulse-edge-rgb), 0.13), transparent 68%),
    radial-gradient(760px 520px at 100% 8%, rgba(var(--pulse-edge-rgb), 0.10), transparent 70%),
    radial-gradient(640px 460px at 100% 100%, rgba(var(--pulse-accent-rgb), 0.055), transparent 72%),
    linear-gradient(180deg, var(--pulse-bg) 0%, var(--pulse-lift) 58%, var(--pulse-bg) 100%);
  background-size: 132% 132%, 142% 142%, 152% 152%, 100% 100%;
  background-position: 0% 0%, 100% 8%, 100% 100%, 0 0;
  color: var(--text);
  font-family: var(--font);
  letter-spacing: 0;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  animation: continuumPageGradient 12.4s ease-in-out infinite;
}

html[data-performance="lean"] body {
  background-size: auto, auto, auto, auto;
  background-position: 0% 0%, 100% 8%, 100% 100%, 0 0;
  animation: none;
}

body::before,
body::after,
.band::before,
.statement-band::before,
.cta-band::before {
  display: none;
}

a {
  color: inherit;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: 0;
  text-wrap: balance;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(4, 9, 12, 0.9);
  -webkit-backdrop-filter: blur(18px) saturate(1.05);
  backdrop-filter: blur(18px) saturate(1.05);
}

html[data-performance="lean"] .topbar {
  background: rgba(4, 9, 12, 0.96);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.topbar-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-wordmark {
  width: 40px;
  height: 40px;
  object-fit: cover;
  object-position: left center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #060a0b;
}

.brand-name {
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-meta {
  padding-left: 12px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.nav a,
.cf-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--muted);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.nav a:hover {
  color: var(--ink);
  background: rgba(47, 212, 194, 0.08);
}

.nav .primary-link,
.cf-button.primary {
  border-color: rgba(47, 212, 194, 0.62);
  color: var(--page);
  background: linear-gradient(180deg, var(--teal) 0%, var(--teal-strong) 100%);
  box-shadow: 0 16px 42px rgba(47, 212, 194, 0.16);
}

.nav .primary-link:hover,
.cf-button.primary:hover {
  color: var(--page);
  background: linear-gradient(180deg, var(--teal-strong) 0%, var(--teal) 100%);
}

.cf-button {
  min-height: 48px;
  padding: 0 20px;
  color: var(--ink);
  background: rgba(140, 220, 214, 0.06);
  border-color: var(--line-strong);
}

.cf-button:hover {
  transform: translateY(-1px);
  color: var(--ink);
  border-color: rgba(47, 212, 194, 0.44);
  background: rgba(47, 212, 194, 0.1);
}

.continuum-hero {
  position: relative;
  min-height: calc(100svh - 66px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: transparent;
  background-size: auto;
  background-position: 0 0;
  isolation: isolate;
  animation: none;
}

html[data-performance="lean"] .continuum-hero {
  background-size: auto;
  background-position: 50% 0;
  animation: none;
}

.continuum-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(680px 360px at 92% 12%, rgba(var(--pulse-edge-rgb), 0.13), transparent 70%),
    radial-gradient(560px 320px at 8% 88%, rgba(var(--pulse-accent-rgb), 0.05), transparent 72%);
  background-size: auto, auto;
  background-position: 92% 12%, 8% 88%;
  opacity: 0.5;
  animation: none;
}

html[data-performance="lean"] .continuum-hero::before {
  background-position: 92% 12%, 8% 88%;
  opacity: 0.42;
  animation: none;
}

@keyframes continuumPageGradient {
  0%,
  100% {
    background-position: 0% 0%, 100% 8%, 100% 100%, 0 0;
  }

  43% {
    background-position: 3% 2%, 96% 12%, 96% 96%, 0 0;
  }

  71% {
    background-position: 1% 4%, 98% 7%, 100% 94%, 0 0;
  }
}

@keyframes continuumHeroGradient {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes continuumHeroAtmosphere {
  0%,
  100% {
    background-position: 74% 20%, 18% 82%, 0% 50%, 0 0, 0 0;
    opacity: 0.38;
  }

  50% {
    background-position: 70% 24%, 22% 78%, 100% 50%, 32px 0, 0 24px;
    opacity: 0.92;
  }
}

.hero-inner {
  position: relative;
  min-height: calc(100svh - 66px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.55fr);
  align-items: center;
  gap: clamp(36px, 6vw, 90px);
  padding: clamp(64px, 8vh, 96px) 0;
}

.hero-copy {
  min-width: 0;
  max-width: 760px;
}

.eyebrow {
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

h1 {
  margin-top: 14px;
  color: var(--ink);
  font-size: clamp(62px, 8vw, 104px);
  font-weight: 900;
  line-height: 0.96;
}

.hero-logo-picture {
  display: block;
  width: min(100%, 720px);
  margin-top: 16px;
}

.hero-logo {
  width: 100%;
  height: clamp(154px, 19vw, 244px);
  border: 1px solid rgba(140, 220, 214, 0.18);
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center 50%;
  background: var(--page);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.32);
}

.hero-line {
  max-width: 700px;
  margin-top: 22px;
  color: var(--ink);
  font-size: clamp(27px, 3vw, 40px);
  font-weight: 850;
  line-height: 1.13;
}

.hero-copy p {
  max-width: 660px;
  margin-top: 16px;
  color: var(--text);
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.workflow-animation {
  width: 100%;
  align-self: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 14px;
  background:
    radial-gradient(420px 260px at 50% 45%, rgba(47, 212, 194, 0.12), transparent 74%),
    linear-gradient(180deg, rgba(10, 20, 24, 0.92), rgba(4, 9, 12, 0.94));
  box-shadow: var(--shadow);
}

.workflow-board {
  position: relative;
  min-height: clamp(360px, 34vw, 460px);
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  background:
    radial-gradient(circle at 50% 49%, rgba(47, 212, 194, 0.16) 0 10%, transparent 22%),
    radial-gradient(circle at 18% 24%, rgba(192, 132, 71, 0.11), transparent 18%),
    radial-gradient(circle at 84% 24%, rgba(47, 212, 194, 0.14), transparent 20%),
    radial-gradient(circle at 18% 76%, rgba(44, 99, 128, 0.13), transparent 18%),
    radial-gradient(circle at 84% 76%, rgba(95, 82, 115, 0.13), transparent 18%),
    linear-gradient(180deg, rgba(140, 220, 214, 0.045), rgba(140, 220, 214, 0.014));
}

.workflow-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(140, 220, 214, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140, 220, 214, 0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 50% 50%, #000 0 62%, transparent 90%);
  opacity: 0.52;
}

.workflow-board::after {
  content: "";
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(47, 212, 194, 0.14);
  border-radius: 999px;
  opacity: 0.62;
}

.workflow-routes {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.route {
  fill: none;
  stroke: rgba(140, 220, 214, 0.22);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: 8 13;
  animation: workflowRoute 13s linear infinite;
}

html[data-performance="lean"] .route,
html[data-performance="lean"] .memory-worker::after,
html[data-performance="lean"] .work-packet {
  animation: none;
}

html[data-performance="lean"] .work-packet {
  opacity: 0.86;
}

.route-b,
.route-d {
  stroke: rgba(47, 212, 194, 0.28);
}

.route-e,
.route-f {
  stroke: rgba(192, 132, 71, 0.2);
  stroke-dasharray: 3 14;
}

.worker {
  position: absolute;
  z-index: 3;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(140, 220, 214, 0.2);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 42%, rgba(238, 247, 249, 0.14) 0 18%, transparent 19%),
    radial-gradient(circle at 50% 55%, rgba(47, 212, 194, 0.18) 0 34%, rgba(10, 20, 24, 0.92) 35% 100%);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
}

.worker::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(140, 220, 214, 0.16);
  border-radius: 999px;
  background: rgba(4, 9, 12, 0.42);
}

.worker-dot {
  position: relative;
  z-index: 1;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 0 20px rgba(47, 212, 194, 0.32);
}

.worker-label {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  min-width: 70px;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.memory-worker {
  left: 50%;
  top: 48%;
  width: 122px;
  height: 122px;
  border-color: rgba(47, 212, 194, 0.42);
  background:
    radial-gradient(circle at 50% 44%, rgba(238, 247, 249, 0.2) 0 14%, transparent 15%),
    radial-gradient(circle at 50% 54%, rgba(47, 212, 194, 0.3) 0 36%, rgba(10, 20, 24, 0.94) 37% 100%);
}

.memory-worker::after {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(47, 212, 194, 0.35);
  border-radius: 999px;
  animation: memoryPulse 3.6s ease-in-out infinite;
}

.memory-worker .worker-dot {
  width: 22px;
  height: 22px;
  background: var(--teal-strong);
}

.memory-worker .worker-label {
  color: var(--teal-strong);
}

.worker-ops {
  left: 18%;
  top: 24%;
}

.worker-messenger {
  left: 84%;
  top: 24%;
}

.worker-files {
  left: 18%;
  top: 76%;
}

.worker-approval {
  left: 84%;
  top: 76%;
}

.work-packet {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 48%;
  min-width: 70px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(140, 220, 214, 0.22);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--ink);
  background: rgba(10, 20, 24, 0.86);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  font-size: 10px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
  transform: translate(-50%, -50%) scale(0.88);
  opacity: 0;
}

.packet-decision {
  left: 18%;
  top: 24%;
  border-color: rgba(192, 132, 71, 0.42);
  animation: packetDecision 7.8s ease-in-out -1.2s infinite;
}

.packet-message {
  left: 84%;
  top: 24%;
  border-color: rgba(47, 212, 194, 0.4);
  animation: packetMessage 7.8s ease-in-out -3s infinite;
}

.packet-file {
  left: 18%;
  top: 76%;
  border-color: rgba(44, 99, 128, 0.42);
  animation: packetFile 7.8s ease-in-out -4.8s infinite;
}

.packet-next {
  left: 50%;
  top: 48%;
  border-color: rgba(106, 184, 255, 0.44);
  animation: packetNext 7.8s ease-in-out -6.4s infinite;
}

@keyframes workflowRoute {
  to {
    stroke-dashoffset: -126;
  }
}

@keyframes memoryPulse {
  0%,
  100% {
    opacity: 0.32;
    transform: scale(0.9);
  }

  50% {
    opacity: 0.82;
    transform: scale(1.08);
  }
}

@keyframes packetDecision {
  0%,
  8% {
    left: 18%;
    top: 24%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.82);
  }

  18%,
  72% {
    opacity: 1;
  }

  36% {
    left: 50%;
    top: 48%;
  }

  68% {
    left: 84%;
    top: 24%;
  }

  100% {
    left: 84%;
    top: 24%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.82);
  }
}

@keyframes packetMessage {
  0%,
  8% {
    left: 84%;
    top: 24%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.82);
  }

  18%,
  74% {
    opacity: 1;
  }

  38% {
    left: 50%;
    top: 48%;
  }

  70% {
    left: 18%;
    top: 76%;
  }

  100% {
    left: 18%;
    top: 76%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.82);
  }
}

@keyframes packetFile {
  0%,
  8% {
    left: 18%;
    top: 76%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.82);
  }

  18%,
  74% {
    opacity: 1;
  }

  36% {
    left: 50%;
    top: 48%;
  }

  68% {
    left: 84%;
    top: 76%;
  }

  100% {
    left: 84%;
    top: 76%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.82);
  }
}

@keyframes packetNext {
  0%,
  8% {
    left: 50%;
    top: 48%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.82);
  }

  18%,
  72% {
    opacity: 1;
  }

  40% {
    left: 84%;
    top: 76%;
  }

  70% {
    left: 84%;
    top: 24%;
  }

  100% {
    left: 84%;
    top: 24%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.82);
  }
}

main {
  overflow: hidden;
  background: transparent;
}

.band {
  position: relative;
  scroll-margin-top: 86px;
  border-bottom: 1px solid var(--line);
  padding: clamp(76px, 8vw, 112px) 0;
  background:
    radial-gradient(680px 360px at 10% 10%, rgba(47, 212, 194, 0.08), transparent 68%),
    var(--page-2);
}

.band:nth-of-type(3),
.cta-band {
  background:
    radial-gradient(700px 360px at 92% 0%, rgba(106, 184, 255, 0.12), transparent 70%),
    var(--panel);
}

.split-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.68fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
  margin-bottom: clamp(38px, 5vw, 64px);
}

h2 {
  max-width: 860px;
  margin-top: 10px;
  color: var(--ink);
  font-size: clamp(38px, 5.2vw, 66px);
  font-weight: 900;
  line-height: 1.04;
}

.section-copy {
  color: var(--muted);
  font-size: clamp(17px, 1.65vw, 20px);
  line-height: 1.62;
}

.problem-list,
.system-ledger,
.engagement-flow {
  border-top: 1px solid var(--line-strong);
}

.problem-row,
.ledger-row,
.flow-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.22fr) minmax(240px, 0.55fr) minmax(320px, 0.78fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  padding: clamp(26px, 3vw, 36px) 0;
  border-bottom: 1px solid var(--line);
}

.problem-row span,
.ledger-row span,
.flow-row span {
  color: var(--copper);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.problem-row h3,
.ledger-row h3,
.flow-row h3 {
  color: var(--ink);
  font-size: clamp(24px, 2.35vw, 32px);
  font-weight: 850;
  line-height: 1.14;
}

.problem-row p,
.ledger-row p,
.flow-row p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.statement-band {
  position: relative;
  min-height: auto;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding: clamp(76px, 9vw, 118px) 0;
  background:
    linear-gradient(135deg, #10201d 0%, #172434 56%, #211a2b 100%);
}

.statement-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.48fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
}

.statement-inner h2 {
  color: var(--ink);
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.04;
}

.statement-inner p {
  color: #d2d6cf;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.52;
}

.statement-band .eyebrow {
  color: var(--teal-strong);
}

.system-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(38px, 5.5vw, 86px);
  align-items: start;
}

.system-ledger .ledger-row {
  grid-template-columns: 64px minmax(180px, 0.55fr) minmax(260px, 0.9fr);
  gap: clamp(20px, 3vw, 44px);
}

.system-identity {
  position: sticky;
  top: 92px;
  min-height: auto;
  display: grid;
  gap: 26px;
  border-top: 2px solid var(--teal-dim);
  border-bottom: 1px solid var(--line);
  padding: 28px 0 30px;
  background: transparent;
}

.system-identity img {
  width: min(100%, 560px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0.82;
}

.system-identity p {
  max-width: 520px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.62;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 9vw, 124px) 0;
  text-align: left;
}

.cta-band .shell {
  display: block;
  padding-top: 34px;
  border-top: 2px solid var(--teal-dim);
}

.cta-band h2 {
  max-width: 860px;
  margin-top: 10px;
  color: var(--ink);
  font-size: clamp(40px, 5.4vw, 70px);
  line-height: 1.04;
}

.cta-band p {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.62;
}

.cta-band .hero-actions {
  justify-content: flex-start;
  margin-top: 28px;
}

.band:not(#system),
.statement-band,
.cta-band,
footer {
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}

footer {
  contain-intrinsic-size: 120px;
}

footer {
  border-top: 1px solid var(--line);
  padding: 26px 0 34px;
  color: var(--muted);
  background: var(--page);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 36px, 980px);
  }

  .hero-inner,
  .split-head,
  .statement-inner,
  .system-layout {
    grid-template-columns: 1fr;
  }

  .workflow-animation {
    max-width: 720px;
  }

  .problem-row,
  .ledger-row,
  .flow-row,
  .system-ledger .ledger-row {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .problem-row p,
  .ledger-row p,
  .flow-row p {
    grid-column: 2;
  }

  .system-identity {
    position: relative;
    top: auto;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 28px, 680px);
  }

  body {
    background-size: auto, auto, auto;
    background-position: 80% 0, 12% 80%, 50% 0;
    animation: none;
  }

  .topbar {
    background: rgba(8, 16, 17, 0.96);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .topbar-inner {
    min-height: 62px;
    gap: 12px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    gap: 10px;
  }

  .brand-wordmark {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 13px;
  }

  .brand-meta,
  .nav a:not(.primary-link) {
    display: none;
  }

  .nav .primary-link {
    max-width: 122px;
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
    white-space: nowrap;
  }

  .continuum-hero,
  .hero-inner {
    min-height: auto;
  }

  .continuum-hero {
    background-size: auto;
    background-position: 50% 0;
    animation: none;
  }

  .continuum-hero::before {
    background-position: 74% 20%, 18% 82%, 50% 0;
    opacity: 0.38;
    animation: none;
  }

  .hero-inner {
    gap: 22px;
    padding: 38px 0 46px;
  }

  h1 {
    font-size: clamp(44px, 13vw, 58px);
  }

  .hero-logo-picture {
    margin-top: 12px;
  }

  .hero-logo {
    height: clamp(128px, 38vw, 176px);
  }

  .hero-line {
    margin-top: 16px;
    font-size: 22px;
  }

  .hero-copy p {
    margin-top: 13px;
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-copy p + p {
    display: none;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-top: 20px;
  }

  .cf-button {
    min-height: 44px;
    width: 100%;
  }

  .workflow-animation {
    display: none;
  }

  .workflow-board {
    min-height: 300px;
  }

  .worker {
    width: 66px;
    height: 66px;
  }

  .worker::before {
    inset: 13px;
  }

  .worker-dot {
    width: 12px;
    height: 12px;
  }

  .worker-label {
    top: calc(100% + 6px);
    min-width: 58px;
    font-size: 9px;
  }

  .memory-worker {
    width: 88px;
    height: 88px;
  }

  .memory-worker .worker-dot {
    width: 16px;
    height: 16px;
  }

  .work-packet {
    min-width: 52px;
    min-height: 23px;
    padding: 0 8px;
    font-size: 8px;
  }

  .band {
    padding: 64px 0;
  }

  .split-head {
    gap: 18px;
    margin-bottom: 30px;
  }

  h2,
  .statement-inner h2,
  .cta-band h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .problem-row,
  .ledger-row,
  .flow-row,
  .system-ledger .ledger-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 0;
  }

  .problem-row p,
  .ledger-row p,
  .flow-row p {
    grid-column: auto;
  }

  .problem-row h3,
  .ledger-row h3,
  .flow-row h3 {
    font-size: 24px;
  }

  .statement-band {
    padding: 66px 0;
  }

  .system-identity img {
    width: 100%;
  }

  .cta-band {
    padding: 68px 0 76px;
  }

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

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

  body,
  .continuum-hero,
  .continuum-hero::before,
  .route,
  .memory-worker::after,
  .work-packet {
    animation: none;
  }

  .work-packet {
    opacity: 0.85;
  }
}

@media (hover: none) and (pointer: coarse), (prefers-reduced-data: reduce) {
  body {
    background-size: auto, auto, auto;
    background-position: 80% 0, 12% 80%, 50% 0;
    animation: none;
  }

  .topbar {
    background: rgba(8, 16, 17, 0.96);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .continuum-hero {
    background-size: auto;
    background-position: 50% 0;
    animation: none;
  }

  .continuum-hero::before,
  .route,
  .memory-worker::after,
  .work-packet {
    animation: none;
  }

  .workflow-animation {
    display: none;
  }
}
