:root {
  color-scheme: light;
  --paper: #f3efe4;
  --sheet: #fbf8ef;
  --ink: #1d2822;
  --muted: #667068;
  --muted-strong: #505a52;
  --rule: #c9c2b2;
  --rule-strong: #a59e8f;
  --rule-faint: rgb(95 108 98 / 0.09);
  --archive: #355f78;
  --lichen: #607a4f;
  --signal: #a55643;
  --shadow: 0 24px 70px rgb(48 54 49 / 0.09);
  --sans: "Avenir Next", Avenir, "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), var(--rule-faint) 50%, transparent calc(50% + 1px)),
    var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

::selection {
  background: color-mix(in srgb, var(--archive) 24%, transparent);
}

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

.skip-link {
  position: fixed;
  z-index: 20;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--ink);
  background: var(--sheet);
  font-size: 0.8rem;
  font-weight: 700;
  transform: translateY(-160%);
}

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

.site-header,
main,
.site-footer {
  width: min(calc(100% - 3rem), 84rem);
  margin-inline: auto;
}

.site-header {
  display: flex;
  min-height: 5.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--rule);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.orbit-mark {
  position: relative;
  display: inline-grid;
  width: 1.75rem;
  height: 1.75rem;
  flex: none;
  place-items: center;
  border: 1.5px solid var(--archive);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.orbit-mark::after {
  position: absolute;
  width: 2.15rem;
  height: 0.62rem;
  border: 1.5px solid var(--archive);
  border-top-color: transparent;
  border-radius: 50%;
  content: "";
}

.orbit-mark span {
  position: absolute;
  top: -0.08rem;
  right: 0.08rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--archive);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.4rem);
  font-size: 0.82rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 150ms ease;
}

.site-nav a:hover {
  color: var(--ink);
}

.site-nav .nav-cta {
  display: inline-flex;
  min-height: 2.65rem;
  align-items: center;
  gap: 0.45rem;
  padding-inline: 0.9rem;
  border: 1px solid var(--rule-strong);
  border-radius: 0.3rem;
  color: var(--ink);
  font-weight: 700;
}

.hero {
  display: grid;
  min-height: calc(100vh - 5.25rem);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  padding-block: clamp(4.5rem, 9vw, 8rem);
  border-bottom: 1px solid var(--rule);
  grid-template-columns: minmax(0, 1.08fr) minmax(23rem, 0.92fr);
}

.hero-copy {
  max-width: 45rem;
  animation: field-enter 650ms ease-out both;
}

.kicker {
  display: flex;
  max-width: 36rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  color: var(--archive);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.105em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 10ch;
  margin: 1.25rem 0 0;
  font-family: var(--serif);
  font-size: clamp(4.2rem, 8vw, 7.35rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.82;
}

.hero h1 em {
  color: var(--archive);
  font-weight: 500;
}

.hero-intro {
  max-width: 37rem;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.35rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--ink);
  border-radius: 0.3rem;
  font-size: 0.82rem;
  font-weight: 750;
  text-decoration: none;
  transition: background 150ms ease, transform 150ms ease;
}

.button-primary {
  background: var(--ink);
  color: var(--paper);
}

.button-primary:hover {
  background: var(--archive);
  transform: translateY(-2px);
}

.text-link {
  color: var(--archive);
  font-size: 0.82rem;
  font-weight: 750;
  text-underline-offset: 0.28rem;
}

.ready-time {
  max-width: 38rem;
  margin-top: 1.6rem;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--archive);
  background: color-mix(in srgb, var(--archive) 6%, transparent);
}

.ready-time p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.78rem;
  line-height: 1.55;
}

.ready-time strong,
.ready-time b {
  color: var(--ink);
}

.ready-time strong {
  font-family: var(--mono);
}

.ready-time b {
  font-weight: 800;
  letter-spacing: 0.02em;
}

.ready-time small {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font: 0.57rem/1.45 var(--mono);
}

.system-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--rule);
  border-radius: 0.65rem;
  background:
    linear-gradient(var(--rule-faint) 1px, transparent 1px),
    linear-gradient(90deg, var(--rule-faint) 1px, transparent 1px),
    color-mix(in srgb, var(--sheet) 88%, transparent);
  background-size: 1.5rem 1.5rem;
  box-shadow: var(--shadow);
  animation: field-enter 650ms 90ms ease-out both;
}

.system-card-header,
.system-card-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem;
}

.system-card-header {
  border-bottom: 1px solid var(--rule);
}

.micro-label {
  margin: 0;
  color: var(--muted-strong);
  font-family: var(--mono);
  font-size: 0.59rem;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.system-card h2 {
  margin: 0.4rem 0 0;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.observing {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted-strong);
  font-size: 0.68rem;
}

.system-actions {
  display: grid;
  justify-items: end;
  gap: 0.65rem;
}

.motion-toggle {
  min-height: 2rem;
  padding: 0.4rem 0.65rem;
  border: 1px solid var(--rule-strong);
  border-radius: 0.25rem;
  color: var(--ink);
  background: color-mix(in srgb, var(--sheet) 78%, transparent);
  font: 700 0.61rem/1 var(--mono);
  cursor: pointer;
}

.motion-toggle:hover,
.motion-toggle:focus-visible {
  border-color: var(--archive);
  color: var(--archive);
}

.observing span {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--lichen);
  box-shadow: 0 0 0 0.22rem color-mix(in srgb, var(--lichen) 13%, transparent);
}

.system-card[data-live="false"] .observing span {
  background: var(--signal);
  box-shadow: 0 0 0 0.22rem color-mix(in srgb, var(--signal) 13%, transparent);
}

.system-map {
  position: relative;
  min-height: 24.5rem;
  overflow: hidden;
}

.map-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px dashed var(--rule);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-9deg);
}

.orbit-a {
  width: 82%;
  height: 58%;
}

.orbit-b {
  width: 54%;
  height: 82%;
  transform: translate(-50%, -50%) rotate(47deg);
}

.map-line {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  height: 1px;
  background: color-mix(in srgb, var(--archive) 58%, var(--rule));
  transform-origin: left center;
}

.map-line::before,
.map-line::after {
  position: absolute;
  top: 50%;
  width: 0.42rem;
  height: 0.42rem;
  border: 2px solid var(--sheet);
  border-radius: 50%;
  content: "";
  opacity: 0;
  transform: translate(-50%, -50%);
}

.map-line::after {
  background: var(--archive);
  box-shadow: 0 0 0 1px var(--archive);
}

.map-line::before {
  background: var(--lichen);
  box-shadow: 0 0 0 1px var(--lichen);
}

.line-a { width: 36%; transform: rotate(-137deg); }
.line-b { width: 37%; transform: rotate(-39deg); }

html[data-gotth-status="live"] .system-card[data-live="true"][data-paused="false"] .line-a::after {
  animation: heartbeat-out 0.82s ease-in-out both;
}

html[data-gotth-status="live"] .system-card[data-live="true"][data-paused="false"] .line-a::before {
  animation: heartbeat-back 0.82s 0.18s ease-in-out both;
}

html[data-gotth-status="live"] .system-card[data-live="true"][data-paused="false"] .line-b::after {
  animation: heartbeat-out 0.82s 0.08s ease-in-out both;
}

html[data-gotth-status="live"] .system-card[data-live="true"][data-paused="false"] .line-b::before {
  animation: heartbeat-back 0.82s 0.26s ease-in-out both;
}

.map-node {
  position: absolute;
  z-index: 1;
  display: grid;
  width: 7.7rem;
  justify-items: center;
  color: var(--ink);
  font-size: 0.67rem;
  text-align: center;
  transform: translate(-50%, -50%);
}

.map-node i {
  display: block;
  width: 0.82rem;
  height: 0.82rem;
  margin-bottom: 0.45rem;
  border: 2px solid var(--sheet);
  border-radius: 50%;
  background: var(--lichen);
  box-shadow: 0 0 0 1px var(--lichen);
}

.map-node b {
  font-weight: 750;
}

.map-node small {
  margin-top: 0.1rem;
  color: var(--muted-strong);
  font-size: 0.59rem;
}

.node-core {
  top: 50%;
  left: 50%;
}

.node-core i {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  background: var(--archive);
  box-shadow: 0 0 0 0.65rem color-mix(in srgb, var(--archive) 13%, transparent), 0 0 0 1px var(--archive);
}

.node-core i::after {
  position: absolute;
  inset: -0.55rem;
  border: 1px solid color-mix(in srgb, var(--archive) 60%, transparent);
  border-radius: 50%;
  content: "";
}

html[data-gotth-status="live"] .system-card[data-live="true"][data-paused="false"] .node-core i::after {
  animation: leader-pulse 0.72s ease-out both;
}

.node-edge { top: 17%; left: 21%; }
.node-gpu { top: 20%; left: 81%; }

.system-card-footer {
  align-items: center;
  border-top: 1px solid var(--rule);
  color: var(--muted-strong);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.02em;
}

.cluster-stats {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem 0.85rem;
  text-align: right;
}

.flow-key {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.flow-key i {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
}

.heartbeat-key {
  background: var(--archive);
}

.ack-key {
  margin-left: 0.4rem;
  background: var(--lichen);
}

.manifest {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.manifest span::before {
  margin-right: 1.5rem;
  color: var(--archive);
  content: "✦";
}

.section {
  display: grid;
  gap: clamp(2.5rem, 7vw, 7rem);
  padding-block: clamp(5.5rem, 10vw, 8.5rem);
  border-bottom: 1px solid var(--rule);
  grid-template-columns: minmax(14rem, 0.36fr) minmax(0, 1fr);
}

.section-intro {
  align-self: start;
}

.section-number,
.work-meta,
.service-code,
.service-state,
.research-status {
  margin: 0;
  color: var(--archive);
  font-family: var(--mono);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.section-intro h2,
.principles h2 {
  margin: 0.8rem 0 0;
  font-family: var(--serif);
  font-size: clamp(2.65rem, 5vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.section-intro > p:last-child,
.principles-copy > p:last-child {
  max-width: 32rem;
  margin: 1.3rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.work-list {
  border-top: 1px solid var(--rule);
}

.work-row {
  display: grid;
  align-items: start;
  gap: clamp(1rem, 2.5vw, 2rem);
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--rule);
  grid-template-columns: 5rem minmax(0, 1fr) auto;
  text-decoration: none;
  transition: padding 160ms ease, background 160ms ease;
}

.work-row:hover,
.work-row:focus-visible {
  padding-inline: 1rem;
  background: color-mix(in srgb, var(--sheet) 72%, transparent);
}

.work-index {
  color: var(--muted-strong);
  font-family: var(--mono);
  font-size: 0.65rem;
}

.work-body {
  display: grid;
}

.work-body strong {
  margin-top: 0.55rem;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.work-body > span:last-child {
  max-width: 45rem;
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.work-action {
  align-self: center;
  color: var(--archive);
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

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

.service-card {
  display: flex;
  min-height: 20rem;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.25rem, 2.5vw, 1.7rem);
  border: 1px solid var(--rule);
  border-radius: 0.5rem;
  background: color-mix(in srgb, var(--sheet) 70%, transparent);
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  border-color: var(--archive);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.service-featured {
  grid-column: 1 / -1;
  min-height: 22rem;
  background:
    radial-gradient(circle at 88% 12%, color-mix(in srgb, var(--archive) 14%, transparent), transparent 34%),
    color-mix(in srgb, var(--sheet) 86%, transparent);
}

.service-topline,
.service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.service-state {
  padding: 0.42rem 0.55rem;
  border: 1px solid var(--rule);
  border-radius: 99rem;
  color: var(--muted-strong);
  letter-spacing: 0.035em;
}

.public-state {
  border-color: color-mix(in srgb, var(--lichen) 58%, var(--rule));
  color: color-mix(in srgb, var(--lichen) 70%, var(--ink));
}

.private-state {
  border-color: color-mix(in srgb, var(--signal) 58%, var(--rule));
  color: var(--signal);
}

.service-body {
  display: grid;
  max-width: 41rem;
  gap: 0.8rem;
}

.service-body strong {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.service-body > span {
  max-width: 38rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.service-link {
  justify-content: flex-start;
  color: var(--archive);
  font-size: 0.78rem;
  font-weight: 750;
}

.research-ledger {
  display: grid;
  border-top: 1px solid var(--rule);
}

.research-ledger article {
  position: relative;
  display: grid;
  min-height: 12rem;
  align-content: center;
  padding: 2rem 3.5rem 2rem 5.5rem;
  border-bottom: 1px solid var(--rule);
}

.research-mark {
  position: absolute;
  top: 2rem;
  left: 0;
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  border: 1px solid var(--rule-strong);
  border-radius: 50%;
  color: var(--archive);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.research-ledger h3 {
  margin: 0.55rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.research-ledger article > p:nth-of-type(2) {
  max-width: 43rem;
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.research-status {
  position: absolute;
  right: 0;
  bottom: 2rem;
  color: var(--muted-strong);
  letter-spacing: 0.035em;
}

.principles {
  display: grid;
  align-items: start;
  gap: clamp(2rem, 5vw, 5rem);
  padding-block: clamp(5.5rem, 10vw, 9rem);
  border-bottom: 1px solid var(--rule);
  grid-template-columns: auto minmax(0, 1fr) minmax(15rem, 0.5fr);
}

.margin-mark {
  margin: 0;
  color: var(--signal);
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
}

.principles-copy {
  max-width: 48rem;
}

.principle-list {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--rule);
}

.principle-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--rule);
  font-size: 0.72rem;
}

.principle-list dt {
  color: var(--muted-strong);
}

.principle-list dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}

.site-footer {
  display: grid;
  align-items: end;
  gap: 2rem;
  padding-block: 3rem 4rem;
  grid-template-columns: 1fr auto auto;
}

.ai-disclosure {
  grid-column: 1 / -1;
  max-width: 62rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  line-height: 1.65;
}

.footer-brand {
  width: max-content;
}

.site-footer p {
  margin: 0.8rem 0 0;
  color: var(--muted-strong);
  font-size: 0.7rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.25rem;
  font-size: 0.72rem;
}

.site-footer nav a {
  color: var(--muted-strong);
  text-underline-offset: 0.25rem;
}

.site-footer .footer-edition {
  margin: 0;
  font-family: var(--mono);
  text-align: right;
  text-transform: uppercase;
}

@keyframes field-enter {
  from {
    opacity: 0;
    transform: translateY(0.75rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes orbit-drift-a {
  from { transform: translate(-50%, -50%) rotate(-9deg); }
  to { transform: translate(-50%, -50%) rotate(351deg); }
}

@keyframes orbit-drift-b {
  from { transform: translate(-50%, -50%) rotate(47deg); }
  to { transform: translate(-50%, -50%) rotate(407deg); }
}

@keyframes heartbeat-out {
  0%, 10% { left: 0; opacity: 0; }
  18% { opacity: 1; }
  48% { left: 100%; opacity: 1; }
  58%, 100% { left: 100%; opacity: 0; }
}

@keyframes heartbeat-back {
  0%, 10% { left: 100%; opacity: 0; }
  18% { opacity: 1; }
  48% { left: 0; opacity: 1; }
  58%, 100% { left: 0; opacity: 0; }
}

@keyframes leader-pulse {
  0% { opacity: 0.72; transform: scale(0.72); }
  65%, 100% { opacity: 0; transform: scale(1.8); }
}

@media (max-width: 940px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 48rem;
  }

  .system-card {
    width: min(100%, 42rem);
  }

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

  .section-intro {
    max-width: 42rem;
  }

  .principles {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .principle-list {
    grid-column: 2;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .footer-edition {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .site-header,
  main {
    width: min(calc(100% - 1.5rem), 84rem);
  }

  .site-header {
    min-height: 4.5rem;
    flex-wrap: wrap;
    padding-block: 0.85rem;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    order: 2;
    gap: 0.7rem;
  }

  .site-nav .nav-cta {
    min-height: 2.4rem;
    padding-inline: 0.7rem;
    font-size: 0.74rem;
  }

  .hero {
    min-height: auto;
    padding-block: 4rem;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 18vw, 5.25rem);
  }

  .kicker span:last-child {
    display: none;
  }

  .system-map {
    min-height: 21rem;
  }

  .map-node {
    width: 6.2rem;
    font-size: 0.61rem;
  }

  .system-card-footer span:last-child {
    display: none;
  }

  .manifest {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .manifest::-webkit-scrollbar {
    display: none;
  }

  .work-row {
    grid-template-columns: 3.7rem minmax(0, 1fr);
  }

  .work-action {
    display: none;
  }

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

  .service-card,
  .service-featured {
    min-height: 18rem;
    grid-column: auto;
  }

  .research-ledger article {
    padding: 5rem 0 2rem;
  }

  .research-mark {
    top: 1.25rem;
  }

  .research-status {
    position: static;
    margin-top: 1rem;
  }

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

  .margin-mark {
    font-size: 2.3rem;
  }

  .principle-list {
    grid-column: auto;
  }

  .site-footer {
    align-items: start;
    grid-template-columns: 1fr;
  }

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

  .site-footer .footer-edition {
    grid-column: auto;
    text-align: left;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --paper: #171d19;
    --sheet: #1e2721;
    --ink: #eef1e9;
    --muted: #aab3ab;
    --muted-strong: #c3cbc3;
    --rule: #465048;
    --rule-strong: #667168;
    --rule-faint: rgb(213 225 215 / 0.07);
    --archive: #93b8ce;
    --lichen: #a7bf91;
    --signal: #dd907b;
    --shadow: 0 24px 70px rgb(3 8 5 / 0.22);
  }
}

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

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