:root {
  --ink: #0f172a;
  --blue: #00d2ff;
  --paper: #ffffff;
  --muted: #64748b;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.landing {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: clamp(4.5rem, 9vh, 7rem) clamp(1.25rem, 4vw, 4rem)
    clamp(6.75rem, 13vh, 9.5rem);
  isolation: isolate;
}

.logo {
  width: min(54vw, 35rem);
  aspect-ratio: 1;
}

.logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand {
  position: absolute;
  right: 0;
  bottom: clamp(1.75rem, 4.5vh, 3.5rem);
  left: 0;
  text-align: center;
  font-family: Poppins, "Century Gothic", Futura, Arial, sans-serif;
  font-size: clamp(1.65rem, 3.2vw, 2.65rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1;
}

.brand__domain {
  color: var(--blue);
}

@media (max-width: 640px) {
  .landing {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .logo {
    width: min(88vw, 29rem);
  }
}
