/* TumiTrust public verification portal — site brand (dark slate + amber) */

:root {
  --vp-ink: #0b1220;
  --vp-ink-soft: #111827;
  --vp-slate: #1e293b;
  --vp-panel: rgba(30, 41, 59, 0.72);
  --vp-panel-solid: #1a2332;
  --vp-paper: #f8fafc;
  --vp-paper-ink: #0f172a;
  --vp-muted: #94a3b8;
  --vp-muted-deep: #64748b;
  --vp-line: rgba(251, 191, 36, 0.18);
  --vp-line-soft: rgba(148, 163, 184, 0.22);
  --vp-amber: #fbbf24;
  --vp-amber-mid: #f79500;
  --vp-orange: #e95420;
  --vp-orange-hot: #ff6600;
  --vp-ok: #34d399;
  --vp-ok-deep: #059669;
  --vp-danger: #f87171;
  --vp-danger-soft: rgba(248, 113, 113, 0.14);
  --vp-white: #ffffff;
  --vp-display: "Sora", system-ui, sans-serif;
  --vp-sans: "Manrope", system-ui, sans-serif;
  --vp-mono: "IBM Plex Mono", ui-monospace, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.hidden {
  display: none !important;
}

#certificateTemplate {
  display: none !important;
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

@keyframes vp-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes vp-sheen {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@keyframes vp-pulse-line {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.95;
  }
}

@keyframes vp-hex-drift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(48px, 84px);
  }
}

@keyframes vp-glow {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 0.85;
  }
}

body.vp-body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--vp-sans);
  color: var(--vp-paper);
  background: #0b1220;
  overflow-x: hidden;
  position: relative;
}

body.vp-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(90% 55% at 88% -8%, rgba(255, 102, 0, 0.22), transparent 55%),
    radial-gradient(70% 45% at -8% 88%, rgba(251, 191, 36, 0.12), transparent 50%),
    radial-gradient(50% 40% at 50% 40%, rgba(233, 84, 32, 0.06), transparent 60%),
    linear-gradient(160deg, #0b1220 0%, #111827 42%, #1e293b 100%);
}

body.vp-body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    linear-gradient(
      30deg,
      transparent 48%,
      rgba(255, 170, 0, 0.04) 48%,
      rgba(255, 170, 0, 0.04) 52%,
      transparent 52%
    ),
    linear-gradient(
      150deg,
      transparent 48%,
      rgba(255, 102, 0, 0.035) 48%,
      rgba(255, 102, 0, 0.035) 52%,
      transparent 52%
    );
  background-size: 56px 96px;
  animation: vp-hex-drift 28s linear infinite;
}

.vp-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.vp-topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(
    90deg,
    rgba(17, 24, 39, 0.97),
    rgba(31, 41, 55, 0.96),
    rgba(17, 24, 39, 0.97)
  );
  border-bottom: 1px solid rgba(245, 158, 11, 0.22);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(14px);
}

.vp-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
  padding: 0.65rem 0;
  position: relative;
}

.vp-topbar__inner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(245, 158, 11, 0.55),
    transparent
  );
  animation: vp-pulse-line 4.5s ease-in-out infinite;
}

.vp-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
}

.vp-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.28));
}

.vp-brand__mark {
  font-family: var(--vp-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  background: linear-gradient(90deg, #fbbf24, #fb923c, #fbbf24);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: vp-sheen 8s linear infinite;
}

.vp-brand__sub {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.65rem;
  color: rgba(251, 191, 36, 0.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.vp-topbar__links {
  display: flex;
  align-items: center;
  gap: 0.35rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.vp-topbar__links a {
  color: rgba(229, 231, 235, 0.88);
  text-decoration: none;
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
  transition: color 0.15s ease, background 0.15s ease;
}

.vp-topbar__links a:hover,
.vp-topbar__links a.is-active {
  color: #fff;
  background: rgba(245, 158, 11, 0.12);
}

.vp-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.12);
  color: var(--vp-amber);
  border: 1px solid rgba(251, 191, 36, 0.35);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vp-main {
  padding: 2.75rem 0 4.5rem;
  animation: vp-rise 0.55s ease-out both;
}

.vp-hero {
  margin-bottom: 2.25rem;
  max-width: 42rem;
  position: relative;
}

.vp-hero__brand {
  margin: 0 0 0.85rem;
  font-family: var(--vp-display);
  font-size: clamp(2.5rem, 6vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.vp-hero__brand span {
  background: linear-gradient(105deg, #fbbf24 10%, #ff6600 48%, #f79500 90%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: vp-sheen 7s linear infinite;
  filter: drop-shadow(0 0 28px rgba(255, 170, 0, 0.35));
}

.vp-hero__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vp-amber);
}

.vp-hero__title {
  margin: 0 0 0.65rem;
  font-family: var(--vp-display);
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #f8fafc;
  line-height: 1.25;
}

.vp-hero__lede {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--vp-muted);
  max-width: 36rem;
}

.vp-panel {
  background: linear-gradient(
    165deg,
    rgba(30, 41, 59, 0.88) 0%,
    rgba(17, 24, 39, 0.92) 100%
  );
  border: 1px solid rgba(251, 191, 36, 0.16);
  border-radius: 18px;
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  padding: 1.5rem 1.65rem;
  backdrop-filter: blur(10px);
}

.vp-search {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.vp-search label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vp-muted);
  margin-bottom: 0.55rem;
}

.vp-input-wrap {
  position: relative;
}

.vp-input-wrap input {
  width: 100%;
  padding: 0.95rem 2.75rem 0.95rem 1rem;
  border: 1.5px solid rgba(251, 191, 36, 0.22);
  border-radius: 12px;
  font-family: var(--vp-mono);
  font-size: 0.95rem;
  color: var(--vp-paper-ink);
  background: var(--vp-paper);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.vp-input-wrap input:focus {
  border-color: var(--vp-amber-mid);
  box-shadow: 0 0 0 3px rgba(247, 149, 0, 0.22);
}

.vp-input-wrap__status {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--vp-amber-mid);
}

.vp-feedback {
  margin-top: 0.65rem;
  font-size: 0.85rem;
  color: var(--vp-amber);
}

.vp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: none;
  border-radius: 12px;
  padding: 0.9rem 1.35rem;
  font-family: var(--vp-sans);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, background 0.15s ease, color 0.15s ease,
    box-shadow 0.15s ease;
}

.vp-btn:hover {
  transform: translateY(-1px);
}

.vp-btn--primary {
  width: 100%;
  margin-top: 1rem;
  background: linear-gradient(135deg, #e95420 0%, #f79500 55%, #fbbf24 100%);
  color: #0b1220;
  box-shadow: 0 10px 28px rgba(233, 84, 32, 0.35);
}

.vp-btn--primary:hover {
  filter: brightness(1.06);
  box-shadow: 0 14px 32px rgba(255, 102, 0, 0.4);
}

.vp-btn--accent {
  background: linear-gradient(135deg, #f79500, #e95420);
  color: #0b1220;
  box-shadow: 0 8px 22px rgba(247, 149, 0, 0.28);
}

.vp-btn--accent:hover {
  filter: brightness(1.05);
}

.vp-btn--ghost {
  background: transparent;
  color: #e2e8f0;
  border: 1.5px solid rgba(251, 191, 36, 0.28);
}

.vp-btn--ghost:hover {
  border-color: var(--vp-amber);
  color: var(--vp-amber);
  background: rgba(251, 191, 36, 0.08);
}

.vp-status {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.vp-status__banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.95) 0%, rgba(30, 41, 59, 0.92) 100%);
  color: var(--vp-white);
  border: 1px solid rgba(251, 191, 36, 0.28);
  border-left: 5px solid var(--vp-amber);
  box-shadow: 0 0 40px rgba(247, 149, 0, 0.12);
}

.vp-status__banner--fail {
  border-left-color: var(--vp-danger);
  border-color: rgba(248, 113, 113, 0.35);
  background: linear-gradient(135deg, #3f1524 0%, #2a1a22 100%);
  box-shadow: none;
}

.vp-status__kicker {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vp-amber);
  font-weight: 700;
}

.vp-status__title {
  margin: 0;
  font-family: var(--vp-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.vp-status__lede {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.vp-status__meta {
  margin: 0.35rem 0 0;
  font-family: var(--vp-mono);
  font-size: 0.78rem;
  color: rgba(251, 191, 36, 0.65);
}

.vp-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (max-width: 820px) {
  .vp-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.vp-strip__cell {
  background: linear-gradient(
    165deg,
    rgba(30, 41, 59, 0.9),
    rgba(17, 24, 39, 0.95)
  );
  border: 1px solid rgba(251, 191, 36, 0.14);
  border-radius: 14px;
  padding: 1rem 1.1rem;
}

.vp-strip__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vp-muted);
  margin-bottom: 0.35rem;
}

.vp-strip__value {
  font-family: var(--vp-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--vp-amber);
  line-height: 1.15;
}

.vp-strip__value--ok {
  color: var(--vp-ok);
}

.vp-strip__hint {
  margin-top: 0.2rem;
  font-size: 0.75rem;
  color: var(--vp-muted-deep);
}

.vp-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

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

.vp-section-title {
  margin: 0 0 1rem;
  font-family: var(--vp-display);
  font-size: 1.1rem;
  color: #f8fafc;
}

.vp-rows {
  display: grid;
  gap: 0.65rem;
}

.vp-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--vp-line-soft);
  font-size: 0.92rem;
}

.vp-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.vp-row__k {
  color: var(--vp-muted);
  font-weight: 600;
}

.vp-row__v {
  color: #e2e8f0;
  font-weight: 600;
  text-align: right;
}

.vp-row__v--mono {
  font-family: var(--vp-mono);
  font-size: 0.82rem;
  color: var(--vp-amber);
}

.vp-checks {
  display: grid;
  gap: 0.55rem;
}

.vp-check {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: #e2e8f0;
}

.vp-check__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--vp-ok);
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.55);
  flex-shrink: 0;
}

.vp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.vp-note {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--vp-muted);
}

.vp-partner-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.vp-partner {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(251, 191, 36, 0.12);
}

.vp-partner__name {
  font-weight: 700;
  color: #f8fafc;
}

.vp-partner__meta {
  font-size: 0.78rem;
  color: var(--vp-muted);
  margin-top: 0.15rem;
}

.vp-partner__chip {
  align-self: start;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vp-amber);
  background: rgba(251, 191, 36, 0.12);
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
}

.vp-footer {
  margin-top: 1rem;
  border-top: 1px solid rgba(245, 158, 11, 0.18);
  padding: 1.65rem 0 2.25rem;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(209, 213, 219, 0.85);
  background: linear-gradient(180deg, #111827 0%, #0f172a 100%);
  position: relative;
  z-index: 1;
}

.vp-footer a {
  color: #fbbf24;
  text-decoration: none;
  font-weight: 600;
}

.vp-footer a:hover {
  color: #fde68a;
}

.vp-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(11, 18, 32, 0.72);
  backdrop-filter: blur(8px);
}

.vp-modal.hidden {
  display: none;
}

.vp-modal__card {
  width: min(28rem, 100%);
  background: linear-gradient(165deg, #1e293b, #111827);
  border-radius: 18px;
  border: 1px solid rgba(251, 191, 36, 0.28);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(247, 149, 0, 0.12);
  padding: 1.75rem;
  text-align: center;
  color: #e2e8f0;
}

.vp-modal__card h2 {
  margin: 0.35rem 0;
  font-family: var(--vp-display);
  color: var(--vp-amber);
}

.vp-modal__card p {
  margin: 0 0 1rem;
  color: var(--vp-muted);
  font-size: 0.92rem;
}

.vp-loading {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 18, 32, 0.78);
  backdrop-filter: blur(6px);
}

.vp-loading.hidden {
  display: none;
}

.vp-loading__card {
  text-align: center;
  padding: 1.5rem 2rem;
  background: linear-gradient(165deg, #1e293b, #111827);
  border-radius: 16px;
  border: 1px solid rgba(251, 191, 36, 0.22);
}

.vp-loading__card p {
  margin: 0.75rem 0 0;
  font-weight: 700;
  color: var(--vp-amber);
}

.vp-toast {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 100;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  background: #1e293b;
  color: var(--vp-white);
  border: 1px solid rgba(251, 191, 36, 0.35);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.vp-toast--error {
  background: #7f1d1d;
  border-color: rgba(248, 113, 113, 0.4);
}

.vp-toast--success {
  background: #065f46;
  border-color: rgba(52, 211, 153, 0.35);
}

.vp-why {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2rem;
}

@media (max-width: 720px) {
  .vp-why {
    grid-template-columns: 1fr;
  }
}

.vp-why article {
  padding: 1.1rem 1.15rem;
  border-radius: 14px;
  background: rgba(30, 41, 59, 0.55);
  border: 1px solid rgba(251, 191, 36, 0.12);
}

.vp-why h3 {
  margin: 0 0 0.35rem;
  font-family: var(--vp-display);
  font-size: 1.05rem;
  color: var(--vp-amber);
}

.vp-why p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--vp-muted);
}

@media print {
  .no-print,
  .vp-topbar,
  .vp-main,
  .vp-footer,
  .vp-loading,
  .vp-modal,
  #certificateTemplate {
    display: none !important;
  }
  body.vp-body {
    background: white;
  }
  body.vp-body::before,
  body.vp-body::after {
    display: none;
  }
}

/* —— Print authenticity certificate (A4 landscape) —— */
.pti-cert {
  --cert-amber: #fbbf24;
  --cert-orange: #e95420;
  --cert-slate: #0b1220;
  --cert-panel: #111827;
  width: 297mm;
  height: 210mm;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  background:
    radial-gradient(80% 60% at 100% 0%, rgba(255, 102, 0, 0.18), transparent 55%),
    radial-gradient(60% 50% at 0% 100%, rgba(251, 191, 36, 0.12), transparent 50%),
    linear-gradient(155deg, #0b1220 0%, #111827 48%, #1a2332 100%);
  color: #e2e8f0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  overflow: hidden;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

.pti-cert__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      30deg,
      transparent 48%,
      rgba(255, 170, 0, 0.03) 48%,
      rgba(255, 170, 0, 0.03) 52%,
      transparent 52%
    );
  background-size: 40px 70px;
  opacity: 0.9;
}

.pti-cert__frame {
  position: absolute;
  inset: 7mm;
  border: 1.6px solid rgba(251, 191, 36, 0.55);
  pointer-events: none;
  z-index: 1;
}

.pti-cert__frame::before {
  content: "";
  position: absolute;
  inset: 2.2mm;
  border: 0.55px solid rgba(251, 191, 36, 0.28);
}

.pti-cert__corner {
  position: absolute;
  width: 18mm;
  height: 18mm;
  z-index: 2;
  pointer-events: none;
}

.pti-cert__corner--tl {
  top: 9mm;
  left: 9mm;
  border-top: 2.5px solid var(--cert-amber);
  border-left: 2.5px solid var(--cert-amber);
}

.pti-cert__corner--tr {
  top: 9mm;
  right: 9mm;
  border-top: 2.5px solid var(--cert-amber);
  border-right: 2.5px solid var(--cert-amber);
}

.pti-cert__corner--bl {
  bottom: 9mm;
  left: 9mm;
  border-bottom: 2.5px solid var(--cert-amber);
  border-left: 2.5px solid var(--cert-amber);
}

.pti-cert__corner--br {
  bottom: 9mm;
  right: 9mm;
  border-bottom: 2.5px solid var(--cert-amber);
  border-right: 2.5px solid var(--cert-amber);
}

.pti-cert__watermark {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%) rotate(-18deg);
  font-family: "Sora", system-ui, sans-serif;
  font-size: 92px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(251, 191, 36, 0.045);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  text-transform: uppercase;
}

.pti-cert__inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 14mm 16mm 12mm;
}

.pti-cert__masthead {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 7mm;
  border-bottom: 1px solid rgba(251, 191, 36, 0.28);
}

.pti-cert__brand {
  display: flex;
  gap: 14px;
  align-items: center;
}

.pti-cert__logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(145deg, #1e293b, #0b1220);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1.5px solid rgba(251, 191, 36, 0.55);
  box-shadow: 0 0 20px rgba(247, 149, 0, 0.25);
}

.pti-cert__logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.pti-cert__product {
  font-family: "Sora", system-ui, sans-serif;
  font-size: 21px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.025em;
  background: linear-gradient(90deg, #fbbf24, #fb923c, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pti-cert__tag {
  margin: 4px 0 0;
  font-size: 10.5px;
  color: rgba(251, 191, 36, 0.85);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pti-cert__status {
  text-align: right;
  font-size: 10.5px;
  color: #94a3b8;
  min-width: 150px;
}

.pti-cert__badge {
  display: inline-block;
  margin-bottom: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(52, 211, 153, 0.08));
  border: 1px solid rgba(52, 211, 153, 0.45);
  color: #6ee7b7;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pti-cert__body {
  flex: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.95fr;
  gap: 8mm;
  padding: 8mm 0 6mm;
  align-items: start;
}

.pti-cert__dial-wrap {
  text-align: center;
}

.pti-cert__dial {
  width: 128px;
  height: 128px;
  margin: 0 auto 8px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, #111827 56%, transparent 57%),
    conic-gradient(
      #fbbf24 0 calc(var(--cert-pct, 0) * 1%),
      #e95420 calc(var(--cert-pct, 0) * 1%),
      rgba(148, 163, 184, 0.25) 0
    );
  box-shadow:
    0 0 0 3px rgba(251, 191, 36, 0.15),
    0 0 28px rgba(247, 149, 0, 0.22);
}

.pti-cert__dial-core {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(160deg, #1e293b, #0b1220);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(251, 191, 36, 0.25);
}

.pti-cert__dial-score {
  font-family: "Sora", system-ui, sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  color: #fbbf24;
}

.pti-cert__dial-label {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-top: 3px;
}

.pti-cert__band {
  font-family: "Sora", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #f8fafc;
  margin: 0;
}

.pti-cert__tier {
  margin: 3px 0 0;
  font-size: 11px;
  color: #94a3b8;
}

.pti-cert__seal {
  width: 68px;
  height: 68px;
  margin: 10px auto 0;
  border-radius: 50%;
  border: 2px solid #fbbf24;
  display: grid;
  place-items: center;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fbbf24;
  text-align: center;
  line-height: 1.2;
  background:
    radial-gradient(circle at 35% 30%, rgba(251, 191, 36, 0.18), transparent 55%),
    #0b1220;
  box-shadow: 0 0 16px rgba(247, 149, 0, 0.3);
}

.pti-cert__h {
  margin: 0 0 7px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fbbf24;
}

.pti-cert table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
}

.pti-cert td {
  padding: 4.5px 0;
  vertical-align: top;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.pti-cert tr:last-child td {
  border-bottom: none;
}

.pti-cert td:first-child {
  color: #94a3b8;
  width: 38%;
  font-weight: 600;
}

.pti-cert td:last-child {
  color: #f1f5f9;
  font-weight: 600;
  text-align: right;
}

.pti-cert__mono {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10px;
  color: #fbbf24 !important;
}

.pti-cert__checks {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  font-size: 10.5px;
  color: #e2e8f0;
}

.pti-cert__checks li {
  display: flex;
  gap: 7px;
  align-items: flex-start;
  margin-bottom: 4px;
}

.pti-cert__checks li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 4px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 6px rgba(52, 211, 153, 0.6);
  flex-shrink: 0;
}

.pti-cert__qr-plate {
  margin-top: 4px;
  padding: 8px;
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(251, 191, 36, 0.12), rgba(233, 84, 32, 0.06));
  border: 1px solid rgba(251, 191, 36, 0.35);
  text-align: center;
}

.pti-cert__qr {
  width: 96px;
  height: 96px;
  margin: 0 auto 5px;
  border: 2px solid #fbbf24;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(247, 149, 0, 0.25);
  overflow: hidden;
}

.pti-cert__qr canvas,
.pti-cert__qr img {
  width: 86px !important;
  height: 86px !important;
  display: block;
}

.pti-cert__qr-caption {
  font-size: 9px;
  color: #fbbf24;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.pti-cert__foot {
  border-top: 1px solid rgba(251, 191, 36, 0.22);
  padding-top: 5mm;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 9px;
  color: #94a3b8;
  line-height: 1.45;
}

.pti-cert__hash {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 7.5px;
  word-break: break-all;
  color: #64748b;
  margin-top: 4px;
}
