.fleet-page {
  margin: 34px 0 var(--go-page-end);
  display: grid;
  gap: 20px;
}

.fleet-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(86, 182, 194, 0.28);
  background:
    radial-gradient(circle at 12% 8%, rgba(97, 175, 239, 0.22), transparent 30%),
    radial-gradient(circle at 84% 20%, rgba(152, 195, 121, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(18, 18, 18, 0.96), rgba(45, 45, 45, 0.78));
}

.fleet-hero h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.95;
  font-weight: 650;
}

.fleet-hero p {
  max-width: 840px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.fleet-radar {
  display: grid;
  place-items: center;
  width: 138px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(86, 182, 194, 0.46);
  background: conic-gradient(from 10deg, var(--cyan), var(--green), var(--amber), #c678dd, var(--cyan));
  box-shadow: 0 0 46px rgba(86, 182, 194, 0.2);
}

.fleet-radar span {
  display: grid;
  place-items: center;
  width: 78px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.9);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
}

.fleet-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(86, 182, 194, 0.22);
  background: rgba(86, 182, 194, 0.22);
}

.fleet-kpi-card {
  min-height: 112px;
}

.fleet-map {
  min-height: 520px;
  color: var(--muted);
}

.fleet-svg {
  width: 100%;
  height: auto;
  display: block;
}

.fleet-svg-bg {
  fill: #07090a;
  stroke: rgba(255, 255, 255, 0.1);
}

.fleet-link {
  stroke: rgba(86, 182, 194, 0.28);
  stroke-width: 2;
  fill: none;
  marker-end: url("#fleetArrow");
}

.fleet-arrow {
  fill: rgba(86, 182, 194, 0.68);
}

.fleet-core {
  fill: rgba(245, 158, 11, 0.12);
  stroke: rgba(245, 158, 11, 0.48);
  stroke-width: 2;
  filter: drop-shadow(0 0 28px rgba(245, 158, 11, 0.18));
}

.fleet-svg-kicker {
  fill: var(--amber);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.fleet-svg-title,
.fleet-core-title {
  fill: var(--text);
  font-size: 23px;
  font-weight: 850;
}

.fleet-svg-sub,
.fleet-core-sub,
.fleet-node-sub {
  fill: var(--muted);
  font-size: 12px;
}

.fleet-node-title {
  fill: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.fleet-node-count {
  fill: var(--amber);
  font-size: 18px;
  font-weight: 850;
}

.fleet-bottom {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 18px;
}

.fleet-bottom article,
.fleet-group-card,
.fleet-connection {
  border: 1px solid var(--line);
  background: rgba(18, 18, 18, 0.82);
}

.fleet-bottom article {
  padding: 18px;
}

.fleet-bottom h3 {
  margin: 0;
}

.fleet-bottom p {
  margin: 8px 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.fleet-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.fleet-group-card {
  padding: 14px;
  border-color: var(--fleet-color);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(18, 18, 18, 0.88));
}

.fleet-group-card header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.fleet-group-card strong,
.fleet-connection strong {
  color: var(--text);
}

.fleet-group-card span,
.fleet-connection span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.fleet-group-card em {
  color: var(--amber);
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.fleet-service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0;
}

.fleet-chip {
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 11px;
}

.fleet-resource-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fleet-resource-list li {
  min-width: 0;
}

.fleet-connections {
  display: grid;
  gap: 10px;
}

.fleet-connection {
  padding: 12px;
  border-left: 3px solid var(--cyan);
}

.fleet-empty {
  display: grid;
  place-items: center;
  min-height: 360px;
  border: 1px dashed rgba(229, 192, 123, 0.35);
  color: var(--yellow);
}
