:root {
  --bg: #f4f7fb;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: #ffffff;
  --text: #10233b;
  --muted: #51657d;
  --line: rgba(16, 35, 59, 0.12);
  --accent: #0d6b5f;
  --accent-2: #1167b1;
  --warn: #b96800;
  --danger: #b42318;
  --ok: #12715b;
  --shadow: 0 22px 60px rgba(16, 35, 59, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(17, 103, 177, 0.14), transparent 34%),
    radial-gradient(circle at top right, rgba(13, 107, 95, 0.12), transparent 30%),
    linear-gradient(180deg, #f7fafd 0%, var(--bg) 100%);
  font: 16px/1.65 "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

a {
  color: inherit;
}

.page {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.hero {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(17, 103, 177, 0.95), rgba(13, 107, 95, 0.9)),
    #0f2b46;
  color: #f8fbff;
  box-shadow: 0 28px 80px rgba(14, 34, 58, 0.18);
  padding: 36px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.24), transparent 70%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: rgba(248, 251, 255, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.25rem, 3vw, 4rem);
  line-height: 1.04;
}

.hero p {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(248, 251, 255, 0.88);
  font-size: 1.08rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 600;
  font-size: 0.92rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}

.button-primary {
  color: #0f2b46;
  background: #f8fbff;
  box-shadow: 0 14px 34px rgba(10, 21, 34, 0.16);
}

.button-secondary {
  color: #f8fbff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.section {
  margin-top: 28px;
  padding: 28px;
  border-radius: 26px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 6px 0 0;
  font-size: 1.55rem;
}

.section-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  padding: 18px;
  border-radius: 20px;
  background: var(--panel-strong);
  border: 1px solid var(--line);
  display: grid;
  gap: 10px;
}

.card strong {
  font-size: 1.05rem;
}

.metric-value {
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
}

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

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.status-ok {
  color: var(--ok);
  background: rgba(18, 113, 91, 0.1);
}

.status-warn {
  color: var(--warn);
  background: rgba(185, 104, 0, 0.12);
}

.status-danger {
  color: var(--danger);
  background: rgba(180, 35, 24, 0.12);
}

.status-info {
  color: var(--accent-2);
  background: rgba(17, 103, 177, 0.1);
}

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

.list-item {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.list-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  background: var(--panel-strong);
  border: 1px solid var(--line);
}

.table th,
.table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

.table th {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--line);
  background: rgba(16, 35, 59, 0.04);
}

.table tr + tr td {
  border-top: 1px solid var(--line);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(16, 35, 59, 0.06);
  color: var(--text);
  font-weight: 600;
  font-size: 0.88rem;
}

.small {
  font-size: 0.88rem;
}

.footer {
  margin-top: 22px;
  color: var(--muted);
  text-align: center;
  font-size: 0.92rem;
}

@media (max-width: 720px) {
  .page {
    width: min(100% - 24px, 1200px);
    padding-top: 16px;
  }

  .hero,
  .section {
    padding: 22px;
    border-radius: 22px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .metric-value {
    font-size: 1.6rem;
  }
}
