@font-face {
  font-family: "Clash Display";
  src: url("../assets/fonts/ClashDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #231f20;
  --ink: #000;
  --lime: #c4f53a;
  --white: #f7f5f2;
}

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

html,
body {
  min-height: 100%;
  background: #000;
}

body {
  font-family: "Clash Display", sans-serif;
  background: #000;
  color: var(--white);
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}

.logo {
  width: 92px;
  height: auto;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.9s ease forwards;
}

.eyebrow {
  font-family: "Clash Display", sans-serif;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--lime);
  margin-bottom: 14px;
  opacity: 0;
  animation: rise 0.9s ease 0.12s forwards;
}

h1 {
  font-family: "Clash Display", sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1;
  letter-spacing: 0.08em;
  opacity: 0;
  animation: rise 0.9s ease 0.22s forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo,
  .eyebrow,
  h1 {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
