:root {
  --cohost-purple: #703cd3;
  --cohost-teal: #1db9a4;
  --cohost-dark: #2d2d2d;
  --bg-light: #ffffff;
}

* {
  box-sizing: border-box;
}

body, html {
  height: 100%;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--cohost-dark);
  background-color: var(--bg-light);
}

.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  text-align: center;
}

.logo-container {
  margin-bottom: 20px;
}

.logo {
  max-width: 500px;
  width: 100%;
  height: auto;
}

.tagline {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--cohost-dark);
  margin-top: 0;
  letter-spacing: 0.5px;
}

.content {
  margin: 40px 0;
  max-width: 500px;
}

.status-badge {
  display: inline-block;
  background-color: var(--cohost-teal);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

footer {
  position: absolute;
  bottom: 30px;
  font-size: 0.85rem;
  color: #999;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
  .logo { max-width: 300px; }
  .tagline { font-size: 1.2rem; }
}