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

:root {
  --bg: #080808;
  --text: #f0f0f0;
  --muted: #9a9a9a;
  --amber: #f59e0b;
}

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('public/hero.jpg');
  background-size: cover;
  background-position: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 8, 8, 0.55) 0%,
    rgba(8, 8, 8, 0.80) 100%
  );
}

.content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(2rem, 6vw, 4rem);
  gap: 0;
}

.logo {
  width: clamp(140px, 28vw, 280px);
  height: auto;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.6));
}

.divider {
  width: clamp(40px, 8vw, 80px);
  height: 3px;
  background: var(--amber);
  margin: clamp(1.5rem, 4vw, 2.5rem) 0;
  border-radius: 2px;
}

h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 14vw, 10rem);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--text);
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.7);
}

.tagline {
  margin-top: clamp(1rem, 2.5vw, 1.75rem);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  line-height: 1.7;
  color: #c8c8c8;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}
