:root {
  --bg: #050816;
  --bg-elevated: rgba(15, 23, 42, 0.9);
  --border-subtle: rgba(148, 163, 184, 0.3);
  --accent: #38bdf8;
  --accent-soft: rgba(56, 189, 248, 0.15);
  --accent-strong: #0ea5e9;
  --text: #e5e7eb;
  --text-soft: #9ca3af;
  --warning: #fbbf24;
  --warning-soft: rgba(251, 191, 36, 0.15);
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.7);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #1e293b 0, #020617 45%, #020617 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card {
  width: 100%;
  max-width: 840px;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.9));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  padding: 28px 28px 22px;
  backdrop-filter: blur(18px);
}

@media (min-width: 768px) {
  .card {
    padding: 32px 36px 26px;
  }
}

.card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.avatar {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  overflow: hidden;
  background: radial-gradient(circle at 30% 20%, #f97316, #4f46e5);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.headline h1 {
  margin: 0 0 4px;
  font-size: 1.4rem;
  font-weight: 600;
}

.headline .tagline {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.status {
  padding: 22px 0 16px;
}

.status h2 {
  margin: 10px 0 6px;
  font-size: 1.3rem;
}

.status p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.97rem;
  max-width: 44rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-warning {
  color: var(--warning);
  background: var(--warning-soft);
  border: 1px solid rgba(251, 191, 36, 0.4);
}

.badge-warning::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--warning);
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.2);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 14px 0 10px;
}

@media (min-width: 640px) {
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.info-grid h3 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.93rem;
  color: var(--text-soft);
}

.list li + li {
  margin-top: 4px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.15s ease, background 0.15s ease,
    border-color 0.15s ease, color 0.15s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #0b1120;
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.35);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(56, 189, 248, 0.4);
}

.btn.ghost {
  background: rgba(15, 23, 42, 0.8);
  color: var(--text-soft);
  border-color: rgba(148, 163, 184, 0.5);
}

.btn.ghost[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.8;
}

.btn.ghost:hover {
  background: rgba(15, 23, 42, 0.95);
  border-color: var(--accent);
  color: var(--accent);
}

.card-footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.card-footer p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-soft);
  text-align: right;
}

