/* PredictStamp — Portable proof / EAS page (mobile-first) */

.proof-full-bleed {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.proof-mesh {
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(139, 92, 246, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(16, 185, 129, 0.12), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(59, 130, 246, 0.1), transparent 45%);
}

.proof-grid-bg {
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

html.dark .proof-grid-bg {
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
}

.proof-orb {
  border-radius: 9999px;
  filter: blur(64px);
  pointer-events: none;
}

.proof-orb--slow {
  animation: proof-orb-drift 18s ease-in-out infinite alternate;
}

@keyframes proof-orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(24px, -16px) scale(1.08); }
}

.proof-gradient-text {
  background: linear-gradient(135deg, rgb(124 58 237), rgb(16 185 129), rgb(59 130 246));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(139, 92, 246, 0.35);
  background: rgba(255, 255, 255, 0.65);
  padding: 0.375rem 0.875rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(109 40 217);
  backdrop-filter: blur(8px);
}

html.dark .proof-badge {
  border-color: rgba(167, 139, 250, 0.35);
  background: rgba(15, 23, 42, 0.55);
  color: rgb(196 181 253);
}

.proof-glass {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

html.dark .proof-glass {
  background: rgba(15, 23, 42, 0.65);
  border-color: rgba(51, 65, 85, 0.8);
}

.proof-card {
  border: 1px solid rgb(226 232 240);
  background: rgb(255 255 255);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

html.dark .proof-card {
  border-color: rgb(51 65 85);
  background: rgb(15 23 42);
}

.proof-card:hover {
  box-shadow: 0 12px 40px -16px rgba(124, 58, 237, 0.15);
}

.proof-icon-ring {
  display: inline-flex;
  height: 2rem;
  width: 2rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: rgb(248 250 252);
}

html.dark .proof-icon-ring {
  background: rgb(30 41 59);
}

.proof-step-num {
  display: inline-flex;
  height: 2rem;
  width: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: linear-gradient(135deg, rgb(124 58 237), rgb(59 130 246));
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
}

.proof-stat {
  min-height: 5.5rem;
}

.proof-status {
  display: inline-flex;
  border-radius: 9999px;
  padding: 0.25rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.proof-status--signed {
  background: rgb(237 233 254);
  color: rgb(109 40 217);
}

html.dark .proof-status--signed {
  background: rgba(76, 29, 149, 0.35);
  color: rgb(196 181 253);
}

.proof-status--anchored {
  background: rgb(209 250 229);
  color: rgb(4 120 87);
}

html.dark .proof-status--anchored {
  background: rgba(6, 78, 59, 0.35);
  color: rgb(110 231 183);
}

.proof-status--pending,
.proof-status--failed {
  background: rgb(241 245 249);
  color: rgb(100 116 139);
}

.proof-cta {
  background: linear-gradient(135deg, rgb(76 29 149), rgb(109 40 217), rgb(16 185 129));
}

.proof-empty {
  background: rgb(248 250 252);
}

html.dark .proof-empty {
  background: rgba(30, 41, 59, 0.4);
}

.proof-example {
  min-height: 8rem;
}

@media (min-width: 768px) {
  .proof-page .pr-table-wrap table {
    font-size: 0.875rem;
  }
}
