body.is-wizard-open #siteContentWrap,
body.is-wizard-open .site-footer {
  display: none;
}

.wizard {
  display: none;
  min-height: 100dvh;
  padding: calc(var(--header-height) + 18px) 0 60px;
  background: var(--gradient-page);
}

.wizard.is-active {
  display: block;
}

.wizard__container {
  max-width: 1120px;
}

.wizard__progress {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--color-border-soft);
}

.wizard__progress-bar {
  flex: 1;
  height: 12px;
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: rgba(255,255,255,0.06);
}

.wizard__progress-fill {
  width: 0;
  height: 100%;
  background: var(--gradient-gold);
  transition: width var(--transition-slow);
}

.wizard__progress-value {
  min-width: 54px;
  text-align: right;
  font-weight: 900;
}

.wizard__header {
  padding: 24px 4px 12px;
}

.wizard__kicker {
  color: var(--color-text-muted);
  font-weight: 800;
}

.wizard__title {
  margin: 8px 0 10px;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--color-gold-1);
}

.wizard__description {
  margin: 0;
  color: var(--color-text-soft);
  line-height: 1.75;
}

.wizard-step {
  display: none;
}

.wizard-step.is-active {
  display: block;
}

.wizard-button {
  min-width: 240px;
}

.detect-list,
.demo-points,
.stats-grid {
  display: grid;
  gap: 12px;
}

.detect-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--color-border-soft);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.detect-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.detect-item__meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.detect-item__check {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold);
  color: var(--color-black);
  font-weight: 900;
}

.detect-item__label {
  font-size: 0.94rem;
  color: var(--color-text-muted);
  font-weight: 700;
}

.detect-item__value {
  font-weight: 900;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.demo-point,
.feature-box {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--color-border-soft);
}

.auth-panel {
  max-width: 720px;
  margin-inline: auto;
}

.google-button {
  width: min(420px, 100%);
  min-height: 56px;
  margin-inline: auto;
  padding: 0 22px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f5d76e, #e6b93c);
  color: var(--color-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-weight: 800;
}

.google-button__icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
}

.google-button__icon svg {
  width: 100%;
  height: 100%;
}

.wizard-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.stat-card__live-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.final-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--color-border-soft);
  margin-bottom: 18px;
}

.final-box__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,215,0,0.10);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 980px) {
  .feature-grid,
  .wizard-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .wizard-button,
  .button--wide {
    width: 100%;
    min-width: 0;
  }

  .detect-item,
  .final-box {
    flex-direction: column;
    align-items: flex-start;
  }
}