:root {
  color-scheme: light;
  --paper: #eef1ef;
  --paper-2: #f8faf8;
  --ink: #0a0d10;
  --ink-2: #14191e;
  --graphite: #252b31;
  --line: rgba(10, 13, 16, 0.16);
  --line-dark: rgba(255, 255, 255, 0.12);
  --muted: #69727a;
  --muted-dark: #98a2aa;
  --cyan: #00d8b6;
  --cyan-soft: #9cf7e7;
  --orange: #ff8a00;
  --red: #ff443d;
  --red-deep: #8f1717;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(5, 8, 11, 0.16);
  --display: "Arial Narrow", "Roboto Condensed", "Noto Sans TC", "PingFang TC", sans-serif;
  --sans: Inter, "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  content: "";
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.018) 0,
    rgba(255, 255, 255, 0.018) 1px,
    transparent 1px,
    transparent 4px
  );
  mix-blend-mode: soft-light;
  opacity: 0.38;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.public-body {
  background:
    linear-gradient(rgba(11, 16, 20, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 16, 20, 0.055) 1px, transparent 1px),
    var(--paper);
  background-size: 40px 40px;
}

.noise-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(112deg, transparent 0 64%, rgba(0, 216, 182, 0.06) 64% 64.4%, transparent 64.4%),
    radial-gradient(circle at 84% 15%, rgba(0, 216, 182, 0.12), transparent 22%),
    radial-gradient(circle at 12% 70%, rgba(255, 138, 0, 0.08), transparent 24%);
}

.boot-screen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: #080b0e;
  color: var(--white);
  transition: opacity 360ms ease, visibility 360ms ease;
}

.boot-screen.is-done {
  opacity: 0;
  visibility: hidden;
}

.boot-core {
  position: relative;
  width: min(430px, calc(100vw - 48px));
  padding: 28px 30px 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.035);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.boot-core::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 22px var(--cyan);
  animation: bootScan 900ms cubic-bezier(.4, 0, .2, 1) infinite;
}

.boot-kicker,
.micro-label,
.eyebrow,
.system-code {
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.boot-title {
  margin: 10px 0 24px;
  font-family: var(--display);
  font-size: clamp(1.5rem, 5vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}

.boot-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 8px;
  color: #9ba5ae;
  font-family: var(--mono);
  font-size: 0.78rem;
}

.boot-online {
  color: var(--cyan);
}

@keyframes bootScan {
  from { transform: translateY(0); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  to { transform: translateY(183px); opacity: 0; }
}

.system-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 12px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(238, 241, 239, 0.88);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  background: var(--ink);
  color: var(--white);
  clip-path: polygon(0 0, 76% 0, 100% 24%, 100% 100%, 24% 100%, 0 76%);
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 900;
}

.brand-name {
  display: block;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
}

.brand-sub {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.header-status {
  display: flex;
  align-items: center;
  gap: 22px;
}

.online-state {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(0, 216, 182, 0.12);
}

.language-select {
  border: 0;
  border-left: 1px solid var(--line);
  padding: 6px 4px 6px 20px;
  background: transparent;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.page-frame {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: clamp(26px, 4vw, 58px) clamp(18px, 4vw, 64px) 44px;
}

.sector-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 15px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.sector-tag::after {
  height: 1px;
  flex: 1;
  content: "";
  background: linear-gradient(90deg, var(--line), transparent);
}

.verification-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(18px, 2.5vw, 34px);
  align-items: stretch;
}

.status-panel {
  position: relative;
  min-height: 570px;
  padding: clamp(28px, 4vw, 58px);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  clip-path: polygon(0 0, calc(100% - 42px) 0, 100% 42px, 100% 100%, 32px 100%, 0 calc(100% - 32px));
}

.status-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 62%, rgba(0, 216, 182, 0.08) 62% 62.5%, transparent 62.5%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: auto, 32px 32px, 32px 32px;
  opacity: 0.85;
}

.status-panel > * {
  position: relative;
  z-index: 1;
}

.panel-rail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #9ba5ae;
}

.panel-rail .rail-accent {
  color: var(--cyan);
}

.auth-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  margin: 64px 0 44px;
}

.auth-seal,
.alert-beacon {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: clamp(126px, 15vw, 178px);
  aspect-ratio: 1;
  border: 1px solid rgba(0, 216, 182, 0.55);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 216, 182, 0.18) 0 32%, transparent 33%);
  box-shadow: inset 0 0 34px rgba(0, 216, 182, 0.08), 0 0 48px rgba(0, 216, 182, 0.08);
}

.auth-seal::before,
.auth-seal::after,
.alert-beacon::before,
.alert-beacon::after {
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(0, 216, 182, 0.45);
  border-radius: 50%;
  content: "";
  animation: spin 13s linear infinite;
}

.auth-seal::after,
.alert-beacon::after {
  inset: -8px;
  border-style: solid;
  border-color: transparent var(--cyan) transparent transparent;
  animation-duration: 5s;
  animation-direction: reverse;
}

.seal-check {
  width: 45%;
  height: 24%;
  border-left: 8px solid var(--cyan);
  border-bottom: 8px solid var(--cyan);
  transform: translateY(-8%) rotate(-45deg);
  filter: drop-shadow(0 0 10px rgba(0, 216, 182, 0.48));
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.auth-title,
.alert-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 6.7rem);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.83;
}

.auth-cn,
.alert-cn {
  margin: 18px 0 0;
  font-size: clamp(1.2rem, 2.1vw, 1.65rem);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.verified-copy {
  max-width: 610px;
  margin: 0;
  color: #c1c9cf;
  font-size: 1rem;
}

.verified-copy strong {
  color: var(--white);
}

.status-readout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 36px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.readout-cell {
  min-height: 92px;
  padding: 18px 16px;
  background: rgba(12, 16, 20, 0.91);
}

.readout-value {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-family: var(--mono);
  font-size: 0.9rem;
  font-weight: 700;
}

.readout-value.good {
  color: var(--cyan);
}

.data-stack {
  display: grid;
  gap: 18px;
}

.data-card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(248, 250, 248, 0.9);
  box-shadow: 0 12px 38px rgba(20, 25, 30, 0.06);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}

.data-card::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 54px;
  height: 4px;
  content: "";
  background: var(--orange);
}

.card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.card-title {
  margin: 3px 0 0;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.serial-badge {
  padding: 5px 8px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-family: var(--mono);
  font-size: 0.73rem;
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
  margin: 0;
}

.product-grid > div {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.product-grid dt {
  margin: 0 0 6px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-grid dd {
  margin: 0;
  font-weight: 750;
}

.scan-card {
  background: #dde2df;
}

.scan-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.scan-line:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.scan-label {
  color: var(--muted);
  font-size: 0.88rem;
}

.scan-value {
  text-align: right;
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 700;
}

.risk-chip,
.severity-chip,
.table-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 4px 9px;
  border: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.risk-chip {
  color: #007e6b;
  background: rgba(0, 216, 182, 0.08);
}

.page-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.action-button,
.ghost-button,
.danger-button,
.small-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--ink);
  padding: 12px 15px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, color 150ms ease;
}

.action-button::after,
.ghost-button::after,
.danger-button::after {
  content: "↗";
  font-family: var(--mono);
}

.action-button:hover,
.ghost-button:hover,
.danger-button:hover,
.small-action:hover {
  transform: translateY(-2px);
}

.ghost-button {
  background: transparent;
  color: var(--ink);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 22px clamp(20px, 4vw, 64px) 34px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.demo-switcher {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(10, 13, 16, 0.94);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.demo-switcher span {
  padding: 0 8px;
  color: #828d96;
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.demo-switcher a {
  padding: 8px 10px;
  color: #aab3ba;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 800;
}

.demo-switcher a:hover,
.demo-switcher a[aria-current="page"] {
  background: var(--cyan);
  color: var(--ink);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 88px;
  z-index: 200;
  max-width: min(520px, calc(100vw - 32px));
  padding: 13px 18px;
  border-left: 4px solid var(--cyan);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  font-size: 0.88rem;
  font-weight: 700;
  opacity: 0;
  transform: translate(-50%, 18px);
  transition: 220ms ease;
  pointer-events: none;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Alert page */
.alert-body {
  color-scheme: dark;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #090b0e;
  background-size: 40px 40px;
  color: var(--white);
}

.alert-body .system-header {
  border-bottom-color: var(--line-dark);
  background: rgba(9, 11, 14, 0.88);
}

.alert-body .brand-mark {
  background: var(--white);
  color: var(--ink);
}

.alert-body .brand-sub,
.alert-body .sector-tag {
  color: var(--muted-dark);
}

.alert-body .language-select {
  border-left-color: var(--line-dark);
  color: var(--white);
}

.alert-body .noise-field {
  background:
    linear-gradient(112deg, transparent 0 64%, rgba(255, 68, 61, 0.09) 64% 64.4%, transparent 64.4%),
    radial-gradient(circle at 84% 15%, rgba(255, 68, 61, 0.12), transparent 25%);
}

.alert-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  gap: clamp(18px, 2.5vw, 34px);
}

.alert-panel {
  position: relative;
  min-height: 570px;
  padding: clamp(28px, 4vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(255, 68, 61, 0.35);
  background: linear-gradient(145deg, #151116, #0b0d10 62%);
  clip-path: polygon(0 0, calc(100% - 42px) 0, 100% 42px, 100% 100%, 32px 100%, 0 calc(100% - 32px));
}

.alert-panel::after {
  position: absolute;
  right: -8%;
  bottom: -18%;
  width: 55%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 68, 61, 0.15);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 44px rgba(255, 68, 61, 0.025), 0 0 0 92px rgba(255, 68, 61, 0.018);
}

.alert-panel > * {
  position: relative;
  z-index: 1;
}

.severity-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: -1px -1px 0;
  padding: 11px 18px;
  background: var(--red);
  color: #160404;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.alert-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  margin: 62px 0 36px;
}

.alert-beacon {
  border-color: rgba(255, 68, 61, 0.58);
  background: radial-gradient(circle, rgba(255, 68, 61, 0.18) 0 32%, transparent 33%);
  box-shadow: inset 0 0 34px rgba(255, 68, 61, 0.1), 0 0 48px rgba(255, 68, 61, 0.08);
}

.alert-beacon::before {
  border-color: rgba(255, 68, 61, 0.5);
}

.alert-beacon::after {
  border-right-color: var(--red);
}

.alert-symbol {
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(3.3rem, 8vw, 5.4rem);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 16px rgba(255, 68, 61, 0.42);
}

.alert-title {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
}

.alert-copy {
  max-width: 740px;
  padding: 18px 20px;
  border-left: 3px solid var(--red);
  background: rgba(255, 68, 61, 0.07);
  color: #c8cdd1;
}

.alert-copy strong {
  color: var(--white);
}

.alert-records {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 30px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.alert-records .readout-cell {
  background: rgba(11, 13, 16, 0.92);
}

.alert-records .readout-value.bad {
  color: var(--red);
}

.alert-side {
  display: grid;
  gap: 18px;
}

.alert-card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line-dark);
  background: rgba(21, 25, 29, 0.92);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}

.alert-card .card-title {
  color: var(--white);
}

.alert-detail {
  display: grid;
  gap: 0;
  margin: 0;
}

.alert-detail > div {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-dark);
}

.alert-detail dt {
  color: var(--muted-dark);
  font-size: 0.84rem;
}

.alert-detail dd {
  margin: 0;
  text-align: right;
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 700;
}

.safety-note {
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(255, 138, 0, 0.42);
  background: rgba(255, 138, 0, 0.07);
  color: #e4d7c4;
  font-size: 0.9rem;
}

.danger-button {
  width: 100%;
  margin-top: 12px;
  border-color: var(--red);
  background: var(--red);
  color: #180404;
}

.alert-body .ghost-button {
  width: 100%;
  margin-top: 9px;
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.alert-body .site-footer {
  color: var(--muted-dark);
}

dialog {
  width: min(640px, calc(100vw - 28px));
  max-height: calc(100vh - 36px);
  margin: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0;
  overflow: auto;
  background: #111519;
  color: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.58);
}

dialog::backdrop {
  background: rgba(5, 7, 9, 0.82);
  backdrop-filter: blur(6px);
}

.dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line-dark);
}

.dialog-title {
  margin: 0;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 900;
}

.icon-button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.report-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 22px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: #bac2c8;
  font-size: 0.84rem;
  font-weight: 700;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 11px 12px;
  background: #0b0e11;
  color: var(--white);
}

.form-field textarea {
  min-height: 110px;
  resize: vertical;
}

.form-submit {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 6px;
}

/* Admin */
.admin-body {
  color-scheme: dark;
  min-height: 100vh;
  background: #080b0e;
  color: var(--white);
}

.admin-shell {
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 100vh;
  padding: 22px 16px;
  border-right: 1px solid var(--line-dark);
  background:
    linear-gradient(145deg, rgba(0, 216, 182, 0.06), transparent 34%),
    #0c1014;
}

.admin-sidebar .brand-lockup {
  padding: 2px 6px 23px;
  border-bottom: 1px solid var(--line-dark);
}

.admin-sidebar .brand-mark {
  background: var(--cyan);
  color: var(--ink);
}

.admin-sidebar .brand-sub {
  color: var(--muted-dark);
}

.nav-section-label {
  margin: 24px 10px 9px;
  color: #69757e;
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.admin-nav {
  display: grid;
  gap: 4px;
}

.admin-nav button {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  padding: 9px 11px;
  background: transparent;
  color: #aab4bb;
  text-align: left;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
}

.admin-nav button span:last-child {
  color: #65717a;
  font-family: var(--mono);
  font-size: 0.68rem;
}

.admin-nav button:hover,
.admin-nav button.is-active {
  background: rgba(0, 216, 182, 0.1);
  color: var(--white);
}

.admin-nav button.is-active::before {
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  content: "";
  background: var(--cyan);
}

.sidebar-footer {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 18px;
  padding: 13px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.025);
}

.operator-name {
  display: block;
  margin-top: 5px;
  font-size: 0.84rem;
  font-weight: 800;
}

.admin-main {
  min-width: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #090c10;
  background-size: 32px 32px;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 25;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px clamp(18px, 3vw, 36px);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(9, 12, 16, 0.9);
  backdrop-filter: blur(18px);
}

.admin-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-menu {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.admin-page-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.topbar-tools {
  display: flex;
  align-items: center;
  gap: 14px;
}

.admin-search {
  position: relative;
  width: min(420px, 36vw);
}

.admin-search input {
  width: 100%;
  height: 42px;
  border: 1px solid var(--line-dark);
  padding: 0 42px 0 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-family: var(--mono);
  font-size: 0.78rem;
}

.admin-search::after {
  position: absolute;
  right: 13px;
  top: 10px;
  color: var(--cyan);
  content: "⌕";
  font-size: 1.15rem;
}

.time-block {
  text-align: right;
  font-family: var(--mono);
}

.time-block strong,
.time-block span {
  display: block;
}

.time-block strong {
  font-size: 0.82rem;
}

.time-block span {
  color: var(--muted-dark);
  font-size: 0.68rem;
}

.admin-content {
  width: min(1700px, 100%);
  margin: 0 auto;
  padding: 28px clamp(18px, 3vw, 36px) 84px;
}

.command-line {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.command-line h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.command-line p {
  max-width: 520px;
  margin: 8px 0 0;
  color: var(--muted-dark);
  font-size: 0.88rem;
}

.node-status {
  min-width: 220px;
  padding: 10px 13px;
  border: 1px solid rgba(0, 216, 182, 0.28);
  background: rgba(0, 216, 182, 0.06);
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.73rem;
  font-weight: 800;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(130px, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.metric-card {
  position: relative;
  min-height: 132px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: rgba(18, 23, 28, 0.92);
}

.metric-card::after {
  position: absolute;
  right: -20px;
  bottom: -26px;
  width: 74px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 14px rgba(255, 255, 255, 0.018);
}

.metric-card.alert-metric {
  border-color: rgba(255, 68, 61, 0.4);
  background: linear-gradient(135deg, rgba(255, 68, 61, 0.12), rgba(18, 23, 28, 0.94));
}

.metric-label {
  color: #89949c;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.metric-value {
  display: block;
  margin-top: 13px;
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.metric-trend {
  display: block;
  margin-top: 10px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.alert-metric .metric-trend,
.alert-metric .metric-value {
  color: var(--red);
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 18px;
  margin-bottom: 18px;
}

.admin-panel {
  min-width: 0;
  border: 1px solid var(--line-dark);
  background: rgba(15, 19, 24, 0.94);
}

.admin-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 18px;
  border-bottom: 1px solid var(--line-dark);
}

.admin-panel-title {
  margin: 3px 0 0;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 900;
}

.range-toggle {
  display: flex;
  gap: 2px;
  padding: 2px;
  border: 1px solid var(--line-dark);
}

.range-toggle button {
  border: 0;
  padding: 6px 9px;
  background: transparent;
  color: #849099;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 800;
  cursor: pointer;
}

.range-toggle button.is-active {
  background: var(--cyan);
  color: var(--ink);
}

.production-block {
  padding: 20px 18px 22px;
}

.batch-row {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 80px;
  gap: 18px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
}

.batch-row:last-child {
  border-bottom: 0;
}

.batch-id strong,
.batch-id span {
  display: block;
}

.batch-id strong {
  font-family: var(--mono);
  font-size: 0.82rem;
}

.batch-id span {
  margin-top: 3px;
  color: #77828a;
  font-size: 0.74rem;
}

.progress-track {
  position: relative;
  height: 9px;
  overflow: hidden;
  background: #242b31;
}

.progress-track span {
  display: block;
  width: var(--progress, 50%);
  height: 100%;
  background: linear-gradient(90deg, #008c78, var(--cyan));
  box-shadow: 0 0 18px rgba(0, 216, 182, 0.28);
}

.batch-progress-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  color: #707b83;
  font-family: var(--mono);
  font-size: 0.64rem;
}

.batch-pct {
  text-align: right;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 900;
}

.alert-feed {
  padding: 5px 16px 13px;
}

.alert-item {
  position: relative;
  padding: 17px 0 17px 16px;
  border-bottom: 1px solid var(--line-dark);
}

.alert-item::before {
  position: absolute;
  left: 0;
  top: 22px;
  width: 6px;
  height: 6px;
  background: var(--red);
  content: "";
  box-shadow: 0 0 0 4px rgba(255, 68, 61, 0.1);
}

.alert-item:last-child {
  border-bottom: 0;
}

.alert-item.high .alert-level {
  color: var(--red);
}

.alert-item.medium::before {
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 138, 0, 0.1);
}

.alert-item.medium .alert-level {
  color: var(--orange);
}

.alert-level {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.alert-product {
  display: block;
  margin: 5px 0 4px;
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 800;
}

.alert-reason {
  margin: 0;
  color: #a8b0b6;
  font-size: 0.8rem;
}

.alert-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  color: #69757e;
  font-family: var(--mono);
  font-size: 0.66rem;
}

.small-action {
  min-height: 30px;
  border-color: var(--line-dark);
  padding: 5px 8px;
  background: transparent;
  color: #bac2c8;
  font-size: 0.7rem;
}

.analytics-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 18px;
  margin-bottom: 18px;
}

.bar-chart {
  display: flex;
  height: 248px;
  align-items: flex-end;
  gap: clamp(8px, 1.5vw, 18px);
  padding: 24px 24px 34px;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 100% 48px;
}

.bar-column {
  position: relative;
  display: flex;
  height: 100%;
  flex: 1;
  align-items: flex-end;
}

.bar-column span {
  display: block;
  width: 100%;
  height: var(--bar, 50%);
  min-height: 6px;
  background: linear-gradient(180deg, var(--cyan), #056f62);
  box-shadow: 0 0 18px rgba(0, 216, 182, 0.12);
  transition: height 300ms ease;
}

.bar-column em {
  position: absolute;
  left: 50%;
  bottom: -24px;
  color: #6f7a82;
  font-family: var(--mono);
  font-size: 0.64rem;
  font-style: normal;
  transform: translateX(-50%);
}

.topology {
  position: relative;
  height: 248px;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 216, 182, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 216, 182, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 52% 45%, rgba(0, 216, 182, 0.06), transparent 50%);
  background-size: 28px 28px, 28px 28px, auto;
}

.topology::before,
.topology::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(0, 216, 182, 0.12);
  border-radius: 50%;
}

.topology::before {
  inset: 38px 22%;
}

.topology::after {
  inset: 72px 34%;
}

.scan-node {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 7px rgba(0, 216, 182, 0.09), 0 0 18px rgba(0, 216, 182, 0.5);
}

.scan-node.is-risk {
  background: var(--red);
  box-shadow: 0 0 0 7px rgba(255, 68, 61, 0.09), 0 0 18px rgba(255, 68, 61, 0.5);
}

.scan-node span {
  position: absolute;
  left: 14px;
  top: -4px;
  white-space: nowrap;
  color: #abb4ba;
  font-family: var(--mono);
  font-size: 0.64rem;
}

.node-shanghai { left: 68%; top: 52%; }
.node-suzhou { left: 60%; top: 42%; }
.node-taipei { left: 76%; top: 66%; }
.node-losangeles { left: 22%; top: 44%; }
.node-berlin { left: 43%; top: 30%; }

.table-wrap {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--line-dark);
  text-align: left;
}

.data-table th {
  color: #737f87;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.data-table td {
  color: #c2c9ce;
  font-size: 0.8rem;
}

.data-table td:first-child,
.data-table td:nth-child(2) {
  font-family: var(--mono);
  font-weight: 700;
}

.table-chip {
  min-height: 24px;
  border-color: rgba(0, 216, 182, 0.4);
  color: var(--cyan);
}

.table-chip.warning {
  border-color: rgba(255, 138, 0, 0.5);
  color: var(--orange);
}

.table-chip.danger {
  border-color: rgba(255, 68, 61, 0.5);
  color: var(--red);
}

.empty-row {
  display: none;
}

.empty-row.is-visible {
  display: table-row;
}

.empty-row td {
  padding: 34px 16px;
  text-align: center;
  color: #7e8991;
}

@media (max-width: 1180px) {
  .metric-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .verification-layout,
  .alert-layout {
    grid-template-columns: 1fr;
  }

  .data-stack,
  .alert-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-actions {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 260px;
    transform: translateX(-100%);
    transition: transform 220ms ease;
    box-shadow: 24px 0 60px rgba(0,0,0,.4);
  }

  .admin-sidebar.is-open {
    transform: translateX(0);
  }

  .mobile-menu {
    display: block;
  }

  .admin-grid,
  .analytics-grid {
    grid-template-columns: 1fr;
  }

  .topbar-tools .time-block {
    display: none;
  }

  .admin-search {
    width: min(420px, 48vw);
  }
}

@media (max-width: 760px) {
  .system-header {
    min-height: 64px;
    padding: 10px 16px;
  }

  .brand-sub,
  .online-state {
    display: none;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .language-select {
    padding-left: 12px;
  }

  .page-frame {
    padding: 22px 14px 34px;
  }

  .status-panel,
  .alert-panel {
    min-height: auto;
    padding: 24px 20px 28px;
    clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  }

  .auth-hero,
  .alert-hero {
    grid-template-columns: 1fr;
    margin: 42px 0 30px;
  }

  .auth-seal,
  .alert-beacon {
    width: 120px;
  }

  .auth-title,
  .alert-title {
    font-size: clamp(3rem, 17vw, 4.8rem);
  }

  .status-readout,
  .alert-records {
    grid-template-columns: 1fr;
  }

  .readout-cell {
    min-height: auto;
  }

  .data-stack,
  .alert-side {
    grid-template-columns: 1fr;
  }

  .data-card,
  .alert-card {
    padding: 20px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .page-actions {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 96px;
  }

  .demo-switcher {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: center;
  }

  .demo-switcher span {
    display: none;
  }

  .report-form {
    grid-template-columns: 1fr;
  }

  .form-field.full,
  .form-submit {
    grid-column: auto;
  }

  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-card {
    min-height: 118px;
  }

  .command-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .node-status {
    width: 100%;
  }

  .admin-topbar {
    padding: 10px 14px;
  }

  .admin-page-title {
    font-size: 1rem;
  }

  .admin-search {
    width: 42vw;
  }

  .batch-row {
    grid-template-columns: 1fr 62px;
  }

  .batch-progress {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 520px) {
  .metric-grid {
    grid-template-columns: 1fr 1fr;
  }

  .metric-card {
    padding: 13px;
  }

  .metric-label {
    font-size: 0.64rem;
  }

  .admin-search {
    display: none;
  }

  .demo-switcher a {
    flex: 1;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Live NFC verification route */
.verification-loading-panel {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(620px, calc(100vh - 210px));
  padding: 48px 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
  text-align: center;
  clip-path: polygon(0 0, calc(100% - 38px) 0, 100% 38px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
}

.verification-loading-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 50% 46%, rgba(0, 216, 182, 0.12), transparent 26%),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
}

.verification-loading-panel > * {
  position: relative;
  z-index: 1;
}

.verification-loading-panel h1 {
  margin: 20px 0 16px;
  font-family: var(--display);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.88;
}

.verification-loading-panel p {
  max-width: 560px;
  margin: 0;
  color: #b8c1c8;
}

.verification-loader {
  position: relative;
  display: grid;
  place-items: center;
  width: 126px;
  aspect-ratio: 1;
  border: 1px solid rgba(0, 216, 182, 0.52);
  border-radius: 50%;
  box-shadow: 0 0 46px rgba(0, 216, 182, 0.12);
}

.verification-loader::before,
.verification-loader::after {
  position: absolute;
  inset: 11px;
  border: 1px dashed rgba(0, 216, 182, 0.48);
  border-radius: 50%;
  content: "";
  animation: spin 7s linear infinite;
}

.verification-loader::after {
  inset: -9px;
  border-style: solid;
  border-color: transparent var(--cyan) transparent transparent;
  animation-duration: 3.5s;
  animation-direction: reverse;
}

.verification-loader span {
  width: 12px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 22px var(--cyan);
}

.verification-progress {
  width: min(420px, 78vw);
  height: 3px;
  margin-top: 38px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.verification-progress span {
  display: block;
  width: 35%;
  height: 100%;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
  animation: verificationProgress 1.2s ease-in-out infinite;
}

@keyframes verificationProgress {
  from { transform: translateX(-110%); }
  to { transform: translateX(390%); }
}

.live-result-section {
  animation: resultReveal 420ms ease both;
}

@keyframes resultReveal {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.live-page-actions {
  grid-template-columns: 1fr 1fr;
}

.action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--line);
  padding: 11px 15px;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.full-action {
  width: 100%;
  margin-top: 9px;
  border-color: rgba(255, 255, 255, 0.28);
}

.verification-pending .severity-strip {
  background: var(--orange);
}

.verification-pending .alert-panel {
  border-color: rgba(255, 138, 0, 0.4);
  background: linear-gradient(145deg, #17130d, #0b0d10 62%);
}

.verification-pending .alert-beacon {
  border-color: rgba(255, 138, 0, 0.62);
  background: radial-gradient(circle, rgba(255, 138, 0, 0.18) 0 32%, transparent 33%);
}

.verification-pending .alert-beacon::before {
  border-color: rgba(255, 138, 0, 0.5);
}

.verification-pending .alert-beacon::after {
  border-right-color: var(--orange);
}

.verification-pending .alert-symbol,
.verification-pending .severity-chip,
.verification-pending .alert-records .readout-value.bad {
  color: var(--orange);
}

.verification-body .site-footer {
  padding-bottom: 34px;
}

@media (max-width: 760px) {
  .verification-loading-panel {
    min-height: calc(100vh - 180px);
    padding: 38px 18px;
  }

  .verification-loader {
    width: 96px;
  }

  .live-page-actions {
    grid-template-columns: 1fr;
  }

  .verification-body .site-footer {
    padding-bottom: 28px;
  }
}

/* Verified page: compact sizing and guaranteed AUTHENTIC title fit */
.public-body .page-frame {
  padding: clamp(22px, 2.7vw, 38px) clamp(16px, 3vw, 44px) 34px;
}

.public-body .verification-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: clamp(16px, 1.8vw, 24px);
}

.public-body .status-panel {
  min-height: 520px;
  padding: clamp(26px, 3vw, 44px);
}

.public-body .auth-hero {
  grid-template-columns: clamp(108px, 10vw, 132px) minmax(0, 1fr);
  gap: clamp(18px, 2vw, 28px);
  margin: 44px 0 32px;
}

.public-body .auth-seal {
  width: 100%;
  max-width: 132px;
}

.public-body .auth-title {
  max-width: 100%;
  font-size: clamp(2.85rem, 4.35vw, 4.65rem);
  letter-spacing: -0.065em;
  line-height: 0.9;
  white-space: nowrap;
}

.public-body .auth-cn {
  margin-top: 12px;
  font-size: clamp(1.1rem, 1.55vw, 1.4rem);
}

.public-body .status-readout {
  margin-top: 28px;
}

.public-body .readout-cell {
  min-height: 78px;
  padding: 14px;
}

.public-body .data-stack {
  gap: 14px;
}

.public-body .data-card {
  padding: 20px;
}

.public-body .card-head {
  margin-bottom: 16px;
}

.public-body .product-grid {
  gap: 14px 20px;
}

.public-body .scan-line {
  padding: 11px 0;
}

.public-body .page-actions {
  margin-top: 14px;
}

@media (max-width: 1180px) {
  .public-body .verification-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .public-body .page-frame {
    padding: 18px 12px 28px;
  }

  .public-body .status-panel {
    padding: 22px 18px 24px;
  }

  .public-body .auth-hero {
    grid-template-columns: 1fr;
    gap: 22px;
    margin: 34px 0 26px;
  }

  .public-body .auth-seal {
    width: 104px;
  }

  .public-body .auth-title {
    font-size: clamp(2.35rem, 13.5vw, 3.7rem);
  }

  .public-body .auth-cn {
    margin-top: 10px;
  }

  .public-body .status-readout {
    margin-top: 22px;
  }

  .public-body .data-card {
    padding: 18px;
  }
}
