.verify-shell {
  max-width: 520px;
  margin: 0 auto;
  padding: 64px 24px 96px;
  text-align: center;
}
.verify-h1 {
  font-size: 72px;
  font-weight: 320;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 20px 0 16px;
}
.verify-h1 em { font-style: italic; color: var(--accent-2); }
.verify-sub { font-size: 15px; color: var(--ink-2); line-height: 1.6; margin: 0 0 20px; }
.verify-mascot {
  margin: 0 auto 24px;
  display: block;
}
.verify-badges { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.verify-badge {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid;
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: 0.02em;
}
.verify-form-box {
  text-align: left;
  background: var(--paper-2);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 32px;
}
.step-dots {
  display: flex; align-items: center; gap: 12px;
  justify-content: center; margin-bottom: 16px;
}
.step-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--line); display: inline-block;
}
.step-dot.active { background: var(--accent); }
.step-dot.done { background: var(--accent-2); }
.step-dot-line { width: 32px; height: 1px; background: var(--line); }

.verify-card-sub {
  text-align: center; margin: 0 0 22px;
  font-size: 13px; color: var(--ink-3);
}

.verify-step-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.verify-step-head-row { justify-content: space-between; }
.verify-step-num {
  width: 22px; height: 22px; border-radius: 50%;
  color: var(--paper); display: grid; place-items: center;
  font-size: 11px; font-family: var(--mono);
}
.verify-step-num-active { background: var(--accent); }
.verify-step-num-dark { background: var(--ink); }
.verify-step-label { font-size: 13px; font-weight: 600; }

.countdown-time { font-size: 13px; }
.countdown-time.ok { color: var(--accent-2); }
.countdown-time.urgent { color: var(--accent); }

.verify-action-btn { margin-top: 12px; font-size: 13px; }

.otp-cells {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 8px; margin: 8px 0 12px;
  cursor: text;
}
.otp-cell {
  aspect-ratio: 1;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 22px; font-weight: 500;
  color: var(--ink-4);
}
.otp-cell.filled {
  border-color: var(--ink);
  color: var(--ink);
}
.otp-cells.error-state .otp-cell { border-color: var(--accent); }
.otp-hidden-input {
  position: absolute; opacity: 0; pointer-events: none;
  width: 1px; height: 1px;
}

.verify-resend-row {
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--ink-3); margin-top: 4px;
}
.verify-resend {
  background: none; border: 0; padding: 0;
  color: var(--accent-2); font: inherit; cursor: pointer;
}
.verify-resend:disabled { color: var(--ink-4); cursor: default; }

.verify-confirm { margin-top: 16px; width: 100%; justify-content: center; }

.msg { margin-top: 10px; font-size: 12px; min-height: 16px; }
.msg.error { color: var(--accent); }
.msg.success { color: var(--olive); }

.verify-mock-note {
  margin-top: 20px;
  font-size: 12px; color: var(--ink-3); line-height: 1.5;
}
.verify-back {
  display: inline-block; margin-top: 16px;
  font-size: 13px; color: var(--ink-2); text-decoration: none;
}
.verify-back:hover { color: var(--ink); }

.shake { animation: shake .45s; }
@keyframes shake {
  10%, 90% { transform: translateX(-1px); }
  20%, 80% { transform: translateX(2px); }
  30%, 50%, 70% { transform: translateX(-4px); }
  40%, 60% { transform: translateX(4px); }
}

@media (max-width: 767px) {
  .hdr-nav { display: none; }
  .hdr { padding: 16px 20px; }
  .testbar { font-size: 11px; padding: 8px 16px; text-align: center; }
  .verify-shell { padding: 48px 20px 64px; }
  .verify-h1 { font-size: clamp(28px, 8vw, 40px); word-break: keep-all; }
  .verify-form-box { padding: 22px; }
  .ftr { padding: 48px 20px 24px; }
  .ftr-grid { grid-template-columns: 1fr; gap: 32px; }
}
