@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --bg: #0f1215;
  --bg-2: #141a20;
  --card: rgba(255, 255, 255, 0.06);
  --stroke: rgba(255, 255, 255, 0.12);
  --text: #f5f6f7;
  --muted: #a7b0ba;
  --accent: #f1c40f;
  --accent-2: #4ad8ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  background: radial-gradient(1200px 800px at 10% 10%, #1a2129, transparent),
    radial-gradient(1000px 600px at 80% 20%, #1f2b36, transparent),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  z-index: -1;
}

.bg-orb.one {
  background: #2d6bff;
  top: -200px;
  left: -120px;
}

.bg-orb.two {
  background: #f1c40f;
  bottom: -200px;
  right: -120px;
}

.shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 8px;
}

h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin: 0 0 8px;
}

.subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.2);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff6b6b;
  display: inline-block;
}

.dot.ok {
  background: #2ecc71;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  margin-bottom: 16px;
}

.card h2 {
  margin: 0 0 16px;
  font-size: 20px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.controls button {
  background: var(--accent);
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.list {
  display: grid;
  gap: 12px;
}

.item {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  display: grid;
  gap: 6px;
}

.item .meta {
  font-size: 12px;
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.badge.high {
  background: rgba(255, 107, 107, 0.2);
  color: #ff8a8a;
}

.badge.medium {
  background: rgba(241, 196, 15, 0.2);
  color: #f1c40f;
}

.badge.low {
  background: rgba(74, 216, 255, 0.2);
  color: #4ad8ff;
}

.metrics {
  display: grid;
  gap: 8px;
}

.metric {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
}

@media (max-width: 720px) {
  .hero {
    flex-direction: column;
    align-items: flex-start;
  }
}
