/* Simple, modern coming soon styles */
:root {
  --bg1: #1a1520;
  --bg2: #0f0a14;
  --accent: #c77dff;
  --muted: rgba(255, 255, 255, 0.75);
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    Roboto, "Helvetica Neue", Arial;
  background: linear-gradient(135deg, var(--bg1), var(--bg2));
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.center {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.brand .logo {
  width: 88px;
  height: 88px;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.1rem;
  margin: 0 0 0.25rem;
}
.tag {
  color: var(--muted);
  margin: 0 0 1.1rem;
}
.blurb p {
  max-width: 44ch;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.86);
}
.meta {
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 720px) {
  h1 {
    font-size: 2.8rem;
  }
  .brand .logo {
    width: 112px;
    height: 112px;
  }
}

/* small accessible focusable reveal helper (optional) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
