body {
  background: linear-gradient(180deg, #fff5f0 0%, #fef9e7 100%);
  color: #1f2937;
  font-family:
    "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;
}

.shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px 96px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 56px;
}

.brand {
  font-weight: 800;
  font-size: 22px;
  color: #ea580c;
  letter-spacing: -0.01em;
}

.searchbar {
  flex: 1 1 auto;
  max-width: 480px;
  margin: 0 24px;
  background: #fff;
  border: 2px solid #fde0c8;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #9ca3af;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.08);
}

.btn-camera {
  background: #ea580c;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
}

.hero {
  text-align: center;
  margin-bottom: 56px;
}

.hero h1 {
  font-size: 56px;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #ea580c, #db2777);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 18px;
  color: #4b5563;
  margin: 0 auto;
  max-width: 60ch;
}

.identifiers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.id-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px 20px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  border: 2px solid transparent;
  transition: all 160ms ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.id-card:hover {
  transform: translateY(-4px);
  border-color: #fde0c8;
  box-shadow: 0 12px 28px rgba(234, 88, 12, 0.12);
}

.id-card .emoji {
  font-size: 44px;
  line-height: 1;
}

.id-card .name {
  font-weight: 700;
  font-size: 17px;
}

.id-card .stat {
  font-size: 12px;
  color: #6b7280;
}

.banner {
  background: #fff;
  border-radius: 20px;
  margin-top: 56px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
}

.banner .blob {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f97316, #db2777);
  flex: none;
}

.banner h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.banner p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
}

.back {
  text-align: center;
  margin-top: 64px;
  font-size: 13px;
}

.back a {
  color: #6b7280;
}
