* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  color: var(--color-ink);
  background: var(--color-void);
  font-family: var(--font-body);
  font-size: var(--font-body-size);
  line-height: var(--line-body);
  letter-spacing: 0;
}

body::selection {
  color: var(--color-void);
  background: var(--color-lime);
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
  text-decoration-color: rgba(189, 216, 117, 0.42);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.24em;
}

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

a:focus-visible,
button:focus-visible {
  outline: 1px solid rgba(218, 241, 126, 0.9);
  outline-offset: 7px;
}

button {
  font: inherit;
}

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

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: var(--font-h1-small);
  line-height: 1.02;
}

h2 {
  max-width: 760px;
  color: var(--color-ink);
  font-size: var(--font-h2-small);
  line-height: 1.22;
}

p {
  max-width: 680px;
  color: var(--color-muted);
}

code {
  font-family: ui-monospace, SFMono-Regular, Consolas, 'Liberation Mono', monospace;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 50;
  padding: 10px 14px;
  color: var(--color-void);
  background: var(--color-ink);
  transform: translateY(-140%);
  transition: transform var(--motion-fade) ease;
}

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

.void-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 74% 42%, rgba(189, 216, 117, 0.075), transparent 30%),
    radial-gradient(circle at 48% 86%, rgba(189, 216, 117, 0.055), transparent 28%),
    radial-gradient(circle at 18% 16%, rgba(243, 242, 235, 0.03), transparent 24%),
    linear-gradient(180deg, rgba(0, 1, 1, 0.96) 0%, rgba(2, 5, 3, 0.9) 48%, #010201 100%),
    var(--color-void);
}

.void-background::before,
.void-background::after {
  position: absolute;
  inset: -12%;
  content: '';
  pointer-events: none;
}

.void-background::before {
  opacity: 0.72;
  background:
    linear-gradient(90deg, rgba(0, 1, 1, 0.9) 0%, transparent 30%, rgba(0, 1, 1, 0.38) 66%, rgba(0, 1, 1, 0.92) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.52), transparent 42%, rgba(0, 0, 0, 0.74));
}

.void-background::after {
  opacity: 0.34;
  background:
    radial-gradient(circle at 64% 44%, rgba(189, 216, 117, 0.052), transparent 20%),
    linear-gradient(116deg, transparent 0%, rgba(189, 216, 117, 0.018) 42%, rgba(243, 242, 235, 0.01) 50%, transparent 68%);
  filter: blur(8px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 26px var(--space-page-x-small);
  pointer-events: none;
}

.brand,
.header-actions,
.desktop-nav,
.menu-toggle {
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(243, 242, 235, 0.78);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(250, 251, 210, 0.92) 0 18%, rgba(193, 228, 58, 0.74) 19% 38%, rgba(189, 216, 117, 0.16) 39% 62%, transparent 63%),
    rgba(189, 216, 117, 0.03);
  box-shadow:
    0 0 22px rgba(189, 216, 117, 0.36),
    inset 0 0 12px rgba(189, 216, 117, 0.18);
}

.brand-mark-halo {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(189, 216, 117, 0.18);
  border-radius: 46% 54% 51% 49% / 48% 44% 56% 52%;
  opacity: 0.7;
}

.brand-mark-core {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fffede;
  box-shadow: 0 0 12px rgba(250, 251, 210, 0.9);
}

.brand-text {
  font-size: 13px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 34px;
}

.desktop-nav a,
.menu-toggle,
.site-menu-panel a {
  color: rgba(243, 242, 235, 0.62);
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
}

.desktop-nav a:hover,
.site-menu-panel a:hover {
  color: var(--color-ink);
}

.menu-toggle {
  border: 1px solid rgba(243, 242, 235, 0.12);
  padding: 11px 14px;
  color: rgba(243, 242, 235, 0.72);
  background: rgba(2, 4, 3, 0.42);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.menu-toggle:hover,
.menu-open .menu-toggle {
  border-color: rgba(189, 216, 117, 0.28);
  color: var(--color-ink);
  background: rgba(189, 216, 117, 0.06);
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 18;
  pointer-events: none;
}

.site-menu-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(0, 1, 1, 0.62);
  transition: opacity 220ms ease;
}

.site-menu-panel {
  position: absolute;
  top: 84px;
  right: var(--space-page-x-small);
  display: grid;
  min-width: min(330px, calc(100vw - 40px));
  gap: 5px;
  border: 1px solid rgba(243, 242, 235, 0.12);
  padding: 18px;
  opacity: 0;
  background: rgba(2, 4, 3, 0.78);
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.42),
    0 0 42px rgba(189, 216, 117, 0.035);
  transform: translateY(-6px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.site-menu-panel a {
  display: flex;
  min-height: 44px;
  align-items: center;
  border-bottom: 1px solid rgba(243, 242, 235, 0.065);
  color: rgba(243, 242, 235, 0.74);
}

.site-menu-panel a:last-child {
  border-bottom: 0;
  color: rgba(189, 216, 117, 0.68);
}

.site-menu-panel a[aria-current='page'] {
  color: var(--color-ink);
}

.menu-open .site-menu {
  pointer-events: auto;
}

.menu-open .site-menu-backdrop {
  opacity: 1;
}

.menu-open .site-menu-panel {
  opacity: 1;
  transform: translateY(0);
}

.site-main {
  position: relative;
  z-index: 2;
  min-height: 100svh;
}

.section-inner {
  width: calc(100% - 40px);
  max-width: var(--size-max-width);
  margin: 0 auto;
}

.section-inner.narrow {
  max-width: var(--size-narrow-width);
}

.home-scene {
  position: relative;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 104px 0 96px;
}

.home-scene-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100svh - 200px);
  align-items: center;
}

.home-atmosphere {
  position: absolute;
  inset: -10%;
  z-index: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  animation: atmosphereFade 1400ms cubic-bezier(0.22, 1, 0.36, 1) 180ms both;
}

.home-atmosphere::before,
.home-atmosphere::after {
  position: absolute;
  content: '';
  pointer-events: none;
}

.home-atmosphere::before {
  inset: 4% -4% 0 22%;
  z-index: 0;
  opacity: 0.92;
  background:
    radial-gradient(ellipse at 64% 42%, rgba(190, 218, 113, 0.18), rgba(104, 132, 68, 0.062) 44%, transparent 70%),
    radial-gradient(ellipse at 42% 66%, rgba(150, 181, 90, 0.1), rgba(85, 112, 58, 0.04) 48%, transparent 74%);
  filter: blur(10px);
  transform: rotate(-5deg);
}

.home-atmosphere::after {
  inset: 8%;
  z-index: 2;
  background:
    radial-gradient(ellipse at 63% 42%, rgba(0, 1, 1, 0) 0%, rgba(0, 1, 1, 0.08) 48%, rgba(0, 1, 1, 0.52) 100%),
    linear-gradient(90deg, rgba(0, 1, 1, 0.62) 0%, rgba(0, 1, 1, 0.02) 42%, rgba(0, 1, 1, 0.48) 100%);
}

.fog-layer {
  position: absolute;
  display: block;
  border-radius: 50%;
  mix-blend-mode: screen;
  pointer-events: none;
  transform-origin: center;
  z-index: 1;
}

.fog-layer-deep {
  right: -12%;
  bottom: 3%;
  width: min(86vw, 1080px);
  height: min(64vw, 780px);
  opacity: 0.54;
  background: radial-gradient(ellipse at 48% 46%, rgba(164, 196, 84, 0.22), rgba(95, 120, 58, 0.085) 46%, rgba(2, 4, 3, 0) 76%);
  filter: blur(14px);
}

.fog-layer-wide {
  right: 2%;
  top: 7%;
  width: min(74vw, 940px);
  height: min(52vw, 620px);
  opacity: 0.46;
  background: radial-gradient(ellipse at 58% 42%, rgba(189, 216, 117, 0.24), rgba(120, 148, 72, 0.075) 48%, rgba(2, 4, 3, 0) 78%);
  filter: blur(24px);
  animation: fogBreath 18000ms ease-in-out infinite;
}

.fog-layer-mid {
  right: 15%;
  top: 27%;
  width: min(38vw, 480px);
  height: min(30vw, 360px);
  opacity: 0.42;
  background: radial-gradient(ellipse at 45% 50%, rgba(218, 241, 126, 0.28), rgba(137, 165, 77, 0.09) 42%, rgba(2, 4, 3, 0) 74%);
  filter: blur(18px);
}

.fog-layer-soft {
  left: 25%;
  bottom: 12%;
  width: min(42vw, 560px);
  height: min(35vw, 430px);
  opacity: 0.26;
  background: radial-gradient(ellipse at 52% 52%, rgba(189, 216, 117, 0.17), rgba(92, 114, 58, 0.055) 52%, rgba(2, 4, 3, 0) 80%);
  filter: blur(20px);
  animation: fogFloat 24000ms ease-in-out infinite;
}

.fog-layer-glow {
  right: 22%;
  top: 38%;
  width: min(20vw, 260px);
  height: min(16vw, 210px);
  opacity: 0.36;
  background: radial-gradient(ellipse at 50% 50%, rgba(229, 246, 143, 0.34), rgba(166, 199, 86, 0.105) 46%, rgba(2, 4, 3, 0) 76%);
  filter: blur(12px);
}

.hero-copy {
  display: grid;
  max-width: 585px;
  gap: 30px;
  transform: translateY(-2vh);
}

.scene-kicker {
  color: rgba(189, 216, 117, 0.46);
  font-size: 13px;
  line-height: 1.4;
}

.hero-copy h1 {
  color: rgba(252, 251, 242, 0.96);
  font-size: 68px;
  text-shadow:
    0 0 28px rgba(243, 242, 235, 0.08),
    0 0 64px rgba(189, 216, 117, 0.035);
}

.hero-line {
  color: rgba(215, 214, 203, 0.74);
  font-family: var(--font-display);
  font-size: 35px;
  line-height: 1.2;
}

.hero-line span {
  display: block;
}

.hero-statements {
  display: grid;
  gap: 8px;
  padding-top: 7px;
}

.hero-statements p {
  color: rgba(243, 242, 235, 0.54);
  font-size: 17px;
  line-height: 1.7;
}

.hero-statements p:nth-child(4) {
  padding-top: 4px;
  color: rgba(243, 242, 235, 0.76);
}

.home-trust {
  max-width: 360px;
  align-self: end;
  color: rgba(243, 242, 235, 0.36);
  font-size: 13px;
  line-height: 1.7;
}

.content-section {
  position: relative;
  padding: 140px 0;
}

.content-section .section-inner {
  display: grid;
  gap: 26px;
}

.content-section p {
  font-size: var(--font-body-small);
}

.answer-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  color: var(--color-ink-soft);
}

.answer-pair span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
}

.text-link {
  width: fit-content;
  color: var(--color-ink);
}

.legal-hero {
  display: flex;
  min-height: 50svh;
  align-items: end;
  padding: 150px 0 58px;
}

.legal-hero-inner {
  display: grid;
  gap: 22px;
}

.eyebrow,
.last-updated,
.legal-toc p {
  color: rgba(243, 242, 235, 0.48);
  font-size: 13px;
  line-height: 1.5;
}

.legal-intro {
  max-width: 660px;
  color: rgba(215, 214, 203, 0.82);
  font-size: 19px;
  line-height: 1.65;
}

.legal-layout {
  display: grid;
  gap: 44px;
  padding-bottom: 132px;
}

.legal-layout.single-column {
  max-width: 820px;
}

.legal-layout > .last-updated,
.legal-layout > .legal-toc,
.legal-layout > .legal-copy {
  min-width: 0;
}

.legal-toc {
  border-top: 1px solid rgba(243, 242, 235, 0.14);
  padding-top: 20px;
}

.legal-toc ol {
  display: grid;
  gap: 10px 24px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.legal-toc a {
  color: rgba(243, 242, 235, 0.58);
  font-size: 13.5px;
  line-height: 1.5;
  text-decoration: none;
}

.legal-toc a:hover {
  color: var(--color-ink);
}

.legal-copy {
  display: grid;
  gap: 54px;
}

.legal-block {
  display: grid;
  gap: 18px;
  scroll-margin-top: 92px;
}

.legal-block h2 {
  max-width: 760px;
  font-size: 28px;
  line-height: 1.22;
}

.legal-block h3 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
}

.legal-copy p,
.legal-copy li {
  max-width: 760px;
  color: rgba(215, 214, 203, 0.74);
  font-size: 16px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.legal-copy ul {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin: 0;
  padding-left: 22px;
}

.legal-copy strong,
.legal-copy code {
  color: rgba(243, 242, 235, 0.9);
}

.legal-copy code {
  border: 1px solid rgba(243, 242, 235, 0.12);
  padding: 2px 6px;
  background: rgba(243, 242, 235, 0.04);
  font-size: 0.9em;
}

.instruction-path {
  border-left: 1px solid rgba(189, 216, 117, 0.32);
  padding: 10px 0 10px 18px;
}

.faq-list {
  gap: 26px;
}

.faq-item {
  display: grid;
  gap: 8px;
  border-top: 1px solid rgba(243, 242, 235, 0.1);
  padding-top: 20px;
}

.site-footer {
  position: relative;
  z-index: 4;
  padding: 34px var(--space-page-x-small) 42px;
  border-top: 1px solid rgba(243, 242, 235, var(--border-opacity-quiet));
  background: rgba(1, 2, 1, 0.58);
}

.home-page .site-footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 0;
  padding-top: 18px;
  padding-bottom: 24px;
  background: linear-gradient(180deg, transparent, rgba(1, 2, 1, 0.62));
}

.footer-links {
  display: flex;
  width: min(100%, var(--size-max-width));
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 11px 21px;
}

.footer-links a {
  min-width: 0;
  color: rgba(243, 242, 235, 0.5);
  font-size: 13px;
  line-height: 1.5;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.home-page .footer-links a {
  color: rgba(243, 242, 235, 0.44);
}

.footer-links a:hover,
.footer-links a[aria-current='page'] {
  color: var(--color-ink);
}

.reveal {
  opacity: 1;
  transform: none;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready.page-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .home-page .hero-copy.reveal {
  opacity: 1;
  transform: translateY(-2vh);
  transition: none;
}

.motion-ready.page-ready .home-page .hero-copy.reveal.is-visible {
  transform: translateY(-2vh);
}

.motion-ready .home-page .hero-copy > .scene-kicker,
.motion-ready .home-page .hero-copy > h1,
.motion-ready .home-page .hero-line span,
.motion-ready .home-page .hero-statements p {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(16px);
  will-change: opacity, filter, transform;
}

.motion-ready.page-ready .home-page .hero-copy.is-visible > .scene-kicker,
.motion-ready.page-ready .home-page .hero-copy.is-visible > h1,
.motion-ready.page-ready .home-page .hero-copy.is-visible .hero-line span,
.motion-ready.page-ready .home-page .hero-copy.is-visible .hero-statements p {
  animation: heroTextIn 1360ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.motion-ready.page-ready .home-page .hero-copy.is-visible > .scene-kicker {
  animation-delay: 140ms;
}

.motion-ready.page-ready .home-page .hero-copy.is-visible > h1 {
  animation-delay: 560ms;
}

.motion-ready.page-ready .home-page .hero-copy.is-visible .hero-line span:nth-child(1) {
  animation-delay: 1020ms;
}

.motion-ready.page-ready .home-page .hero-copy.is-visible .hero-line span:nth-child(2) {
  animation-delay: 1260ms;
}

.motion-ready.page-ready .home-page .hero-copy.is-visible .hero-statements p:nth-child(1) {
  animation-delay: 1700ms;
}

.motion-ready.page-ready .home-page .hero-copy.is-visible .hero-statements p:nth-child(2) {
  animation-delay: 1930ms;
}

.motion-ready.page-ready .home-page .hero-copy.is-visible .hero-statements p:nth-child(3) {
  animation-delay: 2160ms;
}

.motion-ready.page-ready .home-page .hero-copy.is-visible .hero-statements p:nth-child(4) {
  animation-delay: 2450ms;
}

.motion-ready .home-page .home-trust.reveal {
  transition-delay: 3100ms;
}

@keyframes heroTextIn {
  0% {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(16px);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes atmosphereFade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fogBreath {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(0.99);
  }

  50% {
    opacity: 0.54;
    transform: scale(1.025) translate3d(-1.5%, 0.8%, 0);
  }
}

@keyframes fogFloat {
  0%,
  100% {
    opacity: 0.22;
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    opacity: 0.32;
    transform: translate3d(2%, -1%, 0) scale(1.02);
  }
}

.living-path-shell {
  --path-scroll-drift: 0px;
  --path-scroll-tilt: 0deg;
  position: fixed;
  inset: -4vh -6vw -4vh -5vw;
  z-index: 1;
  display: block;
  overflow: visible;
  pointer-events: none;
  opacity: 0.95;
}

.legal-page .living-path-shell {
  opacity: 0.08;
}

.living-path {
  width: 100%;
  height: 100%;
  overflow: visible;
  transform: translate3d(6vw, var(--path-scroll-drift), 0) rotate(var(--path-scroll-tilt)) scale(1.04);
  transform-origin: 70% 44%;
}

.legal-page .living-path {
  transform: translate3d(42vw, calc(var(--path-scroll-drift) - 2vh), 0) rotate(var(--path-scroll-tilt)) scale(1.08);
}

.world-field {
  transform-origin: 70% 44%;
}

.world-haze {
  fill: url('#void-lime-haze');
  opacity: 0.62;
}

.fog-veil {
  fill: rgba(189, 216, 117, 0.034);
  opacity: 0.52;
}

.star-field circle {
  fill: rgba(218, 241, 126, 0.82);
  opacity: 0.2;
}

.memory-threads path,
.root-branches path,
.path-aura,
.active-glow,
.active-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.memory-threads path {
  stroke: url('#memory-path-gradient');
  stroke-width: 0.8;
  opacity: 0.13;
}

.memory-threads path:nth-child(2n) {
  opacity: 0.09;
}

.memory-threads path:nth-child(3n) {
  opacity: 0.06;
}

.root-branches path {
  stroke: rgba(209, 239, 112, 0.34);
  stroke-width: 0.82;
  opacity: 0.42;
}

.root-branches path:nth-child(4),
.root-branches path:nth-child(5) {
  opacity: 0.24;
}

.root-branches path:nth-child(2n) {
  stroke-width: 0.68;
}

.path-aura {
  stroke: rgba(189, 216, 117, 0.05);
  stroke-width: 18;
  filter: url('#path-glow');
  opacity: 0.3;
  animation: pathReveal var(--motion-path-reveal) cubic-bezier(0.22, 1, 0.36, 1) both;
}

.active-glow {
  stroke: rgba(218, 241, 126, 0.26);
  stroke-width: 3.8;
  filter: url('#path-glow');
  animation: pathReveal var(--motion-path-reveal) cubic-bezier(0.22, 1, 0.36, 1) both;
}

.active-line {
  stroke: url('#active-path-gradient');
  stroke-width: 1.55;
  animation: pathReveal var(--motion-path-reveal) cubic-bezier(0.22, 1, 0.36, 1) both;
}

.today-node {
  filter: url('#today-soft-glow');
  transform-box: fill-box;
  transform-origin: center;
  animation: todayBreathe 8200ms ease-in-out infinite;
}

.today-rings,
.today-halo,
.today-middle {
  transform-box: fill-box;
  transform-origin: center;
}

.today-rings {
  opacity: 0.46;
  animation: todayRingPulse 9800ms ease-in-out infinite;
}

.today-rings path {
  fill: none;
  stroke: rgba(218, 241, 126, 0.18);
  stroke-width: 1;
}

.today-rings path:nth-child(2) {
  stroke: rgba(218, 241, 126, 0.13);
}

.today-rings path:nth-child(3) {
  stroke: rgba(218, 241, 126, 0.09);
}

.today-halo {
  fill: rgba(189, 216, 117, 0.12);
  stroke: rgba(218, 241, 126, 0.16);
  stroke-width: 1;
  animation: todayHaloPulse 11800ms ease-in-out infinite;
}

.today-middle {
  fill: rgba(188, 220, 83, 0.24);
  stroke: rgba(246, 249, 210, 0.2);
  stroke-width: 0.8;
}

.today-bloom {
  fill: url('#today-core-gradient');
  opacity: 0.94;
}

.today-core {
  fill: #fbfad6;
  filter: drop-shadow(0 0 9px rgba(246, 249, 210, 0.72));
}

.today-label {
  fill: rgba(243, 242, 235, 0.48);
  font-family: var(--font-body);
  font-size: 17px;
  letter-spacing: 0.3em;
  opacity: 0.54;
}

@keyframes pathReveal {
  from {
    opacity: 0;
    stroke-dasharray: 1 1500;
    stroke-dashoffset: 780;
  }

  to {
    opacity: 1;
    stroke-dasharray: 1500 1500;
    stroke-dashoffset: 0;
  }
}

@keyframes todayBreathe {
  0%,
  100% {
    opacity: 0.92;
  }

  50% {
    opacity: 1;
  }
}

@keyframes todayHaloPulse {
  0%,
  100% {
    opacity: 0.46;
    transform: scale(1);
  }

  50% {
    opacity: 0.78;
    transform: scale(1.07) rotate(-1deg);
  }
}

@keyframes todayRingPulse {
  0%,
  100% {
    opacity: 0.34;
    transform: scale(0.985);
  }

  50% {
    opacity: 0.58;
    transform: scale(1.035);
  }
}

@media (max-width: 759px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 27px;
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 22px 20px;
  }

  .header-actions {
    position: static;
    justify-content: flex-end;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 26px;
    height: 26px;
  }

  .brand-text {
    font-size: 11px;
    letter-spacing: 0.24em;
  }

  .menu-toggle {
    position: static;
    padding: 10px 12px;
    font-size: 12px;
    pointer-events: auto;
  }

  .site-menu-panel {
    top: 76px;
    right: 20px;
    left: 20px;
    min-width: 0;
  }

  .home-scene {
    min-height: 100svh;
    align-items: start;
    padding: 154px 0 124px;
  }

  .home-scene-inner {
    min-height: auto;
  }

  .home-atmosphere {
    inset: -8% -22% -12% -16%;
  }

  .home-atmosphere::before {
    inset: 14% -34% 2% 12%;
    opacity: 1;
    filter: blur(8px);
    transform: rotate(-8deg);
  }

  .home-atmosphere::after {
    background:
      radial-gradient(ellipse at 66% 44%, rgba(0, 1, 1, 0) 0%, rgba(0, 1, 1, 0.06) 48%, rgba(0, 1, 1, 0.48) 100%),
      linear-gradient(90deg, rgba(0, 1, 1, 0.5) 0%, rgba(0, 1, 1, 0.01) 44%, rgba(0, 1, 1, 0.5) 100%);
  }

  .fog-layer-deep {
    right: -46%;
    bottom: 2%;
    width: 122vw;
    height: 70vh;
    opacity: 0.58;
  }

  .fog-layer-wide {
    right: -28%;
    top: 19%;
    width: 96vw;
    height: 48vh;
    opacity: 0.5;
  }

  .fog-layer-mid {
    right: 0;
    top: 33%;
    width: 54vw;
    height: 28vh;
    opacity: 0.46;
  }

  .fog-layer-soft {
    left: 8%;
    bottom: 9%;
    width: 78vw;
    height: 34vh;
    opacity: 0.3;
  }

  .fog-layer-glow {
    right: 12%;
    top: 40%;
    width: 34vw;
    height: 18vh;
    opacity: 0.42;
  }

  .hero-copy {
    max-width: 330px;
    gap: 22px;
    transform: none;
  }

  .motion-ready .home-page .hero-copy.reveal,
  .motion-ready.page-ready .home-page .hero-copy.reveal.is-visible {
    transform: none;
  }

  .hero-copy h1 {
    font-size: 52px;
  }

  .hero-line {
    max-width: 318px;
    font-size: 29px;
  }

  .hero-statements {
    gap: 4px;
  }

  .hero-statements p {
    font-size: 15px;
  }

  .home-trust {
    display: none;
  }

  .home-page .site-footer {
    max-height: 118px;
    padding-bottom: 18px;
  }

  .home-page .footer-links {
    gap: 7px 14px;
  }

  .home-page .footer-links a {
    font-size: 11px;
    line-height: 1.35;
  }

  .legal-hero {
    min-height: 48svh;
    padding: 128px 0 46px;
  }

  .legal-hero-inner,
  .legal-layout,
  .legal-layout.single-column {
    max-width: 330px;
    margin-left: var(--space-page-x-small);
    margin-right: auto;
  }

  .legal-intro {
    font-size: 17px;
  }

  .legal-layout {
    gap: 34px;
    padding-bottom: 96px;
  }

  .legal-copy {
    gap: 42px;
  }

  .legal-block h2 {
    font-size: 25px;
  }

  .legal-copy p,
  .legal-copy li {
    font-size: 15.5px;
    line-height: 1.72;
  }

  .living-path-shell {
    inset: -4vh -76vw -8vh -64vw;
    opacity: 0.72;
  }

  .home-page .living-path-shell {
    inset: -2vh -20vw -10vh -100vw;
    opacity: 0.84;
  }

  .legal-page .living-path-shell {
    opacity: 0.06;
  }

  .living-path,
  .legal-page .living-path {
    transform: translate3d(8vw, calc(var(--path-scroll-drift) + 2vh), 0) rotate(var(--path-scroll-tilt)) scale(1);
  }

  .legal-page .living-path {
    transform: translate3d(44vw, calc(var(--path-scroll-drift) + 2vh), 0) rotate(var(--path-scroll-tilt)) scale(1);
  }

  .home-page .living-path {
    transform: translate3d(16vw, calc(var(--path-scroll-drift) + 15vh), 0) rotate(var(--path-scroll-tilt)) scale(1);
  }

  .root-branches path {
    opacity: 0.26;
  }

  .root-branches path:nth-child(4),
  .root-branches path:nth-child(5) {
    opacity: 0.14;
  }

  .today-label {
    font-size: 14px;
    opacity: 0.38;
  }
}

@media (min-width: 760px) {
  .site-header {
    padding: 32px var(--space-page-x);
  }

  .section-inner {
    width: calc(100% - 64px);
  }

  h1 {
    font-size: var(--font-h1);
  }

  h2 {
    font-size: var(--font-h2);
  }

  .desktop-nav {
    display: flex;
  }

  .site-menu-panel {
    top: 92px;
    right: var(--space-page-x);
  }

  .hero-copy h1 {
    font-size: 84px;
  }

  .content-section {
    padding: 164px 0;
  }

  .content-section p {
    font-size: var(--font-body-size);
  }

  .legal-layout {
    grid-template-columns: minmax(180px, 260px) minmax(0, 760px);
    column-gap: 64px;
    row-gap: 18px;
    align-items: start;
  }

  .legal-layout > .last-updated {
    grid-column: 2;
    grid-row: 1;
  }

  .legal-layout > .legal-toc {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .legal-layout > .legal-copy {
    grid-column: 2;
    grid-row: 2;
  }

  .legal-layout.single-column {
    grid-template-columns: minmax(0, 820px);
  }

  .legal-layout.single-column > .last-updated,
  .legal-layout.single-column > .legal-copy {
    grid-column: 1;
    grid-row: auto;
  }

  .legal-toc {
    position: sticky;
    top: 100px;
  }

  .legal-toc ol {
    gap: 9px;
  }

  .site-footer {
    padding-right: var(--space-page-x);
    padding-left: var(--space-page-x);
  }
}

@media (min-width: 1180px) {
  .home-scene-inner {
    width: calc(100% - 112px);
  }

  .hero-copy {
    margin-left: 20px;
  }
}

@media (max-height: 720px) and (min-width: 760px) {
  .hero-copy {
    gap: 20px;
  }

  .hero-copy h1 {
    font-size: 70px;
  }

  .hero-line {
    font-size: 30px;
  }

  .home-trust {
    display: none;
  }
}

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

  .skip-link,
  .reveal,
  .home-atmosphere,
  .fog-layer,
  .site-menu-backdrop,
  .site-menu-panel,
  .living-path,
  .world-field,
  .world-haze,
  .fog-veil,
  .star-field circle,
  .memory-threads path,
  .root-branches path,
  .path-aura,
  .active-glow,
  .active-line,
  .today-rings,
  .today-node,
  .today-halo,
  .today-middle,
  .today-bloom,
  .today-label,
  .today-core,
  .home-page .hero-copy > .scene-kicker,
  .home-page .hero-copy > h1,
  .home-page .hero-line span,
  .home-page .hero-statements p,
  .home-page .home-trust,
  .void-background::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .home-atmosphere,
  .motion-ready .reveal,
  .motion-ready .home-page .hero-copy.reveal,
  .motion-ready.page-ready .reveal.is-visible,
  .motion-ready.page-ready .home-page .hero-copy.reveal.is-visible,
  .motion-ready .home-page .hero-copy > .scene-kicker,
  .motion-ready .home-page .hero-copy > h1,
  .motion-ready .home-page .hero-line span,
  .motion-ready .home-page .hero-statements p,
  .motion-ready.page-ready .home-page .hero-copy.is-visible > .scene-kicker,
  .motion-ready.page-ready .home-page .hero-copy.is-visible > h1,
  .motion-ready.page-ready .home-page .hero-copy.is-visible .hero-line span,
  .motion-ready.page-ready .home-page .hero-copy.is-visible .hero-statements p {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .living-path,
  .legal-page .living-path {
    transform: none;
  }

  .active-glow,
  .active-line,
  .path-aura {
    opacity: 1;
    stroke-dasharray: none;
    stroke-dashoffset: 0;
  }

  .path-aura {
    opacity: 0.34;
  }
}
