:root {
  --bg: #09111f;
  --panel: rgba(11, 23, 40, 0.78);
  --panel-border: rgba(121, 153, 197, 0.16);
  --text: #edf3ff;
  --muted: #9cb2d0;
  --cpu: #ff8a3d;
  --ram: #2fd6a2;
  --disk: #5fb0ff;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(95, 176, 255, 0.2), transparent 25%),
    radial-gradient(circle at top right, rgba(47, 214, 162, 0.18), transparent 28%),
    linear-gradient(160deg, #040814 0%, #09111f 55%, #0f1a30 100%);
}

.shell {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 56px 0 32px;
}

.hero {
  margin-bottom: 28px;
}

.eyebrow,
.meta-label,
.footer {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.95;
  max-width: 10ch;
}

.subcopy {
  max-width: 62ch;
  color: #c5d4ea;
  font-size: 1.05rem;
  line-height: 1.6;
}

.meta-grid,
.stats-grid {
  display: grid;
  gap: 18px;
}

.meta-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 18px;
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.meta-card,
.stat-card {
  backdrop-filter: blur(18px);
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.meta-card {
  padding: 18px 20px;
}

.meta-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
}

.stat-card {
  padding: 24px;
}

.card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.card-head span {
  font-size: 1.1rem;
}

.card-head strong,
.details dd,
.meta-card strong {
  font-family: "IBM Plex Mono", monospace;
}

.card-head strong {
  font-size: 1.8rem;
}

.meter {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 18px;
}

.meter-bar {
  height: 100%;
  width: 0;
  border-radius: inherit;
  transition: width 320ms ease;
}

.meter-bar.cpu {
  background: linear-gradient(90deg, #ffbd6a 0%, var(--cpu) 100%);
}

.meter-bar.ram {
  background: linear-gradient(90deg, #88ffd9 0%, var(--ram) 100%);
}

.meter-bar.disk {
  background: linear-gradient(90deg, #9cc8ff 0%, var(--disk) 100%);
}

.details {
  margin: 0;
}

.details div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.details dt {
  color: var(--muted);
}

.details dd {
  margin: 0;
  text-align: right;
}

.footer {
  margin: 18px 4px 0;
}

@media (max-width: 640px) {
  .shell {
    width: min(100vw - 20px, 1120px);
    padding-top: 26px;
  }

  .stat-card,
  .meta-card {
    border-radius: 20px;
  }

  .card-head strong {
    font-size: 1.5rem;
  }
}

