*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--bg-base);
  line-height: 1.55;
  min-height: 100vh;
}

.dashboard-view {
  font-size: 15px;
  line-height: 1.48;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg,
video {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-main {
  position: relative;
  z-index: 3;
}

.app-bg {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.floating-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(14px);
  opacity: 0.85;
  animation: orbFloat 12s ease-in-out infinite;
}

.floating-orb--one {
  width: 420px;
  height: 420px;
  top: -160px;
  left: -110px;
  background: rgba(244, 121, 32, 0.24);
}

.floating-orb--two {
  width: 340px;
  height: 340px;
  top: 24%;
  right: -120px;
  background: rgba(30, 155, 42, 0.18);
  animation-delay: 1.5s;
}

.floating-orb--three {
  width: 280px;
  height: 280px;
  bottom: -90px;
  left: 32%;
  background: rgba(227, 65, 95, 0.16);
  animation-delay: 3s;
}

.wave-divider {
  height: 96px;
  margin-top: -1px;
  background:
    radial-gradient(90px 44px at 16% 0, transparent 64px, var(--bg-base) 66px),
    radial-gradient(90px 44px at 36% 0, transparent 64px, var(--bg-base) 66px),
    radial-gradient(90px 44px at 56% 0, transparent 64px, var(--bg-base) 66px),
    radial-gradient(90px 44px at 76% 0, transparent 64px, var(--bg-base) 66px),
    radial-gradient(90px 44px at 96% 0, transparent 64px, var(--bg-base) 66px);
  background-size: 100% 100%;
}

.meta-text {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.section-heading h2 {
  font-size: clamp(1.45rem, 1.8vw, 2rem);
}

.section-heading p {
  color: var(--text-muted);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  padding: 0.28rem 0.72rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease;
}

.status-badge:hover {
  transform: translateY(-1px);
}

.status-badge--success {
  background: rgba(18, 147, 108, 0.13);
  color: #0d7f5d;
  border-color: rgba(18, 147, 108, 0.25);
}

.status-badge--info {
  background: rgba(244, 121, 32, 0.12);
  color: #F47920;
  border-color: rgba(244, 121, 32, 0.24);
}

.status-badge--warning {
  background: rgba(215, 139, 18, 0.16);
  color: #ac6908;
  border-color: rgba(215, 139, 18, 0.32);
}

.status-badge--danger {
  background: rgba(227, 65, 95, 0.14);
  color: #b4304a;
  border-color: rgba(227, 65, 95, 0.3);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: var(--space-5);
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
