:root {
  --color-background: #fffbf6;
  --color-primary: #ff7c26;
  --color-primary-dark: #e05c00;
  --color-accent: #ff9f59;
  --color-text: #2f2a26;
  --color-muted: #7a6c63;
  --font-family-base: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body.page {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-family-base);
  color: var(--color-text);
  background: linear-gradient(145deg, var(--color-background) 0%, #fff 100%);
  display: flex;
  flex-direction: column;
}

.container {
  width: min(920px, 92vw);
  margin: 0 auto;
}

.hero {
  background: radial-gradient(circle at top left, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  padding: 3rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  transform: rotate(18deg);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.brand {
  font-weight: 700;
  font-size: clamp(1.8rem, 2.4vw + 1rem, 2.5rem);
  text-decoration: none;
  color: #fff;
  letter-spacing: 0.04em;
}

.tagline {
  display: block;
  margin-top: 0.75rem;
  font-size: clamp(1rem, 1.6vw + 0.5rem, 1.25rem);
  opacity: 0.85;
}

.content {
  flex: 1;
  padding: 4rem 0 3rem;
}

.coming-soon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.message-card {
  background: #fff;
  border-radius: 24px;
  padding: clamp(2rem, 3vw + 1rem, 2.75rem);
  box-shadow: 0 22px 65px rgba(255, 124, 38, 0.18);
  text-align: center;
  max-width: 640px;
  border: 1px solid rgba(255, 156, 88, 0.2);
}

.status {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  background: rgba(255, 124, 38, 0.12);
  color: var(--color-primary-dark);
  font-weight: 600;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.message-card h1 {
  font-size: clamp(1.7rem, 2vw + 1rem, 2.4rem);
  line-height: 1.4;
  margin: 0 0 1rem;
}

.message-card p {
  font-size: clamp(1rem, 0.5vw + 1rem, 1.15rem);
  color: var(--color-muted);
  margin: 0;
}

.footer {
  background: #0f0a04;
  color: rgba(255, 255, 255, 0.72);
  padding: 1.5rem 0;
  font-size: 0.95rem;
}

.footer p {
  margin: 0;
  text-align: center;
}

@media (max-width: 640px) {
  .hero {
    padding: 2.5rem 0 2rem;
  }

  .message-card {
    padding: 2rem 1.6rem;
  }
}
