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

body {
  font-family: 'Space Grotesk', sans-serif;
  background-color: #fefaf9;
  color: #0a0a0a;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.container {
  text-align: center;
  padding: 2rem;
  border: 8px double #FF623F;
  min-height: calc(100vh - 12px);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo {
  font-size: 8rem;
  font-weight: 700;
  color: #FF623F;
  margin-bottom: 0.2rem;
  letter-spacing: -0.02em;
  line-height: 1;
}

.tagline {
  font-size: 1.5rem;
  font-weight: 400;
  color: rgba(10, 10, 10, 0.8);
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}

.cta {
  font-size: 1.5rem;
  font-weight: 400;
  color: rgba(10, 10, 10, 0.8);
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  .logo {
    font-size: 4rem;
  }

  .tagline, .cta {
    font-size: 1rem;
  }
}
