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

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

body {
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  font-weight: 200;
  color: #ffffff;
  background-color: #000000;
  background-image: url("assets/bg-silk.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 90% 70% at 50% 45%,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.75rem, 6vw, 3.5rem);
}

.hero__inner {
  width: 100%;
  max-width: 34rem;
  text-align: center;
}

.hero__brand {
  margin: 0 0 clamp(1.75rem, 5vw, 2.5rem);
  font-size: 0;
  line-height: 0;
}

.hero__logo {
  display: block;
  width: min(100%, 22rem);
  height: auto;
  margin-inline: auto;
}

.hero__lead,
.hero__text {
  margin: 0;
  font-size: clamp(0.8125rem, 2.4vw, 0.9375rem);
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.88);
}

.hero__lead {
  margin-bottom: 1.25rem;
  font-weight: 200;
}

.hero__text {
  margin-bottom: 1.75rem;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.78);
}

.hero__email {
  display: inline-block;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 200;
  letter-spacing: 0.06em;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding-bottom: 0.15em;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.hero__email:hover {
  border-bottom-color: rgba(255, 255, 255, 0.9);
}

.hero__email:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 4px;
}
