:root {
  color-scheme: light;
  --brand-blue: #18109a;
  --paper: #ffffff;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 20rem;
  height: 100vh;
  height: 100svh;
  margin: 0;
  overflow: hidden;
  color: var(--brand-blue);
  background:
    radial-gradient(circle at 50% 42%, rgba(24, 16, 154, 0.055), transparent 24rem),
    var(--paper);
  font-family:
    Inter, "Helvetica Neue", Helvetica, Arial, ui-sans-serif, system-ui, sans-serif;
  text-rendering: optimizeLegibility;
}

.landing {
  display: flex;
  width: min(100%, 46rem);
  height: 100%;
  margin-inline: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vmin, 2.5rem);
  text-align: center;
}

.brand {
  width: clamp(5.25rem, 15vmin, 7.75rem);
  aspect-ratio: 1;
  overflow: hidden;
  flex: 0 0 auto;
  margin-bottom: clamp(0.75rem, 2.2vmin, 1.2rem);
}

.brand img {
  width: 178%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateX(-22%);
}

.name {
  width: 100%;
  margin: 0 0 clamp(0.45rem, 1.3vmin, 0.75rem);
  color: inherit;
  font-size: clamp(0.72rem, 1.5vmin, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.32em;
  text-indent: 0.32em;
  text-align: center;
}

h1 {
  width: 100%;
  margin: 0;
  color: inherit;
  font-size: clamp(2.75rem, 9vmin, 5.75rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-align: center;
}

.tagline {
  width: 100%;
  margin: clamp(0.75rem, 2vmin, 1.15rem) 0 0;
  color: inherit;
  font-size: clamp(0.9rem, 2.2vmin, 1.15rem);
  letter-spacing: 0.01em;
  line-height: 1.35;
  text-align: center;
}

.tagline strong {
  color: var(--brand-blue);
  font-weight: 750;
}

@media (max-height: 30rem) and (orientation: landscape) {
  .brand {
    width: 4.25rem;
    margin-bottom: 0.45rem;
  }

  .name {
    margin-bottom: 0.35rem;
  }

  h1 {
    font-size: clamp(2.35rem, 12vh, 3.5rem);
  }

  .tagline {
    margin-top: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
