:root {
  color-scheme: dark;
  --background: #050506;
  --text: rgba(248, 248, 248, 0.94);
  --text-soft: rgba(248, 248, 248, 0.68);
  --text-muted: rgba(248, 248, 248, 0.42);
  --footer-text: rgba(248, 248, 248, 0.38);
  --footer-link: rgba(248, 248, 248, 0.5);
  --line: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body:not(.home) {
  display: flex;
  flex-direction: column;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(
      115deg,
      rgba(134, 96, 255, 0.16) 0%,
      rgba(255, 117, 188, 0.09) 27%,
      rgba(255, 198, 109, 0.08) 55%,
      rgba(91, 211, 255, 0.08) 78%,
      rgba(255, 255, 255, 0) 100%
    ),
    radial-gradient(
      circle at 54% 36%,
      rgba(255, 255, 255, 0.054),
      rgba(255, 255, 255, 0.022) 21%,
      rgba(255, 255, 255, 0) 55%
    ),
    radial-gradient(
      circle at 37% 68%,
      rgba(255, 255, 255, 0.018),
      rgba(255, 255, 255, 0.007) 24%,
      rgba(255, 255, 255, 0) 58%
    );
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025),
      rgba(255, 255, 255, 0) 18%,
      rgba(255, 255, 255, 0) 82%,
      rgba(255, 255, 255, 0.022)
    ),
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.018),
      rgba(255, 255, 255, 0) 34%,
      rgba(0, 0, 0, 0.18) 100%
    );
}

.ambient {
  position: fixed;
  top: 16%;
  left: 49%;
  z-index: -2;
  width: 46rem;
  height: 46rem;
  pointer-events: none;
  background:
    conic-gradient(
      from 213deg at 50% 50%,
      rgba(127, 89, 255, 0),
      rgba(167, 98, 255, 0.28),
      rgba(255, 126, 183, 0.2),
      rgba(255, 202, 126, 0.18),
      rgba(113, 214, 255, 0.16),
      rgba(127, 89, 255, 0)
    ),
    radial-gradient(
      circle,
      rgba(255, 255, 255, 0.09) 0%,
      rgba(255, 255, 255, 0.052) 26%,
      rgba(255, 255, 255, 0.018) 52%,
      rgba(255, 255, 255, 0) 74%
    );
  border-radius: 50%;
  filter: blur(86px) saturate(132%);
  opacity: 0.82;
  transform: translate3d(-50%, 0, 0) scaleX(1.55);
  animation: ambient-drift 56s cubic-bezier(0.45, 0, 0.2, 1) infinite alternate;
}

.ambient::before {
  position: absolute;
  inset: 18%;
  content: "";
  background:
    radial-gradient(
      circle,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.022) 42%,
      rgba(255, 255, 255, 0) 72%
    );
  border-radius: inherit;
  filter: blur(34px);
  opacity: 0.54;
  animation: ambient-breathe 34s ease-in-out infinite alternate;
}

a {
  color: inherit;
  text-decoration: none;
  transition:
    color 220ms ease,
    opacity 220ms ease;
}

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

.home-shell {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding: 0 28px;
}

.home-shell::before,
.home-shell::after {
  position: fixed;
  left: 50%;
  z-index: -1;
  width: min(1280px, 122vw);
  height: 360px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 0;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  opacity: 0.48;
  transform: translateX(-50%);
}

.home-shell::before {
  top: 22%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0)
  );
  box-shadow: inset 0 34px 62px rgba(255, 255, 255, 0.026);
}

.home-shell::after {
  top: 58%;
  width: min(1460px, 138vw);
  height: 430px;
  border-color: rgba(255, 255, 255, 0.052);
  opacity: 0.34;
}

.home-composition {
  position: absolute;
  top: 42%;
  left: 50%;
  width: min(100%, 1100px);
  padding: 0 28px;
  text-align: center;
  transform: translate(-50%, -50%);
  animation: composition-reveal 1500ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.brand-name,
.eyebrow {
  color: transparent;
  background:
    linear-gradient(
      99deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.92) 31%,
      rgba(255, 203, 235, 0.96) 48%,
      rgba(255, 206, 132, 0.96) 69%,
      rgba(255, 255, 255, 0.9) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 44px rgba(255, 144, 202, 0.16);
}

.brand-name {
  margin: 0;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
  animation: text-reveal 1300ms cubic-bezier(0.16, 1, 0.3, 1) 120ms both;
}

.brand-subline {
  margin: 25px 0 0;
  color: transparent;
  background:
    linear-gradient(
      96deg,
      rgba(188, 129, 255, 0.96) 0%,
      rgba(255, 126, 184, 0.94) 31%,
      rgba(255, 186, 124, 0.94) 66%,
      rgba(255, 226, 164, 0.92) 100%
    );
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.42;
  text-shadow: 0 0 34px rgba(255, 149, 191, 0.16);
  animation: text-reveal 1300ms cubic-bezier(0.16, 1, 0.3, 1) 260ms both;
}

.brand-micro {
  margin: 12px 0 0;
  color: transparent;
  background:
    linear-gradient(
      96deg,
      rgba(230, 226, 255, 0.76) 0%,
      rgba(255, 190, 221, 0.76) 44%,
      rgba(255, 222, 164, 0.76) 100%
    );
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  animation: text-reveal 1300ms cubic-bezier(0.16, 1, 0.3, 1) 390ms both;
}

.launch-capsule {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin: 24px 0 0;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(255, 223, 241, 0.96);
  background:
    linear-gradient(rgba(8, 8, 18, 0.94), rgba(8, 8, 18, 0.94)) padding-box,
    linear-gradient(
      96deg,
      rgba(164, 116, 255, 0.74),
      rgba(255, 128, 188, 0.72),
      rgba(255, 207, 132, 0.7)
    ) border-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 18px 46px rgba(148, 88, 255, 0.16),
    0 0 38px rgba(255, 142, 194, 0.1);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-shadow: 0 0 18px rgba(255, 149, 201, 0.32);
  animation: text-reveal 1300ms cubic-bezier(0.16, 1, 0.3, 1) 510ms both;
}

.site-footer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 24px 24px;
  color: var(--footer-text);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
}

.home .site-footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.site-footer a {
  color: var(--footer-link);
}

.site-footer a:hover {
  color: rgba(248, 248, 248, 0.74);
}

.home-link {
  position: fixed;
  top: 28px;
  left: 30px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--footer-link);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  animation: quiet-reveal 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.home-link span {
  font-size: 15px;
  line-height: 0;
  transform: translateY(-1px);
}

.home-link:hover {
  color: rgba(248, 248, 248, 0.76);
}

.document-shell {
  min-height: auto;
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 112px 28px 72px;
}

.document-content {
  width: min(100%, 700px);
}

.document-content .eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  color: transparent;
  background:
    linear-gradient(
      99deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.92) 31%,
      rgba(255, 203, 235, 0.96) 48%,
      rgba(255, 206, 132, 0.96) 69%,
      rgba(255, 255, 255, 0.9) 100%
    );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}

.document-content h1 {
  margin: 0 0 44px;
  color: var(--text);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.document-content h2 {
  margin: 32px 0 9px;
  color: rgba(248, 248, 248, 0.84);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
}

.document-content p {
  margin: 0;
  color: var(--text-soft);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.72;
}

.document-content p + p {
  margin-top: 16px;
}

.document-content a {
  color: rgba(248, 248, 248, 0.82);
  border-bottom: 1px solid var(--line);
}

.document-content a:hover {
  color: var(--text);
  border-bottom-color: rgba(255, 255, 255, 0.22);
}

.support-shell {
  align-items: center;
}

.support-content {
  text-align: center;
}

.support-content h1 {
  margin-bottom: 28px;
}

.support-email {
  white-space: nowrap;
}

@media (min-width: 700px) {
  .brand-name {
    font-size: 64px;
  }

  .brand-subline {
    font-size: 20px;
  }

  .brand-micro {
    font-size: 15px;
  }

  .document-content h1 {
    font-size: 56px;
  }
}

@media (min-width: 1100px) {
  .brand-name {
    font-size: 68px;
  }
}

@media (max-width: 560px) {
  .ambient {
    top: 12%;
    left: 54%;
    width: 31rem;
    height: 31rem;
    filter: blur(76px);
    opacity: 0.62;
  }

  .home-composition {
    top: 41%;
    padding: 0 22px;
  }

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

  .brand-subline {
    margin-top: 21px;
    font-size: 16px;
  }

  .brand-micro {
    margin-top: 11px;
    font-size: 13px;
  }

  .site-footer {
    gap: 10px;
    padding-right: 18px;
    padding-bottom: 20px;
    padding-left: 18px;
    font-size: 11px;
  }

  .footer-links {
    gap: 22px;
  }

  .home-link {
    top: 24px;
    left: 24px;
  }

  .document-shell {
    align-items: flex-start;
    padding: 92px 24px 58px;
  }

  .document-content h1 {
    margin-bottom: 38px;
    font-size: 40px;
  }

  .document-content p {
    font-size: 15px;
    line-height: 1.68;
  }
}

@media (max-width: 380px) {
  .home-composition {
    top: 40%;
    padding-right: 18px;
    padding-left: 18px;
  }

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

  .brand-subline {
    font-size: 15px;
  }

  .brand-micro {
    font-size: 12px;
  }

  .footer-links {
    gap: 17px;
  }

  .document-shell {
    padding-right: 20px;
    padding-left: 20px;
  }
}

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

@keyframes ambient-drift {
  from {
    opacity: 0.66;
    transform: translate3d(-50%, 0, 0) scaleX(1.55);
  }

  to {
    opacity: 0.78;
    transform: translate3d(-48.8%, 0.9%, 0) scaleX(1.6) scaleY(1.035);
  }
}

@keyframes ambient-breathe {
  from {
    opacity: 0.38;
    transform: scale(0.985);
  }

  to {
    opacity: 0.62;
    transform: scale(1.04);
  }
}

@keyframes composition-reveal {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translate(-50%, calc(-50% + 12px));
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, -50%);
  }
}

@keyframes text-reveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes quiet-reveal {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
