:root {
  color: #282d3c;
  background: #ffffff;
  font-family: Arial, Helvetica, ui-sans-serif, system-ui, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

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

body {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  background: #ffffff;
}

.landing {
  display: flex;
  width: 100%;
  align-items: center;
  flex-direction: column;
  gap: clamp(2rem, 6vw, 3rem);
  padding: 2rem;
}

.logo {
  width: min(82vw, 32rem);
  aspect-ratio: 4 / 1;
}

.logo svg {
  display: block;
  width: 100%;
  height: 100%;
}

.cta {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  color: #ffffff;
  background: #282d3c;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 150ms ease, transform 150ms ease;
}

.cta:hover {
  background: #6c5ce7;
  transform: translateY(-1px);
}

.cta:focus-visible {
  outline: 3px solid #6c5ce7;
  outline-offset: 4px;
}

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