:root {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #f5f7ff;
  background: #07111f;
  font-synthesis: none;
}

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(36, 109, 255, 0.24), transparent 34rem),
    radial-gradient(circle at 85% 80%, rgba(39, 194, 149, 0.13), transparent 30rem),
    #07111f;
}

.shell {
  width: min(100% - 2rem, 42rem);
  margin: 0 auto;
  padding: clamp(3rem, 10vh, 7rem) 0 2rem;
}

.eyebrow, .footnote {
  color: #8ca2c2;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card {
  padding: clamp(1.5rem, 5vw, 3rem);
  border: 1px solid rgba(151, 177, 216, 0.18);
  border-radius: 1.25rem;
  background: rgba(11, 26, 45, 0.88);
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(1rem);
}

.mark {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  border-radius: 0.9rem;
  color: #07111f;
  background: #72e0be;
  font-weight: 900;
  letter-spacing: -0.05em;
}

h1 {
  max-width: 13ch;
  margin: 1.6rem 0 0.8rem;
  font-size: clamp(2rem, 7vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.lede { color: #b9c7dc; line-height: 1.65; }

.status {
  margin: 1.75rem 0 0;
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  color: #d9e4f5;
  background: rgba(139, 165, 204, 0.1);
}

.status.success { color: #9cf1d5; background: rgba(39, 194, 149, 0.12); }
.status.error { color: #ffb4ad; background: rgba(255, 101, 91, 0.12); }

.identity { margin: 1.5rem 0 0; }
.identity div { padding: 0.8rem 0; border-bottom: 1px solid rgba(151, 177, 216, 0.14); }
.identity dt { color: #8ca2c2; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; }
.identity dd { margin: 0.25rem 0 0; overflow-wrap: anywhere; }

.actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
button {
  min-height: 2.8rem;
  padding: 0 1.1rem;
  border: 0;
  border-radius: 0.7rem;
  color: #07111f;
  background: #72e0be;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
button:hover { filter: brightness(1.08); }
button:focus-visible { outline: 3px solid #8cb4ff; outline-offset: 3px; }
button.secondary { color: #dce7f7; background: #213651; }
.footnote { margin-top: 1.25rem; line-height: 1.5; }
