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

html,
body {
  height: 100%;
}

body {
  background: #ffffff;
  color: #1a1a1a;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
}

.landing {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 3.5rem);
  padding: clamp(2rem, 6vw, 4rem) 1.5rem;
}

.wordmark {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.18em;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1;
}

.wordmark .ai {
  font-weight: 400;
  letter-spacing: 0.08em;
}

.wordmark .dot {
  letter-spacing: 0;
  font-weight: 400;
  opacity: 0.65;
  margin: 0 -0.02em;
}

.illustration {
  width: min(720px, 92vw);
  line-height: 0;
}

.illustration img {
  display: block;
  width: 100%;
  height: auto;
}
