@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Variable.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-text: #f5f5f0;
  --color-text-dim: rgba(245, 245, 240, 0.72);
  --color-text-faint: rgba(245, 245, 240, 0.45);
  --overlay-top: rgba(10, 12, 10, 0.1);
  --overlay-bottom: rgba(8, 10, 8, 0.62);
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--color-text);
  background: #0a0a0a;
}

.brand {
  position: fixed;
  top: 1.75rem;
  left: 1.75rem;
  z-index: 2;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-text-dim);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  text-align: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, var(--overlay-top) 0%, var(--overlay-bottom) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  animation: rise 0.9s ease-out both;
}

.hero__content h1 {
  margin: 0 0 0.6rem;
  font-size: clamp(2.75rem, 3rem + 4vw, 5.5rem);
  font-weight: 300;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero__content p {
  margin: 0;
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.2rem);
  font-weight: 300;
  color: var(--color-text-dim);
  letter-spacing: 0.01em;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
}

footer {
  position: fixed;
  bottom: 1.25rem;
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: var(--color-text-faint);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(0.75rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__content {
    animation: none;
  }
}
