:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  background: #101828;
  color: #eef4ff;
}

* { box-sizing: border-box; }
body { margin: 0; min-height: 100vh; }
.shell { display: grid; min-height: 100vh; place-items: center; padding: 2rem; }
.card { width: min(100%, 42rem); padding: 3rem; border: 1px solid #344054; border-radius: 1rem; background: #182230; box-shadow: 0 1.5rem 4rem #0004; }
.brand-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.eyebrow { color: #98a2b3; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; }
.badge { padding: .4rem .7rem; border: 1px solid #475467; border-radius: 999px; color: #b9c3d0; font-size: .8rem; white-space: nowrap; }
.badge.success { border-color: #32d583; color: #6ce9a6; }
.badge.error { border-color: #f97068; color: #fda29b; }
h1 { margin: 1rem 0; font-size: clamp(2rem, 6vw, 3.5rem); line-height: 1.05; }
.status { color: #b9c3d0; }
.status.success { color: #6ce9a6; }
.status.error { color: #fda29b; }
.details { display: flex; gap: 1rem; align-items: flex-start; margin: 2rem 0 1rem; padding: 1rem; border: 1px solid #087443; border-radius: .75rem; background: #073b2a; }
.checkmark { display: grid; width: 2rem; height: 2rem; flex: 0 0 2rem; place-items: center; border-radius: 50%; background: #32d583; color: #073b2a; font-size: 1.2rem; font-weight: 800; }
.details strong { color: #d1fadf; }
.details p { margin: .35rem 0 0; color: #a6f4c5; line-height: 1.5; }
.button { display: inline-block; margin-top: 1rem; padding: .8rem 1.2rem; border-radius: .5rem; background: #84adff; color: #101828; font-weight: 700; text-decoration: none; }
.note { margin-top: 2rem; color: #98a2b3; font-size: .9rem; }

@media (max-width: 34rem) {
  .card { padding: 2rem; }
  .brand-row { align-items: flex-start; flex-direction: column; }
}
