:root {
  --bg: #0d0b10;
  --bg-soft: #17121d;
  --text: #f1edf5;
  --muted: #a99faf;
  --accent: #62389b;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 38%, rgba(98, 56, 155, 0.16), transparent 34rem),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 48%, #09080b 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

main {
  flex: 1;
  display: grid;
  place-items: center;
  width: 100%;
  padding: clamp(2.5rem, 8vw, 6rem) 1.5rem;
}

.hero {
  width: min(100%, 760px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo {
  display: block;
  width: clamp(170px, 34vw, 290px);
  height: auto;
  margin: 0 auto clamp(2rem, 5vw, 3.5rem);
  filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.28));
}

.mottoes {
  margin: 0;
  max-width: 720px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 2.7vw, 1.55rem);
  line-height: 1.65;
  font-style: italic;
  letter-spacing: 0.01em;
}

.motto {
  display: block;
}

.separator {
  display: block;
  margin: 0.65rem 0;
  color: var(--accent);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-style: normal;
  font-size: 0.9em;
  font-weight: 700;
}

.coming-soon {
  position: relative;
  margin: clamp(2.2rem, 6vw, 3.5rem) 0 0;
  padding-top: clamp(1.6rem, 4vw, 2.25rem);
  color: var(--muted);
  font-size: clamp(0.88rem, 2vw, 1rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.coming-soon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 56px;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

footer {
  padding: 0 1.5rem calc(1.25rem + env(safe-area-inset-bottom));
  color: rgba(255, 255, 255, 0.42);
  text-align: center;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

footer h1 {
  display: inline;
  margin: 0;
  font: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

@media (max-width: 480px) {
  main {
    padding-inline: 1.15rem;
  }

  .mottoes {
    line-height: 1.55;
  }

  .coming-soon {
    letter-spacing: 0.1em;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .logo,
  .mottoes,
  .coming-soon {
    animation: reveal 900ms ease-out both;
  }

  .mottoes {
    animation-delay: 110ms;
  }

  .coming-soon {
    animation-delay: 220ms;
  }

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