* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --charcoal-black: #1A1A1A;
  --warm-white: #FAF8F5;
  --sand-gold: #D8C7A1;
  --terracotta: #C46A4A;
  --sage-green: #9DA57A;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--charcoal-black);
  color: var(--warm-white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
}

.logo {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--warm-white);
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}

.logo-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--terracotta);
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 80px 0 60px;
}

.headline {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.subheadline {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--sand-gold);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.launch-status {
  margin-bottom: 2rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--terracotta);
  border-radius: 4px;
  background-color: rgba(196, 106, 74, 0.05);
}

.launch-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.tagline {
  font-size: 1rem;
  color: var(--sage-green);
  font-style: italic;
}

.footer {
  padding-bottom: 20px;
  width: 100%;
}

.footer p {
  font-size: 0.75rem;
  color: var(--sand-gold);
  opacity: 0.6;
}

@media (max-width: 768px) {
  .logo {
    top: 30px;
  }

  .logo-text {
    font-size: 1.25rem;
  }

  .headline {
    font-size: 2rem;
  }

  .subheadline {
    font-size: 1rem;
    padding: 0 20px;
  }

  .tagline {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .headline {
    font-size: 1.75rem;
  }

  .subheadline {
    font-size: 0.95rem;
  }

  .launch-status {
    padding: 0.6rem 1.2rem;
  }

  .launch-text {
    font-size: 0.85rem;
  }
}