:root {
  --yan-orange: #ff6b21;
  --yan-orange-hover: #f25f13;
  --yan-warm-bg: #fff9f5;
  --yan-border: #f2e6de;
  --yan-title: #1f1f1f;
  --yan-text: #6f6f6f;
}

.status-illustration {
  display: block;
  width: min(360px, 56vw);
  height: auto;
  margin: 0 auto 24px;
  user-select: none;
  pointer-events: none;
}

.status-page {
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
  padding: 48px 24px;
  background: var(--yan-warm-bg);
}

.status-card {
  width: min(820px, 100%);
  text-align: center;
  padding: 48px 40px;
  background: #fff;
  border: 1px solid var(--yan-border);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(68, 36, 18, 0.06);
}

.status-title {
  margin: 0;
  color: var(--yan-title);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.25;
  font-weight: 750;
}

.status-description {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--yan-text);
  font-size: 16px;
  line-height: 1.8;
}

.status-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.status-button {
  min-width: 132px;
  height: 44px;
  padding: 0 22px;
  border-radius: 12px;
  border: 1px solid #ffd0b2;
  background: #fff;
  color: var(--yan-orange);
  font-size: 15px;
  font-weight: 650;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.status-button:hover {
  transform: translateY(-1px);
  background: #fff5ee;
  border-color: #ffb783;
}

.status-button--primary {
  border-color: var(--yan-orange);
  background: var(--yan-orange);
  color: #fff;
}

.status-button--primary:hover {
  background: var(--yan-orange-hover);
  border-color: var(--yan-orange-hover);
}

@media (max-width: 640px) {
  .status-card {
    padding: 32px 20px;
    border-radius: 22px;
  }

  .status-actions {
    flex-direction: column;
  }

  .status-button {
    width: 100%;
  }
}
