:root {
  --bg: #040506;
  --bg-soft: #0a0d0b;
  --panel: rgba(9, 12, 11, 0.74);
  --panel-strong: rgba(7, 10, 9, 0.92);
  --text: #eef5f0;
  --muted: rgba(214, 231, 221, 0.68);
  --green: #7dffbb;
  --green-soft: rgba(125, 255, 187, 0.16);
  --line: rgba(125, 255, 187, 0.15);
  --amber: #f4b15e;
  --amber-soft: rgba(244, 177, 94, 0.18);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.46);
  --display: "Space Grotesk", "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  --pointer-x: 50%;
  --pointer-y: 40%;
  --base-tilt-x: 0px;
  --base-tilt-y: 0px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--display);
  overflow-x: hidden;
}

a,
button {
  color: inherit;
  font: inherit;
}

button {
  background: none;
  border: 0;
}

::selection {
  background: rgba(125, 255, 187, 0.22);
  color: var(--text);
}

.base-body {
  cursor: none;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 18%, rgba(17, 43, 31, 0.34), transparent 38%),
    radial-gradient(circle at 84% 0%, rgba(25, 52, 39, 0.2), transparent 24%),
    #040506;
}

.background-grid,
.background-glow,
.noise-layer,
.vignette-layer,
#systemCanvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.background-grid {
  inset: -15%;
  background-image:
    linear-gradient(rgba(125, 255, 187, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 255, 187, 0.09) 1px, transparent 1px);
  background-size: 5.5rem 5.5rem;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.9) 26%, #000 62%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.9) 26%, #000 62%, transparent 100%);
  transform: perspective(1100px) rotateX(79deg) translateY(34vh);
  transform-origin: 50% 0;
  opacity: 0.44;
  animation: grid-drift 18s linear infinite;
}

.background-glow {
  z-index: -1;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(125, 255, 187, 0.14), transparent 28%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03), transparent 42%);
}

.noise-layer {
  z-index: 2;
  opacity: 0.12;
  mix-blend-mode: soft-light;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 3px 3px;
}

.vignette-layer {
  z-index: 2;
  background: radial-gradient(circle at center, transparent 36%, rgba(0, 0, 0, 0.7) 100%);
}

#systemCanvas {
  z-index: -1;
}

.system-header,
.base-shell,
.base-panels {
  position: relative;
  z-index: 3;
  transition: opacity 0.35s ease, filter 0.35s ease, transform 0.35s ease;
}

.system-header {
  position: fixed;
  inset: 1.2rem 1.2rem auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.9rem;
}

.system-chip {
  display: grid;
  gap: 0.3rem;
  padding: 0.8rem 1rem;
  min-width: 14rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: linear-gradient(180deg, rgba(12, 16, 14, 0.82), rgba(7, 9, 9, 0.68));
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.system-chip--right {
  text-align: right;
}

.chip-label,
.panel-label,
.portal-index,
.portal-command,
.core-kicker,
.core-meta,
.vault-label,
.return {
  font-family: var(--mono);
  text-transform: uppercase;
}

.chip-label,
.panel-label,
.vault-label {
  color: rgba(214, 231, 221, 0.6);
  letter-spacing: 0.28em;
  font-size: 0.69rem;
}

.chip-value,
.panel-value {
  font-size: 0.92rem;
  color: var(--text);
}

.chip-value--time {
  font-family: var(--mono);
  letter-spacing: 0.2em;
}

.base-shell {
  width: min(1040px, calc(100% - 2rem));
  min-height: 100svh;
  margin-inline: auto;
  padding: 7.5rem 0 6rem;
  display: grid;
  gap: clamp(1.4rem, 4vw, 2.6rem);
  align-content: center;
}

.system-core {
  position: relative;
  width: min(100%, 820px);
  margin-inline: auto;
  padding: clamp(1.75rem, 4vw, 3rem);
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(10, 13, 12, 0.52), rgba(4, 5, 6, 0.78));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  transform: translate3d(calc(var(--base-tilt-x) * 0.35), calc(var(--base-tilt-y) * 0.35), 0);
  transition: transform 0.28s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.system-core::before {
  content: "";
  position: absolute;
  width: 18rem;
  height: 18rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 255, 187, 0.15), transparent 68%);
  filter: blur(18px);
  opacity: 0.9;
}

.system-core::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(2rem - 1px);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.system-core:hover {
  border-color: rgba(125, 255, 187, 0.28);
}

.system-core.is-arming {
  border-color: rgba(244, 177, 94, 0.34);
  box-shadow: var(--shadow), 0 0 0 1px rgba(244, 177, 94, 0.08);
}

.system-core.is-arming::before {
  background: radial-gradient(circle, rgba(244, 177, 94, 0.18), transparent 68%);
}

.system-core.is-arming::after {
  animation: core-arm 1.4s linear forwards;
}

.core-kicker {
  position: relative;
  z-index: 1;
  margin-bottom: 0.9rem;
  letter-spacing: 0.35em;
  font-size: 0.72rem;
  color: rgba(214, 231, 221, 0.66);
}

.core-wordmark {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: clamp(0.2rem, 1vw, 0.9rem);
  font-size: clamp(3.4rem, 10vw, 8.3rem);
  font-weight: 500;
  color: #f6fbf7;
  line-height: 0.95;
}

.core-wordmark span {
  display: inline-block;
  letter-spacing: 0.18em;
  transition: transform 0.5s ease, color 0.5s ease;
}

.system-core:hover .core-wordmark span:nth-child(odd) {
  transform: translateY(-0.2rem);
}

.system-core:hover .core-wordmark span:nth-child(even) {
  transform: translateY(0.18rem);
}

.core-copy {
  position: relative;
  z-index: 1;
  width: min(46ch, 100%);
  margin: 1.4rem auto 0;
  color: var(--muted);
  line-height: 1.9;
  font-size: 1.04rem;
}

.core-hint {
  position: relative;
  z-index: 1;
  margin-top: 1.5rem;
  color: rgba(214, 231, 221, 0.64);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.core-meta {
  position: relative;
  z-index: 1;
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  letter-spacing: 0.18em;
  font-size: 0.69rem;
  color: rgba(214, 231, 221, 0.66);
}

.core-meta span {
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(125, 255, 187, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}

.portal-dock {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 760px);
  margin-inline: auto;
  gap: 1.2rem;
}

.portal-card {
  position: relative;
  display: grid;
  align-content: end;
  gap: 0.45rem;
  min-height: 9.5rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 1.8rem;
  background: linear-gradient(160deg, rgba(10, 13, 12, 0.8), rgba(4, 5, 6, 0.95));
  text-decoration: none;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.25, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.portal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(220px circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(125, 255, 187, 0.16), transparent 66%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.portal-card::after {
  content: "";
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  width: 2.9rem;
  height: 2.9rem;
  border-top: 1px solid rgba(125, 255, 187, 0.26);
  border-right: 1px solid rgba(125, 255, 187, 0.26);
  transition: transform 0.35s ease, opacity 0.35s ease;
  opacity: 0.72;
}

.portal-card:hover {
  transform: translateY(-0.5rem);
  border-color: rgba(125, 255, 187, 0.28);
}

.portal-card:hover::before {
  opacity: 1;
}

.portal-card:hover::after {
  transform: translate(0.4rem, -0.4rem);
}

.portal-index {
  position: relative;
  z-index: 1;
  letter-spacing: 0.35em;
  font-size: 0.72rem;
  color: var(--green);
}

.portal-name {
  position: relative;
  z-index: 1;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  letter-spacing: 0.03em;
}

.portal-command {
  position: relative;
  z-index: 1;
  color: rgba(214, 231, 221, 0.5);
  letter-spacing: 0.2em;
  font-size: 0.7rem;
}

.portal-text {
  position: relative;
  z-index: 1;
  width: min(32ch, 100%);
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.97rem;
}

.base-panels {
  position: fixed;
  inset: auto 1.2rem 1.2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  pointer-events: none;
}

.panel {
  display: grid;
  gap: 0.35rem;
  padding: 0.9rem 1rem;
  min-width: 15rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: linear-gradient(180deg, rgba(12, 16, 14, 0.78), rgba(7, 9, 9, 0.6));
  backdrop-filter: blur(16px);
}

.base-panels .panel {
  pointer-events: auto;
}

.aux-tile {
  opacity: 0;
  transform: translateY(0.8rem);
  transition:
    opacity 0.32s ease,
    transform 0.32s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.aux-tile:hover,
.aux-tile:focus,
.aux-tile:focus-within {
  opacity: 1;
  transform: translateY(0);
}

.aux-tile:focus-visible {
  outline: 1px solid rgba(125, 255, 187, 0.38);
  outline-offset: 0.22rem;
}

.panel-value--warning {
  color: rgba(214, 231, 221, 0.72);
}

.vault {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  background: rgba(4, 5, 6, 0.72);
  backdrop-filter: blur(22px);
  transition: opacity 0.38s ease;
}

.vault.is-open {
  opacity: 1;
  pointer-events: auto;
}

.vault-frame {
  position: relative;
  width: min(34rem, 100%);
  padding: 2rem;
  border-radius: 1.9rem;
  border: 1px solid rgba(244, 177, 94, 0.22);
  background: linear-gradient(160deg, rgba(29, 18, 12, 0.94), rgba(7, 7, 8, 0.96));
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.56);
  overflow: hidden;
}

.vault-frame::before {
  content: "";
  position: absolute;
  inset: -25% -10% auto;
  height: 12rem;
  background: radial-gradient(circle, rgba(244, 177, 94, 0.18), transparent 72%);
}

.vault-label {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
  color: rgba(255, 227, 189, 0.68);
}

.vault h2 {
  position: relative;
  z-index: 1;
  font-size: clamp(2rem, 5vw, 3.3rem);
  margin-bottom: 0.8rem;
}

.vault p {
  position: relative;
  z-index: 1;
  color: rgba(255, 234, 212, 0.74);
  line-height: 1.8;
}

.vault-fragment {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(244, 177, 94, 0.16);
  font-family: var(--mono);
  letter-spacing: 0.08em;
  color: #fff7ec;
}

.vault-close {
  position: relative;
  z-index: 1;
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(244, 177, 94, 0.22);
  border-radius: 999px;
  color: #fff1dd;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.vault-close:hover {
  transform: translateX(0.25rem);
  background: rgba(244, 177, 94, 0.09);
  border-color: rgba(244, 177, 94, 0.34);
}

.vault-actions {
  position: relative;
  z-index: 1;
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.vault-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(244, 177, 94, 0.28);
  border-radius: 999px;
  background: rgba(244, 177, 94, 0.12);
  color: #fff1dd;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.vault-link:hover {
  transform: translateX(0.25rem);
  background: rgba(244, 177, 94, 0.18);
  border-color: rgba(244, 177, 94, 0.38);
}

body.vault-open .system-header,
body.vault-open .base-shell,
body.vault-open .base-panels {
  opacity: 0.18;
  filter: blur(0.5rem);
  transform: scale(0.985);
  pointer-events: none;
}

body.base-body.vault-open {
  overflow: hidden;
}

.custom-cursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 20;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.12s linear;
  will-change: transform;
}

.custom-cursor.is-visible {
  opacity: 1;
}

.custom-cursor__dot,
.custom-cursor__ring {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%) scale(var(--cursor-scale, 1));
  border-radius: 50%;
}

.custom-cursor__dot {
  width: 0.45rem;
  height: 0.45rem;
  background: var(--green);
  box-shadow: 0 0 1.1rem rgba(125, 255, 187, 0.65);
}

.custom-cursor__ring {
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(125, 255, 187, 0.45);
  transition: transform 0.24s ease, border-color 0.24s ease, opacity 0.24s ease;
}

.custom-cursor.is-hovering {
  --cursor-scale: 1.35;
}

.custom-cursor.is-hovering .custom-cursor__ring {
  border-color: rgba(244, 245, 240, 0.7);
}

.custom-cursor.is-pressed {
  --cursor-scale: 0.8;
}

.timeline-body,
.space-body {
  background: #050607;
  color: var(--text);
}

.timeline-body {
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(20, 58, 48, 0.34), transparent 28%),
    radial-gradient(circle at 84% 14%, rgba(41, 71, 95, 0.18), transparent 24%),
    #030507;
}

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

.timeline-body::before {
  z-index: 0;
  background-image:
    linear-gradient(rgba(125, 255, 187, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 255, 187, 0.05) 1px, transparent 1px);
  background-size: 5rem 5rem;
  opacity: 0.28;
  mask-image: radial-gradient(circle at center, #000 34%, transparent 86%);
}

.timeline-body::after {
  z-index: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(125, 255, 187, 0.12), transparent 24%),
    radial-gradient(circle at center, transparent 40%, rgba(0, 0, 0, 0.78) 100%);
}

.space-body {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: auto;
  -webkit-overflow-scrolling: touch;
  background:
    radial-gradient(circle at 50% 18%, rgba(16, 58, 49, 0.18), transparent 32%),
    radial-gradient(circle at 84% 10%, rgba(44, 84, 105, 0.12), transparent 28%),
    #020406;
}

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

.space-body::before {
  z-index: 2;
  background: radial-gradient(circle at 50% 50%, transparent 0%, transparent 58%, rgba(0, 0, 0, 0.62) 100%);
}

.space-body::after {
  z-index: 2;
  background: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 4px;
  opacity: 0.05;
  mix-blend-mode: screen;
}

.return {
  position: fixed;
  top: calc(1rem + env(safe-area-inset-top, 0px));
  left: calc(1rem + env(safe-area-inset-left, 0px));
  z-index: 4;
  max-width: calc(100vw - 2rem);
  padding: 0.75rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(7, 9, 10, 0.76);
  text-decoration: none;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: rgba(214, 231, 221, 0.82);
  backdrop-filter: blur(12px);
}

.return--orbit {
  border-color: rgba(188, 220, 255, 0.18);
  background: rgba(6, 10, 18, 0.78);
  color: rgba(228, 239, 255, 0.88);
}

.return--amber {
  border-color: rgba(244, 177, 94, 0.22);
  background: rgba(18, 12, 8, 0.82);
  color: rgba(255, 239, 221, 0.9);
}

.orbit-page,
.contact-page {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
}

.orbit-page {
  background:
    radial-gradient(circle at 20% 0%, rgba(90, 137, 201, 0.18), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(135, 208, 255, 0.12), transparent 26%),
    linear-gradient(180deg, #040713 0%, #020407 100%);
}

.orbit-page::before,
.orbit-page::after,
.contact-page::before,
.contact-page::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.orbit-page::before {
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.9) 0 1px, transparent 2px),
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.8) 0 1px, transparent 2px),
    radial-gradient(circle at 62% 68%, rgba(255, 255, 255, 0.6) 0 1px, transparent 2px),
    radial-gradient(circle at 34% 72%, rgba(255, 255, 255, 0.7) 0 1px, transparent 2px);
  opacity: 0.7;
}

.orbit-page::after {
  background: radial-gradient(circle at center, transparent 34%, rgba(0, 0, 0, 0.74) 100%);
}

.orbit-shell,
.contact-shell {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: calc(7rem + env(safe-area-inset-top, 0px)) 0 calc(4rem + env(safe-area-inset-bottom, 0px));
}

.orbit-shell {
  min-height: 100svh;
  display: grid;
  place-items: center;
}

.orbit-panel {
  width: min(100%, 42rem);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  border: 1px solid rgba(184, 220, 255, 0.16);
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(8, 12, 20, 0.86), rgba(3, 5, 10, 0.94));
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.46);
  text-align: center;
}

.orbit-kicker,
.contact-kicker,
.contact-card__label {
  font-family: var(--mono);
  text-transform: uppercase;
}

.orbit-kicker,
.contact-kicker {
  letter-spacing: 0.28em;
  font-size: 0.72rem;
}

.orbit-kicker {
  color: rgba(210, 230, 255, 0.66);
}

.orbit-panel h1,
.contact-hero h1 {
  margin-top: 0.9rem;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  line-height: 0.94;
}

.orbit-copy {
  width: min(34ch, 100%);
  margin: 1.1rem auto 0;
  color: rgba(216, 228, 244, 0.74);
  line-height: 1.85;
}

.orbit-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.7rem;
  padding: 0.9rem 1.15rem;
  border: 1px solid rgba(188, 220, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(235, 244, 255, 0.94);
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.orbit-link:hover {
  transform: translateY(-0.12rem);
  border-color: rgba(188, 220, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.contact-page {
  background:
    radial-gradient(circle at 18% 0%, rgba(244, 177, 94, 0.18), transparent 30%),
    radial-gradient(circle at 84% 14%, rgba(201, 106, 58, 0.12), transparent 24%),
    linear-gradient(180deg, #130d09 0%, #050404 100%);
}

.contact-page::before {
  background:
    linear-gradient(rgba(255, 231, 204, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 231, 204, 0.03) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  opacity: 0.26;
  mask-image: radial-gradient(circle at center, #000 36%, transparent 92%);
}

.contact-page::after {
  background: radial-gradient(circle at center, transparent 36%, rgba(0, 0, 0, 0.72) 100%);
}

.contact-shell {
  display: grid;
  gap: 1.2rem;
}

.contact-hero,
.contact-card,
.contact-about {
  position: relative;
  border: 1px solid rgba(244, 177, 94, 0.16);
  background: linear-gradient(180deg, rgba(20, 13, 10, 0.86), rgba(8, 6, 5, 0.94));
  box-shadow: 0 34px 84px rgba(0, 0, 0, 0.42);
}

.contact-hero,
.contact-about {
  padding: clamp(1.5rem, 4vw, 2.3rem);
  border-radius: 2rem;
}

.contact-kicker {
  color: rgba(255, 228, 193, 0.64);
}

.contact-lead,
.contact-about__copy,
.contact-card__meta {
  color: rgba(255, 234, 214, 0.74);
  line-height: 1.85;
}

.contact-lead {
  width: min(46ch, 100%);
  margin-top: 1rem;
  font-size: 1.02rem;
}

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

.contact-card {
  display: grid;
  gap: 0.7rem;
  padding: 1.4rem;
  border-radius: 1.6rem;
  text-decoration: none;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-0.15rem);
  border-color: rgba(244, 177, 94, 0.32);
  background: linear-gradient(180deg, rgba(26, 17, 13, 0.9), rgba(10, 7, 6, 0.96));
}

.contact-card:focus-visible {
  outline: 1px solid rgba(244, 177, 94, 0.38);
  outline-offset: 0.16rem;
}

.contact-card__label {
  color: rgba(255, 220, 176, 0.68);
  letter-spacing: 0.2em;
  font-size: 0.68rem;
}

.contact-card__value {
  font-size: clamp(1.14rem, 2.4vw, 1.5rem);
  line-height: 1.3;
  word-break: break-word;
}

.contact-about__copy {
  width: min(62ch, 100%);
  margin-top: 0.95rem;
}

.signal-log {
  position: relative;
  z-index: 3;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: calc(7rem + env(safe-area-inset-top, 0px)) 0 calc(4rem + env(safe-area-inset-bottom, 0px));
  display: grid;
  grid-template-columns: minmax(18rem, 23rem) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
}

.signal-brief,
.signal-entry {
  position: relative;
  border: 1px solid rgba(125, 255, 187, 0.14);
  background: linear-gradient(180deg, rgba(8, 12, 14, 0.8), rgba(4, 6, 8, 0.92));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.signal-brief {
  position: sticky;
  top: 6rem;
  padding: 1.45rem;
  border-radius: 1.8rem;
  overflow: hidden;
}

.signal-brief::before {
  content: "";
  position: absolute;
  inset: -25% auto auto -10%;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 255, 187, 0.15), transparent 70%);
  filter: blur(18px);
}

.signal-kicker,
.signal-entry__label,
.signal-entry__date {
  font-family: var(--mono);
  text-transform: uppercase;
}

.signal-kicker {
  position: relative;
  z-index: 1;
  color: rgba(214, 231, 221, 0.62);
  letter-spacing: 0.3em;
  font-size: 0.7rem;
}

.signal-brief h1 {
  position: relative;
  z-index: 1;
  margin-top: 0.9rem;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.96;
}

.signal-intro {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.78;
  font-size: 1rem;
}

.signal-metrics {
  position: relative;
  z-index: 1;
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.signal-metrics span {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(125, 255, 187, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(214, 231, 221, 0.78);
  font-family: var(--mono);
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.signal-stream {
  position: relative;
  display: grid;
  gap: 1rem;
  padding-left: 1.8rem;
}

.signal-stream::before {
  content: "";
  position: absolute;
  left: 0.38rem;
  top: 1rem;
  bottom: 1rem;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(125, 255, 187, 0.24),
    rgba(125, 255, 187, 0.08)
  );
}

.signal-entry {
  padding: 1.35rem 1.45rem;
  border-radius: 1.55rem;
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
  content-visibility: auto;
  contain-intrinsic-size: 1px 18rem;
}

.signal-entry::before {
  content: "";
  position: absolute;
  left: -1.82rem;
  top: 1.45rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(247, 255, 249, 0.95) 0 28%, rgba(125, 255, 187, 0.68) 44%, rgba(125, 255, 187, 0) 72%);
  box-shadow: 0 0 1rem rgba(125, 255, 187, 0.34);
}

.signal-entry:hover {
  transform: translateY(-0.2rem);
  border-color: rgba(125, 255, 187, 0.24);
  background: linear-gradient(180deg, rgba(10, 15, 18, 0.84), rgba(5, 8, 10, 0.94));
}

.signal-entry__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
}

.signal-entry__label {
  color: var(--green);
  letter-spacing: 0.24em;
  font-size: 0.68rem;
}

.signal-entry__date {
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(125, 255, 187, 0.12);
  border-radius: 999px;
  color: rgba(214, 231, 221, 0.78);
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  background: rgba(255, 255, 255, 0.03);
}

.signal-entry h2 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.08;
}

.signal-entry p {
  margin-top: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.98rem;
}

.signal-feed-status {
  padding: 1rem 1.15rem;
  border: 1px solid rgba(125, 255, 187, 0.12);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(214, 231, 221, 0.78);
  font-family: var(--mono);
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.signal-log--empty {
  grid-template-columns: 1fr;
  width: min(720px, calc(100% - 2rem));
  min-height: 100svh;
  padding-top: calc(7rem + env(safe-area-inset-top, 0px));
  padding-bottom: calc(4rem + env(safe-area-inset-bottom, 0px));
  place-items: center;
}

.signal-empty {
  width: min(100%, 38rem);
  padding: 1.6rem;
  border: 1px solid rgba(125, 255, 187, 0.14);
  border-radius: 1.8rem;
  background: linear-gradient(180deg, rgba(8, 12, 14, 0.8), rgba(4, 6, 8, 0.92));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  text-align: center;
}

.signal-empty .signal-intro {
  margin-top: 0.85rem;
}

.timeline-body--admin::before {
  opacity: 0.18;
}

.timeline-admin {
  position: relative;
  z-index: 3;
  width: min(1080px, calc(100% - 2rem));
  margin: 0 auto;
  padding: calc(7rem + env(safe-area-inset-top, 0px)) 0 calc(4rem + env(safe-area-inset-bottom, 0px));
  display: grid;
  grid-template-columns: minmax(18rem, 24rem) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
}

.timeline-admin__brief,
.timeline-admin__panel {
  border: 1px solid rgba(125, 255, 187, 0.14);
  background: linear-gradient(180deg, rgba(8, 12, 14, 0.8), rgba(4, 6, 8, 0.92));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.timeline-admin__brief {
  position: sticky;
  top: 6rem;
  padding: 1.45rem;
  border-radius: 1.8rem;
  overflow: hidden;
}

.timeline-admin__brief::before {
  content: "";
  position: absolute;
  inset: -25% auto auto -10%;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 255, 187, 0.15), transparent 70%);
  filter: blur(18px);
}

.timeline-admin__brief h1 {
  position: relative;
  z-index: 1;
  margin-top: 0.9rem;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 0.96;
}

.timeline-admin__intro {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.78;
}

.timeline-admin__panel {
  padding: 1.45rem;
  border-radius: 1.8rem;
}

.timeline-form {
  display: grid;
  gap: 1rem;
}

.timeline-form__field {
  display: grid;
  gap: 0.45rem;
}

.timeline-form__field span,
.timeline-form__note,
.timeline-form__status {
  font-family: var(--mono);
}

.timeline-form__field span {
  color: rgba(214, 231, 221, 0.72);
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.timeline-form__field input,
.timeline-form__field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(125, 255, 187, 0.14);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
  resize: vertical;
}

.timeline-form__field input:focus,
.timeline-form__field textarea:focus {
  outline: 1px solid rgba(125, 255, 187, 0.42);
  outline-offset: 0.12rem;
  border-color: rgba(125, 255, 187, 0.3);
}

.timeline-form__field textarea {
  min-height: 12rem;
  line-height: 1.7;
}

.timeline-form__note {
  color: rgba(214, 231, 221, 0.72);
  line-height: 1.7;
  font-size: 0.78rem;
}

.timeline-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.timeline-form__submit,
.timeline-form__link {
  min-width: 12rem;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: var(--mono);
  font-size: 0.72rem;
  text-decoration: none;
  text-align: center;
}

.timeline-form__submit {
  border: 1px solid rgba(125, 255, 187, 0.24);
  background: rgba(125, 255, 187, 0.1);
  color: #f4fff8;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, opacity 0.22s ease;
}

.timeline-form__submit:hover:not(:disabled) {
  transform: translateY(-0.15rem);
  border-color: rgba(125, 255, 187, 0.42);
  background: rgba(125, 255, 187, 0.16);
}

.timeline-form__submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.timeline-form__link {
  border: 1px solid rgba(125, 255, 187, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(214, 231, 221, 0.84);
}

.timeline-form__status {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(125, 255, 187, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(214, 231, 221, 0.78);
  letter-spacing: 0.08em;
  font-size: 0.74rem;
}

.timeline-form__status[data-tone="success"] {
  border-color: rgba(125, 255, 187, 0.24);
  color: #f4fff8;
}

.timeline-form__status[data-tone="error"] {
  border-color: rgba(244, 177, 94, 0.24);
  color: #fff1dd;
}

#spaceCanvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  touch-action: manipulation;
}

.space-shell {
  position: relative;
  z-index: 3;
  min-height: 100svh;
  min-height: 100dvh;
  padding:
    calc(6rem + env(safe-area-inset-top, 0px))
    1.25rem
    calc(1.25rem + env(safe-area-inset-bottom, 0px));
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  pointer-events: none;
}

.space-sidebar {
  display: grid;
  gap: 1rem;
  width: min(100%, 28rem);
  pointer-events: none;
}

.space-sidebar > * {
  width: 100%;
  pointer-events: auto;
}

.space-directory {
  padding: 1.1rem;
  border-radius: 1.45rem;
  border: 1px solid rgba(125, 255, 187, 0.14);
  background: linear-gradient(180deg, rgba(7, 10, 12, 0.72), rgba(4, 6, 8, 0.86));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.space-directory-list {
  margin-top: 0.95rem;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.space-directory-empty {
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(125, 255, 187, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(214, 231, 221, 0.74);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.space-directory-link {
  display: grid;
  gap: 0.35rem;
  padding: 0.95rem 1rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(125, 255, 187, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  text-decoration: none;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.space-directory-link:hover,
.space-directory-link:focus-visible,
.space-directory-link.is-selected {
  transform: translateY(-0.1rem);
  border-color: rgba(125, 255, 187, 0.28);
  background: rgba(125, 255, 187, 0.08);
}

.space-directory-link:focus-visible {
  outline: 1px solid rgba(125, 255, 187, 0.42);
  outline-offset: 0.12rem;
}

.space-directory-name,
.space-directory-value {
  display: block;
}

.space-directory-name {
  font-family: var(--mono);
  color: rgba(247, 255, 249, 0.94);
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.space-directory-value {
  color: var(--muted);
  word-break: break-word;
}

.space-copy,
.space-panel {
  border: 1px solid rgba(125, 255, 187, 0.14);
  background: linear-gradient(180deg, rgba(7, 10, 12, 0.76), rgba(4, 6, 8, 0.88));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.space-copy {
  padding: 1.35rem 1.4rem;
  border-radius: 1.6rem;
}

.space-kicker,
.space-panel-label,
.space-readout-label {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.7rem;
  color: rgba(214, 231, 221, 0.62);
}

.space-copy h1,
.space-panel h2 {
  margin-top: 0.8rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
}

.space-copy p:last-child,
.space-panel-copy {
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.75;
}

.space-panel {
  padding: 1.4rem;
  border-radius: 1.75rem;
}

.space-readout {
  margin-top: 1.4rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(125, 255, 187, 0.12);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.03);
}

.space-readout-value {
  display: block;
  margin-top: 0.55rem;
  font-family: var(--mono);
  font-size: 0.94rem;
  color: #f7fff9;
  word-break: break-word;
}

.space-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.space-button {
  min-width: 10.8rem;
  padding: 0.9rem 1.15rem;
  border: 1px solid rgba(125, 255, 187, 0.24);
  border-radius: 999px;
  background: rgba(125, 255, 187, 0.1);
  color: #f4fff8;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: var(--mono);
  font-size: 0.72rem;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, opacity 0.22s ease;
}

.space-button:hover:not(:disabled) {
  transform: translateY(-0.15rem);
  border-color: rgba(125, 255, 187, 0.42);
  background: rgba(125, 255, 187, 0.16);
}

.space-button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.space-button--ghost {
  background: rgba(255, 255, 255, 0.03);
}

.space-toast {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 4;
  max-width: min(22rem, calc(100vw - 2rem));
  padding: 0.85rem 1rem;
  border: 1px solid rgba(125, 255, 187, 0.16);
  border-radius: 999px;
  background: rgba(7, 10, 12, 0.88);
  color: rgba(247, 255, 249, 0.92);
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(0.6rem);
  transition: opacity 0.24s ease, transform 0.24s ease;
  pointer-events: none;
}

.space-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.contact-hover .custom-cursor {
  --cursor-scale: 1.4;
}

body.contact-hover .custom-cursor__ring {
  border-color: rgba(125, 255, 187, 0.82);
}

@keyframes grid-drift {
  from {
    transform: perspective(1100px) rotateX(79deg) translateY(34vh) translateX(0);
  }

  50% {
    transform: perspective(1100px) rotateX(79deg) translateY(32vh) translateX(-1.5rem);
  }

  to {
    transform: perspective(1100px) rotateX(79deg) translateY(34vh) translateX(0);
  }
}

@keyframes core-arm {
  0% {
    box-shadow: inset 0 0 0 0 rgba(244, 177, 94, 0);
  }

  50% {
    box-shadow: inset 0 0 0 1px rgba(244, 177, 94, 0.18);
  }

  100% {
    box-shadow: inset 0 0 0 1px rgba(244, 177, 94, 0.35);
  }
}

@media (max-width: 900px) {
  .system-header {
    flex-direction: column;
    align-items: stretch;
  }

  .system-chip,
  .system-chip--right {
    min-width: 0;
    text-align: left;
  }

  .base-shell {
    padding-top: 8.5rem;
  }

  .portal-dock {
    grid-template-columns: 1fr;
  }

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

  .base-panels {
    position: static;
    width: calc(100% - 1rem);
    margin: 0 auto 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    pointer-events: auto;
  }

  .panel {
    min-width: 0;
  }

  .space-shell {
    min-height: auto;
  }

  .space-sidebar {
    width: 100%;
  }

  .signal-log {
    grid-template-columns: 1fr;
  }

  .signal-log--empty {
    padding-top: calc(7rem + env(safe-area-inset-top, 0px));
  }

  .signal-brief,
  .timeline-admin__brief {
    position: static;
  }

  .timeline-admin {
    grid-template-columns: 1fr;
  }
}

@media (max-height: 500px) and (pointer: coarse) {
  .space-shell {
    min-height: auto;
    padding:
      calc(4.5rem + env(safe-area-inset-top, 0px))
      0.75rem
      calc(0.75rem + env(safe-area-inset-bottom, 0px));
    justify-content: flex-end;
  }

  .space-sidebar {
    display: grid;
    width: 100%;
    max-width: 32rem;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .base-body {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .background-grid,
  .noise-layer {
    display: none;
  }

  .base-shell {
    width: calc(100% - 1rem);
    padding-top: 8rem;
    padding-bottom: 5.5rem;
  }

  .system-core {
    border-radius: 1.45rem;
    padding: 1.4rem 1.1rem;
  }

  .system-core::after {
    border-radius: calc(1.45rem - 1px);
  }

  .core-wordmark {
    gap: 0.05rem;
    font-size: clamp(2.7rem, 16vw, 4.7rem);
  }

  .core-wordmark span {
    letter-spacing: 0.1em;
  }

  .core-copy {
    font-size: 0.95rem;
  }

  .core-hint {
    letter-spacing: 0.14em;
  }

  .portal-card {
    min-height: 8.6rem;
    padding: 1.25rem;
    border-radius: 1.45rem;
  }

  .vault-frame {
    padding: 1.5rem;
    border-radius: 1.5rem;
  }

  .orbit-shell,
  .contact-shell {
    width: calc(100% - 1rem);
    padding-top: calc(5.75rem + env(safe-area-inset-top, 0px));
    padding-bottom: calc(3rem + env(safe-area-inset-bottom, 0px));
  }

  .orbit-panel,
  .contact-hero,
  .contact-card,
  .contact-about {
    border-radius: 1.45rem;
  }

  .orbit-panel,
  .contact-hero,
  .contact-about {
    padding: 1.3rem 1.15rem;
  }

  .contact-card {
    padding: 1.15rem;
  }

  .space-shell {
    min-height: 100dvh;
    padding:
      calc(4.85rem + env(safe-area-inset-top, 0px))
      0.75rem
      calc(0.9rem + env(safe-area-inset-bottom, 0px));
    align-items: stretch;
    justify-content: flex-end;
  }

  .space-sidebar {
    display: grid;
    width: 100%;
    max-width: 32rem;
    margin-inline: auto;
    gap: 0.75rem;
  }

  .space-copy {
    padding: 1.15rem;
    border-radius: 1.4rem;
  }

  .space-panel {
    padding: 1.15rem;
    border-radius: 1.4rem;
  }

  .space-directory {
    padding: 1rem;
    border-radius: 1.35rem;
  }

  .space-panel {
    order: 1;
  }

  .space-directory {
    order: 2;
  }

  .space-copy {
    order: 3;
  }

  .signal-log {
    width: calc(100% - 1rem);
    padding-top: calc(5.75rem + env(safe-area-inset-top, 0px));
    padding-bottom: calc(3rem + env(safe-area-inset-bottom, 0px));
    gap: 0.85rem;
  }

  .signal-log--empty {
    padding-top: calc(5.75rem + env(safe-area-inset-top, 0px));
  }

  .timeline-admin {
    width: calc(100% - 1rem);
    padding-top: calc(5.75rem + env(safe-area-inset-top, 0px));
    padding-bottom: calc(3rem + env(safe-area-inset-bottom, 0px));
    gap: 0.85rem;
  }

  .signal-brief,
  .signal-entry,
  .timeline-admin__brief,
  .timeline-admin__panel {
    padding: 1.15rem;
    border-radius: 1.4rem;
  }

  .signal-stream {
    padding-left: 1.2rem;
  }

  .timeline-form__actions {
    flex-direction: column;
  }

  .timeline-form__submit,
  .timeline-form__link {
    width: 100%;
  }

  .signal-entry::before {
    left: -1.22rem;
  }

  .space-actions {
    flex-direction: column;
  }

  .space-button {
    width: 100%;
  }

  .space-toast {
    left: 0.75rem;
    right: 0.75rem;
    bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
    max-width: none;
    border-radius: 1rem;
  }

  .system-chip,
  .panel,
  .signal-brief,
  .signal-entry,
  .timeline-admin__brief,
  .timeline-admin__panel,
  .space-copy,
  .space-panel,
  .space-directory {
    backdrop-filter: none;
  }
}

@media (pointer: coarse) {
  .base-body {
    cursor: auto;
  }

  .background-grid {
    animation: none;
  }

  .aux-tile {
    opacity: 1;
    transform: translateY(0);
  }

  .custom-cursor {
    display: none;
  }

  .portal-card:hover,
  .system-core:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .background-grid {
    animation: none;
  }
}
