/* ===== CEILING POLICE AGENT PORTAL ===== */
:root {
  --navy: #0a1e5a;
  --navy-dark: #061240;
  --red: #c41e1e;
  --gold: #c9a227;
  --gold-bright: #ffd84d;
  --cream: #f4f0e2;
  --ink: #0a0a0a;
  --gray: #2d2d2d;
  --muted: #6b6b6b;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
  min-height: 100vh;
  background-image:
    repeating-linear-gradient(0deg, rgba(0,0,0,0.015) 0px, rgba(0,0,0,0.015) 1px, transparent 1px, transparent 3px);
}

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--red); }

/* ===== Top nav (like a precinct badge bar) ===== */
.topnav {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-bottom: 3px solid var(--red);
  position: relative;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.topnav::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: repeating-linear-gradient(90deg,
    #ff2020 0 20px, #0a0a0a 20px 22px, #2040ff 22px 42px, #0a0a0a 42px 44px);
  opacity: 0.9;
}
.nav-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 10px; color: white; }
.brand-badge {
  width: 36px; height: 36px;
  background: radial-gradient(circle at 30% 25%, #ffe89a 0%, var(--gold) 60%, #8a6d14 100%);
  border: 2px solid #5a4408;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #3a2c05; font-size: 18px; font-weight: 900;
  box-shadow: inset 0 -2px 3px rgba(0,0,0,0.3), inset 0 2px 3px rgba(255,255,255,0.5);
}
.brand-text { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 20px; line-height: 1; letter-spacing: 2px; }
.brand-ceiling { color: white; margin-right: 4px; }
.brand-police { color: var(--gold-bright); }
.brand-agency {
  font-family: 'Oswald', sans-serif; font-size: 10px; letter-spacing: 2px;
  color: var(--gold); text-transform: uppercase; margin-left: 6px;
  border-left: 1px solid var(--gold); padding-left: 8px;
}
.nav-links { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.nav-links a {
  color: white; font-weight: 600; font-size: 14px;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 6px 2px;
}
.nav-links a:hover { color: var(--gold-bright); }
.nav-links a.btn-submit {
  background: var(--red);
  padding: 8px 14px;
  border-radius: 3px;
  border: 1px solid var(--gold);
  box-shadow: 0 2px 0 rgba(0,0,0,0.4);
}
.nav-links a.btn-submit:hover { background: #e23030; color: var(--gold-bright); }
.nav-logout {
  background: transparent; border: 1px solid var(--gold);
  color: var(--gold-bright); padding: 5px 10px; border-radius: 2px;
  font-weight: 600; font-size: 12px; cursor: pointer; letter-spacing: 1px;
  text-transform: uppercase; font-family: inherit;
}
.nav-logout:hover { background: var(--gold); color: var(--navy); }

.nav-badge { margin-left: auto; text-align: right; }
.nav-rank {
  display: inline-block;
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 2px;
  padding: 3px 9px; border-radius: 2px; color: white;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2);
}
.nav-num {
  display: block;
  color: var(--gold-bright); font-family: 'Oswald', sans-serif;
  font-size: 11px; letter-spacing: 2px; margin-top: 3px;
}

/* ===== Main container ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 32px 24px; }
.container-narrow { max-width: 700px; margin: 0 auto; padding: 32px 24px; }

/* ===== Section banner ===== */
.page-banner {
  background: var(--navy);
  color: var(--gold-bright);
  padding: 18px 24px;
  border-bottom: 3px solid var(--red);
  position: relative;
}
.page-banner::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0; height: 3px;
  background: repeating-linear-gradient(135deg, #000 0 7px, var(--gold-bright) 7px 14px);
  opacity: 0.5;
}
.page-title {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 26px; letter-spacing: 3px; text-transform: uppercase;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
}
.page-subtitle {
  font-size: 12px; letter-spacing: 2px; color: white;
  margin-top: 2px; font-weight: 500;
}

/* ===== Stat cards ===== */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}
.stat-card {
  background: white;
  border: 2px solid var(--navy);
  border-radius: 4px;
  padding: 16px 18px;
  box-shadow: 3px 3px 0 var(--ink);
  position: relative;
}
.stat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--red);
}
.stat-label {
  font-family: 'Oswald', sans-serif; font-size: 11px;
  color: var(--muted); letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700;
}
.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 32px; color: var(--navy); font-weight: 900;
  margin-top: 4px; line-height: 1;
}
.stat-value.money { color: var(--red); }
.stat-sub { font-size: 11px; color: var(--muted); margin-top: 4px; }

/* ===== Rank progression ===== */
.rank-card {
  background: white;
  border: 2px solid var(--navy);
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: 3px 3px 0 var(--ink);
}
.rank-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 14px;
}
.rank-badge-big {
  width: 60px; height: 60px;
  background: radial-gradient(circle at 30% 25%, #ffe89a 0%, var(--gold) 60%, #8a6d14 100%);
  border: 3px solid #5a4408;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #3a2c05; font-size: 28px; font-weight: 900;
  box-shadow: inset 0 -3px 5px rgba(0,0,0,0.3), inset 0 3px 5px rgba(255,255,255,0.5), 0 2px 6px rgba(0,0,0,0.3);
}
.rank-name-big {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 28px; color: var(--navy);
  letter-spacing: 3px; text-transform: uppercase;
}
.rank-sub { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; }

.progress-track {
  background: #eae4d0;
  height: 20px;
  border-radius: 2px;
  border: 1px solid var(--navy);
  overflow: hidden;
  position: relative;
  margin: 8px 0;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transition: width .3s;
}
.progress-text {
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--muted); margin-top: 6px;
  font-weight: 600;
}

/* ===== Content blocks ===== */
.block {
  background: white;
  border: 2px solid var(--navy);
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 2px 2px 0 var(--ink);
}
.block-title {
  font-family: 'Oswald', sans-serif; font-size: 16px;
  color: var(--navy); letter-spacing: 2px;
  text-transform: uppercase; font-weight: 700;
  border-bottom: 2px solid var(--red); padding-bottom: 6px; margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}

/* ===== Tables ===== */
table.data {
  width: 100%; border-collapse: collapse;
}
table.data th {
  background: var(--navy); color: var(--gold-bright);
  font-family: 'Oswald', sans-serif; font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 10px 12px; text-align: left;
}
table.data td {
  padding: 10px 12px;
  border-bottom: 1px solid #e2ddcf;
  font-size: 13px;
}
table.data tr:hover td { background: #faf7ec; }
.status-pill {
  display: inline-block; padding: 3px 10px;
  font-size: 10px; letter-spacing: 1.5px; font-weight: 700;
  text-transform: uppercase; border-radius: 2px;
}
.status-PENDING { background: #fef3c7; color: #92400e; border: 1px solid #f59e0b; }
.status-CONFIRMED { background: #dcfce7; color: #166534; border: 1px solid #22c55e; }
.status-REJECTED { background: #fee2e2; color: #991b1b; border: 1px solid #ef4444; }

/* ===== Forms ===== */
.form-wrap {
  background: white;
  border: 2px solid var(--navy);
  border-radius: 4px;
  padding: 30px;
  box-shadow: 4px 4px 0 var(--ink);
  max-width: 560px;
  margin: 0 auto;
}
.form-title {
  font-family: 'Oswald', sans-serif; font-size: 22px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--navy); text-align: center;
  border-bottom: 2px solid var(--red); padding-bottom: 10px; margin-bottom: 20px;
}
.field { margin-bottom: 14px; }
.field label {
  display: block; font-family: 'Oswald', sans-serif;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; color: var(--gray); margin-bottom: 5px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 10px 12px;
  border: 1.5px solid #bfb8a3;
  background: #fafaf4;
  border-radius: 2px;
  font-family: inherit; font-size: 14px;
  transition: border-color .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red);
}
.field textarea { resize: vertical; min-height: 80px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-primary {
  background: var(--red);
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 15px; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 700;
  padding: 12px 24px;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  cursor: pointer; width: 100%;
  transition: transform .1s;
}
.btn-primary:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--ink); }
.btn-primary:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.btn-secondary {
  background: white;
  color: var(--navy);
  border: 2px solid var(--navy);
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  padding: 10px 18px; border-radius: 2px; cursor: pointer;
}
.btn-secondary:hover { background: var(--navy); color: var(--gold-bright); }
.error-msg {
  background: #fee2e2; color: #991b1b;
  padding: 10px 14px; border-left: 4px solid var(--red);
  margin-bottom: 14px; font-size: 13px;
}
.success-msg {
  background: #dcfce7; color: #166534;
  padding: 10px 14px; border-left: 4px solid #22c55e;
  margin-bottom: 14px; font-size: 13px;
}

/* ===== Landing hero ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #061240 100%);
  color: white;
  padding: 80px 24px 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 8px;
  background: repeating-linear-gradient(90deg,
    #ff2020 0 28px, #0a0a0a 28px 30px, #2040ff 30px 58px, #0a0a0a 58px 60px);
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 8px;
  background: repeating-linear-gradient(135deg, #000 0 10px, var(--gold-bright) 10px 20px);
}
.hero h1 {
  font-family: 'Playfair Display', serif; font-size: 64px;
  font-weight: 900; letter-spacing: 6px; line-height: 1;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.4);
}
.hero h1 .red { color: var(--gold-bright); }
.hero p.tag {
  font-family: 'Oswald', sans-serif; color: var(--gold-bright);
  font-size: 16px; letter-spacing: 4px; margin-top: 16px;
  text-transform: uppercase;
}
.hero p.pitch {
  font-size: 18px; margin-top: 24px; max-width: 620px; margin-left: auto; margin-right: auto;
  color: rgba(255,255,255,0.9);
}
.hero-cta {
  margin-top: 36px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.cta-primary {
  background: var(--red); color: white;
  font-family: 'Oswald', sans-serif; font-size: 18px; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 700;
  padding: 14px 28px; border: 2px solid var(--gold-bright);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.5);
  cursor: pointer;
}
.cta-primary:hover { background: #e23030; color: var(--gold-bright); }
.cta-secondary {
  background: transparent; color: var(--gold-bright);
  font-family: 'Oswald', sans-serif; font-size: 15px; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 700;
  padding: 14px 24px; border: 2px solid var(--gold-bright);
  cursor: pointer;
}

/* ===== How it works ===== */
.how {
  padding: 60px 24px; background: var(--cream); text-align: center;
}
.how h2 {
  font-family: 'Oswald', sans-serif; font-size: 28px; letter-spacing: 4px;
  color: var(--navy); text-transform: uppercase;
  margin-bottom: 10px;
}
.how-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px; max-width: 1000px; margin: 40px auto 0;
}
.how-step {
  background: white; border: 2px solid var(--navy);
  padding: 24px 18px; box-shadow: 4px 4px 0 var(--ink);
  position: relative;
}
.how-step-num {
  width: 44px; height: 44px;
  background: var(--red); color: white;
  border: 2px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 700;
  margin: 0 auto 12px;
}
.how-step h3 {
  font-family: 'Oswald', sans-serif; color: var(--navy);
  letter-spacing: 3px; text-transform: uppercase; font-size: 17px;
}
.how-step p { font-size: 13px; color: var(--gray); margin-top: 8px; }

/* ===== Report cards (list) ===== */
.report-list { display: flex; flex-direction: column; gap: 12px; }
.report-item {
  background: white; border: 2px solid var(--navy);
  padding: 14px 18px; display: flex; gap: 16px;
  box-shadow: 2px 2px 0 var(--ink);
  border-radius: 2px;
  align-items: center;
}
.report-item img { width: 70px; height: 70px; object-fit: cover; border: 2px solid var(--ink); }
.report-meta { flex: 1; }
.report-business {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 16px; color: var(--navy); letter-spacing: 1px;
}
.report-addr { font-size: 12px; color: var(--muted); margin-top: 2px; }
.report-date { font-size: 11px; color: var(--muted); letter-spacing: 1px; }
.report-reward {
  font-family: 'Playfair Display', serif;
  font-size: 22px; color: var(--red); font-weight: 900;
}

/* ===== Mission cards ===== */
.mission-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px;
}
.mission-card {
  background: white; border: 2px solid var(--navy);
  padding: 18px; box-shadow: 3px 3px 0 var(--ink);
  position: relative;
}
.mission-card::before {
  content: attr(data-type);
  position: absolute; top: 0; right: 0;
  background: var(--red); color: white;
  font-family: 'Oswald', sans-serif; font-size: 10px;
  letter-spacing: 2px; padding: 3px 10px; text-transform: uppercase;
}
.mission-title {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 17px; color: var(--navy); letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 8px;
}
.mission-desc { font-size: 13px; color: var(--gray); margin-bottom: 12px; }
.mission-reward {
  font-family: 'Playfair Display', serif;
  font-size: 24px; color: var(--red); font-weight: 900;
}

/* ===== Rank ladder ===== */
.rank-list { display: flex; flex-direction: column; gap: 10px; }
.rank-row {
  background: white; border: 2px solid var(--navy);
  padding: 14px 18px; display: flex; align-items: center; gap: 16px;
  box-shadow: 2px 2px 0 var(--ink);
}
.rank-row.current { border-color: var(--red); background: #fff7f0; }
.rank-chip {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 12px; color: white; border-radius: 2px;
  min-width: 140px; text-align: center;
}
.rank-details { flex: 1; }
.rank-req { font-size: 13px; color: var(--gray); }
.rank-mult {
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: 20px; color: var(--red);
}

/* ===== Leaderboard ===== */
.lb-list { display: flex; flex-direction: column; gap: 8px; }
.lb-row {
  background: white; border: 2px solid var(--navy);
  padding: 12px 18px; display: flex; align-items: center; gap: 16px;
  box-shadow: 2px 2px 0 var(--ink);
}
.lb-place {
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: 28px; color: var(--navy); width: 50px;
}
.lb-row:nth-child(1) .lb-place { color: var(--gold); }
.lb-row:nth-child(2) .lb-place { color: #808080; }
.lb-row:nth-child(3) .lb-place { color: #b87333; }
.lb-agent { flex: 1; }
.lb-name { font-weight: 700; color: var(--navy); }
.lb-loc { font-size: 12px; color: var(--muted); }
.lb-count { text-align: right; }
.lb-reports { font-family: 'Oswald', sans-serif; color: var(--navy); font-weight: 700; }

/* ===== Footer ===== */
.footer {
  background: var(--navy); color: var(--gold); padding: 18px 24px;
  border-top: 3px solid var(--red); margin-top: 60px;
}
.foot-wrap {
  max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-size: 12px; letter-spacing: 2px;
}
.foot-seal { font-weight: 700; }
.foot-tag { color: rgba(255,255,255,0.7); }

/* ===== Responsive ===== */
@media (max-width: 680px) {
  .hero h1 { font-size: 38px; letter-spacing: 3px; }
  .nav-wrap { flex-direction: column; gap: 12px; }
  .nav-badge { margin-left: 0; }
  .row2 { grid-template-columns: 1fr; }
}

/* ===== Official Agent Badge ===== */
.agent-badge-card {
  background: white;
  border: 2px solid var(--navy);
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: 3px 3px 0 var(--ink);
}
.agent-badge {
  background: linear-gradient(135deg, #f4f0e2 0%, #faf7ec 50%, #f4f0e2 100%);
  border: 2px solid var(--navy);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 20px rgba(10, 30, 90, 0.08);
}
.agent-badge::before {
  content: '★';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 200px;
  color: rgba(10, 30, 90, 0.05);
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  pointer-events: none;
  line-height: 1;
}
.agent-badge-top {
  background: var(--navy);
  color: var(--gold-bright);
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  padding: 6px;
  border-bottom: 2px solid var(--red);
  position: relative;
  text-transform: uppercase;
  font-weight: 700;
}
.agent-badge-top::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0; height: 2px;
  background: repeating-linear-gradient(135deg, #000 0 5px, var(--gold-bright) 5px 10px);
  opacity: 0.5;
}
.agent-badge-body {
  display: flex; align-items: center; gap: 20px;
  padding: 18px 20px;
  position: relative;
}
.agent-photo {
  width: 100px; height: 120px;
  border: 3px solid var(--navy);
  box-shadow: 2px 2px 0 var(--ink);
  background: #eae4d0;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.agent-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.95);
}
.agent-photo-empty {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: repeating-linear-gradient(45deg, #eae4d0 0 6px, #dfd8c2 6px 12px);
  color: var(--muted);
}
.agent-photo::after {
  content: '';
  position: absolute; top: 6px; left: 6px;
  width: 10px; height: 10px;
  background: var(--red); border-radius: 50%;
  box-shadow: 0 0 0 2px white;
}
.agent-badge-info { flex: 1; min-width: 0; }
.agent-name {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 6px;
}
.agent-rank-chip {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  padding: 4px 10px;
  color: white;
  border: 1px solid rgba(0,0,0,0.3);
  box-shadow: 1px 1px 0 rgba(0,0,0,0.2);
  margin-bottom: 12px;
}
.agent-badge-meta {
  display: flex; gap: 20px; flex-wrap: wrap;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
}
.agent-badge-meta > div {
  display: flex; flex-direction: column;
}
.agent-badge-meta span {
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 9px;
}
.agent-badge-meta strong {
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 2px;
}
.agent-seal {
  width: 78px; height: 78px;
  background: radial-gradient(circle at 30% 25%, #ffe89a 0%, var(--gold) 60%, #8a6d14 100%);
  border: 3px solid #5a4408;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #3a2c05;
  font-family: 'Oswald', sans-serif;
  box-shadow: inset 0 -3px 5px rgba(0,0,0,0.3), inset 0 3px 5px rgba(255,255,255,0.5), 0 3px 8px rgba(0,0,0,0.3);
  flex-shrink: 0;
  transform: rotate(-6deg);
}
.seal-star { font-size: 26px; line-height: 1; margin-bottom: 2px; }
.seal-text { font-size: 9px; font-weight: 700; letter-spacing: 2px; }

@media (max-width: 680px) {
  .agent-badge-body { flex-direction: column; text-align: center; }
  .agent-badge-meta { justify-content: center; }
  .agent-seal { position: absolute; top: 30px; right: 12px; width: 50px; height: 50px; transform: rotate(-12deg); }
  .seal-star { font-size: 18px; }
  .seal-text { font-size: 7px; }
}
