.hero {
  flex: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: 1rem 0;
}

.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
  min-width: 0;
  height: 100%;
}

.hero__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  text-wrap: balance;
}

.hero__lead {
  margin: 0;
  max-width: 46ch;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--muted);
}

.visual {
  position: relative;
  flex: 1;
  min-height: 0;
  display: grid;
  place-items: center;
  transform: translateX(-2.25rem);
}
.visual__stars {
  position: absolute;
  inset: -6%;
  background-image: radial-gradient(rgba(173, 210, 255, 0.9) 1px, transparent 1.6px);
  background-size: 30px 30px;
  -webkit-mask: radial-gradient(circle at 50% 46%, #000 8%, transparent 66%);
  mask: radial-gradient(circle at 50% 46%, #000 8%, transparent 66%);
  opacity: 0.35;
  animation: twinkle 5s ease-in-out infinite;
}
.visual__glow {
  position: absolute;
  width: 68%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.5) 0%, rgba(37, 99, 235, 0.18) 38%, transparent 70%);
  filter: blur(18px);
  animation: haze 5s ease-in-out infinite;
}
.visual__horizon {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 88%;
  height: 34%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 100%, rgba(56, 189, 248, 0.3), transparent 72%);
  filter: blur(8px);
  opacity: 0.8;
}
.visual__q {
  position: relative;
  z-index: 2;
  width: clamp(48px, 5.5vw, 72px);
  height: auto;
}

.visual__ring {
  position: absolute;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(56, 189, 248, 0.16);
}

.ring-a {
  width: 60%;
}

.ring-b {
  width: 42%;
}

.orb-path {
  position: absolute;
  aspect-ratio: 1;
  border-radius: 50%;
  animation: orbit 12s linear infinite;
}
.orb-path i {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, #d6efff, #38bdf8 58%, transparent 74%);
  box-shadow: 0 0 10px 2px rgba(56, 189, 248, 0.75);
}
.orb-path::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 5px;
  height: 5px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, #a5d8ff, #6366f1 60%, transparent 74%);
  box-shadow: 0 0 8px 1px rgba(99, 102, 241, 0.7);
}

.orb-a {
  width: 60%;
  animation-duration: 13s;
}

.orb-b {
  width: 42%;
  animation-duration: 8s;
  animation-direction: reverse;
}

.orb-c {
  width: 51%;
  animation-duration: 17s;
}

.orb-c i {
  width: 6px;
  height: 6px;
}

.orb-c::after {
  display: none;
}

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}
@keyframes haze {
  0%, 100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}
@keyframes twinkle {
  0%, 100% {
    opacity: 0.28;
  }
  50% {
    opacity: 0.45;
  }
}
@media (prefers-reduced-motion: reduce) {
  .orb-path, .visual__glow, .visual__stars {
    animation: none;
  }
}
.stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}
.stat__icon {
  font-size: 22px;
  color: #3b82f6;
  margin-bottom: 0.1rem;
}
.stat__num {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}
.stat__label {
  font-size: 0.78rem;
  line-height: 1.3;
  color: var(--muted);
}

.hero__right {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    padding: 0;
  }
  .hero__right {
    order: -1;
    height: auto;
  }
  .hero__left {
    height: auto;
  }
  .visual {
    height: 240px;
    flex: none;
    transform: none;
  }
}
@media (max-width: 560px) {
  .hero__title {
    font-size: clamp(1.6rem, 8vw, 2rem);
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .visual {
    height: 200px;
  }
}
@media (max-height: 640px) and (min-width: 961px) {
  .visual {
    min-height: 150px;
  }
  .hero {
    align-items: start;
  }
}
.legal {
  flex: 1;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 1.25rem 0 2.5rem;
}
.legal__head {
  margin-bottom: 1.75rem;
}
.legal__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}
.legal__updated {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}
.legal__body {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}
.legal__body h2 {
  margin: 2rem 0 0.55rem;
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--text);
}
.legal__body p {
  margin: 0 0 1rem;
}
.legal__body ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}
.legal__body li {
  margin: 0.3rem 0;
}
.legal__body strong {
  color: var(--text);
  font-weight: 600;
}
.legal__body a {
  color: #3b82f6;
  text-decoration: none;
}
.legal__body a:hover {
  text-decoration: underline;
}
.legal__body .legal__lead {
  font-size: 1rem;
  color: var(--text);
}
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 2.25rem;
  color: #3b82f6;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}
.legal__back .material-symbols-rounded {
  font-size: 1.1rem;
}
.legal__back:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=login.css.map */
