*{box-sizing:border-box}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Tahoma,sans-serif;
  background:
    radial-gradient(circle at top right,#163b35 0,#07110f 36%,#050707 100%);
  color:#fff;
}
.app{
  min-height:100vh;
  padding:22px 16px 28px;
}
.hero{
  padding:22px 18px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:28px;
  background:linear-gradient(135deg,rgba(13,148,136,.24),rgba(255,255,255,.05));
  box-shadow:0 20px 60px rgba(0,0,0,.35);
  margin-bottom:18px;
}
.badge{
  display:inline-block;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(34,197,94,.18);
  color:#76ffb2;
  border:1px solid rgba(34,197,94,.28);
  font-size:13px;
}
h1{margin:14px 0 6px;font-size:25px}
p{margin:0;color:#b7c9c3;font-size:14px}
.grid{display:grid;gap:12px}
.card{
  width:100%;
  border:1px solid rgba(255,255,255,.10);
  border-radius:22px;
  padding:15px 14px;
  display:flex;
  align-items:center;
  gap:12px;
  background:rgba(255,255,255,.075);
  color:#fff;
  text-align:right;
  box-shadow:0 12px 34px rgba(0,0,0,.22);
  backdrop-filter:blur(14px);
}
.card.primary{
  background:linear-gradient(135deg,#15803d,#22c55e);
  box-shadow:0 16px 40px rgba(34,197,94,.24);
}
.card.success{
  background:linear-gradient(135deg,#0f766e,#14b8a6);
  box-shadow:0 16px 40px rgba(20,184,166,.22);
}
.card.danger{
  background:linear-gradient(135deg,rgba(239,68,68,.20),rgba(255,255,255,.075));
}
.icon{
  width:44px;height:44px;
  display:grid;place-items:center;
  border-radius:16px;
  background:rgba(255,255,255,.16);
  font-size:24px;
  flex:0 0 auto;
}
.card span:nth-child(2){flex:1}
b{display:block;font-size:16px;margin-bottom:5px}
small{display:block;color:rgba(255,255,255,.74);font-size:12px;line-height:1.6}
em{
  font-style:normal;
  font-size:28px;
  opacity:.7;
  transform:rotate(180deg);
}
