:root {
  color-scheme: dark;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0e1116;
  color: #f5f7fa;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at top, rgba(0, 217, 126, 0.16), transparent 38%),
    #0e1116;
}

main {
  width: min(620px, 100%);
  padding: 48px 32px;
  text-align: center;
  background: #1a1f2b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.logo {
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  border-radius: 22px;
  background: #00d97e;
  color: #0e1116;
  font-size: 40px;
  font-weight: 900;
  font-style: italic;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(36px, 8vw, 56px);
}

p {
  margin: 0 auto;
  max-width: 480px;
  color: #aab2c0;
  font-size: 17px;
  line-height: 1.7;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(0, 217, 126, 0.12);
  color: #40e69f;
  font-weight: 700;
}

.status::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #00d97e;
}
