:root {
  --background: #09080d;
  --text: #f2eef7;
  --muted: #aaa2b3;
  --soft: #68616f;
  --accent: #a77bff;
  --accent-soft: #6e45bc;
  --line: rgba(211, 188, 255, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100svh;
  overflow: hidden;
  color: var(--text);
  background:
    linear-gradient(90deg, transparent 0 49.96%, rgba(167, 123, 255, 0.07) 49.96% 50.04%, transparent 50.04%),
    radial-gradient(circle at 50% 92%, rgba(94, 42, 158, 0.13), transparent 34%),
    var(--background);
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.grain {
  position: fixed;
  z-index: 10;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.site-header,
footer {
  position: fixed;
  z-index: 2;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-inline: 30px;
}

.site-header {
  top: 0;
  padding-top: 26px;
}

.wordmark,
footer {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wordmark {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
}

main {
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: 110px 24px 100px;
}

.hero {
  width: min(100%, 1180px);
  text-align: center;
  position: relative;
  z-index: 1;
  animation: enter 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(70px, 11vw, 150px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

h1 span {
  color: var(--accent);
}

.tagline {
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.015em;
}

footer {
  bottom: 0;
  padding-bottom: 24px;
  color: var(--soft);
  font-size: 9px;
}

footer p {
  margin: 0;
}

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

@media (max-width: 640px) {
  .site-header,
  footer {
    padding-inline: 20px;
  }

  .site-header {
    padding-top: 21px;
  }

  main {
    padding-inline: 20px;
  }

  h1 {
    font-size: clamp(62px, 19vw, 82px);
    line-height: 0.9;
  }

  .tagline {
    margin-top: 28px;
    font-size: 13px;
  }

  footer {
    padding-bottom: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
  }
}
