.tc-command-center{
  position:relative;
  overflow:hidden;
  min-height:340px;
  display:grid;
  grid-template-columns:minmax(0,1.4fr) minmax(320px,.6fr);
  gap:24px;
  padding:34px;
  border-radius:34px;
  color:white;
  background:
    radial-gradient(circle at 78% 18%, rgba(20,184,166,.32), transparent 30%),
    radial-gradient(circle at 16% 82%, rgba(59,130,246,.24), transparent 34%),
    linear-gradient(135deg,#020617 0%,#0f172a 52%,#111827 100%);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 32px 90px rgba(15,23,42,.22);
}

.tc-command-main{
  position:relative;
  z-index:1;
}

.tc-command-center h1{
  margin:0;
  max-width:860px;
  font-size:clamp(2.6rem,5vw,5rem);
  line-height:.95;
  letter-spacing:-.07em;
  color:white;
}

.tc-command-center p{
  max-width:760px;
  margin:18px 0 0;
  color:rgba(255,255,255,.72);
  font-size:17px;
  line-height:1.65;
}

.tc-command-insights{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-top:28px;
}

.tc-command-insight{
  display:flex;
  gap:12px;
  padding:16px;
  border-radius:22px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(16px);
}

.tc-command-insight span{
  font-size:20px;
}

.tc-command-insight strong{
  display:block;
  color:white;
  font-size:14px;
  line-height:1.35;
}

.tc-command-insight small{
  display:block;
  margin-top:6px;
  color:rgba(255,255,255,.66);
  line-height:1.45;
}

.tc-command-health{
  position:relative;
  z-index:1;
  padding:24px;
  border-radius:30px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 24px 70px rgba(0,0,0,.22);
  backdrop-filter:blur(18px);
}

.tc-command-health > span{
  display:block;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:rgba(255,255,255,.65);
  margin-bottom:12px;
}

.tc-command-health > strong{
  display:block;
  font-size:64px;
  line-height:.9;
  letter-spacing:-.08em;
  color:#5eead4;
}

.tc-command-health > small{
  display:block;
  margin-top:10px;
  color:rgba(255,255,255,.70);
  font-weight:700;
}

.tc-command-health-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:22px;
}

.tc-command-health-grid div{
  padding:12px;
  border-radius:18px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.12);
}

.tc-command-health-grid strong{
  display:block;
  font-size:24px;
  color:white;
}

.tc-command-health-grid small{
  display:block;
  margin-top:4px;
  color:rgba(255,255,255,.62);
  font-size:12px;
}

.tc-command-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}

@media(max-width:1000px){
  .tc-command-center{
    grid-template-columns:1fr;
  }

  .tc-command-insights{
    grid-template-columns:1fr;
  }
}

.tc-insight-link{
  margin-top:10px;
  padding:7px 10px;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,.16);
  color:white;
  font-weight:900;
  font-size:12px;
  cursor:pointer;
}

.tc-insight-link:hover{
  background:rgba(255,255,255,.24);
}