:root {
  --bg: #0c111b;
  --text: #e6edf6;
  --muted: #9aa7b4;
  --accent: #38c172;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: radial-gradient(800px 400px at 50% 20%, rgba(56,193,114,0.08), transparent),
              var(--bg);
  color: var(--text);
}

.container {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.content {
  max-width: 500px;
}

.logo {
  font-size: 40px;
  margin-bottom: 20px;
}

h1 {
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 0.5px;
  margin: 0 0 10px;
}

.subtitle {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}

.divider {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 30px auto;
  opacity: 0.6;
}

.coming {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

footer {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}
