:root {
  color-scheme: light;
  --bg: #f7f5f0;
  --bg-2: #eef3f8;
  --surface: rgba(255, 255, 255, 0.94);
  --line: rgba(148, 163, 184, 0.18);
  --text: #172033;
  --muted: #667085;
  --green: #91c7aa;
  --green-strong: #2f7a5c;
  --green-soft: #dff0e4;
  --blue-soft: #dce8ff;
  --shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: Inter, system-ui, sans-serif;
  background:
    radial-gradient(circle at top, rgba(91, 141, 239, 0.12), transparent 28%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  color: var(--text);
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  width: min(760px, 100%);
  border-radius: 32px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 36px 30px;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(23, 32, 51, 0.08);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.status-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-strong);
  font-weight: 700;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.16);
}

h1 {
  margin: 22px 0 0;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.lead {
  margin-top: 18px;
  color: #374151;
  line-height: 1.75;
  font-size: 1.04rem;
}

.info-panel,
.message-panel {
  margin-top: 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
  padding: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.info-panel h2,
.message-panel strong {
  display: block;
  margin: 0 0 12px;
  font-size: 1rem;
  color: var(--text);
}

.info-panel ul {
  margin: 0;
  padding-left: 20px;
  color: #374151;
  line-height: 1.8;
}

.message-panel p {
  margin: 0;
  color: #374151;
  line-height: 1.7;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding: 14px 22px;
  font-weight: 800;
  text-decoration: none;
}

.button--primary {
  background: linear-gradient(135deg, #91c7aa, #b9dfb7);
  color: #14362b;
}

.button--secondary {
  background: var(--blue-soft);
  color: #21457a;
}

@media (max-width: 640px) {
  .card {
    border-radius: 24px;
    padding: 28px 20px;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
