@font-face {
  font-family: "Anonymous Pro";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/anonymous-pro-400.woff2") format("woff2");
}

@font-face {
  font-family: "Anonymous Pro";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/anonymous-pro-700.woff2") format("woff2");
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Anonymous Pro", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  color: #E8E8F0;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image:
    linear-gradient(180deg, rgba(10, 6, 16, 0.35) 0%, rgba(10, 6, 16, 0.35) 45%, rgba(10, 6, 16, 0.75) 100%),
    url("assets/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.content {
  max-width: 56rem;
  padding: 4rem 3rem;
  text-align: left;
}

h1 {
  margin: 0 0 1.25rem;
  font-weight: 700;
  font-size: clamp(2rem, 3vw + 1.5rem, 3.75rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.subhead {
  margin: 0 0 1.5rem;
  font-weight: 700;
  font-size: clamp(1.1rem, 1vw + 0.9rem, 1.5rem);
}

.intro {
  margin: 0 0 1.25rem;
  font-weight: 400;
  font-size: clamp(0.95rem, 0.5vw + 0.8rem, 1.15rem);
  opacity: 0.9;
}

.tagline {
  margin: 0 0 2rem;
  font-weight: 400;
  font-size: clamp(0.85rem, 0.4vw + 0.75rem, 1.05rem);
  opacity: 0.9;
}

.socials {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.socials a {
  display: inline-flex;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}

.socials a:hover,
.socials a:focus-visible {
  opacity: 1;
}

.socials img {
  display: block;
  filter: brightness(0) saturate(100%) invert(94%) sepia(4%) saturate(538%) hue-rotate(202deg) brightness(101%) contrast(96%);
}

@media (max-width: 640px) {
  .content {
    padding: 2.5rem 1.5rem 3.5rem;
  }
}
