:root {
  color-scheme: dark;
  --ink: #f7f2ff;
  --muted: rgba(230, 222, 242, 0.62);
  --hairline: rgba(255, 255, 255, 0.14);
  --violet: #9b7cff;
  --cyan: #84f4ff;
  --ember: #ff9f7e;
  --mx: 50vw;
  --my: 50vh;
  --ease-cinema: cubic-bezier(0.22, 1, 0.36, 1);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #020208;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(111, 72, 255, 0.08), transparent 25rem),
    #020208;
  color: var(--ink);
  font-family: "Helvetica Neue", "SF Pro Display", "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.intro-running {
  overflow: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  font: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 5px;
}

#universe {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  contain: strict;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.grain,
.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.grain {
  z-index: 5;
  opacity: 0.065;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.vignette {
  z-index: 4;
  background:
    linear-gradient(180deg, rgba(1, 0, 5, 0.54), transparent 22%, transparent 70%, rgba(1, 0, 5, 0.76)),
    radial-gradient(circle at center, transparent 35%, rgba(1, 0, 5, 0.58) 100%);
}

.prelude {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  contain: layout paint style;
  background: transparent;
  transition:
    opacity 0.9s var(--ease-cinema),
    visibility 0.9s;
}

.prelude.is-resetting {
  transition: none !important;
}

.prelude__veil {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at center, rgba(9, 5, 22, 0.92), rgba(1, 1, 6, 0.99) 58%),
    #010106;
  opacity: 1;
  transition: opacity 0.72s var(--ease-cinema);
}

.prelude__loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 7;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(0.94);
  transition:
    opacity 0.45s ease,
    visibility 0.45s,
    transform 0.7s var(--ease-cinema);
}

body.is-preparing .prelude__loader {
  opacity: 0.72;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.prelude__loader span {
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 1.2rem rgba(159, 133, 255, 0.8);
  animation: signal-pulse 0.85s ease-in-out infinite alternate;
}

.prelude__loader span:nth-child(2) {
  animation-delay: 0.13s;
}

.prelude__loader span:nth-child(3) {
  animation-delay: 0.26s;
}

body.is-preparing .prelude__skip {
  opacity: 0;
  pointer-events: none;
}

body.intro-running .prelude__veil,
body.intro-running .prelude__event,
body.intro-running .prelude__line,
body.intro-running .prelude__mark {
  will-change: opacity, filter, transform;
}

body.intro-running .experience {
  will-change: opacity;
}

body.intro-running .experience .nav,
body.intro-running .experience .hero__index,
body.intro-running .experience .hero__content,
body.intro-running .experience .hero__orbit-note,
body.intro-running .experience .hero__scroll {
  will-change: opacity, filter, transform;
  backface-visibility: hidden;
}

.prelude.phase-collapse .prelude__veil {
  opacity: 0.12;
}

.prelude.phase-burst .prelude__veil {
  opacity: 0;
  transition-duration: 0.18s;
}

.prelude::before {
  content: "";
  position: absolute;
  inset: -40%;
  z-index: 1;
  background:
    conic-gradient(from 120deg, transparent, rgba(112, 79, 255, 0.19), transparent 28%),
    conic-gradient(from 300deg, transparent, rgba(110, 235, 255, 0.15), transparent 22%);
  opacity: 0;
  transform: rotate(-10deg) scale(0.7);
  mix-blend-mode: screen;
  transition: opacity 0.6s ease, transform 2.8s var(--ease-cinema);
}

.prelude.phase-burst::before {
  animation: event-atmosphere 0.78s ease-out both;
}

.prelude.phase-transition::before {
  opacity: 0;
  transform: rotate(52deg) scale(1.55);
}

.prelude.is-finished {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.prelude__event {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  transition:
    opacity 1.35s var(--ease-cinema),
    transform 1.8s var(--ease-cinema);
}

.prelude.phase-transition .prelude__event {
  opacity: 0;
  transform: scale(1.055);
}

.event__core,
.event__flash,
.event__flare,
.event__ring,
.event__ray {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  pointer-events: none;
}

.event__core {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background:
    radial-gradient(circle, #fff 0 2%, #dffcff 4%, rgba(132, 244, 255, 0.72) 9%, rgba(163, 118, 255, 0.3) 30%, transparent 68%);
  opacity: 0;
  filter: blur(0.2px);
  transform: translate(-50%, -50%) scale(0.08);
  box-shadow:
    0 0 2rem rgba(255, 255, 255, 0.72),
    0 0 7rem rgba(132, 244, 255, 0.58),
    0 0 15rem rgba(135, 83, 255, 0.62);
}

.prelude.phase-collapse .event__core {
  animation: event-core-collapse 0.8s var(--ease-cinema) both;
}

.prelude.phase-burst .event__core {
  animation: event-core-detonate 0.74s cubic-bezier(0.12, 0.68, 0.2, 1) both;
}

.event__flash {
  inset: 0;
  left: 0;
  top: 0;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.97) 0, rgba(211, 246, 255, 0.8) 4%, rgba(157, 118, 255, 0.34) 17%, transparent 56%);
  opacity: 0;
  mix-blend-mode: screen;
}

.prelude.phase-burst .event__flash {
  animation: event-flash 0.62s ease-out both;
}

.event__flare {
  width: 150vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(132, 244, 255, 0.32) 29%, #fff 50%, rgba(181, 137, 255, 0.32) 71%, transparent);
  opacity: 0;
  transform: translate(-50%, -50%) scaleX(0.02);
  box-shadow:
    0 0 0.55rem rgba(255, 255, 255, 0.9),
    0 0 2.4rem rgba(132, 244, 255, 0.9);
}

.prelude.phase-burst .event__flare {
  animation: event-flare 0.72s var(--ease-cinema) both;
}

.event__ring {
  width: min(78vmin, 48rem);
  aspect-ratio: 1;
  border: 1px solid rgba(211, 244, 255, 0.92);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.025);
  box-shadow:
    inset 0 0 2rem rgba(164, 120, 255, 0.32),
    0 0 2rem rgba(132, 244, 255, 0.34);
}

.prelude.phase-burst .event__ring--one {
  animation: event-ring 0.78s 0.01s cubic-bezier(0.1, 0.58, 0.18, 1) both;
}

.prelude.phase-burst .event__ring--two {
  animation: event-ring 0.88s 0.06s cubic-bezier(0.1, 0.58, 0.18, 1) both;
}

.prelude.phase-burst .event__ring--three {
  animation: event-ring 0.96s 0.12s cubic-bezier(0.1, 0.58, 0.18, 1) both;
}

.event__ray {
  width: min(78vw, 72rem);
  height: 1px;
  background: linear-gradient(90deg, transparent 2%, rgba(139, 239, 255, 0.1) 28%, rgba(255, 255, 255, 0.88) 50%, rgba(179, 130, 255, 0.1) 72%, transparent 98%);
  opacity: 0;
  transform-origin: center;
  filter: blur(0.2px);
}

.event__ray--one {
  --ray-angle: 18deg;
  transform: translate(-50%, -50%) rotate(var(--ray-angle)) scaleX(0.04);
}

.event__ray--two {
  --ray-angle: 71deg;
  transform: translate(-50%, -50%) rotate(var(--ray-angle)) scaleX(0.04);
}

.event__ray--three {
  --ray-angle: 132deg;
  transform: translate(-50%, -50%) rotate(var(--ray-angle)) scaleX(0.04);
}

.event__ray--four {
  --ray-angle: 164deg;
  transform: translate(-50%, -50%) rotate(var(--ray-angle)) scaleX(0.04);
}

.prelude.phase-burst .event__ray {
  animation: event-ray 0.78s 0.03s ease-out both;
}

.prelude__signal {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 11rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  opacity: 0;
  transform: translate(-50%, -50%);
}

.prelude.is-playing .prelude__signal {
  animation:
    signal-in 0.9s 0.1s ease forwards,
    signal-out 0.48s 1.13s ease forwards;
}

.prelude__signal span {
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 1.2rem rgba(159, 133, 255, 0.8);
  animation: signal-pulse 0.85s ease-in-out infinite alternate;
}

.prelude__signal span:nth-child(2) {
  animation-delay: 0.13s;
}

.prelude__signal span:nth-child(3) {
  animation-delay: 0.26s;
}

.prelude__line {
  position: absolute;
  z-index: 3;
  margin: 0;
  color: rgba(247, 242, 255, 0.82);
  font-size: clamp(0.82rem, 1vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0;
}

.prelude.is-playing .prelude__line--one {
  animation:
    line-reveal 1.05s 1.82s var(--ease-cinema) forwards,
    line-leave 0.62s 3.48s var(--ease-cinema) forwards;
}

.prelude.is-playing .prelude__line--two {
  animation:
    line-reveal 1.05s 4.38s var(--ease-cinema) forwards,
    line-leave 0.62s 6.05s var(--ease-cinema) forwards;
}

.prelude__mark {
  position: absolute;
  z-index: 4;
  display: inline-grid;
  place-items: center;
  min-height: 1.2em;
  font-family: "Avenir Next", "Helvetica Neue", "SF Pro Display", "Segoe UI", sans-serif;
  font-size: clamp(1.55rem, 3.1vw, 2.8rem);
  font-weight: 720;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  isolation: isolate;
  opacity: 1;
  transform: translateZ(0);
}

.prelude__mark::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  width: 128%;
  height: 280%;
  background:
    radial-gradient(ellipse at center, rgba(132, 244, 255, 0.13), transparent 42%),
    radial-gradient(ellipse at 58% 50%, rgba(155, 124, 255, 0.17), transparent 62%);
  opacity: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: opacity 0.72s ease;
}

.prelude__identity {
  position: relative;
  display: block;
  width: 8.2em;
  height: 1em;
  isolation: isolate;
  opacity: 0;
  filter: blur(14px);
  transform: scale(1.08);
  transition:
    opacity 0.9s var(--ease-cinema),
    filter 0.9s var(--ease-cinema),
    transform 1.04s var(--ease-cinema);
  will-change: opacity, filter, transform;
}

.prelude__word {
  position: absolute;
  top: 50%;
  display: inline-block;
  letter-spacing: 0.29em;
  background-size: 190% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 1.6rem rgba(187, 157, 255, 0.11);
}

.prelude__word--hey {
  right: calc(50% + 0.34em);
  transform: translateY(-50%);
  background-image: linear-gradient(105deg, #ffffff 8%, #eeeaff 52%, #b99cff 100%);
}

.prelude__word--nova {
  left: calc(50% + 0.34em);
  transform: translateY(-50%);
  background-image: linear-gradient(105deg, #bb9cff 0%, #8ff5ff 58%, #ffffff 100%);
}

.prelude.phase-identity .prelude__identity {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

.prelude.phase-identity .prelude__mark::before {
  opacity: 0.78;
}

.prelude.phase-identity .prelude__word {
  animation: wordmark-spectrum 1.55s var(--ease-cinema) both;
}

.prelude.phase-burst .prelude__mark::before {
  opacity: 0;
}

.prelude.phase-burst .prelude__word--hey {
  animation: wordmark-split-left 0.92s var(--ease-cinema) both;
}

.prelude.phase-burst .prelude__word--nova {
  animation: wordmark-split-right 0.92s var(--ease-cinema) both;
}

.prelude.phase-transition .prelude__mark {
  opacity: 0;
  visibility: hidden;
  transition-duration: 0.42s;
}

.prelude__skip {
  position: absolute;
  z-index: 5;
  right: max(1.35rem, env(safe-area-inset-right));
  bottom: max(1.35rem, env(safe-area-inset-bottom));
  padding: 0.55rem 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  background: transparent;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.prelude__skip:hover {
  color: white;
  border-color: white;
}

.experience {
  position: relative;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.45s var(--ease-cinema);
}

.experience.is-arriving,
.experience.is-live {
  opacity: 1;
  pointer-events: auto;
}

.experience.is-prewarming {
  opacity: 0.002;
  pointer-events: none;
  transition: none;
}

.experience.is-prewarming .nav,
.experience.is-prewarming .hero__index,
.experience.is-prewarming .hero__content,
.experience.is-prewarming .hero__orbit-note,
.experience.is-prewarming .hero__scroll {
  opacity: 0.002;
  filter: none;
  transform: translate3d(0, 0, 0);
  transition: none;
}

.experience .nav,
.experience .hero__index,
.experience .hero__content,
.experience .hero__orbit-note,
.experience .hero__scroll {
  opacity: 0;
  transition:
    opacity 1.15s var(--ease-cinema),
    transform 1.3s var(--ease-cinema),
    filter 1.25s var(--ease-cinema);
}

.experience .nav {
  transform: translateY(-1.2rem);
}

.experience .hero__index,
.experience .hero__content,
.experience .hero__orbit-note,
.experience .hero__scroll {
  filter: blur(7px);
  transform: translateY(1.7rem);
}

.experience.is-arriving .nav,
.experience.is-live .nav {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.experience.is-arriving .hero__index,
.experience.is-live .hero__index {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition-delay: 0.38s;
}

.experience.is-arriving .hero__content,
.experience.is-live .hero__content {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition-delay: 0.48s;
}

.experience.is-arriving .hero__orbit-note,
.experience.is-arriving .hero__scroll,
.experience.is-live .hero__orbit-note,
.experience.is-live .hero__scroll {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition-delay: 0.7s;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 6.4rem;
  display: grid;
  grid-template-columns: minmax(10rem, 0.82fr) auto minmax(21rem, 1fr);
  align-items: center;
  gap: 2rem;
  padding: 0 clamp(1.3rem, 4vw, 4.5rem);
  border-bottom: 1px solid transparent;
  transition:
    height 0.5s var(--ease-cinema),
    background 0.4s ease,
    border-color 0.4s ease,
    backdrop-filter 0.4s ease;
}

.nav.is-scrolled {
  height: 4.7rem;
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(2, 1, 9, 0.66);
  backdrop-filter: blur(22px) saturate(140%);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
}

.brand__eclipse {
  position: relative;
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  transform: rotate(-24deg);
}

.brand__eclipse::before,
.brand__eclipse::after {
  content: "";
  position: absolute;
  inset: 0.34rem -0.24rem;
  border: 1px solid rgba(140, 238, 255, 0.65);
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
}

.brand__eclipse::after {
  inset: -0.12rem 0.58rem;
  border-color: rgba(181, 139, 255, 0.78);
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.brand__eclipse i {
  position: absolute;
  top: -0.1rem;
  left: 0.48rem;
  width: 0.18rem;
  height: 0.18rem;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 0.75rem var(--cyan);
}

.brand__name {
  display: inline-flex;
  align-items: center;
  font-family: "Avenir Next", "Helvetica Neue", "SF Pro Display", "Segoe UI", sans-serif;
  font-size: 0.8rem;
  font-weight: 720;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand__word {
  display: inline-block;
  letter-spacing: 0.22em;
}

.brand__word--hey {
  margin-right: -0.12em;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 0 1rem rgba(255, 255, 255, 0.08);
}

.brand__word--nova {
  margin-right: -0.22em;
  background: linear-gradient(105deg, #c0a4ff 4%, #88f3ff 62%, #f4ffff 100%);
  background-size: 175% 100%;
  background-position: 20% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: #aeeeff;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 1.1rem rgba(132, 244, 255, 0.1);
  animation: brand-spectrum 5.5s ease-in-out infinite alternate;
}

.brand__dot {
  position: relative;
  top: -0.015em;
  display: inline-grid;
  place-items: center;
  width: 0.62em;
  margin: 0 0.04em 0 -0.06em;
  color: #f6ffff;
  font-size: 1.23em;
  font-weight: 430;
  line-height: 0.72;
  text-shadow:
    0 0 0.18rem rgba(255, 255, 255, 0.92),
    0 0 0.65rem rgba(132, 244, 255, 0.85),
    0 0 1rem rgba(155, 124, 255, 0.58);
  animation: brand-dot-breathe 3.6s ease-in-out infinite;
  transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.5s var(--ease-cinema);
}

.brand:hover .brand__dot {
  color: white;
  text-shadow:
    0 0 0.22rem white,
    0 0 0.9rem var(--cyan),
    0 0 1.5rem var(--violet);
  transform: scale(1.22);
}

.nav__links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.1vw, 2.7rem);
}

.nav__links a {
  position: relative;
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 570;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0.1rem;
  height: 1px;
  background: var(--cyan);
  transition: right 0.35s var(--ease-cinema);
}

.nav__links a:hover {
  color: white;
}

.nav__links a:hover::after {
  right: 0;
}

.nav__tools {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.82rem;
}

.sound-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.4rem;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.sound-toggle__bars {
  height: 0.72rem;
  display: flex;
  align-items: center;
  gap: 0.13rem;
}

.sound-toggle__bars i {
  width: 1px;
  height: 30%;
  background: currentColor;
  transition: height 0.25s ease;
}

.sound-toggle[aria-pressed="true"] .sound-toggle__bars i {
  animation: audio-bar 0.65s ease-in-out infinite alternate;
}

.sound-toggle[aria-pressed="true"] .sound-toggle__bars i:nth-child(2) {
  animation-delay: 0.2s;
}

.sound-toggle[aria-pressed="true"] .sound-toggle__bars i:nth-child(3) {
  animation-delay: 0.4s;
}

.nav__login {
  position: relative;
  padding: 0.75rem 0.42rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.65rem;
  font-weight: 640;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.nav__login::after {
  content: "";
  position: absolute;
  left: 0.42rem;
  right: 100%;
  bottom: 0.47rem;
  height: 1px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  transition: right 0.35s var(--ease-cinema);
}

.nav__login:hover {
  color: white;
}

.nav__login:hover::after {
  right: 0.42rem;
}

.nav__signup {
  min-height: 2.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.76rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background:
    linear-gradient(110deg, rgba(177, 145, 255, 0.16), rgba(132, 244, 255, 0.09)),
    rgba(255, 255, 255, 0.035);
  font-size: 0.66rem;
  font-weight: 620;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s var(--ease-cinema);
}

.nav__signup:hover {
  border-color: rgba(255, 255, 255, 0.78);
  background: white;
  color: #06030f;
  transform: translateY(-2px);
}

.nav__menu-toggle {
  position: relative;
  width: 2.65rem;
  height: 2.65rem;
  display: none;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
}

.nav__menu-toggle span {
  position: absolute;
  width: 0.92rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.86);
  transition: transform 0.4s var(--ease-cinema), top 0.4s var(--ease-cinema);
}

.nav__menu-toggle span:first-child {
  top: 1.08rem;
}

.nav__menu-toggle span:last-child {
  top: 1.48rem;
}

.nav__menu-toggle[aria-expanded="true"] span:first-child {
  top: 1.3rem;
  transform: rotate(45deg);
}

.nav__menu-toggle[aria-expanded="true"] span:last-child {
  top: 1.3rem;
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 8.5rem clamp(1.3rem, 7vw, 8rem) 5rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 2, 8, 0.87) 0%, rgba(2, 2, 8, 0.49) 42%, transparent 66%),
    linear-gradient(180deg, transparent 62%, #03020a 100%);
  pointer-events: none;
}

.hero__index {
  position: absolute;
  top: 8.5rem;
  left: clamp(1.3rem, 7vw, 8rem);
  right: clamp(1.3rem, 7vw, 8rem);
  display: flex;
  justify-content: flex-start;
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(68rem, 82vw);
  padding-top: 2rem;
}

.eyebrow {
  margin: 0 0 1.3rem;
  color: var(--cyan);
  font-size: 0.67rem;
  font-weight: 650;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(4.2rem, 10.7vw, 10.8rem);
  font-weight: 500;
  line-height: 0.79;
  letter-spacing: -0.07em;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 span {
  color: rgba(249, 246, 255, 0.97);
}

.hero h1 em {
  margin-left: 0.6em;
  padding-bottom: 0.12em;
  background: linear-gradient(93deg, #b89bff 5%, #84f4ff 48%, #fff 73%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
  text-shadow: 0 0 3.8rem rgba(126, 96, 255, 0.18);
}

.hero__lede {
  width: min(31rem, 78vw);
  margin: 2.4rem 0 0 0.8rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 400;
  line-height: 1.62;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  margin: 2.25rem 0 0 0.8rem;
}

.magnetic-button {
  min-width: 13.5rem;
  height: 3.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(14px);
  font-size: 0.69rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.4s var(--ease-cinema);
}

.magnetic-button > i {
  width: 1.85rem;
  height: 1.85rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: #07040f;
  font-size: 0.8rem;
  font-style: normal;
}

.action-glyph__arrow {
  display: inline-block;
}

.action-glyph__icon {
  width: 1.05rem;
  height: 1.05rem;
  display: none;
}

.magnetic-button--investors-mobile {
  display: none;
}

.magnetic-button--voice {
  min-width: 12.5rem;
  justify-content: center;
  gap: 0.9rem;
  border-color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.98), rgba(222, 250, 255, 0.94) 62%, rgba(223, 210, 255, 0.96));
  color: #07040f;
  box-shadow:
    0 0.8rem 3.4rem rgba(132, 244, 255, 0.14),
    0 0 2.8rem rgba(155, 124, 255, 0.12);
}

.magnetic-button--voice:hover {
  border-color: white;
  background: white;
  box-shadow:
    0 1.1rem 4rem rgba(132, 244, 255, 0.22),
    0 0 3.4rem rgba(155, 124, 255, 0.18);
}

.voice-pulse {
  height: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.17rem;
}

.voice-pulse i {
  width: 1px;
  height: 42%;
  display: block;
  background: currentColor;
  border-radius: 1px;
  animation: voice-pulse 0.72s ease-in-out infinite alternate;
}

.voice-pulse i:nth-child(2) {
  height: 92%;
  animation-delay: 0.18s;
}

.voice-pulse i:nth-child(3) {
  height: 62%;
  animation-delay: 0.36s;
}

.magnetic-button:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.text-button {
  padding: 0.65rem 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.text-button:hover {
  color: white;
  border-color: white;
}

.hero__orbit-note {
  position: absolute;
  z-index: 3;
  right: clamp(1.3rem, 4.5vw, 5rem);
  top: 47%;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}

.orbit-note__line {
  width: 3rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan));
}

.hero__scroll {
  position: absolute;
  z-index: 3;
  bottom: 1.8rem;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  transform: translateX(-50%);
}

.hero__scroll i {
  width: 1px;
  height: 2.6rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), transparent);
  animation: scroll-line 1.7s ease-in-out infinite;
}

.section-kicker {
  margin: 0 0 1.6rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.22em;
}

.language-toggle {
  width: 2.15rem;
  height: 2.15rem;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.56rem;
  font-weight: 670;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.3s var(--ease-cinema);
}

.language-toggle:hover {
  border-color: rgba(255, 255, 255, 0.66);
  color: white;
  transform: rotate(9deg);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(2.8rem);
  transition:
    opacity 1s var(--ease-cinema),
    transform 1s var(--ease-cinema);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.manifesto {
  position: relative;
  min-height: auto;
  padding:
    clamp(4rem, 5vw, 5.5rem)
    clamp(1.3rem, 7vw, 8rem)
    clamp(6.5rem, 8vw, 8rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 54%, rgba(100, 66, 255, 0.17), transparent 31rem),
    linear-gradient(180deg, #03020a 0%, #080515 55%, #04030b 100%);
}

.manifesto::before {
  content: "";
  position: absolute;
  top: -28rem;
  right: -22rem;
  width: 62rem;
  height: 62rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  box-shadow:
    0 0 0 7rem rgba(255, 255, 255, 0.01),
    0 0 0 15rem rgba(255, 255, 255, 0.008);
}

.manifesto__opening {
  position: relative;
  z-index: 2;
}

.manifesto__stage {
  position: relative;
  z-index: 2;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.92fr);
  align-items: start;
  gap: clamp(2.5rem, 5vw, 6rem);
  margin-top: 0.25rem;
}

.manifesto__copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.manifesto__copy > h2 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3.55rem, 6vw, 7rem);
  font-weight: 470;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.manifesto__copy > h2 span,
.manifesto__copy > h2 em {
  display: block;
}

.manifesto__copy > h2 em {
  margin-left: 0.16em;
  color: rgba(255, 255, 255, 0.29);
  font-family: "Iowan Old Style", "Baskerville", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.manifesto__body {
  max-width: 35rem;
  margin: clamp(1.9rem, 3vw, 2.8rem) 0 0;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(132, 244, 255, 0.44);
  color: rgba(239, 233, 250, 0.6);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.72;
}

.manifesto__principles {
  max-width: 38rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(2rem, 3vw, 3rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.manifesto__principles article {
  min-height: 7.4rem;
  display: grid;
  grid-template-columns: 1fr;
  padding: 1.15rem 1rem 1.15rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.manifesto__principles article:nth-child(even) {
  padding-left: 1.1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.manifesto__principles h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.76rem;
  font-weight: 610;
  letter-spacing: 0.095em;
  line-height: 1.35;
  text-transform: uppercase;
}

.manifesto__principles p {
  margin: 0.55rem 0 0;
  color: rgba(239, 233, 250, 0.43);
  font-size: 0.78rem;
  line-height: 1.55;
}

.constellation {
  position: relative;
  align-self: start;
  justify-self: center;
  width: min(38rem, 100%, 41vw);
  aspect-ratio: 1;
  margin-top: clamp(0.35rem, 1vw, 1rem);
}

.constellation__core,
.constellation__ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.constellation__core {
  z-index: 2;
  width: 4.4rem;
  height: 4.4rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(8, 5, 21, 0.72);
  box-shadow:
    0 0 5rem rgba(128, 92, 255, 0.36),
    inset 0 0 1rem rgba(132, 244, 255, 0.15);
  backdrop-filter: blur(12px);
}

.constellation__core::before,
.constellation__core::after {
  content: "";
  position: absolute;
  inset: -0.55rem 0.45rem;
  border: 1px solid rgba(132, 244, 255, 0.28);
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  animation: core-orbit 7s linear infinite;
}

.constellation__core::after {
  inset: 0.45rem -0.55rem;
  border-color: rgba(180, 142, 255, 0.32);
  border-left-color: transparent;
  border-right-color: transparent;
  animation-direction: reverse;
  animation-duration: 9s;
}

.constellation__core i {
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: white;
  box-shadow:
    0 0 1rem white,
    0 0 3rem var(--violet);
}

.constellation__ring {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.constellation__ring--one {
  width: 52%;
  height: 52%;
  border-left-color: rgba(132, 244, 255, 0.48);
  transform: translate(-50%, -50%) rotate(-17deg) scaleY(0.58);
}

.constellation__ring--two {
  width: 88%;
  height: 88%;
  border-top-color: rgba(155, 124, 255, 0.5);
  transform: translate(-50%, -50%) rotate(24deg) scaleY(0.47);
}

.constellation__label {
  position: absolute;
  display: flex;
  flex-direction: column;
  padding: 0.75rem;
  background: rgba(6, 4, 17, 0.7);
  backdrop-filter: blur(8px);
}

.constellation__label span {
  font-size: 0.78rem;
  font-weight: 570;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.constellation__label--warmth {
  top: 13%;
  right: 8%;
}

.constellation__label--memory {
  top: 24%;
  left: 2%;
}

.constellation__label--agency {
  left: 2%;
  bottom: 22%;
}

.constellation__label--boundaries {
  right: -2%;
  bottom: 8%;
}

.difference {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 8vw, 10rem);
  padding: clamp(6.5rem, 8vw, 8rem) clamp(1.3rem, 8vw, 9rem);
  background:
    linear-gradient(90deg, rgba(71, 42, 140, 0.09), transparent 38%),
    #05030d;
}

.difference::before {
  content: "";
  position: absolute;
  left: clamp(1.3rem, 8vw, 9rem);
  right: clamp(1.3rem, 8vw, 9rem);
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.23), transparent);
}

.difference__intro {
  position: sticky;
  top: 9rem;
  align-self: start;
}

.difference__intro h2 {
  max-width: 10.5ch;
  margin: 0;
  font-size: clamp(3.8rem, 6vw, 7.2rem);
  font-weight: 480;
  line-height: 0.94;
  letter-spacing: -0.065em;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

.difference__intro > p:last-child {
  max-width: 24rem;
  margin: 2.2rem 0 0;
  color: rgba(239, 233, 250, 0.5);
  font-size: 1rem;
  line-height: 1.7;
}

.difference__chapters {
  display: flex;
  flex-direction: column;
}

.chapter {
  min-height: 18rem;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.chapter:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.chapter h3 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 4.2rem);
  font-weight: 480;
  line-height: 1;
  letter-spacing: -0.045em;
}

.chapter p {
  max-width: 31rem;
  margin: 1.6rem 0 0;
  color: rgba(239, 233, 250, 0.49);
  font-size: 0.98rem;
  line-height: 1.75;
}

.safety {
  position: relative;
  min-height: auto;
  padding: clamp(7rem, 8vw, 8rem) clamp(1.3rem, 8vw, 9rem)
    clamp(6rem, 7vw, 7rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(143, 109, 255, 0.2), transparent 30rem),
    linear-gradient(140deg, #f5f0ff 0%, #dcd6ec 56%, #c7bdde 100%);
  color: #0c0913;
}

.safety .section-kicker {
  color: rgba(12, 9, 19, 0.48);
}

.safety__halo {
  position: absolute;
  top: -12rem;
  right: -9rem;
  width: min(57rem, 78vw);
  aspect-ratio: 1;
  border: 1px solid rgba(31, 19, 61, 0.14);
  border-radius: 50%;
}

.safety__halo i {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(31, 19, 61, 0.11);
  border-radius: 50%;
  animation: halo-breathe 7s ease-in-out infinite alternate;
}

.safety__halo i:nth-child(2) {
  inset: 27%;
  animation-delay: -2s;
}

.safety__halo i:nth-child(3) {
  inset: 43%;
  background: rgba(255, 255, 255, 0.44);
  box-shadow:
    0 0 6rem rgba(255, 255, 255, 0.72),
    0 0 12rem rgba(123, 86, 230, 0.25);
  animation-delay: -4s;
}

.safety__header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  color: rgba(12, 9, 19, 0.36);
  font-size: 0.56rem;
  font-weight: 650;
  letter-spacing: 0.18em;
}

.safety h2 {
  position: relative;
  z-index: 2;
  max-width: 12ch;
  margin: 2.4rem 0 0;
  font-size: clamp(4rem, 8.8vw, 9.2rem);
  font-weight: 520;
  line-height: 0.88;
  letter-spacing: -0.07em;
}

.safety h2 span,
.safety h2 em {
  display: block;
}

.safety h2 em {
  margin-left: 0.5em;
  color: #6d4d9d;
  font-family: "Iowan Old Style", "Baskerville", serif;
  font-style: italic;
  font-weight: 400;
}

.safety__lede {
  position: relative;
  z-index: 2;
  max-width: 34rem;
  margin: 2.3rem 0 0 0.8rem;
  color: rgba(12, 9, 19, 0.62);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.67;
}

.safety__principles {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(4.5rem, 7vw, 7rem);
  border-top: 1px solid rgba(12, 9, 19, 0.22);
  border-bottom: 1px solid rgba(12, 9, 19, 0.22);
}

.safety__principles article {
  min-height: 13rem;
  padding: 2rem 2.4rem 2.2rem 0;
}

.safety__principles article + article {
  padding-left: 2.4rem;
  border-left: 1px solid rgba(12, 9, 19, 0.2);
}

.safety__principles h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.15vw, 2.2rem);
  font-weight: 530;
  letter-spacing: -0.035em;
}

.safety__principles p {
  max-width: 22rem;
  margin: 1rem 0 0;
  color: rgba(12, 9, 19, 0.55);
  font-size: 0.9rem;
  line-height: 1.65;
}

.signal-break {
  position: relative;
  min-height: clamp(28rem, 64svh, 42rem);
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(87, 54, 167, 0.19), transparent 34rem),
    #05030d;
}

.signal-break::before,
.signal-break::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(54rem, 75vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.signal-break::after {
  width: min(35rem, 50vw);
  border-color: rgba(132, 244, 255, 0.12);
  box-shadow:
    inset 0 0 5rem rgba(155, 124, 255, 0.07),
    0 0 7rem rgba(132, 244, 255, 0.04);
}

.signal-break__track {
  position: absolute;
  left: 0;
  top: 3rem;
  display: flex;
  align-items: center;
  width: max-content;
  color: rgba(255, 255, 255, 0.22);
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 0.2em;
  animation: marquee 28s linear infinite;
  will-change: transform;
}

.signal-break__set {
  width: max-content;
  min-width: 100vw;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  padding: 0 1rem;
}

.signal-break__set i {
  flex: 0 0 auto;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0.8rem var(--violet);
}

.signal-break__brand {
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.78), #bda3ff 46%, #8ef4ff 78%, rgba(255, 255, 255, 0.78));
  background-size: 180% 100%;
  background-position: 20% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: #aeefff;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 1rem rgba(132, 244, 255, 0.11);
  animation: brand-spectrum 5.5s ease-in-out infinite alternate;
}

.signal-break > p {
  position: relative;
  z-index: 2;
  max-width: 17ch;
  margin: 0;
  text-align: center;
  font-size: clamp(3.2rem, 7vw, 7.6rem);
  font-weight: 480;
  line-height: 0.96;
  letter-spacing: -0.058em;
}

.signal-break > p em {
  display: block;
  color: rgba(255, 255, 255, 0.3);
  font-family: "Iowan Old Style", "Baskerville", serif;
  font-style: italic;
  font-weight: 400;
}

.investors {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: center;
  padding: clamp(7rem, 8vw, 8rem) clamp(1.3rem, 8vw, 9rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 51%, rgba(83, 57, 176, 0.18), transparent 27rem),
    linear-gradient(145deg, #03020a, #0a0619 62%, #03020a);
}

.investors__content {
  position: relative;
  z-index: 3;
  width: min(62rem, 70vw);
}

.investors h2 {
  margin: 0;
  padding-bottom: 0.08em;
  overflow: visible;
  font-size: clamp(4.1rem, 9vw, 9.5rem);
  font-weight: 480;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.investors h2 span,
.investors h2 em {
  display: block;
}

.investors h2 em {
  margin-left: 0.24em;
  margin-bottom: -0.16em;
  padding: 0.015em 0 0.16em 0.035em;
  overflow: visible;
  background: linear-gradient(92deg, #b89bff, #84f4ff 58%, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "Iowan Old Style", "Baskerville", serif;
  font-style: italic;
  font-weight: 400;
}

.investors__content > p:not(.section-kicker) {
  max-width: 31rem;
  margin: 2.8rem 0 0 0.8rem;
  color: rgba(239, 233, 250, 0.55);
  font-size: 1.05rem;
  line-height: 1.72;
}

.investors__cta {
  appearance: none;
  width: min(28rem, 80vw);
  height: 5.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 2.8rem 0 0 0.8rem;
  padding: 0 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--ink);
  backdrop-filter: blur(16px);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s var(--ease-cinema);
}

.investors__cta:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-4px);
}

.investors__cta i {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: #080413;
  font-size: 1rem;
  font-style: normal;
}

.investors__nova {
  position: absolute;
  right: -3vw;
  top: 50%;
  width: min(49rem, 57vw);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translateY(-50%);
  isolation: isolate;
}

.investors__nova::before {
  content: "RELATIONAL FIELD";
  position: absolute;
  left: 50%;
  top: -1.8rem;
  z-index: 4;
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.5rem;
  font-weight: 650;
  letter-spacing: 0.22em;
  white-space: nowrap;
  transform: translateX(-50%);
}

html[lang="ru"] .investors__nova::before {
  content: "ПОЛЕ ОТНОШЕНИЙ";
}

html[lang="hy"] .investors__nova::before {
  content: "ԿԱՊԻ ԴԱՇՏ";
}

.nova__aura,
.nova__pulse,
.nova__orbit,
.nova__beam,
.nova__core {
  position: absolute;
  display: block;
}

.nova__aura {
  inset: 14%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.22) 0 1.5%, transparent 8%),
    radial-gradient(circle, rgba(132, 244, 255, 0.2), rgba(111, 78, 255, 0.1) 32%, transparent 68%);
  filter: blur(0.15rem);
  animation: nova-breathe 4.6s ease-in-out infinite;
}

.nova__pulse {
  inset: 31%;
  border: 1px solid rgba(132, 244, 255, 0.28);
  border-radius: 50%;
  opacity: 0;
  animation: nova-wave 4.2s var(--ease-cinema) infinite;
}

.nova__pulse--two {
  border-color: rgba(171, 133, 255, 0.24);
  animation-delay: 2.1s;
}

.nova__orbit {
  border-radius: 50%;
  transform-origin: center;
}

.nova__orbit--outer {
  inset: 2%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    conic-gradient(
      from 24deg,
      transparent 0 10%,
      rgba(132, 244, 255, 0.58) 11% 11.3%,
      transparent 12% 47%,
      rgba(155, 124, 255, 0.66) 48% 48.35%,
      transparent 49% 82%,
      rgba(255, 255, 255, 0.42) 83% 83.25%,
      transparent 84%
    );
  box-shadow:
    inset 0 0 5rem rgba(132, 244, 255, 0.025),
    0 0 8rem rgba(111, 78, 255, 0.07);
  animation: nova-spin 24s linear infinite;
}

.nova__orbit--middle {
  inset: 18%;
  border: 1px dashed rgba(185, 144, 255, 0.22);
  animation: nova-spin-reverse 17s linear infinite;
}

.nova__orbit--inner {
  inset: 34%;
  border: 1px solid rgba(132, 244, 255, 0.2);
  box-shadow:
    inset 0 0 3rem rgba(132, 244, 255, 0.06),
    0 0 3rem rgba(155, 124, 255, 0.08);
  animation: nova-ring-breathe 3.4s ease-in-out infinite;
}

.nova__orbit i {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.nova__orbit--outer i {
  right: -0.34rem;
  top: 50%;
  width: 0.68rem;
  height: 0.68rem;
  background: #fff;
  box-shadow:
    0 0 1rem #fff,
    0 0 3rem var(--cyan),
    0 0 5rem rgba(132, 244, 255, 0.46);
}

.nova__orbit--middle i {
  left: 8.5%;
  top: 18%;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--violet);
  box-shadow:
    0 0 1rem var(--violet),
    0 0 3rem rgba(155, 124, 255, 0.75);
}

.nova__beam {
  left: 50%;
  top: 50%;
  width: 78%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(132, 244, 255, 0.36), #fff 50%, rgba(155, 124, 255, 0.32), transparent);
  box-shadow: 0 0 1.3rem rgba(132, 244, 255, 0.32);
  transform-origin: center;
  animation: nova-beam-scan 7s ease-in-out infinite;
}

.nova__beam--one {
  transform: translate(-50%, -50%) rotate(18deg);
}

.nova__beam--two {
  opacity: 0.36;
  transform: translate(-50%, -50%) rotate(108deg);
  animation-delay: -3.5s;
}

.nova__core {
  z-index: 2;
  left: 50%;
  top: 50%;
  width: clamp(4rem, 7vw, 6.5rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 43% 38%, #fff 0 4%, #b9f9ff 8%, #8870ff 22%, rgba(30, 11, 72, 0.82) 45%, rgba(3, 2, 11, 0.92) 72%);
  box-shadow:
    0 0 1.5rem rgba(255, 255, 255, 0.34),
    0 0 5rem rgba(132, 244, 255, 0.28),
    0 0 10rem rgba(111, 78, 255, 0.3);
  transform: translate(-50%, -50%);
  animation: nova-core-pulse 3.4s ease-in-out infinite;
}

.nova__core::before,
.nova__core::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.9), transparent);
  transform: translate(-50%, -50%);
}

.nova__core::before {
  width: 1px;
  height: 240%;
}

.nova__core::after {
  width: 240%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.82), transparent);
}

.nova__core i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 28%;
  height: 28%;
  border: 1px solid rgba(255, 255, 255, 0.82);
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow:
    inset 0 0 0.8rem rgba(132, 244, 255, 0.36),
    0 0 1.5rem rgba(132, 244, 255, 0.48);
  animation: nova-diamond 5s linear infinite;
}

.investors__nova::after {
  content: "";
  position: absolute;
  inset: 3%;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.025);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(132, 244, 255, 0.06), transparent 27%),
    radial-gradient(circle at 49% 51%, rgba(111, 78, 255, 0.08), transparent 58%);
  box-shadow:
    inset 0 0 9rem rgba(132, 244, 255, 0.025),
    0 0 12rem rgba(111, 78, 255, 0.08);
  pointer-events: none;
}

.relationship-field__canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  opacity: 0.98;
  mix-blend-mode: screen;
}

.relationship-field__halo,
.relationship-field__ring,
.relationship-field__core,
.relationship-field__node,
.relationship-field__status {
  position: absolute;
  z-index: 2;
  display: block;
  pointer-events: none;
}

.relationship-field__halo {
  left: 50%;
  top: 50%;
  width: 35%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.26) 0 1%, rgba(132, 244, 255, 0.15) 4%, rgba(155, 124, 255, 0.1) 22%, transparent 68%);
  filter: blur(0.2rem);
  transform: translate(-50%, -50%);
  animation: field-halo 4.8s ease-in-out infinite;
}

.relationship-field__ring {
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform-origin: center;
}

.relationship-field__ring--outer {
  width: 86%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    conic-gradient(
      from 18deg,
      transparent 0 8%,
      rgba(132, 244, 255, 0.5) 8.2% 8.45%,
      transparent 8.8% 41%,
      rgba(155, 124, 255, 0.62) 41.2% 41.48%,
      transparent 41.8% 73%,
      rgba(255, 255, 255, 0.36) 73.2% 73.42%,
      transparent 73.8%
    );
  box-shadow:
    inset 0 0 5rem rgba(132, 244, 255, 0.02),
    0 0 8rem rgba(111, 78, 255, 0.055);
  transform: translate(-50%, -50%);
  animation: field-rotate 31s linear infinite;
}

.relationship-field__ring--inner {
  width: 47%;
  aspect-ratio: 1;
  border: 1px dashed rgba(175, 145, 255, 0.25);
  box-shadow:
    inset 0 0 4rem rgba(132, 244, 255, 0.035),
    0 0 4rem rgba(155, 124, 255, 0.07);
  transform: translate(-50%, -50%);
  animation: field-rotate-reverse 19s linear infinite;
}

.relationship-field__core {
  left: 50%;
  top: 50%;
  z-index: 4;
  width: clamp(5.1rem, 8vw, 7.4rem);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 36%, #fff 0 2.5%, #c6fbff 6%, #7967ef 20%, rgba(26, 9, 70, 0.92) 47%, rgba(2, 2, 10, 0.96) 72%);
  box-shadow:
    inset -0.5rem -0.6rem 1.8rem rgba(1, 1, 8, 0.84),
    inset 0.4rem 0.3rem 1.6rem rgba(255, 255, 255, 0.18),
    0 0 1.8rem rgba(255, 255, 255, 0.28),
    0 0 5rem rgba(132, 244, 255, 0.28),
    0 0 9rem rgba(111, 78, 255, 0.3);
  transform: translate(-50%, -50%);
  animation: field-core 4.4s ease-in-out infinite;
}

.relationship-field__core::before,
.relationship-field__core::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0.62;
  transform: translate(-50%, -50%);
}

.relationship-field__core::before {
  width: 250%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(194, 252, 255, 0.76), transparent);
}

.relationship-field__core::after {
  width: 1px;
  height: 250%;
  background: linear-gradient(transparent, rgba(194, 252, 255, 0.68), transparent);
}

.relationship-field__core > i {
  position: absolute;
  inset: 11%;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background:
    conic-gradient(from 45deg, transparent, rgba(132, 244, 255, 0.26), transparent 28%, rgba(155, 124, 255, 0.22), transparent 60%);
  animation: field-rotate 8s linear infinite;
}

.relationship-field__core strong {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Avenir Next", "Helvetica Neue", "SF Pro Display", "Segoe UI", sans-serif;
  font-size: clamp(0.4rem, 0.63vw, 0.56rem);
  font-weight: 720;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

.relationship-field__word {
  letter-spacing: 0.12em;
}

.relationship-field__word--nova {
  margin-right: -0.12em;
  background: linear-gradient(105deg, #bfa3ff, #8cf4ff 68%, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--cyan);
  -webkit-text-fill-color: transparent;
}

.relationship-field__dot {
  margin: 0 0.1em 0 -0.02em;
  color: white;
  font-size: 1.28em;
  font-weight: 430;
  text-shadow:
    0 0 0.25rem white,
    0 0 0.8rem var(--cyan),
    0 0 1.1rem var(--violet);
}

.relationship-field__node {
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(241, 237, 250, 0.56);
  font-size: clamp(0.42rem, 0.58vw, 0.56rem);
  font-weight: 650;
  letter-spacing: 0.17em;
  white-space: nowrap;
  text-transform: uppercase;
  animation: field-node-drift 5.6s ease-in-out infinite;
}

.relationship-field__node > i {
  position: relative;
  width: 0.48rem;
  height: 0.48rem;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow:
    0 0 0.7rem var(--cyan),
    0 0 2rem rgba(132, 244, 255, 0.62);
}

.relationship-field__node > i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.7rem;
  height: 1.7rem;
  border: 1px solid rgba(132, 244, 255, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: field-node-wave 3.4s ease-out infinite;
}

.relationship-field__node--empathy {
  left: 17%;
  top: 24%;
}

.relationship-field__node--memory {
  right: 9%;
  top: 31%;
  animation-delay: -1.4s;
}

.relationship-field__node--agency {
  right: 16%;
  bottom: 19%;
  animation-delay: -2.8s;
}

.relationship-field__node--boundaries {
  left: 10%;
  bottom: 29%;
  animation-delay: -4.2s;
}

.relationship-field__node--memory > i,
.relationship-field__node--boundaries > i {
  background: var(--violet);
  box-shadow:
    0 0 0.7rem var(--violet),
    0 0 2rem rgba(155, 124, 255, 0.66);
}

.relationship-field__node--memory > i::after,
.relationship-field__node--boundaries > i::after {
  border-color: rgba(155, 124, 255, 0.28);
  animation-delay: -1.7s;
}

.relationship-field__status {
  left: 50%;
  bottom: 4.5%;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.45rem;
  font-weight: 650;
  letter-spacing: 0.2em;
  white-space: nowrap;
  transform: translateX(-50%);
}

.relationship-field__status i {
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: #8affc1;
  box-shadow: 0 0 0.8rem rgba(138, 255, 193, 0.82);
  animation: field-status 1.8s ease-in-out infinite;
}

body.modal-open {
  overflow: hidden;
}

.contact-modal {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: clamp(1rem, 3vw, 3rem);
  border: 0;
  background: rgba(2, 1, 8, 0.28);
  color: var(--ink);
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.45s ease;
}

.contact-modal[open] {
  display: grid;
  place-items: center;
}

.contact-modal::backdrop {
  background:
    radial-gradient(circle at 68% 32%, rgba(111, 78, 255, 0.19), transparent 33rem),
    rgba(1, 0, 6, 0.83);
  backdrop-filter: blur(18px) saturate(0.75);
}

.contact-modal.is-open {
  opacity: 1;
}

.contact-modal__frame {
  position: relative;
  width: min(72rem, 100%);
  max-height: calc(100dvh - clamp(2rem, 6vw, 6rem));
  display: grid;
  grid-template-columns: minmax(19rem, 0.82fr) minmax(28rem, 1.18fr);
  gap: clamp(2rem, 5vw, 6rem);
  padding: clamp(2rem, 4.2vw, 4.8rem);
  overflow: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: clamp(1.5rem, 3vw, 2.8rem);
  background:
    linear-gradient(125deg, rgba(16, 10, 35, 0.97), rgba(5, 3, 13, 0.985) 58%),
    #05030d;
  box-shadow:
    0 2rem 8rem rgba(0, 0, 0, 0.68),
    inset 0 1px rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: translateY(1.8rem) scale(0.975);
  transition:
    opacity 0.5s ease 0.05s,
    transform 0.75s var(--ease-cinema) 0.05s;
}

.contact-modal__frame::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet), var(--cyan), transparent);
  opacity: 0.8;
}

.contact-modal.is-open .contact-modal__frame {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.contact-modal__close {
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  z-index: 3;
  width: 3.1rem;
  height: 3.1rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.4s var(--ease-cinema);
}

.contact-modal__close:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.09);
  transform: rotate(7deg);
}

.contact-modal__close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.95rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.82);
}

.contact-modal__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.contact-modal__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.contact-modal__intro {
  position: relative;
  align-self: center;
}

.contact-modal__intro h2 {
  max-width: 8ch;
  margin: 2.2rem 0 0;
  font-size: clamp(3rem, 5vw, 5.7rem);
  font-weight: 480;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.contact-modal__intro h2 span,
.contact-modal__intro h2 em {
  display: block;
}

.contact-modal__intro h2 em {
  padding: 0.02em 0 0.13em;
  background: linear-gradient(92deg, #b89bff, #84f4ff 62%, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "Iowan Old Style", "Baskerville", serif;
  font-style: italic;
  font-weight: 400;
}

.contact-modal__intro > p:not(.section-kicker) {
  max-width: 29rem;
  margin: 2rem 0 0;
  color: rgba(239, 233, 250, 0.52);
  font-size: 0.95rem;
  line-height: 1.72;
}

.contact-modal__signal {
  width: min(20rem, 72%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.7rem;
  margin-top: 3rem;
}

.contact-modal__signal span {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 1rem rgba(132, 244, 255, 0.82);
}

.contact-modal__signal span:last-child {
  background: var(--violet);
  box-shadow: 0 0 1rem rgba(155, 124, 255, 0.82);
}

.contact-modal__signal i {
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), rgba(255, 255, 255, 0.14), var(--violet));
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-self: center;
  gap: 1.15rem;
}

.contact-form__honey {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  color: rgba(246, 241, 255, 0.5);
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0.9rem;
  outline: 0;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.9);
  font: inherit;
  font-size: 0.94rem;
  font-weight: 430;
  letter-spacing: 0;
  text-transform: none;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-form input,
.contact-form select {
  height: 3.6rem;
  padding: 0 1rem;
}

.contact-form textarea {
  min-height: 7.8rem;
  padding: 1rem;
  resize: vertical;
  line-height: 1.55;
}

.contact-form select {
  color-scheme: dark;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(132, 244, 255, 0.62);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 0 0 3px rgba(132, 244, 255, 0.07);
}

.contact-form.was-validated input:invalid,
.contact-form.was-validated select:invalid,
.contact-form.was-validated textarea:invalid {
  border-color: rgba(255, 159, 126, 0.68);
}

.contact-form__consent {
  display: grid !important;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.75rem !important;
  margin-top: 0.15rem;
  color: rgba(239, 233, 250, 0.44) !important;
  font-size: 0.55rem !important;
  line-height: 1.55;
  letter-spacing: 0.08em !important;
  text-transform: none !important;
  cursor: pointer;
}

.contact-form__consent input {
  appearance: none;
  width: 1.05rem;
  height: 1.05rem;
  margin: 0.1rem 0 0;
  padding: 0;
  border-radius: 0.25rem;
}

.contact-form__consent input:checked {
  border-color: var(--cyan);
  background:
    radial-gradient(circle, var(--cyan) 0 32%, transparent 36%),
    rgba(132, 244, 255, 0.08);
}

.contact-form__footer {
  min-height: 4.15rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  margin-top: 0.35rem;
}

.contact-form__status {
  margin: 0;
  color: rgba(132, 244, 255, 0.72);
  font-size: 0.66rem;
  line-height: 1.45;
  letter-spacing: 0.03em;
}

.contact-form__status.is-error {
  color: rgba(255, 159, 126, 0.85);
}

.contact-form__submit {
  min-width: 13.5rem;
  height: 4.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0.85rem 0 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.58rem;
  font-weight: 680;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.35s var(--ease-cinema);
}

.contact-form__submit:hover {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-2px);
}

.contact-form__submit:disabled {
  cursor: wait;
  opacity: 0.56;
  transform: none;
}

.contact-form__submit i {
  width: 2.55rem;
  height: 2.55rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: #080413;
  font-size: 0.9rem;
  font-style: normal;
}

footer {
  position: relative;
  z-index: 10;
  min-height: 9rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem clamp(1.3rem, 4vw, 4.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: #020108;
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__brand {
  color: white;
}

footer > p {
  justify-self: center;
  margin: 0;
  text-align: center;
  line-height: 1.6;
}

footer > div {
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
}

.footer__contact {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  transition: color 0.25s ease;
}

.footer__contact:hover {
  color: white;
}

footer a:hover {
  color: white;
}

.no-script {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-content: center;
  padding: 2rem;
  background: #020208;
  text-align: center;
}

@keyframes signal-in {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.7); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes signal-out {
  to { opacity: 0; filter: blur(10px); transform: translate(-50%, -50%) scale(1.4); }
}

@keyframes signal-pulse {
  from { opacity: 0.25; transform: scale(0.65); }
  to { opacity: 1; transform: scale(1.25); }
}

@keyframes line-reveal {
  from { opacity: 0; filter: blur(9px); transform: translateY(0.7rem); }
  to { opacity: 1; filter: blur(0); transform: translateY(0); }
}

@keyframes line-leave {
  to { opacity: 0; filter: blur(8px); transform: translateY(-0.7rem); }
}

@keyframes wordmark-spectrum {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}

@keyframes wordmark-split-left {
  to {
    opacity: 0;
    filter: blur(9px);
    transform: translate(-2.8rem, -50%) scale(0.96);
  }
}

@keyframes wordmark-split-right {
  to {
    opacity: 0;
    filter: blur(9px);
    transform: translate(2.8rem, -50%) scale(0.96);
  }
}

@keyframes brand-spectrum {
  from { background-position: 15% 50%; }
  to { background-position: 85% 50%; }
}

@keyframes brand-dot-breathe {
  0%,
  100% {
    opacity: 0.78;
    transform: scale(0.88);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes event-core-collapse {
  0% {
    opacity: 0;
    filter: blur(7px) brightness(0.7);
    transform: translate(-50%, -50%) scale(0.42);
  }
  38% {
    opacity: 0.62;
    filter: blur(2px) brightness(1.2);
    transform: translate(-50%, -50%) scale(0.24);
  }
  100% {
    opacity: 1;
    filter: blur(0) brightness(2.2);
    transform: translate(-50%, -50%) scale(0.034);
  }
}

@keyframes event-core-detonate {
  0% {
    opacity: 1;
    filter: blur(0) brightness(2.5);
    transform: translate(-50%, -50%) scale(0.034);
  }
  9% {
    opacity: 1;
    filter: blur(0.2px) brightness(2.1);
    transform: translate(-50%, -50%) scale(1.12);
  }
  28% {
    opacity: 0.54;
    filter: blur(1.2px) brightness(1.4);
    transform: translate(-50%, -50%) scale(1.85);
  }
  56% {
    opacity: 0.08;
    filter: blur(3px) brightness(1.05);
    transform: translate(-50%, -50%) scale(2.8);
  }
  100% {
    opacity: 0;
    filter: blur(7px) brightness(0.85);
    transform: translate(-50%, -50%) scale(4.4);
  }
}

@keyframes event-flash {
  0% { opacity: 0; transform: scale(0.22); }
  6% { opacity: 0.98; transform: scale(0.82); }
  18% { opacity: 0.5; transform: scale(1.08); }
  54% { opacity: 0.06; transform: scale(1.3); }
  100% { opacity: 0; transform: scale(1.46); }
}

@keyframes event-flare {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scaleX(0.02);
  }
  8% {
    opacity: 1;
    transform: translate(-50%, -50%) scaleX(0.34);
  }
  32% {
    opacity: 0.82;
    transform: translate(-50%, -50%) scaleX(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scaleX(1.12);
  }
}

@keyframes event-ring {
  0% {
    opacity: 0;
    filter: blur(0);
    transform: translate(-50%, -50%) scale(0.025) scaleY(0.72);
  }
  12% {
    opacity: 0.98;
  }
  48% {
    opacity: 0.13;
    filter: blur(0.7px);
    transform: translate(-50%, -50%) scale(1.9) scaleY(0.72);
  }
  72% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    filter: blur(1.4px);
    transform: translate(-50%, -50%) scale(3.35) scaleY(0.72);
  }
}

@keyframes event-atmosphere {
  0% {
    opacity: 0;
    transform: rotate(-10deg) scale(0.7);
  }
  12% {
    opacity: 0.82;
    transform: rotate(4deg) scale(0.92);
  }
  52% {
    opacity: 0.16;
    transform: rotate(24deg) scale(1.17);
  }
  100% {
    opacity: 0;
    transform: rotate(35deg) scale(1.32);
  }
}

@keyframes event-ray {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(var(--ray-angle)) scaleX(0.025);
  }
  10% {
    opacity: 0.84;
  }
  42% {
    opacity: 0.36;
    transform: translate(-50%, -50%) rotate(var(--ray-angle)) scaleX(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(var(--ray-angle)) scaleX(1.18);
  }
}

@keyframes audio-bar {
  from { height: 25%; }
  to { height: 100%; }
}

@keyframes voice-pulse {
  from { transform: scaleY(0.48); opacity: 0.58; }
  to { transform: scaleY(1); opacity: 1; }
}

@keyframes scroll-line {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  45% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  55% { opacity: 1; transform: scaleY(1); transform-origin: bottom; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

@keyframes core-orbit {
  to { transform: rotate(360deg); }
}

@keyframes halo-breathe {
  from { opacity: 0.35; transform: scale(0.94); }
  to { opacity: 0.9; transform: scale(1.03); }
}

@keyframes marquee {
  to { transform: translate3d(-50%, 0, 0); }
}

@keyframes nova-spin {
  to { transform: rotate(360deg); }
}

@keyframes nova-spin-reverse {
  to { transform: rotate(-360deg); }
}

@keyframes nova-breathe {
  0%,
  100% { opacity: 0.5; transform: scale(0.88); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes nova-wave {
  0% { opacity: 0; transform: scale(0.42); }
  20% { opacity: 0.72; }
  100% { opacity: 0; transform: scale(3.12); }
}

@keyframes nova-ring-breathe {
  0%,
  100% { opacity: 0.46; transform: scale(0.94); }
  50% { opacity: 1; transform: scale(1.06); }
}

@keyframes nova-beam-scan {
  0%,
  100% { opacity: 0.18; filter: blur(0.3px); }
  50% { opacity: 0.82; filter: blur(0); }
}

@keyframes nova-core-pulse {
  0%,
  100% { transform: translate(-50%, -50%) scale(0.9); filter: saturate(0.9); }
  50% { transform: translate(-50%, -50%) scale(1.08); filter: saturate(1.35); }
}

@keyframes nova-diamond {
  to { transform: translate(-50%, -50%) rotate(405deg); }
}

@keyframes field-rotate {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes field-rotate-reverse {
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes field-halo {
  0%,
  100% {
    opacity: 0.52;
    filter: blur(0.28rem) saturate(0.92);
    transform: translate(-50%, -50%) scale(0.87);
  }
  50% {
    opacity: 1;
    filter: blur(0.12rem) saturate(1.25);
    transform: translate(-50%, -50%) scale(1.14);
  }
}

@keyframes field-core {
  0%,
  100% {
    filter: saturate(0.94) brightness(0.93);
    transform: translate(-50%, -50%) scale(0.94);
  }
  50% {
    filter: saturate(1.26) brightness(1.08);
    transform: translate(-50%, -50%) scale(1.055);
  }
}

@keyframes field-node-drift {
  0%,
  100% { transform: translate3d(0, -0.22rem, 0); }
  50% { transform: translate3d(0.22rem, 0.25rem, 0); }
}

@keyframes field-node-wave {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.35); }
  22% { opacity: 0.85; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.55); }
}

@keyframes field-status {
  0%,
  100% { opacity: 0.38; transform: scale(0.72); }
  50% { opacity: 1; transform: scale(1.15); }
}

/* Russian and Armenian copy is naturally longer than the English source.
   Give each language its own editorial scale instead of shrinking the whole site. */
html[lang="ru"] .section-kicker,
html[lang="ru"] .nav__links a,
html[lang="ru"] .nav__login,
html[lang="ru"] .nav__signup,
html[lang="ru"] .magnetic-button,
html[lang="ru"] .text-button,
html[lang="ru"] .investors__cta,
html[lang="ru"] .contact-form label,
html[lang="ru"] .contact-form__submit,
html[lang="ru"] footer,
html[lang="hy"] .section-kicker,
html[lang="hy"] .nav__links a,
html[lang="hy"] .nav__login,
html[lang="hy"] .nav__signup,
html[lang="hy"] .magnetic-button,
html[lang="hy"] .text-button,
html[lang="hy"] .investors__cta,
html[lang="hy"] .contact-form label,
html[lang="hy"] .contact-form__submit,
html[lang="hy"] footer {
  letter-spacing: 0.075em;
}

html[lang="hy"] body {
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
}

html[lang="ru"] .hero__index span:first-child,
html[lang="hy"] .hero__index span:first-child {
  max-width: 38ch;
  line-height: 1.45;
}

html[lang="hy"] .hero__index span:first-child {
  max-width: 31ch;
  font-size: 0.52rem;
  letter-spacing: 0.09em;
}

html[lang="ru"] .hero__content,
html[lang="hy"] .hero__content {
  width: min(76rem, 88vw);
}

html[lang="ru"] .hero h1 {
  max-width: 15ch;
  font-size: clamp(3.8rem, 7.4vw, 8.1rem);
  line-height: 0.94;
  letter-spacing: -0.052em;
}

html[lang="hy"] .hero h1 {
  max-width: 18ch;
  font-size: clamp(3.35rem, 5.8vw, 6.6rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

html[lang="ru"] .hero h1 em,
html[lang="hy"] .hero h1 em {
  margin-left: 0.18em;
}

html[lang="hy"] .hero h1 em,
html[lang="hy"] .manifesto__copy > h2 em,
html[lang="hy"] .safety h2 em,
html[lang="hy"] .signal-break > p em,
html[lang="hy"] .investors h2 em,
html[lang="hy"] .contact-modal__intro h2 em {
  font-family: "Noto Serif Armenian", "Sylfaen", "Times New Roman", serif;
  letter-spacing: -0.025em;
}

html[lang="ru"] .hero__lede {
  width: min(37rem, 82vw);
}

html[lang="hy"] .hero__lede {
  width: min(41rem, 84vw);
  line-height: 1.72;
}

html[lang="ru"] .manifesto__copy > h2 {
  max-width: 15ch;
  font-size: clamp(3.15rem, 4.65vw, 5.35rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

html[lang="hy"] .manifesto__copy > h2 {
  max-width: 18ch;
  font-size: clamp(2.85rem, 3.85vw, 4.5rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

html[lang="ru"] .manifesto__copy > h2 em,
html[lang="hy"] .manifesto__copy > h2 em {
  margin-left: 0.06em;
}

html[lang="ru"] .manifesto__principles h3,
html[lang="hy"] .manifesto__principles h3 {
  letter-spacing: 0.045em;
  overflow-wrap: anywhere;
}

html[lang="hy"] .manifesto__principles h3 {
  font-size: 0.72rem;
  line-height: 1.5;
}

html[lang="ru"] .difference__intro h2 {
  max-width: 17ch;
  font-size: clamp(3.2rem, 4.7vw, 5.5rem);
  line-height: 1.04;
  letter-spacing: -0.048em;
}

html[lang="hy"] .difference__intro h2 {
  max-width: 20ch;
  font-size: clamp(2.9rem, 3.9vw, 4.7rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

html[lang="ru"] .chapter h3 {
  max-width: 18ch;
  font-size: clamp(1.85rem, 2.75vw, 3.3rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

html[lang="hy"] .chapter h3 {
  max-width: 21ch;
  font-size: clamp(1.7rem, 2.35vw, 2.9rem);
  line-height: 1.2;
  letter-spacing: -0.022em;
}

html[lang="ru"] .safety h2 {
  max-width: 17ch;
  font-size: clamp(3.9rem, 6.35vw, 7.25rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

html[lang="hy"] .safety h2 {
  max-width: 19ch;
  font-size: clamp(3.4rem, 5.15vw, 6rem);
  line-height: 1.12;
  letter-spacing: -0.032em;
}

html[lang="ru"] .safety h2 em,
html[lang="hy"] .safety h2 em {
  margin-left: 0.18em;
}

html[lang="ru"] .safety__principles h3,
html[lang="hy"] .safety__principles h3 {
  line-height: 1.17;
}

html[lang="ru"] .safety__principles h3 {
  font-size: clamp(1.25rem, 1.85vw, 1.95rem);
}

html[lang="hy"] .safety__principles h3 {
  font-size: clamp(1.15rem, 1.65vw, 1.75rem);
  letter-spacing: -0.02em;
}

html[lang="ru"] .signal-break > p {
  max-width: 22ch;
  font-size: clamp(2.9rem, 5.15vw, 5.9rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

html[lang="hy"] .signal-break > p {
  max-width: 25ch;
  font-size: clamp(2.65rem, 4.25vw, 5rem);
  line-height: 1.16;
  letter-spacing: -0.026em;
}

html[lang="ru"] .investors__content,
html[lang="hy"] .investors__content {
  width: min(68rem, 76vw);
}

html[lang="ru"] .investors h2 {
  max-width: 13ch;
  font-size: clamp(3.8rem, 6.3vw, 7.15rem);
  line-height: 0.99;
  letter-spacing: -0.052em;
}

html[lang="hy"] .investors h2 {
  max-width: 15ch;
  font-size: clamp(3.35rem, 4.95vw, 5.75rem);
  line-height: 1.12;
  letter-spacing: -0.032em;
}

html[lang="ru"] .investors h2 em,
html[lang="hy"] .investors h2 em {
  margin-left: 0.1em;
}

html[lang="ru"] .relationship-field__node,
html[lang="hy"] .relationship-field__node,
html[lang="ru"] .relationship-field__status,
html[lang="hy"] .relationship-field__status {
  letter-spacing: 0.08em;
}

html[lang="ru"] .relationship-field__node b,
html[lang="hy"] .relationship-field__node b {
  max-width: 11rem;
  line-height: 1.35;
  white-space: normal;
}

html[lang="hy"] .relationship-field__node {
  font-size: clamp(0.4rem, 0.49vw, 0.49rem);
}

html[lang="ru"] .contact-modal__intro h2 {
  max-width: 11ch;
  font-size: clamp(2.8rem, 4.15vw, 4.9rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

html[lang="hy"] .contact-modal__intro h2 {
  max-width: 14ch;
  font-size: clamp(2.55rem, 3.55vw, 4.25rem);
  line-height: 1.14;
  letter-spacing: -0.028em;
}

html[lang="ru"] .contact-form label,
html[lang="hy"] .contact-form label {
  line-height: 1.35;
}

html[lang="hy"] .contact-form__submit {
  font-size: 0.54rem;
}

@media (max-width: 1180px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav__links,
  .sound-toggle__label {
    display: none;
  }

  .nav__menu-toggle {
    display: grid;
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 45;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(2.5rem, 7vh, 5rem);
    padding:
      calc(6.6rem + env(safe-area-inset-top))
      clamp(1.4rem, 7vw, 5rem)
      calc(2rem + env(safe-area-inset-bottom));
    overflow-y: auto;
    background:
      radial-gradient(circle at 78% 18%, rgba(132, 244, 255, 0.1), transparent 25rem),
      radial-gradient(circle at 13% 72%, rgba(155, 124, 255, 0.15), transparent 28rem),
      rgba(2, 1, 9, 0.965);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(1.02);
    transition:
      opacity 0.45s ease,
      visibility 0.45s,
      transform 0.65s var(--ease-cinema);
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
  }

  .mobile-menu__glow {
    position: absolute;
    left: 50%;
    top: 38%;
    width: min(76vw, 34rem);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(154, 121, 255, 0.1), transparent 66%);
    filter: blur(1rem);
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .mobile-menu__links,
  .mobile-menu__actions {
    position: relative;
    z-index: 1;
  }

  .mobile-menu__links {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mobile-menu__links a {
    min-height: clamp(4.1rem, 9vh, 6.2rem);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
    font-size: clamp(1.7rem, 5.8vw, 3.25rem);
    font-weight: 400;
    letter-spacing: -0.035em;
  }

  .mobile-menu__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1.5rem;
  }

  .mobile-menu__actions > a {
    padding: 0.7rem 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.68rem;
    font-weight: 650;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-menu__actions .mobile-menu__primary {
    width: 100%;
    min-height: 3.9rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.25rem;
    margin-bottom: 0.35rem;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    background: linear-gradient(105deg, rgba(173, 142, 255, 0.18), rgba(132, 244, 255, 0.1));
    color: white;
  }

  .mobile-menu__primary i {
    font-style: normal;
  }

  .hero h1 {
    font-size: clamp(4rem, 12.5vw, 8rem);
  }

  .manifesto {
    min-height: auto;
    padding-inline: clamp(1.3rem, 4.2vw, 3rem);
  }

  .manifesto__stage {
    min-height: 0;
    grid-template-columns: minmax(21rem, 1.08fr) minmax(18rem, 0.92fr);
    gap: clamp(1.5rem, 3.5vw, 3rem);
  }

  .manifesto__copy > h2 {
    font-size: clamp(3.1rem, 6.6vw, 4.7rem);
  }

  .manifesto__body {
    font-size: 0.98rem;
  }

  .manifesto__principles article {
    min-height: 7.4rem;
  }

  .constellation {
    width: min(30rem, 40vw);
  }

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

  .difference__intro {
    position: relative;
    top: auto;
  }

  .difference__intro h2 {
    max-width: 11ch;
  }

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

  .safety__principles article,
  .safety__principles article + article {
    min-height: 0;
    padding: 2rem 0 2.5rem;
    border-left: 0;
  }

  .safety__principles article + article {
    border-top: 1px solid rgba(12, 9, 19, 0.18);
  }

  .safety__principles h3 {
    margin-top: 0;
  }

  .investors__content {
    width: 82vw;
  }

  .investors__nova {
    right: -20vw;
    width: min(48rem, 76vw);
    opacity: 0.72;
  }

  .relationship-field__node {
    font-size: 0.43rem;
  }

  .contact-modal__frame {
    width: min(45rem, 100%);
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-modal__intro h2 {
    max-width: 12ch;
  }

  .contact-modal__intro > p:not(.section-kicker) {
    max-width: 37rem;
  }

  html[lang="ru"] .hero h1 {
    font-size: clamp(3.5rem, 9.2vw, 6.2rem);
  }

  html[lang="hy"] .hero h1 {
    font-size: clamp(3.1rem, 7.5vw, 5.1rem);
  }

  html[lang="ru"] .manifesto__copy > h2 {
    font-size: clamp(2.9rem, 5.4vw, 4.05rem);
  }

  html[lang="hy"] .manifesto__copy > h2 {
    font-size: clamp(2.55rem, 4.65vw, 3.55rem);
  }

  html[lang="ru"] .investors__content,
  html[lang="hy"] .investors__content {
    width: 86vw;
  }

  html[lang="ru"] .investors h2 {
    font-size: clamp(3.6rem, 7.4vw, 5.6rem);
  }

  html[lang="hy"] .investors h2 {
    font-size: clamp(3.1rem, 6.1vw, 4.7rem);
  }
}

@media (max-width: 680px) {
  .nav {
    height: 5rem;
    padding: 0 1.1rem;
  }

  .brand__name {
    font-size: 0.68rem;
  }

  .nav__tools {
    gap: 0.45rem;
  }

  .nav__login,
  .nav__signup,
  .sound-toggle {
    display: none;
  }

  .language-toggle {
    width: 1.9rem;
    height: 1.9rem;
    font-size: 0.51rem;
  }

  .nav__menu-toggle {
    width: 2.45rem;
    height: 2.45rem;
  }

  .nav__menu-toggle span:first-child {
    top: 0.98rem;
  }

  .nav__menu-toggle span:last-child {
    top: 1.38rem;
  }

  .nav__menu-toggle[aria-expanded="true"] span:first-child,
  .nav__menu-toggle[aria-expanded="true"] span:last-child {
    top: 1.2rem;
  }

  .mobile-menu {
    justify-content: flex-start;
    gap: 2.1rem;
    padding-top: calc(6.6rem + env(safe-area-inset-top));
  }

  .mobile-menu__links a {
    min-height: 4.35rem;
    font-size: clamp(1.55rem, 7.2vw, 2.35rem);
  }

  .hero {
    align-items: flex-end;
    padding: 7rem 1.2rem 7rem;
  }

  .hero::before {
    background:
      linear-gradient(180deg, transparent 17%, rgba(2, 2, 8, 0.18) 35%, rgba(2, 2, 8, 0.92) 68%, #03020a 100%);
  }

  .hero__index {
    top: 6.3rem;
    left: 1.2rem;
    right: 1.2rem;
  }

  .hero__index span:first-child {
    max-width: 12ch;
    line-height: 1.5;
  }

  .hero__content {
    width: 100%;
  }

  .eyebrow {
    margin-bottom: 1.15rem;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 18vw, 6.2rem);
    line-height: 0.84;
    letter-spacing: -0.065em;
  }

  .hero h1 em {
    margin-left: 0.15em;
  }

  .hero__lede {
    width: 92%;
    margin: 1.65rem 0 0;
    font-size: 0.98rem;
  }

  .hero__actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.78rem;
    margin: 1.8rem 0 0;
  }

  .magnetic-button {
    width: 100%;
    min-width: 0;
    height: 3.45rem;
  }

  .hero__actions .magnetic-button--investors-mobile {
    min-height: 3.15rem;
    display: inline-flex;
    justify-content: center;
    border-color: rgba(132, 244, 255, 0.3);
    background:
      linear-gradient(105deg, rgba(155, 124, 255, 0.11), rgba(132, 244, 255, 0.075)),
      rgba(255, 255, 255, 0.025);
    color: rgba(239, 248, 255, 0.86);
  }

  .magnetic-button .action-glyph__arrow,
  .mobile-menu__primary .action-glyph__arrow,
  .investors__cta .action-glyph__arrow {
    display: none;
  }

  .magnetic-button .action-glyph__icon,
  .mobile-menu__primary .action-glyph__icon,
  .investors__cta .action-glyph__icon {
    display: block;
  }

  .mobile-menu__primary .action-glyph {
    width: 2rem;
    height: 2rem;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: #07040f;
  }

  .mobile-menu__primary .action-glyph__icon {
    width: 1rem;
    height: 1rem;
  }

  .investors__cta .action-glyph__icon {
    width: 1.2rem;
    height: 1.2rem;
  }

  .text-button {
    font-size: 0.57rem;
  }

  .hero__orbit-note,
  .hero__scroll {
    display: none;
  }

  .manifesto {
    padding: 3.75rem 1.2rem 6rem;
  }

  .manifesto__copy > h2 {
    font-size: clamp(2.8rem, 14vw, 5rem);
    line-height: 0.97;
  }

  .manifesto__copy > h2 em {
    margin-left: 0;
  }

  .manifesto__stage {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 3.4rem;
    margin-top: 0.25rem;
  }

  .manifesto__body {
    padding-left: 1rem;
    font-size: 1rem;
  }

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

  .manifesto__principles article,
  .manifesto__principles article:nth-child(even) {
    min-height: 0;
    padding: 1.15rem 0;
    border-left: 0;
  }

  .constellation {
    width: min(100%, 34rem);
    margin-top: 0;
  }

  .constellation__label {
    padding: 0.5rem;
  }

  .constellation__label span {
    font-size: 0.64rem;
  }

  .difference {
    gap: 3.2rem;
    padding: 6rem 1.2rem;
  }

  .difference__intro h2 {
    font-size: clamp(3rem, 15.5vw, 3.6rem);
  }

  .chapter {
    min-height: 16rem;
    grid-template-columns: 1fr;
    padding: 2.25rem 0;
  }

  .chapter h3 {
    font-size: 2rem;
  }

  .chapter p {
    font-size: 0.9rem;
  }

  .safety {
    min-height: auto;
    padding: 6rem 1.2rem 5.5rem;
  }

  .safety h2 {
    margin-top: 2rem;
    font-size: clamp(3.4rem, 16vw, 5.4rem);
    line-height: 0.94;
  }

  .safety h2 em {
    margin-left: 0.1em;
  }

  .safety__lede {
    margin: 2.2rem 0 0;
    font-size: 1rem;
  }

  .safety__principles {
    margin-top: 4rem;
  }

  .signal-break {
    min-height: clamp(24rem, 56svh, 32rem);
    padding: 4rem 1.2rem;
  }

  .signal-break::before {
    width: 110vw;
  }

  .signal-break::after {
    width: 78vw;
  }

  .signal-break > p {
    font-size: clamp(2.7rem, 13.5vw, 4.8rem);
  }

  .investors {
    min-height: auto;
    align-items: flex-end;
    padding: 7rem 1.2rem 5.5rem;
  }

  .investors__content {
    width: 100%;
  }

  .investors h2 {
    font-size: clamp(3.5rem, 16vw, 5.8rem);
    line-height: 0.94;
  }

  .investors h2 em {
    margin-left: 0.05em;
    padding-bottom: 0.18em;
  }

  .investors__content > p:not(.section-kicker),
  .investors__cta {
    margin-left: 0;
  }

  .investors__cta {
    width: 100%;
    height: 4.5rem;
    padding: 0 1rem 0 1.35rem;
    font-size: 0.61rem;
  }

  .investors__nova {
    top: 24%;
    right: -44vw;
    width: 112vw;
    opacity: 0.54;
  }

  .investors__nova::before {
    display: none;
  }

  .relationship-field__node b,
  .relationship-field__status {
    display: none;
  }

  .relationship-field__node--empathy {
    left: 22%;
  }

  .relationship-field__node--memory {
    right: 18%;
  }

  .relationship-field__node--agency {
    right: 22%;
  }

  .relationship-field__node--boundaries {
    left: 19%;
  }

  .contact-modal {
    padding: 0.65rem;
  }

  .contact-modal__frame {
    width: 100%;
    max-height: calc(100dvh - 1.3rem);
    gap: 2rem;
    padding: 3.5rem 1.1rem 1.2rem;
    border-radius: 1.5rem;
  }

  .contact-modal__close {
    right: 0.8rem;
    top: 0.8rem;
    width: 2.8rem;
    height: 2.8rem;
  }

  .contact-modal__intro h2 {
    max-width: 10ch;
    margin-top: 1.3rem;
    font-size: clamp(2.7rem, 12vw, 4.4rem);
    line-height: 0.96;
  }

  .contact-modal__intro > p:not(.section-kicker) {
    margin-top: 1.25rem;
    font-size: 0.88rem;
  }

  .contact-modal__signal {
    margin-top: 1.7rem;
  }

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

  .contact-form input,
  .contact-form select {
    height: 3.4rem;
  }

  .contact-form__consent {
    width: 100%;
    grid-template-columns: 1.05rem minmax(0, 1fr);
    align-items: start;
  }

  .contact-form__consent input {
    width: 1.05rem;
    min-width: 1.05rem;
    height: 1.05rem;
    min-height: 1.05rem;
    align-self: start;
    justify-self: start;
    padding: 0;
    box-sizing: border-box;
  }

  .contact-form__consent span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .contact-form textarea {
    min-height: 6.8rem;
  }

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

  .contact-form__submit {
    width: 100%;
  }

  footer {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 1.5rem;
    padding: 3rem 1.2rem;
  }

  footer > p,
  footer > div {
    justify-self: start;
    align-items: flex-start;
    text-align: left;
  }

  .prelude__mark {
    font-size: 1.42rem;
  }

  html[lang="ru"] .hero h1 {
    max-width: 16ch;
    font-size: clamp(2.85rem, 11.5vw, 4.15rem);
    line-height: 1.01;
  }

  html[lang="hy"] .hero h1 {
    max-width: 19ch;
    font-size: clamp(2.45rem, 9.7vw, 3.55rem);
    line-height: 1.13;
  }

  html[lang="ru"] .hero h1 em,
  html[lang="hy"] .hero h1 em {
    margin-left: 0.06em;
  }

  html[lang="ru"] .hero__lede,
  html[lang="hy"] .hero__lede {
    width: 100%;
  }

  html[lang="ru"] .manifesto__copy > h2 {
    max-width: 17ch;
    font-size: clamp(2.25rem, 9.4vw, 3.4rem);
    line-height: 1.08;
  }

  html[lang="hy"] .manifesto__copy > h2 {
    max-width: 20ch;
    font-size: clamp(2.05rem, 8.35vw, 3.05rem);
    line-height: 1.18;
  }

  html[lang="ru"] .difference__intro h2 {
    max-width: 18ch;
    font-size: clamp(2.35rem, 9.8vw, 3.35rem);
    line-height: 1.1;
  }

  html[lang="hy"] .difference__intro h2 {
    max-width: 21ch;
    font-size: clamp(2.1rem, 8.65vw, 3rem);
    line-height: 1.2;
  }

  html[lang="ru"] .chapter h3 {
    max-width: none;
    font-size: 1.7rem;
    line-height: 1.18;
  }

  html[lang="hy"] .chapter h3 {
    max-width: none;
    font-size: 1.52rem;
    line-height: 1.27;
  }

  html[lang="ru"] .safety h2 {
    max-width: 18ch;
    font-size: clamp(2.55rem, 10.5vw, 3.8rem);
    line-height: 1.08;
  }

  html[lang="hy"] .safety h2 {
    max-width: 20ch;
    font-size: clamp(2.25rem, 8.8vw, 3.2rem);
    line-height: 1.2;
  }

  html[lang="ru"] .safety h2 em,
  html[lang="hy"] .safety h2 em {
    margin-left: 0.05em;
  }

  html[lang="ru"] .signal-break > p {
    max-width: 23ch;
    font-size: clamp(2.2rem, 8.8vw, 3.25rem);
    line-height: 1.12;
  }

  html[lang="hy"] .signal-break > p {
    max-width: 26ch;
    font-size: clamp(2rem, 7.6vw, 2.85rem);
    line-height: 1.22;
  }

  html[lang="ru"] .investors h2 {
    max-width: 14ch;
    font-size: clamp(2.65rem, 10.5vw, 3.85rem);
    line-height: 1.07;
  }

  html[lang="hy"] .investors h2 {
    max-width: 16ch;
    font-size: clamp(2.3rem, 8.65vw, 3.25rem);
    line-height: 1.18;
  }

  html[lang="ru"] .contact-modal__intro h2 {
    max-width: 13ch;
    font-size: clamp(2.25rem, 9.3vw, 3.35rem);
    line-height: 1.1;
  }

  html[lang="hy"] .contact-modal__intro h2 {
    max-width: 15ch;
    font-size: clamp(2rem, 8.15vw, 3rem);
    line-height: 1.2;
  }

  html[lang="ru"] .section-kicker,
  html[lang="hy"] .section-kicker {
    max-width: 30ch;
    line-height: 1.55;
  }

  html[lang="ru"] .nav__signup,
  html[lang="hy"] .nav__signup {
    padding-inline: 0.72rem;
    font-size: 0.5rem;
    letter-spacing: 0.035em;
  }

  html[lang="ru"] .magnetic-button,
  html[lang="hy"] .magnetic-button,
  html[lang="ru"] .investors__cta,
  html[lang="hy"] .investors__cta,
  html[lang="ru"] .contact-form__submit,
  html[lang="hy"] .contact-form__submit {
    letter-spacing: 0.045em;
  }

  html[lang="ru"] .magnetic-button,
  html[lang="hy"] .magnetic-button {
    min-width: min(100%, 16.5rem);
  }

  html[lang="ru"] .text-button,
  html[lang="hy"] .text-button {
    max-width: 10rem;
    line-height: 1.4;
    text-align: left;
  }
}

/* Spanish editorial fit and compact desktop navigation. */
html[lang="es"] .section-kicker,
html[lang="es"] .nav__links a,
html[lang="es"] .nav__login,
html[lang="es"] .nav__signup,
html[lang="es"] .magnetic-button,
html[lang="es"] .text-button,
html[lang="es"] .investors__cta,
html[lang="es"] .contact-form label,
html[lang="es"] .contact-form__submit,
html[lang="es"] footer {
  letter-spacing: 0.075em;
}

html[lang="es"] .nav__links a {
  font-size: 0.64rem;
}

html[lang="es"] .nav__signup {
  padding-inline: 0.95rem;
}

html[lang="es"] .hero__content {
  width: min(72rem, 86vw);
}

html[lang="es"] .hero h1 {
  max-width: 13ch;
  font-size: clamp(3.9rem, 8.9vw, 9.2rem);
  line-height: 0.84;
  letter-spacing: -0.06em;
}

html[lang="es"] .hero h1 em {
  margin-left: 0.32em;
}

html[lang="es"] .hero__lede {
  width: min(34rem, 82vw);
}

html[lang="es"] .manifesto__copy > h2 {
  max-width: 16ch;
  font-size: clamp(3.1rem, 4.7vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

html[lang="es"] .difference__intro h2 {
  max-width: 18ch;
  font-size: clamp(3.05rem, 4.4vw, 5.2rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

html[lang="es"] .chapter h3 {
  max-width: 19ch;
  font-size: clamp(1.8rem, 2.5vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

html[lang="es"] .safety h2 {
  max-width: 18ch;
  font-size: clamp(3.6rem, 6vw, 6.9rem);
  line-height: 0.99;
  letter-spacing: -0.05em;
}

html[lang="es"] .safety h2 em {
  margin-left: 0.12em;
}

html[lang="es"] .signal-break > p {
  max-width: 23ch;
  font-size: clamp(2.8rem, 4.8vw, 5.5rem);
  line-height: 1.07;
  letter-spacing: -0.042em;
}

html[lang="es"] .investors__content {
  width: min(68rem, 76vw);
}

html[lang="es"] .investors h2 {
  max-width: 14ch;
  font-size: clamp(3.7rem, 7vw, 7.8rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

html[lang="es"] .investors h2 em {
  margin-left: 0.1em;
}

html[lang="es"] .investors__content > p:not(.section-kicker),
html[lang="es"] .investors__cta {
  margin-top: 2.25rem;
}

html[lang="es"] .contact-modal__intro h2 {
  max-width: 12ch;
  font-size: clamp(2.7rem, 4vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

@media (min-width: 1181px) and (max-width: 1440px) {
  .nav {
    grid-template-columns: minmax(9rem, 0.72fr) auto minmax(20rem, 1fr);
    gap: 1.25rem;
    padding-inline: clamp(1.3rem, 3.4vw, 3.25rem);
  }

  .nav__links {
    gap: clamp(0.85rem, 1.35vw, 1.35rem);
  }

  .nav__tools {
    gap: 0.62rem;
  }
}

@media (max-width: 1180px) {
  html[lang="es"] .hero__content {
    width: 90vw;
  }

  html[lang="es"] .hero h1 {
    font-size: clamp(3.45rem, 8.5vw, 6.4rem);
  }

  html[lang="es"] .manifesto__copy > h2 {
    font-size: clamp(2.8rem, 4.9vw, 4.15rem);
  }

  html[lang="es"] .difference__intro h2 {
    font-size: clamp(2.75rem, 4.8vw, 4rem);
  }

  html[lang="es"] .safety h2 {
    font-size: clamp(3.2rem, 6.2vw, 5.2rem);
  }

  html[lang="es"] .investors__content {
    width: 86vw;
  }

  html[lang="es"] .investors h2 {
    font-size: clamp(3.25rem, 6.4vw, 5.2rem);
  }
}

@media (max-width: 680px) {
  html[lang="es"] .hero__content,
  html[lang="es"] .hero__lede {
    width: 100%;
  }

  html[lang="es"] .hero h1 {
    max-width: 15ch;
    font-size: clamp(2.5rem, 12vw, 3.9rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
  }

  html[lang="es"] .hero h1 em {
    margin-left: 0.04em;
  }

  html[lang="es"] .manifesto__copy > h2 {
    max-width: 18ch;
    font-size: clamp(2.15rem, 9.2vw, 3.2rem);
    line-height: 1.08;
  }

  html[lang="es"] .difference__intro h2 {
    max-width: 19ch;
    font-size: clamp(2.2rem, 9.5vw, 3.25rem);
    line-height: 1.1;
  }

  html[lang="es"] .chapter h3 {
    max-width: none;
    font-size: 1.65rem;
    line-height: 1.18;
  }

  html[lang="es"] .safety h2 {
    max-width: 19ch;
    font-size: clamp(2.4rem, 10.4vw, 3.65rem);
    line-height: 1.08;
  }

  html[lang="es"] .signal-break > p {
    max-width: 24ch;
    font-size: clamp(2.05rem, 9vw, 3.1rem);
    line-height: 1.12;
  }

  html[lang="es"] .investors h2 {
    max-width: 15ch;
    font-size: clamp(2.35rem, 10.8vw, 3.65rem);
    line-height: 1.06;
  }

  html[lang="es"] .contact-modal__intro h2 {
    max-width: 14ch;
    font-size: clamp(2.05rem, 9.2vw, 3.15rem);
    line-height: 1.1;
  }

  html[lang="es"] .section-kicker {
    max-width: 30ch;
    line-height: 1.5;
  }

  html[lang="es"] .magnetic-button,
  html[lang="es"] .investors__cta,
  html[lang="es"] .contact-form__submit {
    letter-spacing: 0.045em;
  }
}

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

  .prelude {
    display: none;
  }

  .experience {
    opacity: 1;
  }
}
