* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: #05060a;
  color: #f5f5f5;
}

#top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: linear-gradient(90deg, #111319, #181b24);
  border-bottom: 1px solid #2b3040;
}

#product-block {
  display: flex;
  flex-direction: column;
}

#product-name {
  font-size: 18px;
  font-weight: 600;
  color: #f7d37a;
}

#product-ethos {
  font-size: 12px;
  color: #a9afc4;
  margin-top: 2px;
}

#nav-strip {
  display: flex;
  gap: 8px;
}

.nav-orb {
  border-radius: 999px;
  border: 1px solid #3b4258;
  background: #151824;
  color: #d5daea;
  padding: 6px 12px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.15s ease-out;
}

.nav-orb.active,
.nav-orb:hover {
  border-color: #f7d37a;
  color: #f7d37a;
  box-shadow: 0 0 8px rgba(247, 211, 122, 0.4);
}

#runtime-status {
  font-size: 12px;
  color: #9ad4ff;
}

#identity-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  border-bottom: 1px solid #2b3040;
}

#orborous {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #f7d37a;
  box-shadow: 0 0 16px rgba(247, 211, 122, 0.5);
  position: relative;
  overflow: hidden;
}

#orborous::before {
  content: "";
  position: absolute;
  width: 140%;
  height: 140%;
  top: -20%;
  left: -20%;
  background: conic-gradient(
    from 0deg,
    #f7d37a,
    #ff9f6b,
    #7dd3fc,
    #a5b4fc,
    #f7d37a
  );
  animation: spin 10s linear infinite;
  opacity: 0.9;
}

#orborous::after {
  content: "Atlas";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: #05060a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #f7d37a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#module-orbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.module-orb {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  border: 1px solid #343a4f;
  background: #11131d;
  color: #d5daea;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.module-orb.core {
  border-color: #7dd3fc;
  color: #7dd3fc;
}

.module-orb.prime {
  border-color: #f7d37a;
  color: #f7d37a;
}

.test-btn {
  margin-left: auto;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #f97373;
  background: #1b1113;
  color: #fecaca;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.15s ease-out;
}

.test-btn:hover {
  background: #7f1d1d;
  box-shadow: 0 0 10px rgba(248, 113, 113, 0.5);
}

#cockpit {
  display: flex;
  gap: 12px;
  padding: 12px 20px 20px;
  height: calc(100vh - 140px);
}

.cockpit-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#column-left,
#column-right {
  width: 25%;
}

#column-center {
  width: 50%;
}

.panel {
  flex: 1;
  border-radius: 10px;
  background: radial-gradient(circle at top left, #1b1f2b, #05060a);
  border: 1px solid #2b3040;
  padding: 10px 12px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
}

.placeholder-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3c7;
  margin-bottom: 4px;
}

.placeholder-body {
  font-size: 13px;
  color: #e5e7f5;
  line-height: 1.4;
}
