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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  background: #fff;
  color: #222;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  text-align: center;
  padding: 2rem;
}

h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #1a1a2e;
}

h1 span {
  color: #e8663e;
}

h1::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  background: #f2c94c;
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

.tagline {
  margin-top: 2rem;
  font-size: 1rem;
  color: #999;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
