/* ==========================================================================
   Ponsegle app.

   Same material language as the landing page: light from above, one chrome
   recipe, one glass recipe, and green reserved for value the user actually
   holds — a number in that colour always means shares, never status.
   ========================================================================== */

:root {
  color-scheme: dark;

  --bg: #08090a;
  --hairline: rgba(255, 255, 255, 0.09);
  --hairline-bright: rgba(255, 255, 255, 0.16);

  --text: #eceeed;
  --muted: rgba(236, 238, 237, 0.54);
  --faint: rgba(236, 238, 237, 0.38);

  --mint: #9fc4b6;
  --gain: #64e3a1;
  --gain-dim: rgba(100, 227, 161, 0.12);
  --danger: #f4776b;

  --radius-lg: 22px;
  --radius: 14px;
  --radius-sm: 10px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "DM Sans", system-ui, -apple-system, sans-serif;

  --chrome-face: linear-gradient(180deg,
      rgba(255, 255, 255, 0.16),
      rgba(255, 255, 255, 0.05) 46%,
      rgba(255, 255, 255, 0.02) 54%,
      rgba(255, 255, 255, 0.09));
  --chrome-edge:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -1px 0 rgba(0, 0, 0, 0.5),
    0 1px 2px rgba(0, 0, 0, 0.55);

  --glass-face: linear-gradient(180deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.018));
  --glass-edge:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 24px 48px -28px rgba(0, 0, 0, 0.9);
}

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

html,
body {
  margin: 0;
  height: 100%;
  min-height: 100%;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

.hidden {
  display: none !important;
}

.view {
  min-height: 100dvh;
}

.label {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
}

.ambient {
  position: fixed;
  inset: -30vmax 0 auto;
  height: 66vmax;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(40vmax 28vmax at 50% 20%, rgba(159, 196, 182, 0.11), transparent 68%),
    radial-gradient(26vmax 20vmax at 76% 6%, rgba(100, 227, 161, 0.06), transparent 70%);
  filter: blur(24px);
  animation: drift 26s var(--ease) infinite alternate;
}

@keyframes drift {
  to {
    transform: translate3d(-3%, 2%, 0) scale(1.08);
  }
}

/* ------------------------------------------------------------------- mark */

.mark-stage {
  position: relative;
  width: 104px;
  height: 104px;
  margin: 0 auto 1.75rem;
  display: grid;
  place-items: center;
  animation: float 7s ease-in-out infinite alternate;
}

.mark-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4%;
  width: 56%;
  height: 10px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(0, 0, 0, 0.6), transparent);
  filter: blur(6px);
}

.mark {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.55));
}

@keyframes float {
  to { transform: translateY(-7px); }
}

/* ------------------------------------------------------------------- gate */

.gate {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
}

.gate-card {
  width: 100%;
  max-width: 400px;
  padding: 2.75rem 2rem 2rem;
  border-radius: var(--radius-lg);
  background: var(--glass-face);
  border: 1px solid var(--hairline);
  box-shadow: var(--glass-edge);
  backdrop-filter: blur(20px);
  text-align: center;
  animation: rise 0.7s var(--ease) both;
}

.gate-title {
  margin: 0 0 0.7rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #ffffff, rgba(236, 238, 237, 0.7));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gate-sub {
  margin: 0 0 1.85rem;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--muted);
}

.gate-error {
  min-height: 1.2rem;
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
  color: var(--danger);
}

.gate-foot {
  margin: 1.5rem 0 0;
  padding-top: 1.15rem;
  border-top: 1px solid var(--hairline);
  font-size: 0.74rem;
  font-weight: 300;
  color: var(--faint);
}

.subtle-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.spinner {
  width: 12px;
  height: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-top-color: var(--mint);
  border-radius: 50%;
  animation: spin 0.85s linear infinite;
}

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

/* ---------------------------------------------------------------- buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease),
    background 0.22s var(--ease), border-color 0.22s var(--ease), opacity 0.2s var(--ease);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 0.48rem 1rem;
  font-size: 0.8rem;
}

.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
}

.btn-primary {
  color: #06110d;
  background: linear-gradient(180deg, #d8f5e6, #8fd7b6 52%, #6cc79c);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(0, 0, 0, 0.28),
    0 10px 24px -10px rgba(100, 227, 161, 0.45);
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(0, 0, 0, 0.28),
    0 16px 32px -12px rgba(100, 227, 161, 0.55);
}

.btn-chrome {
  color: var(--text);
  background: var(--chrome-face);
  border-color: var(--hairline-bright);
  box-shadow: var(--chrome-edge);
}

.btn-chrome:hover:not(:disabled) {
  border-color: rgba(255, 255, 255, 0.26);
  transform: translateY(-1px);
}

.btn-quiet {
  color: var(--muted);
  border-color: var(--hairline);
  background: transparent;
}

.btn-quiet:hover:not(:disabled) {
  color: var(--text);
  border-color: var(--hairline-bright);
}

.btn-primary:active:not(:disabled),
.btn-chrome:active:not(:disabled) {
  transform: translateY(1px);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.4);
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  font-size: 0.85rem;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.icon-btn:hover {
  color: var(--text);
  border-color: var(--hairline-bright);
}

/* --------------------------------------------------------------- app bar */

.app-shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

.app-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.25rem;
  border-bottom: 1px solid var(--hairline);
  background: rgba(8, 9, 10, 0.72);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.brand-mark {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.6));
}

.wordmark {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.wallet-pill {
  flex: 1;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--faint);
  font-variant-numeric: tabular-nums;
}

.app-bar-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

/* --------------------------------------------------------------- earnings */

.pf-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 0.32rem;
  padding: 0.42rem 0.85rem;
  font-family: inherit;
  font-size: 0.8rem;
  color: var(--text);
  background: var(--gain-dim);
  border: 1px solid rgba(100, 227, 161, 0.24);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: background 0.22s var(--ease), border-color 0.22s var(--ease),
    transform 0.22s var(--ease);
}

.pf-pill:hover {
  background: rgba(100, 227, 161, 0.18);
  border-color: rgba(100, 227, 161, 0.4);
  transform: translateY(-1px);
}

.pf-pill-amount {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--gain);
}

.pf-pill-label {
  font-size: 0.68rem;
  color: var(--muted);
}

.pf-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  width: min(390px, 100vw);
  height: 100dvh;
  overflow-y: auto;
  padding: 1.5rem 1.4rem 2.5rem;
  background: linear-gradient(180deg, rgba(20, 22, 23, 0.96), rgba(12, 13, 14, 0.97));
  border-left: 1px solid var(--hairline);
  box-shadow: -32px 0 64px -20px rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(24px);
  animation: slide-in 0.4s var(--ease) both;
}

@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
}

.pf-drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.pf-drawer-total {
  margin: 0.4rem 0 0;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
  color: var(--gain);
}

.pf-unit {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--faint);
  letter-spacing: 0;
}

.pf-rules {
  margin: 0 0 1.4rem;
  font-size: 0.79rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--muted);
}

.pf-cap-track {
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.pf-cap-fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(100, 227, 161, 0.6), var(--gain));
  transition: width 0.6s var(--ease);
}

.pf-cap-label {
  margin: 0.5rem 0 0;
  font-size: 0.7rem;
  color: var(--faint);
  font-variant-numeric: tabular-nums;
}

.pf-section {
  margin: 1.75rem 0 0.5rem;
}

.pf-count {
  margin-left: 0.35rem;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.pf-list,
.pf-history {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pf-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 0.7rem;
  padding: 0.72rem 0;
  border-bottom: 1px solid var(--hairline);
}

.pf-row-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.pf-symbol {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.pf-name {
  font-size: 0.7rem;
  color: var(--faint);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pf-row-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.pf-amount {
  font-size: 0.94rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--gain);
}

.pf-pending,
.pf-claimed {
  font-size: 0.66rem;
  color: var(--faint);
  font-variant-numeric: tabular-nums;
}

.btn-claim {
  padding: 0.36rem 0.85rem;
  font-family: inherit;
  font-size: 0.76rem;
  font-weight: 600;
  color: #06110d;
  background: linear-gradient(180deg, #d8f5e6, #8fd7b6 52%, #6cc79c);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.btn-claim:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 18px -8px rgba(100, 227, 161, 0.6);
}

.btn-claim:disabled {
  color: var(--faint);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
  cursor: not-allowed;
}

.pf-history-row {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  padding: 0.58rem 0;
  border-bottom: 1px solid var(--hairline);
}

.pf-history-amount {
  font-size: 0.83rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--gain);
}

.pf-history-meta {
  font-size: 0.68rem;
  color: var(--faint);
}

.pf-empty {
  padding: 0.9rem 0;
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--faint);
}

.pf-disclaimer {
  margin: 2rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--hairline);
  font-size: 0.66rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(236, 238, 237, 0.42);
}

/* ------------------------------------------------------------------ stage */

.stage {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lobby-panel {
  display: flex;
  justify-content: center;
  padding: 3.5rem 1.25rem 2rem;
}

.lobby-card {
  width: 100%;
  max-width: 380px;
  padding: 1.6rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--glass-face);
  border: 1px solid var(--hairline);
  box-shadow: var(--glass-edge);
  backdrop-filter: blur(20px);
  text-align: center;
  animation: rise 0.6s var(--ease) both;
}

.lobby-status {
  margin: 0.6rem 0 0.4rem;
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.hint {
  margin: 0 0 1.4rem;
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--faint);
}

/* ------------------------------------------------------------------ queue */

.queue-overlay {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: grid;
  place-items: center;
  background: rgba(8, 9, 10, 0.82);
  backdrop-filter: blur(10px);
}

.queue-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
}

.pulse-ring {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(159, 196, 182, 0.45);
}

.pulse-ring::before,
.pulse-ring::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid rgba(159, 196, 182, 0.4);
  animation: pulse 2.4s var(--ease) infinite;
}

.pulse-ring::after {
  animation-delay: 1.2s;
}

@keyframes pulse {
  from { transform: scale(1); opacity: 0.8; }
  to   { transform: scale(2.1); opacity: 0; }
}

.queue-status {
  margin: 0;
  max-width: 22rem;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--danger);
}

.queue-status:empty {
  display: none;
}

.queue-title {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 400;
  color: var(--muted);
}

/* ------------------------------------------------------------------ video */

.video-wrap {
  flex: 1;
  display: flex;
  padding: 0 1.25rem 1.25rem;
}

.video-container {
  position: relative;
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0b0c0d;
  border: 1px solid var(--hairline);
  box-shadow: var(--glass-edge);
}

.video-remote {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #0b0c0d;
}

.video-local {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: clamp(110px, 18vw, 190px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--hairline-bright);
  box-shadow: 0 16px 32px -16px rgba(0, 0, 0, 0.95);
  transform: scaleX(-1);
  transition: opacity 0.3s var(--ease);
}

.video-local.video-off {
  opacity: 0.25;
}

.status-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  color: var(--muted);
  pointer-events: none;
}

.remote-status {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--muted);
}

/* The earn meter sits opposite the controls so it never covers a face. */
.earn-meter {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 5;
  padding: 0.42rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  color: var(--muted);
  background: rgba(8, 9, 10, 0.7);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease),
    background 0.3s var(--ease);
}

.earn-meter.meter-hit {
  color: var(--gain);
  background: var(--gain-dim);
  border-color: rgba(100, 227, 161, 0.4);
  animation: meter-pop 0.55s var(--ease);
}

@keyframes meter-pop {
  0%   { transform: scale(0.86) translateZ(0); opacity: 0.3; }
  55%  { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}

.toast {
  position: absolute;
  left: 50%;
  bottom: 5.5rem;
  z-index: 7;
  padding: 0.6rem 1.1rem;
  font-size: 0.82rem;
  color: var(--text);
  background: rgba(20, 22, 23, 0.94);
  border: 1px solid var(--hairline-bright);
  border-radius: 999px;
  box-shadow: 0 18px 36px -18px rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translate(-50%, 8px);
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

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

/* --------------------------------------------------------------- controls */

.controls {
  position: absolute;
  left: 50%;
  bottom: 1.15rem;
  z-index: 6;
  display: flex;
  gap: 0.45rem;
  padding: 0.4rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(8, 9, 10, 0.72);
  border: 1px solid var(--hairline);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 16px 32px -16px rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(14px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.controls.hidden {
  display: flex !important;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
}

.ctrl-btn {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  font-size: 0.9rem;
  color: var(--muted);
  background: var(--chrome-face);
  border: 1px solid var(--hairline);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--chrome-edge);
  transition: color 0.2s var(--ease), transform 0.2s var(--ease),
    border-color 0.2s var(--ease);
}

.ctrl-btn:hover:not(:disabled) {
  color: var(--text);
  transform: translateY(-1px);
  border-color: var(--hairline-bright);
}

.ctrl-btn:active:not(:disabled) {
  transform: translateY(1px);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

.ctrl-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.ctrl-btn.active {
  color: var(--text);
}

.ctrl-btn.ctrl-leave {
  color: var(--danger);
}

.ctrl-btn.top-left {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 5;
}

/* ------------------------------------------------------------------ modal */

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(8, 9, 10, 0.72);
  backdrop-filter: blur(8px);
  animation: fade 0.25s var(--ease) both;
}

.modal-panel {
  width: 100%;
  max-width: 360px;
  padding: 1.6rem 1.5rem 1.35rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(24, 26, 27, 0.98), rgba(14, 16, 17, 0.98));
  border: 1px solid var(--hairline-bright);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.95);
  animation: rise 0.35s var(--ease) both;
}

.modal-title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.modal-copy {
  margin: 0 0 1.4rem;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--muted);
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

@keyframes fade {
  from { opacity: 0; }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
}

/* ------------------------------------------------------------ responsive */

@media (max-width: 620px) {
  .app-bar {
    flex-wrap: wrap;
  }

  .wallet-pill {
    order: 3;
    flex-basis: 100%;
    text-align: left;
  }

  .app-bar-actions {
    margin-left: auto;
  }

  .pf-drawer {
    width: 100vw;
  }

  .pf-pill-label {
    display: none;
  }

  .video-wrap {
    padding: 0 0.75rem 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

/* Contract address under each holding: quiet by default, because it is there for
   the person who wants to check rather than everyone who does not. */
.pf-verify {
  margin-top: 0.15rem;
  font-size: 0.64rem;
  font-variant-numeric: tabular-nums;
  color: rgba(236, 238, 237, 0.32);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.pf-verify:hover {
  color: var(--mint);
  border-bottom-color: rgba(159, 196, 182, 0.4);
}
