body.verify {
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(1200px 620px at 50% -18%, var(--accent-soft), transparent 68%),
    var(--bg);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0.9rem 0;
  background: var(--surface);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar__meta {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

.shell {
  flex: 1;
  display: flex;
  align-items: center;
  padding: clamp(2rem, 6vw, 5rem) 0;
}

.hero {
  text-align: center;
  margin-bottom: 2.25rem;
}

.hero__server {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0.9rem 0.35rem 0.35rem;
  margin-bottom: 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-sm);
  font-size: 0.875rem;
  font-weight: 560;
}

.hero__icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-sunken);
}

.hero p {
  max-width: 46ch;
  margin-inline: auto;
  font-size: 1.0625rem;
}

.panel {
  overflow: hidden;
}

.panel__section {
  padding: 1.55rem 1.75rem;
}

.panel__section + .panel__section {
  border-top: 1px solid var(--border);
}

.panel__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.notice {
  max-height: 260px;
  overflow-y: auto;
  padding-right: 0.5rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  overscroll-behavior: contain;
}

.notice p {
  margin: 0 0 0.85rem;
}

.notice p:last-child {
  margin-bottom: 0;
}

.facts {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.facts li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.facts b {
  color: var(--text);
  font-weight: 580;
}

.facts__glyph {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.facts__glyph--yes {
  color: var(--accent);
  background: var(--accent-soft);
}

.facts__glyph--no {
  color: var(--clean);
  background: color-mix(in srgb, var(--clean) 14%, transparent);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.consent input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: var(--accent);
  cursor: pointer;
  flex: none;
}

.steps {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9375rem;
  color: var(--text-tertiary);
  transition: color 0.3s var(--ease);
}

.step[data-state='active'],
.step[data-state='done'] {
  color: var(--text);
}

.step__marker {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--border-strong);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.step[data-state='active'] .step__marker {
  border-color: var(--accent);
  animation: pulse 1.5s var(--ease) infinite;
}

.step[data-state='done'] .step__marker {
  border-color: var(--accent);
  background: var(--accent);
}

.step[data-state='done'] .step__marker::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: translateY(-1px) rotate(45deg);
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 var(--accent-soft);
  }
  50% {
    box-shadow: 0 0 0 6px transparent;
  }
}

.result {
  text-align: center;
  padding: 2.5rem 1.75rem;
}

.result__badge {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 1.35rem;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
}

.result--clean .result__badge {
  color: var(--clean);
  background: color-mix(in srgb, var(--clean) 14%, transparent);
}

.result--suspicious .result__badge {
  color: var(--suspicious);
  background: color-mix(in srgb, var(--suspicious) 15%, transparent);
}

.result--blocked .result__badge {
  color: var(--blocked);
  background: color-mix(in srgb, var(--blocked) 14%, transparent);
}

.result h2 {
  margin-bottom: 0.6rem;
}

.result p {
  max-width: 42ch;
  margin-inline: auto;
}

.gauge {
  width: min(100%, 260px);
  margin: 1.6rem auto 0;
}

.gauge__track {
  height: 6px;
  border-radius: var(--radius-pill);
  background: var(--bg-sunken);
  overflow: hidden;
}

.gauge__fill {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: currentColor;
  transition: width 0.9s var(--ease);
}

.gauge__legend {
  display: flex;
  justify-content: space-between;
  margin-top: 0.55rem;
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

.footer {
  padding: 2rem 0 2.6rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

.footer a {
  color: var(--text-secondary);
}

.fade-in {
  animation: fadeIn 0.5s var(--ease) both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 560px) {
  .panel__section {
    padding: 1.3rem 1.15rem;
  }
}
