.mio-identity-band {
  display: flex;
  gap: 8px;
  height: 58px;
  min-height: 58px;
}

.mio-identity-cell {
  flex: 1 1 0;
  min-width: 0;
  height: 58px;
  padding: 8px 10px;
  border: 1px solid rgb(var(--outline-variant));
  border-radius: 5px;
  background: rgb(var(--surface));
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.mio-identity-band.is-type-only .mio-identity-type {
  flex-basis: 100%;
}

.mio-identity-label,
.mio-feature-reveal-grid dt {
  color: rgb(var(--on-surface-variant));
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.mio-identity-label,
.mio-identity-value {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mio-identity-value {
  margin-top: 3px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.mio-feature-reveal-card {
  padding: 14px;
  border: 1px solid rgba(36, 138, 61, 0.28);
  border-radius: 6px;
  background: rgba(36, 138, 61, 0.07);
  animation: mio-feature-reveal-in 220ms ease-out both;
}

.mio-feature-reveal-heading {
  display: grid;
  gap: 3px;
}

.mio-feature-reveal-heading strong {
  font-size: 17px;
  font-weight: 500;
}

.mio-feature-reveal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0 0;
}

.mio-feature-reveal-grid > div {
  min-width: 0;
  padding: 9px 10px;
  border-radius: 5px;
  background: rgb(var(--surface));
}

.mio-feature-reveal-grid dd {
  margin: 3px 0 0;
  overflow: hidden;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@keyframes mio-feature-reveal-in {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .mio-feature-reveal-card { animation: none; }
}
