:root {
  font-family: Inter, Segoe UI, Arial, sans-serif;
  color: #172033;
  background: #f3f6fb;
}
* { box-sizing: border-box; }
body { margin: 0; min-height: 100vh; }
.shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}
.card {
  width: min(880px, 100%);
  background: white;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(23, 32, 51, 0.12);
  padding: 34px;
  border: 1px solid #e2e8f0;
}
.eyebrow {
  color: #3867d6;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}
h1 { margin: 8px 0 8px; font-size: 34px; }
.intro { margin-top: 0; color: #526174; }
.search-row {
  display: flex;
  gap: 12px;
  margin: 26px 0 14px;
}
input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 15px;
}
button {
  padding: 14px 22px;
  border: 0;
  border-radius: 10px;
  background: #3867d6;
  color: white;
  font-weight: 700;
  cursor: pointer;
}
button:hover { filter: brightness(.95); }
.examples {
  font-size: 13px;
  color: #667085;
  margin-bottom: 20px;
}
code {
  background: #eef2ff;
  color: #253b80;
  padding: 2px 5px;
  border-radius: 5px;
}
.status {
  min-height: 24px;
  color: #526174;
  margin: 18px 0;
}
.asset {
  border: 1px solid #dbe3ef;
  border-radius: 14px;
  padding: 18px;
  background: #fbfdff;
}
.asset-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.asset-title {
  font-size: 22px;
  font-weight: 800;
}
.badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  background: #ecfdf3;
  color: #027a48;
  font-size: 12px;
  font-weight: 700;
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.field {
  padding: 12px;
  background: white;
  border: 1px solid #edf2f7;
  border-radius: 10px;
}
.label {
  display: block;
  color: #667085;
  font-size: 12px;
  margin-bottom: 4px;
}
.value {
  font-weight: 650;
  overflow-wrap: anywhere;
}
@media (max-width: 680px) {
  .search-row { flex-direction: column; }
  .grid { grid-template-columns: 1fr; }
}
