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

html, body {
  min-height: 100%;
  background: #000;
  color: #fff;
  font-family: -apple-system, "Segoe UI", Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 4vh 1.5rem 0;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-art {
  width: auto;
  height: auto;
  max-width: min(92vw, 560px);
  max-height: 62vh;
  box-shadow: 0 0 90px rgba(255, 255, 255, 0.12);
  animation: drift 9s ease-in-out infinite;
}

h1 {
  margin-top: 2.2rem;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.tagline {
  margin-top: 0.9rem;
  font-size: clamp(1rem, 2.6vw, 1.35rem);
  color: #b8b8b8;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.agent-line {
  margin-top: 0.7rem;
  font-size: clamp(0.9rem, 2.2vw, 1.05rem);
  color: #8a8a8a;
}

footer {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2.5rem 0 1.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #666;
}

@keyframes drift {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

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