@font-face {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://fonts.bunny.net/bebas-neue/files/bebas-neue-latin-400-normal.woff2")
    format("woff2");
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://fonts.bunny.net/dm-sans/files/dm-sans-latin-400-normal.woff2")
    format("woff2");
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("https://fonts.bunny.net/dm-sans/files/dm-sans-latin-500-normal.woff2")
    format("woff2");
}

:root {
  --bg: #141414;
  --surface: #1f1f1f;
  --text: #f5f5f5;
  --text-muted: #b3b3b3;
  --accent: #d42b2b;
  --accent-hover: #e83535;
  --accent-pressed: #b82424;
  --radius: 4px;
  --nav-height: 68px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100dvh;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  height: var(--nav-height);
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.92) 0%, rgba(20, 20, 20, 0) 100%);
}

.logo {
  font-family: "Bebas Neue", system-ui, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.logo:hover {
  color: var(--accent-hover);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100dvh;
  padding: calc(var(--nav-height) + 2rem) clamp(1.25rem, 5vw, 4rem) 3rem;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.02);
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(77deg, rgba(20, 20, 20, 0.95) 28%, rgba(20, 20, 20, 0.55) 58%, rgba(20, 20, 20, 0.25) 100%),
    linear-gradient(0deg, rgba(20, 20, 20, 1) 0%, rgba(20, 20, 20, 0) 42%),
    linear-gradient(180deg, rgba(20, 20, 20, 0.7) 0%, rgba(20, 20, 20, 0) 18%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, 38rem);
  animation: hero-enter 0.9s var(--ease) both;
}

.hero__status {
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero__title {
  margin-bottom: 1.25rem;
  font-family: "Bebas Neue", system-ui, sans-serif;
  font-size: clamp(2.75rem, 8vw, 4.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--text);
}

.hero__subtitle {
  max-width: 36ch;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.65;
  color: var(--text-muted);
}

.footer {
  position: relative;
  z-index: 1;
  padding: 2rem clamp(1.25rem, 5vw, 4rem) 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__copy {
  font-size: 0.8125rem;
  color: #737373;
}

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

  .logo {
    transition: none;
  }
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
