@font-face {
  font-family: 'Audiowide';
  src:
    url('/fonts/audiowide/Audiowide-Regular.woff2') format('woff2'),
    url('/fonts/audiowide/Audiowide-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


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

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0e0e10;
  color: #f5f5f7;
}

/* --- Layout --- */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

/* --- Logo --- */

.logo {
  width: 120px;
  height: auto;
  margin-bottom: 2rem;

  opacity: 0;
  transform: translateY(12px) scale(0.96);
  animation: logoFadeIn 1.2s ease-out forwards;
}

.logo-text {
  font-family: 'Audiowide', sans-serif;
  letter-spacing: 0.08em;

  width: 300px;
  height: auto;
  margin-bottom: 2rem;

  opacity: 0;
  transform: translateY(12px) scale(0.96);
  animation: logoFadeIn 1.2s ease-out forwards;
}

/* --- Brand name --- */

.brand {
  font-family: 'Audiowide', sans-serif;

  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;

  opacity: 0;
  animation: textFadeIn 1s ease-out forwards;
  animation-delay: 0.4s;
}

/* --- Tagline --- */

.tagline {
  font-size: 0.9rem;
  font-weight: 400;
  color: #a0a0a5;
  max-width: 520px;
  line-height: 1.6;

  opacity: 0.7;
  animation: textFadeIn 1s ease-out forwards;
  animation-delay: 0.7s;
}

/* --- Animations --- */

@keyframes logoFadeIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes textFadeIn {
  to {
    opacity: 1;
  }
}
