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

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
}

.shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(37, 211, 102, 0.12), rgba(0, 149, 246, 0.12)),
    #f5f7fa;
}

.panel {
  width: min(720px, 100%);
  background: #ffffff;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 24px 80px rgba(16, 24, 40, 0.08);
}

.logo {
  width: 160px;
  height: auto;
}

.eyebrow {
  margin: 32px 0 12px;
  color: #008f5a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 620px;
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: 0;
}

.copy {
  max-width: 600px;
  margin: 18px 0 28px;
  color: #475467;
  font-size: 18px;
  line-height: 1.55;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #344054;
  font-size: 15px;
}

.status span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #12b76a;
  box-shadow: 0 0 0 4px rgba(18, 183, 106, 0.12);
}

code {
  padding: 3px 6px;
  border-radius: 6px;
  background: #eef2f6;
}

@media (max-width: 560px) {
  .shell {
    padding: 18px;
  }

  .panel {
    padding: 26px;
  }

  h1 {
    font-size: 32px;
  }

  .copy {
    font-size: 16px;
  }
}
