.ai-check-page {
  --max-width: 1120px;
}

.checker-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 22px;
}

.checker-form,
.result-card {
  padding: clamp(22px, 3vw, 34px);
}

.checker-form label {
  display: block;
  margin-bottom: 12px;
  font-weight: 900;
}

.checker-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
  margin-bottom: 18px;
}

.result-card h2 {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.score {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: clamp(72px, 8vw, 118px);
  line-height: .9;
  letter-spacing: -0.07em;
  color: var(--text);
}

.meter {
  height: 14px;
  margin: 24px 0 18px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.1);
  overflow: hidden;
}

.bar {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  transition: width .8s ease;
}

.result-card.success {
  border-color: rgba(255, 87, 51, .64);
  background:
    linear-gradient(135deg, rgba(255,87,51,.18), transparent 50%),
    rgba(10, 14, 28, .84);
}

@media (max-width: 860px) {
  .checker-grid {
    grid-template-columns: 1fr;
  }

  .checker-actions button {
    width: 100%;
  }
}
