/* Claim & verify → success → bonus hub (pages 22–24) */

.kicker.green { color: var(--green, #3ddc97); }

/* ---- numbered step cards (claim & verify) ---- */
.vstep-flow {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 26px;
}
.vstep {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(16, 26, 48, 0.72);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}
.vstep .num {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-weight: 800;
  font-size: 14px;
  background: var(--bg);
  color: var(--pink);
  border: 1px solid rgba(245, 132, 238, 0.4);
}
.vstep .num.done {
  color: var(--green, #3ddc97);
  border-color: rgba(61, 220, 151, 0.5);
}
.vstep .body { flex: 1; min-width: 0; }
.vstep h3 {
  font-size: 16.5px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.vstep h3 .pts { color: var(--green, #3ddc97); }
.vstep p {
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}
.vstep p strong { color: var(--ink); }

/* wallet input + verify */
.verify-row {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.wallet-input {
  flex: 1;
  min-width: 220px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: rgba(7, 13, 26, 0.6);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.15s;
}
.wallet-input:focus { border-color: var(--pink); }
.wallet-input::placeholder { color: var(--faint); }
.btn.sm {
  font-size: 14.5px;
  padding: 12px 20px;
  min-height: 48px;
  border-radius: 12px;
  white-space: nowrap;
}
.wallet-hint { margin-top: 8px; font-size: 12.5px; color: var(--faint); font-weight: 600; }

/* "where do I find my account name?" explainer */
.acct-help { margin-top: 10px; }
.acct-help-toggle {
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.acct-help-toggle:hover { text-decoration: underline; }
.acct-help-steps {
  margin: 10px 0 0 0;
  padding: 12px 14px 12px 30px;
  background: rgba(38, 201, 242, 0.05);
  border: 1px solid rgba(38, 201, 242, 0.25);
  border-radius: 12px;
}
.acct-help-steps li {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  margin: 4px 0;
}
.acct-help-steps li strong { color: var(--ink); }

/* checking state */
.verify-status {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  background: rgba(38, 201, 242, 0.06);
  border: 1px solid rgba(38, 201, 242, 0.35);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--cyan);
}
.verify-status .line { animation: statusLineIn 0.35s ease both; }
@keyframes statusLineIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.spinner {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 99px;
  border: 2.5px solid rgba(38, 201, 242, 0.25);
  border-top-color: var(--cyan);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .spinner { animation-duration: 1.6s; }
}

/* error state */
.verify-error {
  margin-top: 14px;
  background: rgba(244, 103, 125, 0.08);
  border: 1px solid rgba(244, 103, 125, 0.55);
  border-radius: 12px;
  padding: 14px 16px;
}
.verify-error .t { font-size: 14.5px; font-weight: 800; color: #f4677d; }
.verify-error p { margin-top: 5px; font-size: 13.5px; line-height: 1.5; color: var(--muted); }
.verify-error p strong { color: var(--ink); }
.verify-error a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(244, 103, 125, 0.6);
}
.verify-error a:hover { text-decoration-color: var(--ink); }

/* success state */
.verify-success {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(61, 220, 151, 0.08);
  border: 1px solid rgba(61, 220, 151, 0.55);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 800;
  color: var(--green, #3ddc97);
  animation: statusLineIn 0.35s ease both;
}
.verify-success .tick {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 99px;
  background: rgba(61, 220, 151, 0.18);
  border: 1px solid rgba(61, 220, 151, 0.6);
  font-size: 13px;
}
.verify-success .addr {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}

/* ---- success screen (page 23) ---- */
.points-card {
  margin-top: 28px;
  text-align: center;
  background:
    radial-gradient(420px 220px at 50% 0%, rgba(61, 220, 151, 0.16), transparent 70%),
    rgba(16, 26, 48, 0.8);
  border: 1px solid rgba(61, 220, 151, 0.5);
  border-radius: 20px;
  padding: 30px 20px 26px 20px;
  box-shadow: 0 0 60px rgba(61, 220, 151, 0.12);
}
.points-card .big {
  font-size: clamp(48px, 11vw, 76px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--green, #3ddc97);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 50px rgba(61, 220, 151, 0.45);
}
.points-card .unit {
  margin-top: 6px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}
.points-card .meta {
  margin-top: 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
}
.points-card .meta strong { color: var(--ink); }

/* ---- bonus hub (page 24) ---- */
.task-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.task-card {
  background: rgba(16, 26, 48, 0.72);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}
.task-card.featured {
  border-color: rgba(245, 132, 238, 0.6);
  background:
    radial-gradient(420px 200px at 50% 0%, rgba(245, 132, 238, 0.12), transparent 70%),
    rgba(16, 26, 48, 0.8);
  box-shadow: 0 0 50px rgba(245, 132, 238, 0.14);
}
.task-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.task-tag {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 5px 11px;
  white-space: nowrap;
}
.task-pts {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green, #3ddc97);
  background: rgba(61, 220, 151, 0.1);
  border: 1px solid rgba(61, 220, 151, 0.45);
  border-radius: 99px;
  padding: 5px 11px;
  white-space: nowrap;
}
.task-pts.pink {
  color: var(--pink);
  background: rgba(245, 132, 238, 0.1);
  border-color: rgba(245, 132, 238, 0.5);
}
.task-card h3 {
  margin-top: 14px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.task-card p {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.task-card p strong { color: var(--ink); }
.task-card .task-cta,
.vstep .task-cta { margin-top: 16px; display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.task-done-note {
  font-size: 13px;
  font-weight: 700;
  color: var(--green, #3ddc97);
}

/* tweet verification (paste the post URL after the X intent) */
.tweet-verify { margin-top: 16px; }
.tweet-verify .lab {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 9px;
}
.task-err {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  color: #ff9ad2;
}
