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

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  background: #000000;
  color: #f3eee7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.landing {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 24px;
}

.landing__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.landing__line {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #c5a059 40%, #e8c878 100%);
}

.landing__brand .landing__line:last-of-type {
  background: linear-gradient(90deg, #e8c878 0%, #c5a059 60%, transparent 100%);
}

.landing__star {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  color: #e8c878;
}

.landing__title {
  margin: 0;
  font-size: clamp(18px, 5vw, 24px);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
  color: #c5a059;
}

.landing__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 280px);
  padding: 16px 32px;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  background-color: #b04cff;
  background-image:
    radial-gradient(ellipse 95% 130% at 4% 18%, rgba(255, 87, 164, 0.62) 0%, transparent 58%),
    radial-gradient(
      ellipse 155% 200% at 30% 32%,
      rgba(192, 55, 171, 0.32) 0%,
      rgba(109, 30, 168, 0.38) 42%,
      transparent 72%
    ),
    radial-gradient(
      ellipse 145% 180% at 98% 92%,
      rgba(17, 26, 151, 0.55) 0%,
      rgba(17, 26, 151, 0.18) 52%,
      transparent 84%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.3) 0%,
      rgba(255, 255, 255, 0.1) 12%,
      transparent 36%,
      rgba(0, 0, 0, 0.1) 72%,
      rgba(0, 0, 0, 0.26) 100%
    ),
    linear-gradient(135deg, #ff9acf 0%, #b04cff 50%, #4d46ff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -2px 8px rgba(0, 0, 0, 0.28),
    0 8px 24px rgba(77, 70, 255, 0.42),
    0 3px 12px rgba(0, 0, 0, 0.48);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .landing__button:hover {
    transform: scale(1.05);
  }
}

.landing__button:active {
  transform: scale(0.98);
  box-shadow:
    inset 0 2px 6px rgba(0, 0, 0, 0.35),
    0 4px 12px rgba(77, 70, 255, 0.3);
}

@media (prefers-reduced-motion: reduce) {
  .landing__button {
    transition: none;
  }

  .landing__button:hover,
  .landing__button:active {
    transform: none;
  }
}
