:root {
  --bg: #f7f8fa;
  --bg-deep: #dde1e6;
  --bg-shadow: #b7bec7;
  --text: #0c2540;
  --text-soft: rgba(12, 37, 64, 0.72);
  --accent: #1c8a99;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
}

.stage {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.panel {
  width: min(100%, 920px);
  padding: clamp(2rem, 6vw, 4.5rem);
  text-align: center;
  display: grid;
  justify-items: center;
  transform: translateY(clamp(-5rem, -10vh, -2rem));
}

.wordmark {
  margin: 0;
  font-size: clamp(3.5rem, 13vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  font-weight: 800;
  color: var(--text);
}

.wordmark sup {
  font-size: 0.28em;
  vertical-align: top;
  margin-left: 0.12em;
  letter-spacing: 0;
}

.tagline {
  margin: 1.4rem auto 0;
  max-width: 28rem;
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.6;
  color: var(--text-soft);
}

.status {
  margin: 2rem auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(12, 37, 64, 0.08);
  background: #f7fafb;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 600;
}

.privacy {
  position: fixed;
  left: 1rem;
  bottom: 0.9rem;
  color: var(--text-soft);
  font-size: 0.96rem;
  text-decoration: none;
}

.privacy:hover,
.privacy:focus-visible {
  color: var(--text);
  outline: none;
}

@media (max-width: 640px) {
  .stage {
    padding: 1rem;
  }
}
