@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Sora:wght@400;600;700&display=swap");

:root {
  --navy-deep: #0e0828;
  --navy-mid: #1a0f45;
  --purple: #7c5ce0;
  --purple-soft: #9b7fe8;
  --purple-pale: #d4c5f9;
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.66);
  --text-subtle: rgba(255, 255, 255, 0.4);
  --font-display: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  overflow-x: hidden;
  background: var(--navy-deep);
  color: var(--text);
  font-family: var(--font-body);
}

a {
  color: var(--purple-soft);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--text);
  text-decoration: underline;
}

.uc-root {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
  overflow: hidden;
  isolation: isolate;
}

.uc-root--document {
  align-items: start;
  padding-top: clamp(32px, 8vh, 80px);
}

.uc-grid-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(124, 92, 224, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 92, 224, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: grid-drift 42s linear infinite;
}

.uc-orb {
  position: absolute;
  z-index: -2;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(78px);
  opacity: 0.85;
}

.uc-orb--primary {
  width: 520px;
  height: 520px;
  top: -170px;
  right: -150px;
  background: radial-gradient(circle, rgba(124, 92, 224, 0.32), transparent 68%);
}

.uc-orb--secondary {
  width: 380px;
  height: 380px;
  left: -120px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(155, 127, 232, 0.2), transparent 68%);
}

.uc-content {
  width: min(100%, 620px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  animation: fade-up 780ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.uc-logo {
  width: min(272px, 78vw);
  height: auto;
  margin-bottom: 4px;
}

.uc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 6px 14px 6px 11px;
  border: 1px solid rgba(124, 92, 224, 0.46);
  border-radius: 999px;
  background: rgba(124, 92, 224, 0.13);
  color: var(--purple-pale);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.uc-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--purple);
  box-shadow: 0 0 0 4px rgba(124, 92, 224, 0.24);
  animation: pulse 2.4s ease-in-out infinite;
}

.uc-heading {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(48px, 10vw, 88px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.uc-description {
  max-width: 520px;
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.72;
}

.uc-divider {
  width: 52px;
  height: 1px;
  margin-top: 2px;
  background: rgba(155, 127, 232, 0.52);
}

.uc-contact {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
}

.uc-privacy {
  color: var(--text-subtle);
  font-size: 13px;
}

.uc-document {
  width: min(100%, 720px);
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  animation: fade-up 680ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.uc-document h1 {
  margin: 14px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.15;
}

.uc-document p {
  margin: 0 0 16px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
}

.uc-document p:last-child {
  margin-bottom: 0;
}

.uc-back {
  display: inline-flex;
  color: var(--purple-soft);
  font-size: 14px;
  font-weight: 600;
}

@keyframes grid-drift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 48px 48px;
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(124, 92, 224, 0.24);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(124, 92, 224, 0.08);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

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

@media (max-width: 520px) {
  .uc-root {
    padding-inline: 18px;
  }

  .uc-content {
    gap: 18px;
  }

  .uc-description {
    line-height: 1.62;
  }
}
